[package] name = "dcbor-cli" version = "0.5.2" edition = "2021" description = "Command line parser/validator for deterministic CBOR (\"dCBOR\")." authors = ["Blockchain Commons"] license = "BSD-2-Clause-Patent" repository = "https://github.com/BlockchainCommons/bc-dcbor-cli" readme = "README.md" keywords = ["encoding", "cbor", "binary", "format", "serialization"] # Up to five categories = ["data-structures", "encoding", "command-line-utilities"] # https://crates.io/category_slugs [[bin]] name = "dcbor" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] dcbor = "^0.16.0" clap = { version = "^4.0.0", features = ["derive"] } anyhow = "1.0.83" [dev-dependencies] indoc = "^2.0.0"