parity-common/ethbloom/Cargo.toml

26 lines
907 B
TOML
Raw Permalink Normal View History

2018-01-05 08:42:29 -08:00
[package]
name = "ethbloom"
2018-11-12 11:29:26 -08:00
version = "0.6.0"
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"
2019-01-25 11:13:01 -08:00
homepage = "https://github.com/paritytech/parity-common"
repository = "https://github.com/paritytech/parity-common"
2018-01-05 08:42:29 -08:00
[dependencies]
tiny-keccak = "1.4"
crunchy = { version = "0.2.1", default-features = false, features = ["limit_256"] }
2019-01-24 07:07:29 -08:00
fixed-hash = { path = "../fixed-hash", version = "0.3", default-features = false }
impl-serde = { path = "../primitive-types/impls/serde", version = "0.1", default-features = false, 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", "heapsize", "serialize", "fixed-hash/libc", "fixed-hash/rustc-hex"]
std = ["fixed-hash/std", "crunchy/std"]
heapsize = ["fixed-hash/heapsize"]
serialize = ["std", "impl-serde"]