-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
69 lines (64 loc) · 1.63 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "giganto"
version = "0.24.0"
edition = "2021"
[lib]
name = "giganto_proc_macro"
proc-macro = true
[[bin]]
name = "giganto"
[dependencies]
anyhow = "1"
async-graphql = { version = "7", features = ["chrono", "string_number"] }
async-graphql-warp = "7"
base64 = "0.22"
bincode = "1"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
config = { version = "0.15", features = ["toml"], default-features = false }
ctrlc = { version = "3", features = ["termination"] }
data-encoding = "2"
deluxe = "0.5"
futures-util = "0.3"
giganto-client = { git = "https://github.com/aicers/giganto-client.git", tag = "0.22.0" }
graphql_client = "0.14"
humantime = "2"
humantime-serde = "1"
libc = "0.2"
nix = { version = "0.29", features = ["user"] }
num_enum = "0.7"
num-traits = "0.2"
pcap = "2"
proc-macro2 = "1"
quinn = { version = "0.11", features = ["ring"] }
quote = "1"
reqwest = { version = "0.12", features = ["rustls-tls", "json"] }
rocksdb = "0.23"
roxy = { git = "https://github.com/aicers/roxy.git", tag = "0.3.0" }
rustls = { version = "0.23", default-features = false, features = [
"ring",
"std",
] }
rustls-pemfile = "2"
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
syn = "2"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
toml = "0.8"
toml_edit = "0.22"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
warp = { version = "0.3", features = ["tls"] }
x509-parser = "0.17"
[dev-dependencies]
mockito = "1"
regex = "1"
serial_test = "3"
tempfile = "3"
url = "2"
[features]
default = ["benchmark"]
benchmark = []