forked from paradigmxyz/pyrevm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (21 loc) · 783 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
[package]
name = "pyrevm"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pyrevm"
crate-type = ["cdylib"]
[dependencies]
primitive-types = "0.12"
pyo3 = { version = "0.19", features = ["extension-module"] }
revm = "3"
bytes = "1.5"
foundry-evm = { git = "https://github.com/foundry-rs/foundry" }
hex = "0.4"
eyre = "0.6"
ruint = { version = "1.10", features = ["primitive-types", "pyo3"] }
reqwest = { version = "0.11.20", features = ["rustls"] }
[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm", rev = "6b55b9c0ab264c000e087c2f54f2d8dc24b869aa" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "6b55b9c0ab264c000e087c2f54f2d8dc24b869aa" }