diff --git a/crates/bitwarden-core/Cargo.toml b/crates/bitwarden-core/Cargo.toml index 9da4f3eb9..ff8cadff8 100644 --- a/crates/bitwarden-core/Cargo.toml +++ b/crates/bitwarden-core/Cargo.toml @@ -36,7 +36,7 @@ chrono = { workspace = true, features = ["std"] } # We don't use this directly (it's used by rand), but we need it here to enable WASM support getrandom = { version = ">=0.2.9, <0.3", features = ["js"] } log = { workspace = true } -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" reqwest = { workspace = true } schemars = { workspace = true } serde = { workspace = true } diff --git a/crates/bitwarden-crypto/Cargo.toml b/crates/bitwarden-crypto/Cargo.toml index 7a9fb8b38..6f4c05ee3 100644 --- a/crates/bitwarden-crypto/Cargo.toml +++ b/crates/bitwarden-crypto/Cargo.toml @@ -35,7 +35,7 @@ hmac = ">=0.12.1, <0.13" num-bigint = ">=0.4, <0.5" num-traits = ">=0.2.15, <0.3" pbkdf2 = { version = ">=0.12.1, <0.13", default-features = false } -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" rayon = ">=1.8.1, <2.0" rsa = ">=0.9.2, <0.10" schemars = { workspace = true } diff --git a/crates/bitwarden-exporters/Cargo.toml b/crates/bitwarden-exporters/Cargo.toml index 84241c3ad..e313f7ced 100644 --- a/crates/bitwarden-exporters/Cargo.toml +++ b/crates/bitwarden-exporters/Cargo.toml @@ -34,7 +34,7 @@ uniffi = { workspace = true, optional = true } uuid = { workspace = true } [dev-dependencies] -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" [lints] workspace = true diff --git a/crates/bitwarden-generators/Cargo.toml b/crates/bitwarden-generators/Cargo.toml index 24e5d5ebc..f00fcedca 100644 --- a/crates/bitwarden-generators/Cargo.toml +++ b/crates/bitwarden-generators/Cargo.toml @@ -19,7 +19,7 @@ uniffi = ["dep:uniffi"] # Uniffi bindings [dependencies] bitwarden-core = { workspace = true, features = ["internal"] } bitwarden-crypto = { workspace = true } -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" reqwest = { workspace = true } schemars = { workspace = true } serde = { workspace = true } diff --git a/crates/bitwarden-ssh/Cargo.toml b/crates/bitwarden-ssh/Cargo.toml index 148eaee02..d186f7f76 100644 --- a/crates/bitwarden-ssh/Cargo.toml +++ b/crates/bitwarden-ssh/Cargo.toml @@ -28,7 +28,7 @@ bitwarden-vault = { workspace = true } ed25519 = { version = ">=2.2.3, <3.0", features = ["pkcs8"] } pem-rfc7468 = "0.7.0" pkcs8 = { version = ">=0.10.2, <0.11", features = ["encryption"] } -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" rsa = ">=0.9.2, <0.10" serde.workspace = true ssh-key = { version = ">=0.6.7, <0.7", features = [ diff --git a/crates/bitwarden-vault/Cargo.toml b/crates/bitwarden-vault/Cargo.toml index 1ffc47db9..8e223b594 100644 --- a/crates/bitwarden-vault/Cargo.toml +++ b/crates/bitwarden-vault/Cargo.toml @@ -31,7 +31,7 @@ chrono = { workspace = true } data-encoding = ">=2.0, <3" hmac = ">=0.12.1, <0.13" percent-encoding = ">=2.1, <3.0" -rand = ">=0.8.5, <0.9" +rand = ">=0.8.5, <0.10" reqwest = { workspace = true } schemars = { workspace = true } serde = { workspace = true }