diff --git a/Cargo.lock b/Cargo.lock index 1999934..3a27016 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4152,9 +4152,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ea73390fe27785838dcbf75b91b1d84799e28f1ce71e6f372a5dc2200c80de5" +checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" dependencies = [ "getrandom", ] diff --git a/crates/integration-tests/Cargo.toml b/crates/integration-tests/Cargo.toml index ed23ca3..17211a7 100644 --- a/crates/integration-tests/Cargo.toml +++ b/crates/integration-tests/Cargo.toml @@ -20,7 +20,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.35" } chrono = { version = "0.4" } -uuid = { version = "1.9", features = ["v4"] } +uuid = { version = "1.10", features = ["v4"] } fluvio = { workspace = true } fluvio-future = { workspace = true } diff --git a/crates/sql-sink/Cargo.toml b/crates/sql-sink/Cargo.toml index ec1e332..e0afbdd 100644 --- a/crates/sql-sink/Cargo.toml +++ b/crates/sql-sink/Cargo.toml @@ -19,7 +19,7 @@ serde = { version = "1.0", default-features = false, features = ["derive"]} serde_json = { version = "1", default-features = false } sqlx = { version = "0.6", features = [ "runtime-async-std-rustls" , "postgres", "sqlite", "any", "decimal", "chrono", "uuid" ], default-features = false } url = { version = "2.5", default-features = false, features = ["serde"] } -uuid = { version = "1.9", default-features = false } +uuid = { version = "1.10", default-features = false } fluvio-model-sql = { path = "../fluvio-model-sql" } fluvio = { workspace = true }