Skip to content

Commit

Permalink
Minor: make uuid an optional dependency on datafusion-functions (apac…
Browse files Browse the repository at this point in the history
…he#9771)

* Minor: make uuid an optional dependency on datafusion-functions

* fix merge
  • Loading branch information
alamb authored and Lordworms committed Apr 1, 2024
1 parent 815b42e commit 31609a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ math_expressions = []
# enable regular expressions
regex_expressions = ["regex"]
# enable string functions
string_expressions = []
string_expressions = ["uuid"]
# enable unicode functions
unicode_expressions = ["unicode-segmentation"]

Expand All @@ -79,7 +79,7 @@ md-5 = { version = "^0.10.0", optional = true }
regex = { version = "1.8", optional = true }
sha2 = { version = "^0.10.1", optional = true }
unicode-segmentation = { version = "^1.7.1", optional = true }
uuid = { version = "1.7", features = ["v4"] }
uuid = { version = "1.7", features = ["v4"], optional = true }

[dev-dependencies]
criterion = "0.5"
Expand Down

0 comments on commit 31609a6

Please sign in to comment.