[package]
edition = "2021"
name = "distributed_cli"
version = "4.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The `distributed` CLI for Distributed applications: contracts check/accept, scaffold projects, describe manifests, compile clients, and render schema artifacts. Also a library so other CLIs (e.g. hops) can mount its commands."
readme = "README.md"
license = "MIT"
repository = "https://github.com/patrickleet/distributed"
[lib]
name = "distributed_cli"
path = "src/lib.rs"
[[bin]]
name = "distributed"
path = "src/main.rs"
[[test]]
name = "cli_client"
path = "tests/cli_client.rs"
[[test]]
name = "cli_manifest"
path = "tests/cli_manifest.rs"
[[test]]
name = "cli_scaffold"
path = "tests/cli_scaffold.rs"
[[test]]
name = "cli_scaffold_compile"
path = "tests/cli_scaffold_compile.rs"
[[test]]
name = "cli_skills_init"
path = "tests/cli_skills_init.rs"
[dependencies.async-graphql-parser]
version = "7"
[dependencies.async-graphql-value]
version = "7"
[dependencies.base64]
version = "0.22.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"