diff --git a/Cargo.lock b/Cargo.lock index 7f45fc72..9cf8c5ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5681,9 +5681,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.9.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ea73390fe27785838dcbf75b91b1d84799e28f1ce71e6f372a5dc2200c80de5" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "getrandom", "rand", diff --git a/Cargo.toml b/Cargo.toml index e28310f5..88be8156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,7 @@ trillium-testing = { version = "0.7.0", optional = true } trillium-tokio = "0.4.0" typenum = "1.17.0" url = "2.5.2" -uuid = { version = "1.9.0", features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "fast-rng", "serde"] } validator = { version = "0.18.1", features = ["derive"] } trillium-opentelemetry = { version = "0.8.0", default-features = false, features = ["metrics"] } opentelemetry_sdk = { version = "0.23.0", features = ["rt-tokio", "logs", "metrics"] } diff --git a/client/Cargo.toml b/client/Cargo.toml index a308fb8a..b4093df7 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -22,7 +22,7 @@ thiserror = "1.0.61" trillium-client = { version = "0.6.2", features = ["json"] } trillium-http = "0.3.14" url = { version = "2.5.2", features = ["serde"] } -uuid = { version = "1.9.0", features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "fast-rng", "serde"] } time = { version = "0.3.36", features = ["serde", "serde-well-known"] } log = "0.4.21" pad-adapter = "0.1.1" diff --git a/test-support/Cargo.toml b/test-support/Cargo.toml index 6de85d8b..d807ac05 100644 --- a/test-support/Cargo.toml +++ b/test-support/Cargo.toml @@ -27,7 +27,7 @@ trillium-http = "0.3.14" trillium-rustls = "0.8.1" trillium-tokio = "0.4.0" url = "2.5.2" -uuid = { version = "1.9.0", features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.9.1", features = ["v4", "fast-rng", "serde"] } sea-orm = { version = "0.12.15", features = ["sqlx-sqlite"] } pretty_assertions = "1.4.0" rand = "0.8.5"