tmuxctl 0.1.0

A bidirectional tmux control-mode (tmux -C) client: typed notification stream, command reply correlation, pane-output decoding, and layout-tree parsing.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"