-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.06 KB
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
[package]
name = "the-beaconator"
version = "0.1.0"
edition = "2024"
[dependencies]
rocket = { version = "0.5.1", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
alloy = { version = "1.5", features = ["full", "node-bindings"] }
dotenvy = "0.15.7"
sentry = { version = "0.32", features = ["anyhow", "tracing"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
hex = "0.4"
# OpenAPI documentation
rocket_okapi = "0.9.0"
schemars = { version = "0.8", features = ["preserve_order"] }
# Multi-wallet management with Redis
redis = { version = "0.27", features = ["tokio-comp", "connection-manager", "aio"] }
hostname = "0.4"
# UUID for instance identification
uuid = { version = "1.0", features = ["v4"] }
[dev-dependencies]
rocket = { version = "0.5.1", features = ["json"] }
serde_json = "1.0"
serial_test = "3.0"
# Testing utilities
tempfile = "3.8"
once_cell = "1.19"