cmdq 0.1.3

A PTY-hosted command queue: type the next command while one is still running.
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.88"
name = "cmdq"
version = "0.1.3"
authors = ["Parth Jadhav"]
build = false
exclude = [
    "/.github",
    "/docs",
    "/target",
    "/tests/snapshots",
    "*.html",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A PTY-hosted command queue: type the next command while one is still running."
homepage = "https://github.com/ParthJadhav/cmdq"
documentation = "https://docs.rs/cmdq"
readme = "README.md"
keywords = [
    "terminal",
    "tui",
    "pty",
    "shell",
    "queue",
]
categories = [
    "command-line-utilities",
    "command-line-interface",
]
license = "MIT"
repository = "https://github.com/ParthJadhav/cmdq"

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

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

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

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

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

[dependencies.anyhow]
version = "1"

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

[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]

[dependencies.dirs]
version = "6"

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

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

[dependencies.portable-pty]
version = "0.9"

[dependencies.ratatui]
version = "0.30"
features = ["crossterm"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.signal-hook]
version = "0.4"

[dependencies.thiserror]
version = "2"

[dependencies.vt100]
version = "0.16"

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

[profile.dist]
lto = "thin"
inherits = "release"

[profile.release]
lto = "thin"
codegen-units = 1
strip = true