-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.09 KB
/
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
34
35
36
[package]
name = "crusher"
version = "0.4.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-channel = "2.1"
async-trait = "0.1"
bincode = "1"
chrono = { version = "0.4", features = ["serde"] }
config = { version = "0.14", features = ["toml"], default-features = false }
directories = "5.0"
giganto-client = { git = "https://github.com/aicers/giganto-client.git", tag = "0.20.0" }
num_enum = "0.7"
num-traits = "0.2"
quinn = { version = "0.11", features = ["ring"] }
review-protocol = { git = "https://github.com/petabi/review-protocol.git", features = [
"client",
], tag = "0.7.0" }
roxy = { git = "https://github.com/aicers/roxy.git", tag = "0.2.1" }
rustls = { version = "0.23", default-features = false, features = [
"ring",
"std",
] }
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml_edit = "0.22"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
x509-parser = "0.16"