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-tests" 6version = "0.1.0" 7authors = ["David Drysdale <[email protected]>"] 8edition = "2021" 9license = "Apache-2.0" 10 11[dependencies] 12ciborium = { version = "^0.2.0", default-features = false } 13env_logger = "^0.9" 14hex = "0.4.3" 15kmr-common = "*" 16kmr-crypto-boring = "*" 17kmr-ta = "*" 18kmr-wire = "*" 19log = "^0.4" 20x509-cert = "0.2.4" 21 22[lints.rust] 23unexpected_cfgs = { level = "warn", check-cfg = ['cfg(soong)'] } 24