[package]
name = "shell-compose"
version = "0.2.2"
readme = "README.md"
description = "Lightweight background process runner for long-running or scheduled jobs"
categories = ["command-line-utilities"]
keywords = ["shell", "command", "parallel", "job", "runner"]
authors = ["Pirmin Kalberer <pirmin.kalberer@gmail.com>"]
homepage = "https://pka.github.io/shell-compose/"
repository = "https://github.com/pka/shell-compose"
license = "MIT"
edition = "2021"
default-run = "shell-compose"
[dependencies]
anstyle-query = "1.1.1"
bincode = "1.3.3"
byteorder = "1.5.0"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
comfy-table = { version = "7.1.1", default-features = false }
cron = "0.12.1"
env_logger = { version = "0.11.5", default-features = false, features = ["humantime", "auto-color", "color"] }
interprocess = "2.2.1"
job_scheduler_ng = "2.0.5"
log = "0.4.22"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
sysinfo = { version = "0.32.0", default-features = false, features = ["system", "user"] }
thiserror = "1.0.63"
[[bin]]
path = "src/bin/shell_compose.rs"
name = "shell-compose"
[[bin]]
path = "src/bin/shell_composed.rs"
name = "shell-composed"
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.dist]
cargo-dist-version = "0.22.1"
ci = "github"
installers = ["shell", "powershell"]
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
install-path = "CARGO_HOME"
install-updater = true
[workspace.metadata.dist.dependencies.apt]
gcc-aarch64-linux-gnu = { targets = ["aarch64-unknown-linux-gnu", "aarch64-unknown-linux-musl"] }