Skip to content

Commit 01df8f7

Browse files
committed
fix(cargo): update TOML syntax and add arrow-ipc to ignore list
- Changed `ignored = "serde_json"` to `ignored = ["serde_json"]` to comply with TOML array requirements. - Fixed additional TOML parse errors. - Added `arrow-ipc` to the `cargo-machete` ignore list with a comment on its necessity for spill compression codec support.
1 parent 4511c05 commit 01df8f7

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

datafusion-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ serde_json = { workspace = true, features = ["preserve_order"] }
8585
# Required because we pull serde_json with a feature to get consistent pg display,
8686
# but its not directly used.
8787
[package.metadata.cargo-machete]
88-
ignored = "serde_json"
88+
ignored = ["serde_json"]

datafusion/physical-plan/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ tokio = { workspace = true, features = [
9494
"parking_lot",
9595
] }
9696

97+
# Required for spill compression codec support (see comment on arrow-ipc dependency above).
98+
[package.metadata.cargo-machete]
99+
ignored = ["arrow-ipc"]
100+
97101
[[bench]]
98102
harness = false
99103
name = "partial_ordering"

datafusion/sqllogictest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ path = "bin/sqllogictests.rs"
9797
# Required because we pull serde_json with a feature to get consistent pg display,
9898
# but its not directly used.
9999
[package.metadata.cargo-machete]
100-
ignored = "serde_json"
100+
ignored = ["serde_json"]

0 commit comments

Comments
 (0)