parity-common/fixed-hash/Cargo.toml

18 lines
480 B
TOML
Raw Normal View History

2017-10-30 10:00:58 -07:00
[package]
name = "fixed-hash"
2018-02-04 03:53:35 -08:00
version = "0.1.3"
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 }
libc = { version = "0.2", default-features = false }
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 }
[features]
std = ["rustc-hex", "rand"]
heapsizeof = ["heapsize"]