[package]
edition = "2024"
name = "cmdkit"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic command execution runtime for structured command graphs with configurable execution topology."
documentation = "https://docs.rs/cmdkit"
readme = "README.md"
keywords = [
"runtime",
"dispatch",
"string-based",
"deterministic",
"orchestration",
]
categories = [
"asynchronous",
"concurrency",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/JackLanger/CMDkit"
[lib]
name = "cmdkit"
path = "src/lib.rs"
[[bin]]
name = "wrapper_probe"
path = "src/bin/wrapper_probe.rs"
[[test]]
name = "cli_suite"
path = "tests/cli_suite.rs"
[[test]]
name = "clicore_suite"
path = "tests/clicore_suite.rs"
[[test]]
name = "command_suit"
path = "tests/command_suit.rs"
[dependencies.futures-channel]
version = "0.3"
[dev-dependencies.futures-executor]
version = "0.3"