[package]
edition = "2024"
rust-version = "1.85"
name = "cordis-cli"
version = "0.0.14"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line runner (daemon/worker) for the cordis-rs plugin framework"
readme = "README.md"
keywords = [
"cordis",
"cli",
"runner",
"daemon",
"loader",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/dshbox/cordis-rs"
[lib]
name = "cordis_cli"
path = "src/lib.rs"
[[bin]]
name = "cordis"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "daemon_shutdown"
path = "tests/daemon_shutdown.rs"
[[test]]
name = "hmr"
path = "tests/hmr.rs"
[dependencies.cordis-loader]
version = "0.0.15"
features = [
"watch",
"dynamic",
]
[dependencies.cordis-rs]
version = "0.5.1"
[dependencies.ctrlc]
version = "3"
features = ["termination"]
[dependencies.notify]
version = "8"
[target."cfg(unix)".dev-dependencies.libc]
version = "0.2"