diff --git a/Cargo.toml b/Cargo.toml index f07e43d..7a59b71 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,6 @@ hpke-rs-rust-crypto = { version = "0.1.3", path = "./rust_crypto_provider", feat ] } # hpke-rs-evercrypt = { version = "0.1.3-pre.1", path = "./evercrypt_provider", features = ["deterministic-prng"] } rand = { version = "0.8" } -getrandom = { version = "0.2", features = ["js"] } pretty_env_logger = "0.5" criterion = { version = "0.5", features = ["html_reports"] } diff --git a/evercrypt_provider/Cargo.toml b/evercrypt_provider/Cargo.toml index 5662742..f40a2e8 100644 --- a/evercrypt_provider/Cargo.toml +++ b/evercrypt_provider/Cargo.toml @@ -15,7 +15,6 @@ hpke-rs-crypto = { version = "0.1.2-pre.1", path = "../traits" } evercrypt = { version = "0.0.11", features = ["serialization"] } # Randomness rand = { version = "0.8" } -getrandom = { version = "0.2", features = ["js"] } rand_chacha = { version = "0.3" } [dev-dependencies] diff --git a/rust_crypto_provider/Cargo.toml b/rust_crypto_provider/Cargo.toml index 2f973aa..fd2fdc8 100644 --- a/rust_crypto_provider/Cargo.toml +++ b/rust_crypto_provider/Cargo.toml @@ -21,7 +21,6 @@ chacha20poly1305 = { version = "0.10", default-features = false, features = ["al aes-gcm = { version = "0.10", default-features = false, features = ["aes"] } # Randomness rand_core = { version = "0.6" } -getrandom = { version = "0.2", features = ["js"] } rand_chacha = { version = "0.3", default-features = false } [dev-dependencies] diff --git a/traits/Cargo.toml b/traits/Cargo.toml index 48433d3..82d99ae 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -12,7 +12,6 @@ repository = "https://github.com/franziskuskiefer/hpke-rs" [dependencies] serde = { version = "1.0", features = ["derive"], optional = true } rand_core = { version = "0.6.4" } -getrandom = { version = "0.2", features = ["js"] } [features] serde = ["dep:serde"]