cordis-cli 0.0.18

Command line runner (daemon/worker) for the cordis-rs plugin framework
Documentation
[package]
name = "cordis-cli"
version = "0.0.18"
description = "Command line runner (daemon/worker) for the cordis-rs plugin framework"
keywords = ["cordis", "cli", "runner", "daemon", "loader"]
categories = ["command-line-utilities"]
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"

[[bin]]
name = "cordis"
path = "src/main.rs"
# The bin shares its rustdoc output path (`doc/cordis/`) with the
# `cordis` lib of cordis-rs; cargo documents both in parallel and they
# clobber each other (rust-lang/cargo#6313). The CLI has no rustdoc
# content of its own, so keep it out of `cargo doc` entirely.
doc = false

[dependencies]
cordis-loader = { workspace = true, features = ["watch", "dynamic"] }
cordis-rs.workspace = true
ctrlc = { version = "3", features = ["termination"] }
notify = "8"

[target.'cfg(unix)'.dev-dependencies]
libc = "0.2"