uint 0.10.0

Large fixed-size integer arithmetic
Documentation
[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.10.0"
authors = ["Parity Technologies <admin@parity.io>"]
readme = "README.md"
edition = "2021"
rust-version = "1.56.1"

[dependencies]
byteorder = { version = "1.4.2", default-features = false }
crunchy = { version = "0.2.2", default-features = false }
quickcheck = { version = "1", optional = true }
hex = { version = "0.4", default-features = false }
static_assertions = "1.0.0"
arbitrary = { version = "1.0", optional = true }

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

[[example]]
name = "modular"

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

[dev-dependencies]
criterion = "0.5.1"
num-bigint = "0.4.0"

[target.'cfg(all(unix, target_arch = "x86_64"))'.dev-dependencies]
rug = { version = "1.6.0", default-features = false, features = [
    "integer",
    "std",
] }

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