-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (26 loc) · 1.02 KB
/
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
[package]
name = "rollups"
version = "0.1.0"
edition = "2021"
[dependencies]
alloy = { git = "https://github.com/alloy-rs/alloy", version = "0.1.0", features = ["rpc", "provider-ws"] }
alloy-contract = { git = "https://github.com/alloy-rs/alloy", version = "0.1.0" }
alloy-network = { git = "https://github.com/alloy-rs/alloy", version = "0.1.0" }
alloy-provider = { git = "https://github.com/alloy-rs/alloy", version = "0.1.0", features = ["ws"] }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", version = "0.1.0" }
alloy-core = { version = "0.7.5", default-features = false }
alloy-primitives = { version = "0.7.5", default-features = false }
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1.15"
futures = "0.3.30"
## misc
eyre = "0.6.12"
serde = "1.0.202"
serde_derive = "1.0.202"
ratatui = { version = "0.26.3", features = ["crossterm"] }
clap = { version = "4.5.6", features = ["derive"] }
serde_json = "1.0.117"
chrono = "0.4.38"
itertools = "0.10.5"
unicode-width = "0.1.13"
crossterm = "0.27.0"