Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
Fix circular dependency
  • Loading branch information
logan-keede authored Jan 18, 2025
1 parent b58f9d6 commit 0d571a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/physical-optimizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ workspace = true

[features]
recursive_protection = ["dep:recursive"]
parquet = ["parquet"]
parquet = ["dep:parquet"]

[dependencies]
arrow = { workspace = true }
Expand All @@ -49,6 +49,7 @@ futures = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
recursive = { workspace = true, optional = true }
parquet = { workspace = true, optional = true, default-features = true }

[dev-dependencies]
datafusion-expr = { workspace = true }
Expand Down

0 comments on commit 0d571a7

Please sign in to comment.