uint 0.7.0

Large fixed-size integers arithmetics
Documentation
[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.7.0"
authors = ["Parity Technologies <admin@parity.io>"]
readme = "README.md"

[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 = { version = "0.2", default-features = true }

[features]
default = ["std"]
std = ["byteorder/std", "rustc-hex/std", "crunchy/std"]

[[example]]
name = "modular"

[[test]]
name = "uint_tests"
required-features = ["std"]

[dev-dependencies]
criterion = "0.2.11"
num-bigint = "0.2"

[target.'cfg(unix)'.dev-dependencies]
rug = { version = "1.4", default-features = false, features = ["integer"] }

[[bench]]
name = "bigint"
harness = false