You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by yj...@apache.org on 2022/04/21 10:24:31 UTC

[arrow-datafusion] branch master updated: Update uuid requirement from 0.8 to 1.0 (#2280)

This is an automated email from the ASF dual-hosted git repository.

yjshen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 073a03a35 Update uuid requirement from 0.8 to 1.0 (#2280)
073a03a35 is described below

commit 073a03a35d432a88110d386c05804f927f492962
Author: dependabot[bot] <49...@users.noreply.github.com>
AuthorDate: Thu Apr 21 18:24:25 2022 +0800

    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] <su...@github.com>
    
    Co-authored-by: dependabot[bot] <49...@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 94c6dfdb7..18b8f05ec 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 c0dfe1046..3282f1f88 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 884573c2d..d1eac599e 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 467fe7b54..ea4d80981 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"