Skip to content
Open
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
8 changes: 8 additions & 0 deletions datafusion/optimizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ name = "datafusion_optimizer"
[features]
recursive_protection = ["dep:recursive"]

# Note -- please DO NOT add a dependency here to any of the datafusion-functions
# crates. While it is tempting to try and add an optimizer pass that uses
# datafusion-functions Doing so makes it harder for downstream crates to
# provide their own function library and smaller install footprint.
#
# If you want to add special handling for a specific function, use the methods
# on the ScalarUDFImpl or AggregateUDFImpl traits (or add a new method to those
# traits).
[dependencies]
arrow = { workspace = true }
chrono = { workspace = true }
Expand Down