[package] name = "ethereum-types" version = "0.4.0" authors = ["Parity Technologies "] license = "MIT" homepage = "https://github.com/paritytech/primitives" description = "Ethereum types" [dependencies] crunchy = "0.1" ethbloom = { path = "../ethbloom", version = "0.5.0", default-features = false } ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } fixed-hash = { version = "0.3.0-beta.2", default_features = false } serde = { version = "1.0", optional = true } uint = { version = "0.4", default_features = false } [dev-dependencies] serde_json = "1.0" [features] default = ["std", "heapsizeof", "serialize", "fixed-hash/byteorder", "fixed-hash/rustc-hex"] std = ["uint/std", "fixed-hash/std", "ethbloom/std"] heapsizeof = ["uint/heapsizeof", "fixed-hash/heapsize", "ethbloom/heapsizeof"] serialize = ["std", "ethereum-types-serialize", "serde", "ethbloom/serialize"]