forked from NetGauze/NetGauze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (54 loc) · 1.53 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
[workspace]
members = [
"crates/pcap-reader",
"crates/bgp-pkt",
"crates/bgp-speaker",
"crates/bmp-service",
"crates/bmp-pkt",
"crates/iana",
"crates/ipfix-code-generator",
"crates/flow-pkt",
"crates/flow-service",
"crates/locate",
"crates/parse-utils",
"crates/serde-macros",
"fuzz",
]
resolver = "2"
[workspace.dependencies]
dashmap = "6.0"
log = "0.4"
thiserror = "1.0"
byteorder = { version = "1.5" }
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] }
criterion = { version = "0.5" } # Dev dep for bench
futures = "0.3"
futures-util = "0.3"
futures-core = "0.3"
pin-project = "1.1"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-test = "0.4"
tower = { version = "0.5", features = ["full"] }
tower-service = "0.3"
tower-layer = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
bytes = "1.7"
lazy_static = "1.5"
rand = "0.8"
ipnet = { version = "2.9", features = ["serde"] }
strum = "0.26"
strum_macros = "0.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
nom = { version = "7.1", default-features = false, features = ["alloc"] }
reqwest = { version = "0.12", features = ["blocking"] }
roxmltree = "0.20"
arbitrary = { version = "1", features = ["derive"] }
arbitrary_ext = { version = "0.3" }
async-trait = "0.1"
rstest = "0.22"
pcap-parser = { version = "0.15", features = ["data"] }
clap = { version = "4.5", features = ["derive"] }