-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 754 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 754 Bytes
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
[workspace]
members = [
"apps/relay",
"apps/sink",
"apps/source",
"crates/logging",
"crates/packet-wire",
"crates/packet-stats",
"xtask",
]
default-members = ["apps/relay"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
anyhow = "1"
confique = "0.4"
dotenvy = "0.15"
logging = { path = "crates/logging" }
packet-wire = { path = "crates/packet-wire" }
packet-stats = { path = "crates/packet-stats" }
serde = { version = "1", features = ["derive"] }
strum = { version = "0.28", features = ["derive"] }
tokio = { version = "1.52.1", features = ["macros", "net", "rt-multi-thread", "signal", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }