-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
49 lines (46 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 = "roxy"
version = "0.6.0"
edition = "2024"
[dependencies]
anyhow = "1"
async-trait = "0.1"
bincode = "1.3"
clap = { version = "4", features = ["derive"] }
config = "0.15"
data-encoding = "2"
gethostname = "1.0"
hostname = { version = "0.4", features = ["set"] }
ipnet = "2.11"
nix = { version = "0.31", features = ["reboot", "fs"] }
pnet = { version = "0.35", features = ["pnet_datalink", "std"] }
quinn = { version = "0.11", default-features = false }
regex = "1.11"
review-protocol = { git = "https://github.com/petabi/review-protocol.git", tag = "0.18.1", features = [
"client",
] }
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
serde_json = "1"
serde_with = "3"
serde_yaml = "0.9"
sysinfo = "0.38"
systemctl = "0.5"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "time"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
uptime_lib = "0.3"
[dev-dependencies]
quinn = { version = "0.11", features = ["ring", "runtime-tokio"] }
rcgen = "0.14"
review-protocol = { git = "https://github.com/petabi/review-protocol.git", tag = "0.18.1", features = [
"server",
] }
rustls = { version = "0.23", features = ["ring"] }
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt"] }
[lints.clippy]
pedantic = "warn"
unwrap_used = "warn"