diff --git a/Cargo.lock b/Cargo.lock index 48ca4b8..9d53bc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1945,9 +1945,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.1.2" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" +checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83" dependencies = [ "getrandom", "serde", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index a6e1010..f046998 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -11,7 +11,7 @@ reqwest = { version = "0.11.12", features = ["json", "stream"] } base64 = "0.13" rand = "0.8" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.0", features = ["serde", "v4"] } +uuid = { version = "1.2", features = ["serde", "v4"] } [build-dependencies] progenitor = { path = "../progenitor" } diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index 574ed01..d499626 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -10,4 +10,4 @@ progenitor = { path = "../progenitor" } reqwest = { version = "0.11.12", features = ["json", "stream"] } schemars = { version = "0.8.11", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.0", features = ["serde", "v4"] } +uuid = { version = "1.2", features = ["serde", "v4"] } diff --git a/progenitor/Cargo.toml b/progenitor/Cargo.toml index 7cda537..b06a7e9 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -25,4 +25,4 @@ rand = "0.8" regress = "0.4.1" reqwest = { version = "0.11.12", features = ["json", "stream"] } schemars = { version = "0.8.11", features = ["uuid1"] } -uuid = { version = "1.0", features = ["serde", "v4"] } +uuid = { version = "1.2", features = ["serde", "v4"] }