idprova-cli 0.1.0

IDProva CLI — manage agent identities, delegation tokens, and receipts
[package]

name = "idprova-cli"

version.workspace = true

edition.workspace = true

license.workspace = true

repository.workspace = true

homepage.workspace = true

documentation = "https://docs.rs/idprova-cli"

authors.workspace = true

keywords = ["identity", "ai-agent", "cli", "delegation", "audit"]

categories = ["command-line-utilities", "authentication"]

readme = "README.md"

description = "IDProva CLI — manage agent identities, delegation tokens, and receipts"



[[bin]]

name = "idprova"

path = "src/main.rs"



[dependencies]

idprova-core = { path = "../idprova-core", version = "0.1.0" }



# CLI

clap.workspace = true



# Serialization

serde.workspace = true

serde_json.workspace = true



# HTTP client (for registry)

reqwest.workspace = true

tokio.workspace = true



# Time

chrono.workspace = true



# Hex encoding

hex.workspace = true

# URL parsing

url.workspace = true



# Config

toml.workspace = true



# Error handling

anyhow.workspace = true



# Logging

tracing.workspace = true

tracing-subscriber.workspace = true