diff --git a/Cargo.lock b/Cargo.lock index 918631ab9..c22d95d27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ "strum_macros", "thiserror", "typed-builder", - "uuid 1.2.2", + "uuid", "zerocopy", ] @@ -720,7 +720,7 @@ dependencies = [ "tokio-stream", "tokio-util", "url", - "uuid 1.2.2", + "uuid", "xz2", ] @@ -794,7 +794,7 @@ dependencies = [ "regex", "sha2", "unicode-segmentation", - "uuid 1.2.2", + "uuid", ] [[package]] @@ -815,7 +815,7 @@ dependencies = [ "rand", "regex-syntax", "tokio", - "uuid 0.8.2", + "uuid", ] [[package]] @@ -2854,15 +2854,6 @@ dependencies = [ "percent-encoding", ] -[[package]] -name = "uuid" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" -dependencies = [ - "getrandom", -] - [[package]] name = "uuid" version = "1.2.2" diff --git a/Cargo.toml b/Cargo.toml index 0ab8e98db..fddeabbd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ datafusion-expr = { git = "https://github.com/apache/arrow-datafusion", rev = "6 datafusion-optimizer = { git = "https://github.com/apache/arrow-datafusion", rev = "6dce728a3c7130ca3590a16f413c7c6ccb7209b7" } datafusion-common = { git = "https://github.com/apache/arrow-datafusion", rev = "6dce728a3c7130ca3590a16f413c7c6ccb7209b7", features = ["pyarrow"] } datafusion-substrait = { git = "https://github.com/apache/arrow-datafusion", rev = "6dce728a3c7130ca3590a16f413c7c6ccb7209b7" } -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.2", features = ["v4"] } mimalloc = { version = "*", optional = true, default-features = false } async-trait = "0.1" futures = "0.3"