1[package]
2name = "crypto_provider_default"
3version.workspace = true
4edition.workspace = true
5publish.workspace = true
6
7[lints]
8workspace = true
9
10[dependencies]
11crypto_provider.workspace = true
12crypto_provider_rustcrypto = {workspace = true, optional = true}
13crypto_provider_boringssl = {workspace = true, optional = true}
14cfg-if.workspace = true
15
16[features]
17default = ["rustcrypto"]
18std = ["crypto_provider_rustcrypto/std"]
19rustcrypto = ["crypto_provider_rustcrypto"]
20boringssl = ["crypto_provider_boringssl"]
21