Skip to content

Commit

Permalink
Fix: default_features -> default-features
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jan 14, 2025
1 parent ce0b37c commit 0fb84ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ either = "1.9"
num-traits = "0.2"
dyn-clone = "1"
bytemuck = { version = "1", features = ["derive"] }
chrono = { version = "0.4.31", default_features = false, features = ["std"] }
chrono = { version = "0.4.31", default-features = false, features = ["std"] }

# for decimal i256
ethnum = "1"
Expand Down Expand Up @@ -127,7 +127,7 @@ getrandom = { version = "0.2", features = ["js"] }
[dependencies.parquet2]
version = "0.17"
optional = true
default_features = false
default-features = false

[dev-dependencies]
criterion = "0.4"
Expand All @@ -138,7 +138,7 @@ crossbeam-channel = "0.5.1"
tokio = { version = "1", features = ["macros", "rt", "fs", "io-util"] }
tokio-util = { version = "0.7", features = ["compat"] }
# used to run formal property testing
proptest = { version = "1", default_features = false, features = ["std"] }
proptest = { version = "1", default-features = false, features = ["std"] }
avro-rs = { version = "0.13", features = ["snappy"] }
# use for flaky testing
rand = "0.8"
Expand Down
10 changes: 8 additions & 2 deletions examples/parquet_read_parallel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ version = "0.1.0"
edition = "2021"

[dependencies]
arrow2 = { path = "../../", default-features = false, features = ["io_parquet", "io_parquet_compression"] }
arrow2 = { path = "../../", default-features = false, features = [
"io_parquet",
"io_parquet_compression",
] }
rayon = { version = "1", default-features = false }
log = "0.4"
chrono = { version = "0.4", default_features = false, features = ["std", "clock"] }
chrono = { version = "0.4", default-features = false, features = [
"std",
"clock",
] }

0 comments on commit 0fb84ab

Please sign in to comment.