-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 811 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (30 loc) · 811 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
30
31
[package]
name = "squid"
version = "0.8.1"
edition = "2024"
rust-version = "1.88"
license = "AGPL-3.0-or-later"
[dependencies]
anyhow = "1.0.99"
bincode = { version = "2.0.1", features = ["serde"] }
chrono = { version = "0.4.41", default-features = false, features = [
"clock",
"std",
] }
clap = { version = "4.5.47", features = ["derive"] }
crossterm = "0.29.0"
csv = "1.3.1"
log = "0.4.27"
num_enum = "0.7.4"
rand = "0.9.2"
rand_distr = "0.5.1"
ratatui = { version = "0.29.0", features = ["unstable-widget-ref"] }
rmp-serde = "1.3.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
toml = "0.9.5"
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
tui-logger = { version = "0.17.3", features = ["crossterm", "tracing-support"] }
unicode-segmentation = "1.12.0"
zmq = "0.10.0"