Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix Cargo warning for parquet2 dependency #11882

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ arrow-array = { version = ">=41", default-features = false }
arrow-buffer = { version = ">=41", default-features = false }
arrow-data = { version = ">=41", default-features = false }
arrow-schema = { version = ">=41", default-features = false }
parquet2 = { version = "0.17.2", features = ["async"] }
parquet2 = { version = "0.17.2", features = ["async"], default-features = false }
avro-schema = { version = "0.3" }

[workspace.dependencies.arrow]
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-arrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ arrow-array = { workspace = true, optional = true }
arrow-buffer = { workspace = true, optional = true }
arrow-data = { workspace = true, optional = true }
arrow-schema = { workspace = true, optional = true }
parquet2 = { workspace = true, optional = true, features = ["async"] }
parquet2 = { workspace = true, optional = true, default-features = true, features = ["async"] }

[dev-dependencies]
avro-rs = { version = "0.13", features = ["snappy"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/polars-error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ description = "Error definitions for the Polars DataFrame library"
[dependencies]
arrow-format = { version = "0.8.1", optional = true }
avro-schema = { workspace = true, optional = true }
object_store = { workspace = true, default-features = false, optional = true }
parquet2 = { workspace = true, optional = true, default-features = false }
object_store = { workspace = true, optional = true }
parquet2 = { workspace = true, optional = true }
regex = { workspace = true, optional = true }
simdutf8 = { workspace = true }
thiserror = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "IO related logic for the Polars DataFrame library"

[dependencies]
polars-core = { workspace = true }
polars-error = { workspace = true, default-features = false }
polars-error = { workspace = true }
polars-json = { workspace = true, optional = true }
polars-time = { workspace = true, features = [], optional = true }
polars-utils = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars-lazy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Lazy query engine for the Polars DataFrame library"

[dependencies]
arrow = { workspace = true }
polars-core = { workspace = true, features = ["lazy", "zip_with", "random"], default-features = false }
polars-core = { workspace = true, features = ["lazy", "zip_with", "random"] }
polars-io = { workspace = true, features = ["lazy"] }
polars-json = { workspace = true, optional = true }
polars-ops = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/polars-ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repository = { workspace = true }
description = "More operations on Polars data structures"

[dependencies]
polars-core = { workspace = true, features = ["algorithm_group_by"], default-features = false }
polars-core = { workspace = true, features = ["algorithm_group_by"] }
polars-error = { workspace = true }
polars-json = { workspace = true, optional = true }
polars-utils = { workspace = true, default-features = false }
polars-utils = { workspace = true }

ahash = { workspace = true }
argminmax = { version = "0.6.1", default-features = false, features = ["float"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/polars-plan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ doctest = false

[dependencies]
libloading = { version = "0.8.0", optional = true }
polars-core = { workspace = true, features = ["lazy", "zip_with", "random"], default-features = false }
polars-core = { workspace = true, features = ["lazy", "zip_with", "random"] }
polars-ffi = { workspace = true, optional = true }
polars-io = { workspace = true, features = ["lazy"], default-features = false }
polars-ops = { workspace = true, features = ["zip_with"], default-features = false }
polars-io = { workspace = true, features = ["lazy"] }
polars-ops = { workspace = true, features = ["zip_with"] }
polars-time = { workspace = true, optional = true }
polars-utils = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/polars-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Time related code for the Polars DataFrame library"

[dependencies]
arrow = { workspace = true, features = ["compute", "temporal"] }
polars-core = { workspace = true, default-features = false, features = ["dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-core = { workspace = true, features = ["dtype-datetime", "dtype-duration", "dtype-time", "dtype-date"] }
polars-error = { workspace = true }
polars-ops = { workspace = true }
polars-utils = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/polars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = "DataFrame library based on Apache Arrow"
polars-algo = { workspace = true, optional = true }
polars-core = { workspace = true }
polars-io = { workspace = true, optional = true }
polars-lazy = { workspace = true, default-features = false, optional = true }
polars-lazy = { workspace = true, optional = true }
polars-ops = { workspace = true }
polars-sql = { workspace = true, optional = true }
polars-time = { workspace = true, optional = true }
Expand Down