| name = "crypto_provider_rustcrypto" |
| aes-gcm-siv = { version = "0.11.1", features = ["aes"], optional = true } |
| crypto_provider.workspace = true |
| x25519-dalek.workspace = true |
| p256 = { workspace = true, features = ["ecdh"], default-features = false } |
| ed25519-dalek = { workspace = true, default-features = false } |
| rand = { workspace = true, default-features = false } |
| rand_core_05_adapter.workspace = true |
| rand_core.workspace = true |
| rand_chacha = { workspace = true, default-features = false, optional = true } |
| crypto_provider = { workspace = true, features = ["testing"] } |
| crypto_provider_rustcrypto = { path = ".", features = ["std"] } |
| default = ["alloc", "gcm_siv", "rand_chacha"] |
| std = ["ed25519-dalek/default", "rand/std", "rand/std_rng", "crypto_provider/std", "crypto_provider/alloc"] |
| gcm_siv = ["crypto_provider/gcm_siv", "dep:aes-gcm-siv"] |