helios/Cargo.toml

22 lines
577 B
TOML
Raw Normal View History

[package]
name = "lightclient"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
eyre = "0.6.8"
serde = { version = "1.0.143", features = ["derive"] }
2022-08-12 15:32:16 +00:00
hex = "0.4.3"
2022-08-12 16:38:40 +00:00
ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs" }
2022-08-13 20:24:04 +00:00
blst = "0.3.10"
2022-08-19 00:33:44 +00:00
ethers = "0.17.0"
jsonrpsee = { version = "0.15.1", features = ["full"] }
2022-08-24 01:33:48 +00:00
revm = "1.9.0"
bytes = "1.2.1"
futures = "0.3.23"
2022-08-27 00:05:12 +00:00
toml = "0.5.9"