parity-common/Cargo.toml

18 lines
476 B
TOML
Raw Normal View History

2017-10-30 10:00:58 -07:00
[package]
name = "fixed-hash"
version = "0.1.1"
2017-10-30 10:00:58 -07:00
authors = ["debris <marek.kotewicz@gmail.com>"]
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 }
rand = { version = "0.3", optional = true }
rustc-hex = { version = "1.0", optional = true }
[features]
std = ["rustc-hex", "rand"]
heapsizeof = ["heapsize"]