[package]
edition = "2021"
rust-version = "1.82"
name = "flow-tmux"
version = "0.1.2"
authors = ["Arya <universitybuddyai@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tmux session management for the Flow workspace manager"
readme = "README.md"
keywords = [
"tmux",
"terminal",
"session",
"ai-agent",
"multiplexer",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/aryayt/flow"
[lib]
name = "flow_tmux"
path = "src/lib.rs"
[dependencies.agentflow-core]
version = "0.1.2"
[dependencies.thiserror]
version = "2"
[dependencies.tmux_interface]
version = "0.3"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"