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-derive" 6version = "0.1.0" 7authors = ["David Drysdale <[email protected]>"] 8edition = "2021" 9license = "Apache-2.0" 10 11[lib] 12proc-macro = true 13 14[dependencies] 15proc-macro2 = "^1.0" 16quote = "^1.0" 17syn = { version = "2.0.38", features = ["derive", "parsing"] } 18 19[dev-dependencies] 20ciborium = { version = "^0.2.0", default-features = false } 21ciborium-io = "^0.2.0" 22kmr-wire = "*" 23