Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Dec 16, 2024
1 parent f629cf1 commit a6ff973
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 11 deletions.
3 changes: 0 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ bytemuck = { version = "1.11", features = ["derive", "extern_crate_alloc"] }
bytes = { version = "1.7" }
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
chrono-tz = "0.10"
ciborium = "0.2"
compact_str = { version = "0.8.0", features = ["serde"] }
crossbeam-channel = "0.5.8"
crossbeam-deque = "0.8.5"
Expand Down
6 changes: 2 additions & 4 deletions crates/polars-plan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ bytemuck = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true, optional = true }
chrono-tz = { workspace = true, optional = true }
ciborium = { workspace = true, optional = true }
either = { workspace = true }
futures = { workspace = true, optional = true }
hashbrown = { workspace = true }
Expand All @@ -52,7 +51,7 @@ version_check = { workspace = true }
[features]
# debugging utility
debugging = []
python = ["dep:pyo3", "ciborium", "polars-utils/python"]
python = ["dep:pyo3", "polars-utils/python"]
serde = [
"dep:serde",
"polars-core/serde-lazy",
Expand Down Expand Up @@ -189,7 +188,7 @@ month_end = ["polars-time/month_end"]
offset_by = ["polars-time/offset_by"]

bigidx = ["polars-core/bigidx", "polars-utils/bigidx"]
polars_cloud = ["serde", "ciborium"]
polars_cloud = ["serde"]
ir_serde = ["serde", "polars-utils/ir_serde"]

panic_on_schema = []
Expand Down Expand Up @@ -279,7 +278,6 @@ features = [
"replace",
"dtype-u16",
"regex",
"ciborium",
"dtype-decimal",
"arg_where",
"business",
Expand Down
1 change: 0 additions & 1 deletion crates/polars-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ arboard = { workspace = true, optional = true }
bincode = { workspace = true }
bytemuck = { workspace = true }
bytes = { workspace = true }
ciborium = { workspace = true }
either = { workspace = true }
flate2 = { workspace = true }
itoa = { workspace = true }
Expand Down
3 changes: 1 addition & 2 deletions crates/polars-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ ahash = { workspace = true }
bincode = { workspace = true, optional = true }
bytemuck = { workspace = true }
bytes = { workspace = true }
ciborium = { workspace = true, optional = true }
compact_str = { workspace = true }
flate2 = { workspace = true, default-features = true, optional = true }
hashbrown = { workspace = true }
Expand Down Expand Up @@ -44,5 +43,5 @@ mmap = ["memmap"]
bigidx = []
nightly = []
ir_serde = ["serde"]
serde = ["dep:serde", "serde/derive", "dep:bincode", "dep:ciborium", "dep:flate2", "dep:serde_json"]
serde = ["dep:serde", "serde/derive", "dep:bincode", "dep:flate2", "dep:serde_json"]
python = ["pyo3"]

0 comments on commit a6ff973

Please sign in to comment.