diff --git a/Cargo.lock b/Cargo.lock index a112e28c..d8369a1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2666,9 +2666,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.14.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d59ca99a559661b96bf898d8fce28ed87935fd2bea9f05983c1464dd6c71b1" +checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" dependencies = [ "getrandom 0.3.1", "js-sys", diff --git a/Cargo.toml b/Cargo.toml index cae21836..188f4183 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ tokio = { version = "1.43.0", features = ["rt", "net"] } typify = { git = "https://github.com/oxidecomputer/typify" } url = "2.5.4" unicode-ident = "1.0.17" -uuid = { version = "1.14.0", features = ["serde", "v4"] } +uuid = { version = "1.15.1", features = ["serde", "v4"] } #[patch."https://github.com/oxidecomputer/typify"] #typify = { path = "../typify/typify" } diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index b06ed135..393b4c00 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -11,7 +11,7 @@ reqwest = { version = "0.12.4", features = ["json", "stream"] } base64 = "0.22" rand = "0.9" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.14", features = ["serde", "v4"] } +uuid = { version = "1.15", features = ["serde", "v4"] } [build-dependencies] prettyplease = "0.2.29" diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index 790fbe98..bc18fe30 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -10,4 +10,4 @@ progenitor = { path = "../progenitor" } reqwest = { version = "0.12.4", features = ["json", "stream"] } schemars = { version = "0.8.21", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.14", features = ["serde", "v4"] } +uuid = { version = "1.15", features = ["serde", "v4"] } diff --git a/example-wasm/Cargo.toml b/example-wasm/Cargo.toml index 72f21cd2..2f66124e 100644 --- a/example-wasm/Cargo.toml +++ b/example-wasm/Cargo.toml @@ -9,7 +9,7 @@ progenitor-client = { path = "../progenitor-client" } reqwest = { version = "0.12.4", features = ["json", "stream"] } base64 = "0.22" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.14", features = ["serde", "v4", "js"] } +uuid = { version = "1.15", features = ["serde", "v4", "js"] } [dev-dependencies] wasm-bindgen-test = "0.3.45"