-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 899 Bytes
/
Cargo.toml
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
[package]
edition = "2021"
name = "tng"
version = "1.0.2"
[dependencies]
anyhow = "1.0.81"
clap = {version = "4.5.4", features = ["derive"]}
ctrlc = {version = "3.4.4", features = ["termination"]}
env_logger = {version = "0.11.2", features = ["auto-color", "humantime", "regex"]}
itertools = "0.13.0"
log = "0.4.20"
nix = {version = "0.29.0", features = ["process", "signal"]}
rand = "0.8.5"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0.89"
serde_with = {version = "3.11.0", features = ["json"]}
shadow-rs = "=0.20.1"
tempfile = "3.10.1"
which = "6.0.3"
[build-dependencies]
shadow-rs = "=0.20.1"
[dev-dependencies]
again = "0.1.2"
async-http-proxy = {version = "1.2.5", features = ["runtime-tokio"]}
axum = "0.7.7"
futures = "0.3.31"
http = "1.1.0"
reqwest = {version = "0.12.9", features = ["json"]}
tokio = {version = "1.41.1", features = ["full"]}
tokio-util = "0.7.12"