forked from One-Block-Org/FlashStat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 900 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
32
[workspace]
resolver = "2"
members = [
"bin/flashstat",
"bin/flashstat-server",
"bin/flashstat-tui",
"bin/flashstat-simulate",
"bin/flashstat-watchtower-test",
"crates/flashstat-core",
"crates/flashstat-api",
"crates/flashstat-db",
"crates/flashstat-common",
]
[workspace.dependencies]
tokio = { version = "1", features = ["full", "signal"] }
ethers = { version = "2.0", features = ["ws", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
eyre = "0.6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
chrono = { version = "0.4", features = ["serde"] }
redb = "2.1"
hex = "0.4"
async-trait = "0.1"
config = "0.13"
toml = "0.7"
futures-util = "0.3"
jsonrpsee = { version = "0.20", features = ["server", "client", "macros"] }
ratatui = "0.26"
crossterm = { version = "0.27", features = ["event-stream"] }