[package]
edition = "2024"
rust-version = "1.96"
name = "tmuxctl"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bidirectional tmux control-mode (tmux -C) client: typed notification stream, command reply correlation, pane-output decoding, and layout-tree parsing."
readme = "README.md"
keywords = [
"tmux",
"control-mode",
"terminal",
"multiplexer",
]
categories = [
"api-bindings",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ace-rs/tmuxctl"
[features]
blocking = []
default = ["blocking"]
smol = ["dep:smol"]
tokio = ["dep:tokio"]
[lib]
name = "tmuxctl"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "transcript"
path = "tests/transcript.rs"
[dependencies.smol]
version = "2"
optional = true
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"io-util",
"process",
"sync",
]
optional = true
[profile.test]
debug = "line-tables-only"