diff --git a/Cargo.lock b/Cargo.lock index 0e49578d..341622e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1772,7 +1772,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" dependencies = [ "serde", - "uuid 1.3.4", + "uuid 1.4.0", ] [[package]] @@ -3052,7 +3052,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e0500463acd96259d219abb05dc57e5a076ef04b2db9a2112846929b5f174c96" dependencies = [ "libc", - "uuid 1.3.4", + "uuid 1.4.0", "winapi", ] @@ -3625,7 +3625,7 @@ dependencies = [ "tracing", "ulid", "url", - "uuid 1.3.4", + "uuid 1.4.0", ] [[package]] @@ -5343,7 +5343,7 @@ dependencies = [ "thiserror", "time 0.3.22", "url", - "uuid 1.3.4", + "uuid 1.4.0", ] [[package]] @@ -5691,7 +5691,7 @@ dependencies = [ "thiserror", "tokio-stream", "url", - "uuid 1.3.4", + "uuid 1.4.0", "webpki-roots 0.22.6", "whoami", ] @@ -6382,7 +6382,7 @@ source = "git+https://github.com/dylanhart/ulid-rs.git?rev=0b9295c2db2114cd87aa1 dependencies = [ "rand 0.8.5", "serde", - "uuid 1.3.4", + "uuid 1.4.0", ] [[package]] @@ -6564,9 +6564,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.3.4" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fa2982af2eec27de306107c027578ff7f423d65f7250e40ce0fea8f45248b81" +checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be" dependencies = [ "getrandom 0.2.10", "serde", diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index fde4392a..e9c89d72 100644 --- a/crates/storage-pg/Cargo.toml +++ b/crates/storage-pg/Cargo.toml @@ -18,7 +18,7 @@ futures-util = "0.3.28" rand = "0.8.5" rand_chacha = "0.3.1" url = { version = "2.4.0", features = ["serde"] } -uuid = "1.3.4" +uuid = "1.4.0" ulid = { version = "1.0.0", features = ["uuid", "serde"] } oauth2-types = { path = "../oauth2-types" }