confium-cli 0.5.2

Command-line interface for the Confium threshold cryptography framework
[package]
name = "confium-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
categories = ["cryptography", "authentication"]
readme = "README.md"
repository.workspace = true
keywords = ["crypto", "cli", "threshold", "confium"]
description = "Command-line interface for the Confium threshold cryptography framework"
documentation = "https://docs.rs/confium-cli"

[[bin]]
name = "confium"
path = "src/main.rs"


[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
confium-registry = { workspace = true }
# Product surfaces reachable from the CLI umbrellas.
confium-tc-cmp20 = { workspace = true }
confium-tc-gg18 = { workspace = true }
confium-transparency = { workspace = true }
confium-pki = { workspace = true }
confium-composite = { workspace = true }
confium-signatif = { workspace = true }
chrono = { workspace = true }
confium-privacy = { workspace = true }
ed25519-dalek = { workspace = true }
p256 = { workspace = true, features = ["ecdsa"] }
clap = { workspace = true }
clap_complete = "4"
hex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }