[package]
edition = "2024"
name = "muster-cli"
version = "0.5.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal session group management CLI"
homepage = "https://github.com/scott2b/muster"
documentation = "https://docs.rs/muster-cli"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/scott2b/muster"
resolver = "2"
[lib]
name = "muster_cli"
path = "src/cli.rs"
[[bin]]
name = "muster"
path = "src/main.rs"
[[example]]
name = "gen_cli_docs"
path = "examples/gen_cli_docs.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dirs]
version = "6"
[dependencies.muster]
version = "0.5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"process",
"io-util",
"sync",
"rt-multi-thread",
"macros",
"time",
"signal",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.which]
version = "7"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.clap-markdown]
version = "0.1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"