gritty-cli 0.5.0

Persistent TTY sessions over Unix domain sockets
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "gritty-cli"
version = "0.5.0"
build = false
exclude = [
    ".github/",
    "CLAUDE.md",
    "justfile",
    "quicktest.tmux",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent TTY sessions over Unix domain sockets"
homepage = "https://github.com/chipturner/gritty"
readme = "README.md"
keywords = [
    "terminal",
    "tty",
    "ssh",
    "session",
    "persistent",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/chipturner/gritty"

[lib]
name = "gritty"
path = "src/lib.rs"

[[bin]]
name = "gritty"
path = "src/main.rs"

[[test]]
name = "daemon_test"
path = "tests/daemon_test.rs"

[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"

[[test]]
name = "protocol_test"
path = "tests/protocol_test.rs"

[dependencies.anyhow]
version = "1"

[dependencies.bytes]
version = "1"

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

[dependencies.futures-util]
version = "0.3"
features = ["sink"]

[dependencies.libc]
version = "0.2"

[dependencies.nix]
version = "0.31"
features = [
    "term",
    "process",
    "signal",
    "fs",
]

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tokio-util]
version = "0.7"
features = ["codec"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

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