parity-common/ethbloom/Cargo.toml

28 lines
921 B
TOML
Raw Normal View History

2018-01-05 08:42:29 -08:00
[package]
name = "ethbloom"
version = "0.5.1"
authors = ["Parity Technologies <admin@parity.io>"]
2018-01-05 08:42:29 -08:00
description = "Ethereum bloom filter"
license = "MIT"
documentation = "https://docs.rs/ethbloom"
2018-03-15 01:40:42 -07:00
homepage = "https://github.com/paritytech/primitives"
repository = "https://github.com/paritytech/primitives"
2018-01-05 08:42:29 -08:00
[dependencies]
tiny-keccak = "1.4"
crunchy = { version = "0.1.6", features = ["limit_256"] }
rustc-hex = { version = "2.0" }
fixed-hash = { version = "0.3.0-beta.2", default_features = false }
2018-02-05 13:03:20 -08:00
ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true }
serde = { version = "1.0", optional = true }
2018-01-05 08:42:29 -08:00
[dev-dependencies]
2018-02-05 13:03:20 -08:00
rand = { version = "0.4" }
hex-literal = "0.1.1"
2018-01-05 08:42:29 -08:00
[features]
default = ["std", "heapsizeof", "serialize", "fixed-hash/libc", "fixed-hash/rustc-hex"]
2018-01-05 08:42:29 -08:00
std = ["fixed-hash/std"]
heapsizeof = ["fixed-hash/heapsize"]
serialize = ["std", "ethereum-types-serialize", "serde"]