[package]
edition = "2021"
name = "cardanowall-cli"
version = "0.2.0"
authors = ["CardanoWall <hello@cardanowall.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The cardanowall CLI: a standalone Label 309 Proof-of-Existence verifier and toolkit."
homepage = "https://github.com/cardanowall/label-309-cli"
documentation = "https://docs.rs/cardanowall-cli"
readme = "README.md"
keywords = [
"cardano",
"label-309",
"proof-of-existence",
"cli",
"verifier",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/cardanowall/label-309-cli"
[lib]
name = "cardanowall_cli"
path = "src/lib.rs"
[[bin]]
name = "cardanowall"
path = "src/main.rs"
[[test]]
name = "commands"
path = "tests/commands.rs"
[[test]]
name = "ergonomics"
path = "tests/ergonomics.rs"
[[test]]
name = "verify"
path = "tests/verify.rs"
[dependencies.cardanowall]
version = "0.2.0"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.hex]
version = "0.4.3"
[dependencies.owo-colors]
version = "4"
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.toml]
version = "0.8"
[dependencies.zeroize]
version = "1"
[dev-dependencies.tempfile]
version = "3"