[package]
edition = "2024"
rust-version = "1.85"
name = "shpool"
version = "0.9.5"
authors = ["Ethan Pailes <pailes@google.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
shpool is a mechanism for establishing lightweight persistant shell
sessions to gracefully handle network disconnects.
"""
readme = "README.md"
keywords = [
"tmux",
"tty",
"terminal",
"shell",
"persistence",
]
license = "Apache-2.0"
repository = "https://github.com/shell-pool/shpool"
resolver = "2"
[features]
test_hooks = ["libshpool/test_hooks"]
[[bin]]
name = "shpool"
path = "src/main.rs"
[[test]]
name = "attach"
path = "tests/attach.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "detach"
path = "tests/detach.rs"
[[test]]
name = "kill"
path = "tests/kill.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "vterm"
path = "tests/vterm.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.libshpool]
version = "0.9.5"
[dependencies.nix]
version = "0.31"
features = [
"poll",
"ioctl",
"process",
"signal",
"fs",
]
[dev-dependencies.crossbeam-channel]
version = "0.5"
[dev-dependencies.lazy_static]
version = "1"
[dev-dependencies.ntest]
version = "0.9"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"