parity-common/ethereum-types/Cargo.toml

25 lines
966 B
TOML
Raw Normal View History

2017-10-24 01:09:44 -07:00
[package]
name = "ethereum-types"
version = "0.5.0"
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"
2017-10-24 01:09:44 -07:00
[dependencies]
crunchy = { version = "0.2.1", default-features = false }
ethbloom = { path = "../ethbloom", version = "0.6", default-features = false }
2018-02-04 03:53:35 -08:00
ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true }
fixed-hash = { version = "0.3", default_features = false }
serde = { version = "1.0", optional = true }
uint = { version = "0.5", default_features = false }
2017-10-24 01:09:44 -07:00
[dev-dependencies]
serde_json = "1.0"
2017-10-24 01:09:44 -07:00
[features]
default = ["std", "heapsize", "serialize", "fixed-hash/byteorder", "fixed-hash/rustc-hex"]
std = ["uint/std", "fixed-hash/std", "ethbloom/std", "crunchy/std"]
heapsize = ["uint/heapsize", "fixed-hash/heapsize", "ethbloom/heapsize"]
serialize = ["std", "ethereum-types-serialize", "serde", "ethbloom/serialize"]