cnm-cli 0.11.13

CLI Tool for Verified Trust Agents operating in Verified Trust Communities
[package]
name = "cnm-cli"
description = "CLI Tool for Verified Trust Agents operating in Verified Trust Communities"
version = "0.11.13"
edition.workspace = true
publish.workspace = true
authors.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
repository.workspace = true

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

[features]
default = ["keyring"]
keyring = ["vta-sdk/keyring"]
config-session = ["vta-sdk/config-session"]
azure-secrets = ["vta-sdk/azure-secrets"]

[dependencies]
vta-sdk = { path = "../vta-sdk", version = "0.20", features = ["session", "crypto-provider", "acl-setup"] }
# `agent-names` powers the global `--resolve-agent-names` flag; without it
# the flag parses but can never resolve anything.
vta-cli-common = { path = "../vta-cli-common", version = "0.10", features = [
  "agent-names",
] }
affinidi-did-resolver-cache-sdk = { workspace = true }
clap = { workspace = true, features = ["env"] }
dialoguer = { workspace = true }
dirs = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
# Direct REST POST for `cnm backup` (the VTC backup routes are REST-only,
# super-admin); forces REST regardless of the session's preferred transport.
reqwest = { workspace = true }
toml = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }

[lints]
workspace = true