parity-common/uint/Cargo.toml

29 lines
747 B
TOML

[package]
description = "Large fixed-size integers arithmetics"
homepage = "http://parity.io"
repository = "https://github.com/paritytech/parity-common"
license = "MIT/Apache-2.0"
name = "uint"
version = "0.4.1"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
byteorder = { version = "1", default-features = false }
heapsize = { version = "0.4.2", optional = true }
rustc-hex = { version = "2.0", default-features = false }
quickcheck = { version = "0.6", optional = true }
crunchy = "0.1"
[dev-dependencies]
quickcheck = "0.6"
rustc-hex = "2.0"
[features]
std = ["byteorder/std", "rustc-hex/std"]
heapsizeof = ["heapsize"]
impl_quickcheck_arbitrary = ["quickcheck"]
[[example]]
name = "modular"
required-features = ["std"]