parity-common/ethereum-types/Cargo.toml

28 lines
1.0 KiB
TOML
Raw Normal View History

2017-10-24 01:09:44 -07:00
[package]
name = "ethereum-types"
version = "0.3.3"
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]
crunchy = "0.1.5"
ethbloom = { path = "../ethbloom", version = "0.5.0", default-features = false }
2018-02-04 03:53:35 -08:00
ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true }
fixed-hash = { path = "../fixed-hash", version = "0.2" }
serde = { version = "1.0", optional = true }
uint = { path = "../uint", version = "0.2.1", default-features = false }
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-02-04 03:53:35 -08:00
use_asm = ["uint/use_asm"]
impl_quickcheck_arbitrary = ["uint/impl_quickcheck_arbitrary", "fixed-hash/impl_quickcheck_arbitrary"]