[package]
edition = "2021"
rust-version = "1.86"
name = "acdp-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line client (`acdp` binary) for the Agent Context Distribution Protocol (ACDP)"
homepage = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
documentation = "https://docs.rs/acdp-cli"
readme = "README.md"
keywords = [
"acdp",
"cli",
"agent",
"context",
"did",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentcontextdistributionprotocol/acdp-rs"
[[bin]]
name = "acdp"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.acdp]
version = "0.4.0"
features = ["client"]
default-features = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.serde_json]
version = "1"
features = [
"preserve_order",
"float_roundtrip",
]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
default-features = false
[dependencies.url]
version = "2"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"