[package]
description = "Large fixed-size integer arithmetic"
homepage = "http://parity.io"
repository = "https://github.com/paritytech/parity-common"
license = "MIT OR Apache-2.0"
name = "uint"
version = "0.8.5"
authors = ["Parity Technologies <admin@parity.io>"]
readme = "README.md"
edition = "2018"
[dependencies]
byteorder = { version = "1.3.2", default-features = false }
crunchy = { version = "0.2.2", default-features = false }
qc = { package = "quickcheck", version = "0.9.0", optional = true }
rand = { version = "0.7.2", default-features = false, optional = true }
rustc-hex = { version = "2.0.1", default-features = false }
static_assertions = "1.0.0"
arbitrary = { version = "0.4", optional = true }
[features]
default = ["std"]
std = ["byteorder/std", "rustc-hex/std", "crunchy/std"]
quickcheck = ["qc", "rand"]
[[example]]
name = "modular"
[[test]]
name = "uint_tests"
required-features = ["std"]
[dev-dependencies]
criterion = "0.3.0"
num-bigint = "0.2.3"
[target.'cfg(unix)'.dev-dependencies]
rug = { version = "1.6.0", default-features = false, features = ["integer"] }
[[bench]]
name = "bigint"
harness = false