1# Note that Cargo is not an officially supported build tool (Android's Soong is the official 2# tool). This Cargo.toml file is included purely for the convenience of KeyMint developers. 3 4[package] 5name = "kmr-crypto-boring" 6authors = ["David Drysdale <drysdale@google.com>"] 7version = "0.1.0" 8edition = "2021" 9license = "Apache-2.0" 10 11[dependencies] 12ffi = { package = "openssl-sys", version = "^0.9.75" } 13foreign-types = "0.3.1" 14kmr-common = "*" 15kmr-wire = "*" 16libc = "^0.2.112" 17log = "^0.4" 18openssl = "^0.10.36" 19 20[dev-dependencies] 21kmr-tests = "*" 22 23[lints.rust] 24unexpected_cfgs = { level = "warn", check-cfg = ['cfg(soong)'] }