From 073a03a35d432a88110d386c05804f927f492962 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Apr 2022 18:24:25 +0800 Subject: [PATCH] Update uuid requirement from 0.8 to 1.0 (#2280) Updates the requirements on [uuid](https://github.com/uuid-rs/uuid) to permit the latest version. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.0...1.0.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- ballista/rust/core/Cargo.toml | 2 +- ballista/rust/executor/Cargo.toml | 2 +- ballista/rust/scheduler/Cargo.toml | 2 +- datafusion/core/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 94c6dfdb7cda..18b8f05ecd3c 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -55,7 +55,7 @@ serde = { version = "1", features = ["derive"] } sqlparser = "0.16" tokio = "1.0" tonic = "0.7" -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.0", features = ["v4"] } walkdir = "2.3.2" [dev-dependencies] diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index c0dfe1046b50..3282f1f887fb 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -50,7 +50,7 @@ tempfile = "3" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] } tokio-stream = { version = "0.1", features = ["net"] } tonic = "0.7" -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.0", features = ["v4"] } [dev-dependencies] diff --git a/ballista/rust/scheduler/Cargo.toml b/ballista/rust/scheduler/Cargo.toml index 884573c2dce4..d1eac599e612 100644 --- a/ballista/rust/scheduler/Cargo.toml +++ b/ballista/rust/scheduler/Cargo.toml @@ -62,7 +62,7 @@ warp = "0.3" [dev-dependencies] ballista-core = { path = "../core", version = "0.6.0" } -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.0", features = ["v4"] } [build-dependencies] configure_me_codegen = "0.4.1" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index 467fe7b5449e..ea4d80981fe8 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -82,7 +82,7 @@ sqlparser = "0.16" tempfile = "3" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] } tokio-stream = "0.1" -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.0", features = ["v4"] } [dev-dependencies] criterion = "0.3"