-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 805 Bytes
/
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
[package]
name = "garbage-collector-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alloy = { version = "0.1.4", features = ["full"] }
alloy-json-rpc = "0.1.4"
chrono = "0.4.38"
colored = "2.1.0"
dialoguer = "0.11.0"
eyre = "0.6.12"
fern = { version = "0.6.2", features = ["colored"] }
log = "0.4.22"
itertools = "0.13.0"
rand = "0.8.5"
reqwest = "0.12.5"
serde = "1.0.204"
serde_json = "1.0.120"
tokio = { version = "1.38.0", features = ["full"] }
tokio-macros = "2.3.0"
toml = "0.8.19"
dotenv = "0.15.0"
thiserror = "1.0.64"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "garbage_collector"
harness = false