Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Move ahash to compute
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandandan committed Sep 19, 2021
1 parent 3bf1c0b commit 905da20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ packed_simd = { version = "0.3", optional = true, package = "packed_simd_2" }
futures = { version = "0.3", optional = true }

# for faster hashing
ahash = "0.7"
ahash = { version="0.7", optional = true }

parquet2 = { version = "0.5", optional = true, default_features = false, features = ["stream"] }

Expand Down Expand Up @@ -115,7 +115,7 @@ io_avro = ["avro-rs", "streaming-iterator", "serde_json"]
io_json_integration = ["io_json", "serde_derive", "hex"]
io_print = ["comfy-table"]
# the compute kernels. Disabling this significantly reduces compile time.
compute = ["strength_reduce", "multiversion", "lexical-core"]
compute = ["strength_reduce", "multiversion", "lexical-core", "ahash"]
# base64 + io_ipc because arrow schemas are stored as base64-encoded ipc format.
io_parquet = ["parquet2", "io_ipc", "base64", "futures"]
benchmarks = ["rand"]
Expand Down

0 comments on commit 905da20

Please sign in to comment.