[package]
edition = "2024"
rust-version = "1.88"
name = "turtletap-cli"
version = "0.3.0"
authors = ["Bryan Matteson <7145232+bryanmatteson@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The TurtleTap terminal shell — persistent, reconnectable command sessions"
homepage = "https://github.com/bryanmatteson/turtletap"
readme = "README.md"
keywords = [
"terminal",
"tui",
"shell",
"session",
"multiplexer",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/bryanmatteson/turtletap"
[[bin]]
name = "turtletap"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "resident"
path = "tests/resident.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.clap_mangen]
version = "0.3.0"
[dependencies.kdl]
version = "6.7.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.shell-words]
version = "1.1"
[dependencies.tokio]
version = "1"
features = [
"net",
"process",
"rt",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "1.1"
[dependencies.toml_edit]
version = "0.24"
[dependencies.turtletap]
version = "0.3.0"
features = ["tokio"]
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"