-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
48 lines (43 loc) · 1.65 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "evmodin"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Fast EVM implementation with support for resumability."
[dependencies]
arrayvec = { version = "0.7", default-features = false, features = ["serde"] }
bytes = { version = "1", default-features = false, features = ["serde"] }
derive_more = "0.99"
educe = { version = "0.4", default-features = false, features = ["Debug"] }
enum-as-inner = "0.3"
evmc-declare = { git = "https://github.com/ethereum/evmc", tag = "v10.0.0-alpha.1", optional = true }
evmc-vm = { git = "https://github.com/ethereum/evmc", tag = "v10.0.0-alpha.1", optional = true }
i256 = { git = "https://github.com/vorot93/rust-i256" }
ethereum-types = { version = "0.12", default-features = false }
genawaiter = { git = "https://github.com/cuviper/genawaiter", branch = "unhacked" }
getset = "0.1"
hex = "0.4"
hex-literal = { version = "0.3", optional = true }
num-traits = { version = "0.2", default-features = false }
once_cell = "1"
parking_lot = { version = "0.11", optional = true }
primitive-types = { version = "0.10", default-features = false, features = [
"serde",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha3 = "0.10"
strum_macros = "0.23"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.3", features = ["js"] }
[dev-dependencies]
evmodin-test = { path = ".", package = "evmodin", features = ["util"] }
hex-literal = "0.3"
rand = { version = "0.8", features = ["std"] }
[features]
evmc = ["evmc-declare", "evmc-vm"]
util = ["hex-literal", "parking_lot"]
[lib]
name = "evmodin"
path = "src/lib.rs"
crate-type = ["lib", "staticlib", "cdylib"]