[package]
name = "datum-cli"
version = "0.10.3"
edition = "2024"
rust-version = "1.88"
description = "Command-line interface for the Datum Control Protocol"
license = "Apache-2.0"
repository = "https://github.com/Aethergrids/Datum"
homepage = "https://github.com/Aethergrids/Datum"
documentation = "https://docs.rs/datum-cli"
readme = "README.md"
keywords = ["streaming", "ops", "cli", "agent", "lifecycle"]
categories = ["command-line-utilities", "asynchronous"]
[[bin]]
name = "datum"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
datum-agent = { path = "../datum-agent", version = "0.10.3" }
datum-core = { path = "../datum-core", version = "0.10.3" }
datum-net = { path = "../datum-net", version = "0.10.3" }
rustls-pemfile = "2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time"] }
[dev-dependencies]
datum-cluster = { path = "../datum-cluster", version = "0.10.3" }
prost = "0.14.4"
tokio = { version = "1.48.0", features = ["io-util", "macros", "process", "rt-multi-thread", "time"] }