pnm-cli 0.11.21

CLI Tool for managing a personal Verifiable Trust Agent
[package]
name = "pnm-cli"
description = "CLI Tool for managing a personal Verifiable Trust Agent"
version = "0.11.21"
edition.workspace = true
publish.workspace = true
authors.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
repository.workspace = true

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

[features]
default = ["keyring", "tsp"]
keyring = ["vta-sdk/keyring"]
config-session = ["vta-sdk/config-session"]
azure-secrets = ["vta-sdk/azure-secrets"]
# Trust Spanning Protocol probe in `pnm health`. **On by default** — TSP is the
# preferred transport (TSP > DIDComm > REST), so operators get the round-trip
# probe out of the box. Enables the SDK's `TspPingSession`. Build with
# `--no-default-features` (re-adding `keyring`) to drop the TSP deps; without
# it `pnm health` still recognises an advertised `TSPTransport` service but
# notes the probe isn't compiled in.
tsp = ["vta-sdk/tsp"]

[dependencies]
vta-sdk = { path = "../vta-sdk", version = "0.21", features = ["session", "sealed-transfer", "attest-verify", "provision-integration", "crypto-provider", "acl-setup"] }
affinidi-crypto = { workspace = true }
base64 = { workspace = true }
reqwest = { workspace = true }
sha2 = { workspace = true }
# `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 }
chrono = { workspace = true }
clap = { workspace = true, features = ["env"] }
dialoguer = { workspace = true }
dirs = { workspace = true }
ed25519-dalek = { workspace = true }
hex = "0.4"
multibase = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }

[lints]
workspace = true