[package]
edition = "2021"
rust-version = "1.84"
name = "agent-float-term"
version = "0.2.2"
build = false
exclude = [
".codegraph/",
".github/",
"target/",
"dist/",
"**/__pycache__/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Harness Floating Terminal: a persistent F7 shell for unwrapped AI CLIs"
homepage = "https://github.com/vuongvm812/agent-float-term"
readme = "README.md"
keywords = [
"terminal",
"tmux",
"cli",
"shell",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/vuongvm812/agent-float-term"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[lib]
name = "agent_float_term"
path = "src/lib.rs"
[[bin]]
name = "agent-float-term"
path = "src/main.rs"
[[test]]
name = "install_binary"
path = "tests/install_binary.rs"
[[test]]
name = "tmux_client"
path = "tests/tmux_client.rs"
[dependencies.anyhow]
version = "=1.0.95"
[dependencies.clap]
version = "=4.5.23"
features = ["derive"]
[dependencies.libc]
version = "=0.2.169"
[dependencies.serde]
version = "=1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "=1.0.135"
[dependencies.sha2]
version = "=0.10.8"
[dev-dependencies.tempfile]
version = "=3.15.0"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"