diff --git a/Cargo.lock b/Cargo.lock index dabcbc73..9b0d779d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -604,6 +604,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" + [[package]] name = "fixedbitset" version = "0.4.2" @@ -1029,7 +1035,7 @@ dependencies = [ "base64 0.21.2", "email-encoding", "email_address", - "fastrand", + "fastrand 1.9.0", "futures-io", "futures-util", "hostname", @@ -1932,7 +1938,7 @@ dependencies = [ "bytes", "chrono", "clap", - "fastrand", + "fastrand 2.0.1", "hyper", "lazy_static", "log", @@ -2060,7 +2066,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ "cfg-if", - "fastrand", + "fastrand 1.9.0", "redox_syscall 0.3.5", "rustix", "windows-sys 0.45.0", diff --git a/client/Cargo.toml b/client/Cargo.toml index 4d92e9f8..6ba15fbf 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -23,7 +23,7 @@ anyhow = "1" bytes = {version = "1", features = ["serde"]} chrono = "0.4" clap = {version = "4.3", features = ["derive", "unicode", "env"]} -fastrand = "1.9.0" +fastrand = "2.0.1" hyper = {version = "0.14", features = ["full"]} lazy_static = "1.4" log = "0.4"