diff --git a/Cargo.lock b/Cargo.lock index bb228fc6..351e2bf8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5332,9 +5332,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" +checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" dependencies = [ "getrandom 0.3.4", "js-sys", diff --git a/api/Cargo.toml b/api/Cargo.toml index 83a1666a..380fe811 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -54,7 +54,7 @@ thiserror = "2.0" chrono = { version = "0.4", features = ["serde"] } strum = { version = "0.27", features = ["derive"] } indexmap = "2.13" -uuid = { version = "1.19", features = ["v4"] } +uuid = { version = "1.20", features = ["v4"] } [dependencies.sqlx] version = "0.8" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1fdf60ff..746c4bf6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -39,7 +39,7 @@ chrono = { version = "0.4", features = ["serde"] } clap = { version = "4.5", features = ["derive", "env"] } colored = "3.0" tokio = { version = "1", features = ["macros", "rt-multi-thread"] } -uuid = { version = "1.19", features = ["v4"] } +uuid = { version = "1.20", features = ["v4"] } [dev-dependencies] cargo-husky = { workspace = true } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 648be9ae..ab87a404 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -41,7 +41,7 @@ anyhow = "1" chrono = { version = "0.4", features = ["serde"] } jzon = "0.12" avina-wire = { version = "2.1", path = "../wire" } -uuid = { version = "1.19", features = ["v4"] } +uuid = { version = "1.20", features = ["v4"] } [dev-dependencies] cargo-husky = { workspace = true } diff --git a/test/Cargo.toml b/test/Cargo.toml index a74b8892..d0d3c43b 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -25,7 +25,7 @@ avina-wire = { version = "2.1", path = "../wire" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } serde_json = "1" reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] } -uuid = { version = "1.19", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } once_cell = "1" wiremock = "0.6" rand = "0.9" diff --git a/wire/Cargo.toml b/wire/Cargo.toml index 41cd3201..d044ce0b 100644 --- a/wire/Cargo.toml +++ b/wire/Cargo.toml @@ -40,7 +40,7 @@ strum = { version = "0.27", features = ["derive"] } clap = { version = "4.5", features = ["derive"] } rand = "0.9" thiserror = "2.0" -uuid = { version = "1.19", features = ["v4", "serde", "js"] } +uuid = { version = "1.20", features = ["v4", "serde", "js"] } [dev-dependencies] cargo-husky = { workspace = true }