pend 0.1.0

do now, wait later – tiny job runner
[[bin]]
name = "pend"
path = "src/main.rs"

[dependencies.anstyle]
version = "1.0"

[dependencies.chrono]
features = ["serde", "alloc"]
version = "0.4"

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

[dependencies.crossterm]
version = "0.29"

[dependencies.fs2]
version = "0.4"

[dependencies.notify]
version = "8.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.wait-timeout]
version = "0.2"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.0"

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

[package]
authors = ["Steve Mostovoy <stevemostovoysm@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools::build-utils", "concurrency"]
description = "do now, wait later – tiny job runner"
documentation = "https://docs.rs/pend"
edition = "2021"
homepage = "https://github.com/Stovoy/pend"
keywords = ["job-runner", "cli", "shell", "parallel", "concurrency"]
license = "MIT"
name = "pend"
readme = "README.md"
repository = "https://github.com/Stovoy/pend"
version = "0.1.0"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_Foundation", "Win32_System_Threading"]
version = "0.59"

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

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

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

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

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

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

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

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

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