From 416a5206bb0128d8e6cb98c25ea6e037cbd28168 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 07:21:31 +0000 Subject: [PATCH] build(deps): bump uuid from 1.4.1 to 1.6.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.4.1 to 1.6.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.6.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/integration-tests/Cargo.toml | 2 +- crates/sql-sink/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebae00d..41a8133 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3781,9 +3781,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.4.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "c58fe91d841bc04822c9801002db4ea904b9e4b8e6bbad25127b46eff8dc516b" dependencies = [ "getrandom", ] diff --git a/crates/integration-tests/Cargo.toml b/crates/integration-tests/Cargo.toml index 28b3e14..af4d379 100644 --- a/crates/integration-tests/Cargo.toml +++ b/crates/integration-tests/Cargo.toml @@ -21,7 +21,7 @@ serde_json = { version = "1.0", default-features = false } sqlx = { version = "0.6.3", features = ["postgres", "runtime-async-std-rustls", "decimal", "chrono", "uuid"] } rust_decimal = { version = "1.32" } chrono = { version = "0.4" } -uuid = { version = "1.3", features = ["v4"] } +uuid = { version = "1.6", features = ["v4"] } fluvio-model-sql = { path = "../fluvio-model-sql"} fluvio = { workspace = true} diff --git a/crates/sql-sink/Cargo.toml b/crates/sql-sink/Cargo.toml index 2d20ad8..b1294ce 100644 --- a/crates/sql-sink/Cargo.toml +++ b/crates/sql-sink/Cargo.toml @@ -19,7 +19,7 @@ itertools = "0.11" sqlx = { version = "0.6", features = [ "runtime-async-std-rustls" , "postgres", "sqlite", "any", "decimal", "chrono", "uuid" ], default-features = false } rust_decimal = { version = "1.32", default-features = false } chrono = { version = "0.4", default-features = false } -uuid = { version = "1.3", default-features = false } +uuid = { version = "1.6", default-features = false } fluvio-model-sql = { path = "../fluvio-model-sql" } fluvio = { workspace = true}