parity-common/Cargo.toml

23 lines
666 B
TOML
Raw Normal View History

2017-10-30 10:00:58 -07:00
[package]
name = "fixed-hash"
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
2017-12-29 08:21:04 -08:00
license = "MIT"
homepage = "https://github.com/paritytech/primitives"
description = "Fixed-size hashes"
2017-10-30 10:00:58 -07:00
[dependencies]
heapsize = { version = "0.4", optional = true }
2018-01-05 08:42:29 -08:00
rand = { version = "0.4", optional = true }
2017-10-30 10:00:58 -07:00
rustc-hex = { version = "1.0", optional = true }
quickcheck = { version = "0.6", optional = true }
2017-10-30 10:00:58 -07:00
[target.'cfg(not(target_os = "unknown"))'.dependencies]
libc = { version = "0.2", optional = true, default-features = false }
2017-10-30 10:00:58 -07:00
[features]
2018-02-05 13:03:20 -08:00
default = ["libc"]
2017-10-30 10:00:58 -07:00
std = ["rustc-hex", "rand"]
heapsizeof = ["heapsize"]
impl_quickcheck_arbitrary = ["quickcheck"]