parity-common/ethereum-types/Cargo.toml

26 lines
887 B
TOML
Raw Normal View History

2017-10-24 01:09:44 -07:00
[package]
name = "ethereum-types"
2018-01-31 12:48:47 -08:00
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
2017-12-29 08:25:06 -08:00
license = "MIT"
homepage = "https://github.com/paritytech/primitives"
description = "Ethereum types"
2018-01-31 13:08:38 -08:00
build = "build.rs"
2017-10-24 01:09:44 -07:00
[build-dependencies]
rustc_version = "0.2"
2017-10-24 01:09:44 -07:00
[dependencies]
uint = { path = "../uint", version = "0.1" }
fixed-hash = { path = "../fixed-hash", version = "0.1.1" }
2018-01-24 01:54:40 -08:00
ethbloom = { path = "../ethbloom", version = "0.4" }
2017-10-24 01:09:44 -07:00
crunchy = "0.1.5"
2018-01-24 01:54:40 -08:00
ethereum-types-serialize = { version = "0.2", path = "../serialize", optional = true }
serde = { version = "1.0", optional = true }
2017-10-24 01:09:44 -07:00
[features]
default = ["std", "heapsizeof", "serialize"]
2018-01-05 08:42:29 -08:00
std = ["uint/std", "fixed-hash/std", "ethbloom/std"]
heapsizeof = ["uint/heapsizeof", "fixed-hash/heapsizeof", "ethbloom/heapsizeof"]
serialize = ["std", "ethereum-types-serialize", "serde", "ethbloom/serialize"]
2018-01-31 12:48:47 -08:00
use_asm = ["uint/use_asm"]