1[package] 2name = "crypto_provider_boringssl" 3version = "0.1.0" 4edition = "2021" 5publish = false 6 7[dependencies] 8crypto_provider = { path = "../crypto_provider", features = ["alloc", "std"] } 9 10# Note: before this crate will work you need to run `cargo run -p build_scripts -- build-boringssl` 11bssl-crypto = {path = "../../../third_party/boringssl/rust/bssl-crypto"} 12 13[dev-dependencies] 14crypto_provider_test = {path = "../crypto_provider_test"} 15