shpool 0.9.1

shpool is a mechanism for establishing lightweight persistant shell sessions to gracefully handle network disconnects.
[[bin]]
name = "shpool"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.libshpool]
version = "0.9.1"

[dependencies.nix]
features = ["poll", "ioctl", "process", "signal", "fs"]
version = "0.29"

[dev-dependencies.crossbeam-channel]
version = "0.5"

[dev-dependencies.lazy_static]
version = "1"

[dev-dependencies.ntest]
version = "0.9"

[dev-dependencies.regex]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[package]
authors = ["Ethan Pailes <pailes@google.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = """
shpool is a mechanism for establishing lightweight persistant shell
sessions to gracefully handle network disconnects.
"""
edition = "2021"
keywords = ["tmux", "tty", "terminal", "shell", "persistence"]
license = "Apache-2.0"
name = "shpool"
readme = "README.md"
repository = "https://github.com/shell-pool/shpool"
rust-version = "1.74"
version = "0.9.1"

[[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"