mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 08:23:24 +01:00
Keep arrow2
out of basic --workspace
build (#10178)
Same logic as in #9971 Prevents building the heavy polars and arrow dependencies when just running `cargo test --workspace` or `rust-analyzer` `polars-io` dependency was introduced in #10019
This commit is contained in:
parent
93f20b406e
commit
5b4b4446b7
@ -24,7 +24,7 @@ indexmap = { version = "2.0" }
|
||||
num = { version = "0.4", optional = true }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
sqlparser = { version = "0.36.1", optional = true }
|
||||
polars-io = { version = "0.32", features = ["avro"] }
|
||||
polars-io = { version = "0.32", features = ["avro"], optional = true }
|
||||
|
||||
[dependencies.polars]
|
||||
features = [
|
||||
@ -57,7 +57,7 @@ optional = true
|
||||
version = "0.32"
|
||||
|
||||
[features]
|
||||
dataframe = ["num", "polars", "sqlparser"]
|
||||
dataframe = ["num", "polars", "polars-io", "sqlparser"]
|
||||
default = []
|
||||
|
||||
[dev-dependencies]
|
||||
|
Loading…
Reference in New Issue
Block a user