This allows spawned children processes to be killed when a user performs a Ctrl-C operation. Before this change, children processes would end up continuing in the background with the user unaware.
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "blue-build-utils"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
atty = "0.2"
|
|
base64 = "0.22.1"
|
|
blake2 = "0.10.6"
|
|
ctrlc = { version = "3.4.4", features = ["termination"] }
|
|
directories = "5"
|
|
rand = "0.8.5"
|
|
log4rs = { version = "1.3.0", features = ["background_rotation"] }
|
|
nix = { version = "0.29.0", features = ["signal"] }
|
|
nu-ansi-term = { version = "0.50.0", features = ["gnu_legacy"] }
|
|
os_pipe = { version = "1", features = ["io_safety"] }
|
|
process_control = { version = "4", features = ["crossbeam-channel"] }
|
|
syntect = "5"
|
|
which = "6"
|
|
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
clap = { workspace = true, features = ["derive"] }
|
|
colored.workspace = true
|
|
format_serde_error.workspace = true
|
|
indicatif.workspace = true
|
|
indicatif-log-bridge.workspace = true
|
|
log.workspace = true
|
|
once_cell.workspace = true
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|
|
serde_json.workspace = true
|
|
typed-builder.workspace = true
|
|
|
|
[build-dependencies]
|
|
syntect = "5.2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|