[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-api = { workspace = true }
confium-core = { workspace = true }
confium-registry = { workspace = true }
confium-store = { workspace = true }
clap = { workspace = true }
serde = { workspace = true }
toml = { workspace = true }
toml_edit = { workspace = true }
url = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }