[package]
edition = "2024"
rust-version = "1.95.0"
name = "tmux-lib"
version = "0.5.0"
build = false
exclude = [
"/.github",
"/.travis.yml",
"/appveyor.yml",
"/ci",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tmux helper functions."
homepage = "https://github.com/graelo/tmux-lib"
documentation = "https://docs.rs/tmux-lib"
readme = "README.md"
keywords = [
"tmux",
"tmux-plugin",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/graelo/tmux-lib"
[lib]
name = "tmux_lib"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.nom]
version = "8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.smol]
version = "2"
[dependencies.thiserror]
version = "2"