[package]
name = "libshpool"
version = "0.5.0"
edition = "2021"
repository = "https://github.com/shell-pool/shpool"
authors = ["Ethan Pailes <pailes@google.com>"]
description = '''
libshpool contains the implementation of the shpool tool,
which provides a mechanism for establishing lightweight
persistant shell sessions to gracefully handle network
disconnects.
'''
license = "Apache-2.0"
keywords = ["tmux", "tty", "terminal", "shell", "persistence"]
[features]
test_hooks = []
[dependencies]
clap = { version = "4", features = ["derive"] }
anyhow = "1"
chrono = "0.4"
serde = "1"
serde_derive = "1"
toml = "0.7"
byteorder = "1"
signal-hook = "0.3"
nix = { version = "0.26", features = ["poll", "ioctl"] }
shpool_pty = "0.3.0"
lazy_static = "1"
crossbeam-channel = "0.5"
libc = "0.2"
log = "0.4"
tracing = "0.1"
bincode = "1"
shpool_vt100 = "0.1.2"
shell-words = "1"
[dependencies.tracing-subscriber]
version = "0.3"
default-features = false
features = ["std", "fmt", "tracing-log", "smallvec"]
[dev-dependencies]
ntest = "0.9"