forked from rust-ethereum/evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (41 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace.package]
license = "Apache-2.0"
authors = ["rust-evm Developers <contact-rust-evm@pacna.org>"]
repository = "https://github.com/rust-ethereum/evm"
keywords = ["no_std", "ethereum", "evm"]
[package]
name = "evm"
version = "1.0.0-dev"
edition = "2021"
license = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
keywords = { workspace = true }
description = "Ethereum Virtual Machine"
[dependencies]
primitive-types = { version = "0.12", default-features = false, features = ["rlp"] }
sha3 = { version = "0.10", default-features = false }
evm-interpreter = { version = "1.0.0-dev", path = "interpreter", default-features = false }
[features]
default = ["std"]
std = [
"primitive-types/std",
"sha3/std",
"evm-interpreter/std",
]
with-codec = [
"primitive-types/codec",
"primitive-types/scale-info",
"evm-interpreter/with-codec",
]
with-serde = [
"primitive-types/impl-serde",
"evm-interpreter/with-serde",
]
[workspace]
members = [
"interpreter",
"jsontests",
"precompile",
"tracer",
]