[package]
edition = "2024"
name = "muster"
version = "0.5.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal session group management library built on tmux"
homepage = "https://github.com/scott2b/muster"
documentation = "https://docs.rs/muster"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/scott2b/muster"
resolver = "2"
[lib]
name = "muster"
path = "src/lib.rs"
[dependencies.dirs]
version = "6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"process",
"io-util",
"sync",
"rt-multi-thread",
"macros",
"time",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.which]
version = "7"
[dev-dependencies.insta]
version = "1"
features = ["json"]
[dev-dependencies.rstest]
version = "0.25"
[dev-dependencies.tokio-test]
version = "0.4"
[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"