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}