[package]
edition = "2021"
name = "metactl"
version = "0.1.17"
authors = ["metactl contributors"]
build = false
exclude = [".metactl/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "metactl v2 reference kernel and JSON-RPC service"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/pylit-ai/metactl"
[lib]
name = "metactl"
path = "src/lib.rs"
[[bin]]
name = "metactl"
path = "src/main.rs"
[[test]]
name = "cli_workflow"
path = "tests/cli_workflow.rs"
[[test]]
name = "jsonrpc_errors"
path = "tests/jsonrpc_errors.rs"
[[test]]
name = "jsonrpc_golden"
path = "tests/jsonrpc_golden.rs"
[[test]]
name = "mcp"
path = "tests/mcp.rs"
[[test]]
name = "release_readiness"
path = "tests/release_readiness.rs"
[[test]]
name = "spec_019_regressions"
path = "tests/spec_019_regressions.rs"
[[test]]
name = "trust_blindspots"
path = "tests/trust_blindspots.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.hex]
version = "0.4"
[dependencies.include_dir]
version = "0.7.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.pretty_assertions]
version = "1"