-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (43 loc) · 1.37 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "proccie"
version = "0.1.0"
edition = "2024"
rust-version = "1.98"
description = "Process manager that runs and supervises multiple processes with dependency ordering, readiness checks, and graceful shutdown"
license = "MIT"
repository = "https://github.com/KieranP/proccie"
default-run = "proccie"
[[bin]]
name = "proccie"
path = "src/main.rs"
[lib]
name = "proccie"
path = "src/lib.rs"
[dependencies]
anstream = "1"
anstyle = "1"
clap = { version = "4", features = ["derive"] }
dotenvy = "0.15"
humantime = "2"
nix = { version = "0.31", features = ["signal", "process"] }
ratatui = { version = "0.30.2", features = ["unstable-rendered-line-info"] }
# HTTP readiness probing; rustls avoids a system OpenSSL dependency. The
# `rustls` feature builds aws-lc-rs, so CMake and a C compiler are needed.
reqwest = { version = "0.13", default-features = false, features = ["rustls"] }
serde = { version = "1", features = ["derive"] }
terminal-colorsaurus = "1.0.3"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "process", "signal", "time", "io-util", "sync"] }
tokio-util = "0.7"
toml = "1"
[dev-dependencies]
anstyle = "1"
tempfile = "3"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
# Too aggressive for our getters / terse docs.
must_use_candidate = "allow"
missing_errors_doc = "allow"
[profile.release]
strip = true
lto = true