diff --git a/Cargo.lock b/Cargo.lock index 6a62818..503ac8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2129,9 +2129,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.2.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" +checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" dependencies = [ "getrandom", "serde", diff --git a/example-build/Cargo.toml b/example-build/Cargo.toml index 069b4fc..a01d8b6 100644 --- a/example-build/Cargo.toml +++ b/example-build/Cargo.toml @@ -11,7 +11,7 @@ reqwest = { version = "0.11.14", features = ["json", "stream"] } base64 = "0.21" rand = "0.8" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.2", features = ["serde", "v4"] } +uuid = { version = "1.3", features = ["serde", "v4"] } [build-dependencies] progenitor = { path = "../progenitor" } diff --git a/example-macro/Cargo.toml b/example-macro/Cargo.toml index 8b5c0d0..ef2e41b 100644 --- a/example-macro/Cargo.toml +++ b/example-macro/Cargo.toml @@ -10,4 +10,4 @@ progenitor = { path = "../progenitor" } reqwest = { version = "0.11.14", features = ["json", "stream"] } schemars = { version = "0.8.11", features = ["uuid1"] } serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.2", features = ["serde", "v4"] } +uuid = { version = "1.3", features = ["serde", "v4"] } diff --git a/progenitor/Cargo.toml b/progenitor/Cargo.toml index 8eeebbe..2f66254 100644 --- a/progenitor/Cargo.toml +++ b/progenitor/Cargo.toml @@ -34,4 +34,4 @@ rand = "0.8" regress = "0.4.1" reqwest = { version = "0.11.14", features = ["json", "stream"] } schemars = { version = "0.8.11", features = ["uuid1"] } -uuid = { version = "1.2", features = ["serde", "v4"] } +uuid = { version = "1.3", features = ["serde", "v4"] }