| [package] |
| name = "crypto_provider_default" |
| version.workspace = true |
| edition.workspace = true |
| publish.workspace = true |
| license.workspace = true |
| |
| [lints] |
| workspace = true |
| |
| [dependencies] |
| crypto_provider.workspace = true |
| crypto_provider_rustcrypto = {workspace = true, optional = true} |
| crypto_provider_boringssl = {workspace = true, optional = true} |
| cfg-if.workspace = true |
| |
| [features] |
| default = ["rustcrypto"] |
| std = ["crypto_provider_rustcrypto/std"] |
| rustcrypto = ["crypto_provider_rustcrypto"] |
| boringssl = ["crypto_provider_boringssl"] |