[package]
edition = "2024"
rust-version = "1.93"
name = "jacs-cli"
version = "0.9.14"
authors = ["HAI.AI <engineering@hai.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JACS CLI: command-line interface for JSON AI Communication Standard"
homepage = "https://humanassisted.github.io/JACS"
readme = "README.md"
keywords = [
"cryptography",
"json",
"ai",
"data",
"ml-ops",
]
categories = [
"cryptography",
"text-processing",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/HumanAssisted/JACS"
[package.metadata.cargo-install]
bin = ["jacs"]
[features]
attestation = ["jacs/attestation"]
default = [
"mcp",
"attestation",
"keychain",
]
keychain = ["jacs/keychain"]
mcp = ["dep:jacs-mcp"]
[lib]
name = "jacs_cli"
path = "src/main.rs"
[[bin]]
name = "jacs"
path = "src/main.rs"
[[test]]
name = "a2a_trust"
path = "tests/a2a_trust.rs"
[[test]]
name = "cli_command_snapshot"
path = "tests/cli_command_snapshot.rs"
[[test]]
name = "cli_convert_tests"
path = "tests/cli_convert_tests.rs"
[dependencies.clap]
version = "4.5.4"
features = [
"derive",
"cargo",
]
[dependencies.dirs]
version = "5.0"
[dependencies.jacs]
version = "0.9.14"
[dependencies.jacs-mcp]
version = "0.9.14"
features = [
"mcp",
"full-tools",
]
optional = true
[dependencies.reqwest]
version = "0.13.2"
features = [
"blocking",
"json",
"rustls",
]
default-features = false
[dependencies.rpassword]
version = "7.3.1"
[dependencies.serde_json]
version = "1.0"
[dependencies.tiny_http]
version = "0.12"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.clap]
version = "4.5.4"
features = [
"derive",
"cargo",
]
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.serial_test]
version = "3.2.0"
[dev-dependencies.tempfile]
version = "3"