forked from rust-ethereum/ethereum
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
32 lines (28 loc) · 881 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
25
26
27
28
29
30
31
32
[package]
name = "ethereum"
version = "0.2.0"
license = "Apache-2.0"
authors = ["Wei Tang <hi@that.world>"]
description = "Core block and transaction types for Ethereum."
repository = "https://source.that.world/source/ethereum-rs"
keywords = ["no_std", "ethereum"]
edition = "2018"
[dependencies]
ethereum-types = { version = "0.9", default-features = false, features = ["codec"] }
rlp = { version = "0.4", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"], optional = true }
rlp-derive = "0.1"
sha3 = { version = "0.8", default-features = false }
[dev-dependencies]
rand = "0.7"
hex-literal = "0.2"
[features]
default = ["std", "codec"]
std = ["ethereum-types/std", "rlp/std", "codec/std", "sha3/std"]
[workspace]
members = [
"./trie",
"./trie/rocksdb",
"./trie/memory",
"./bloom",
]