diff --git a/Cargo.lock b/Cargo.lock index 36007dad8377c..cd00bec66ae7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6508,9 +6508,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.14.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d59ca99a559661b96bf898d8fce28ed87935fd2bea9f05983c1464dd6c71b1" +checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" dependencies = [ "getrandom 0.3.1", "js-sys", diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index f908a9c57b03d..ea3139adac3d8 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -74,7 +74,7 @@ test-utils = { path = "../test-utils" } tokio = { workspace = true, features = ["rt-multi-thread", "parking_lot"] } tonic = "0.12.1" url = { workspace = true } -uuid = "1.14" +uuid = "1.15" [target.'cfg(not(target_os = "windows"))'.dev-dependencies] nix = { version = "0.29.0", features = ["fs"] } diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index ff50ed2720e3d..438e2600a66d7 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -125,7 +125,7 @@ sqlparser = { workspace = true } tempfile = { workspace = true } tokio = { workspace = true } url = { workspace = true } -uuid = { version = "1.14", features = ["v4", "js"] } +uuid = { version = "1.15", features = ["v4", "js"] } xz2 = { version = "0.1", optional = true, features = ["static"] } zstd = { version = "0.13", optional = true, default-features = false } diff --git a/datafusion/functions/Cargo.toml b/datafusion/functions/Cargo.toml index 632db13857096..0c921941a6ddb 100644 --- a/datafusion/functions/Cargo.toml +++ b/datafusion/functions/Cargo.toml @@ -85,7 +85,7 @@ rand = { workspace = true } regex = { workspace = true, optional = true } sha2 = { version = "^0.10.1", optional = true } unicode-segmentation = { version = "^1.7.1", optional = true } -uuid = { version = "1.14", features = ["v4"], optional = true } +uuid = { version = "1.15", features = ["v4"], optional = true } [dev-dependencies] arrow = { workspace = true, features = ["test_utils"] }