-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "psctl"
version = "0.8.4"
edition = "2021"
description = "Process Control is an operator for related processes. It runs processes as an interdependent graph."
repository = "https://github.com/bww/psctl"
readme = "README.md"
license = "MIT"
[dependencies]
clap = { version = "3.1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11" }
futures = { version = "0.3.26" }
url = { version = "2.3.1" }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
humantime = "2.1.0"
humantime-serde = "1.1.1"
colored = "3.0.0"
nix = "0.26.2"
ctrlc = "3.4"
parse_duration = "2.1.1"
[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin21.4-clang"
ar = "x86_64-apple-darwin21.4-ar"