[package] description = "Tetsy Common Large Fixed-Size Integer Arithmetic" homepage = "http://tetcoin.org" repository = "https://github.com/tetcoin/tetsy-common" license = "MIT OR Apache-2.0" name = "uint-crate" version = "0.9.1" authors = ["Parity Technologies "] readme = "README.md" edition = "2018" [dependencies] byteorder = { version = "1.4.2", default-features = false } crunchy = { version = "0.2.2", default-features = false } qc = { package = "quickcheck", version = "0.9.0", optional = true } rand07 = { package = "rand", version = "0.7", default-features = false, optional = true } hex = { version = "0.4", default-features = false } static_assertions = "1.0.0" arbitrary = { version = "0.4", optional = true } [features] default = ["std"] std = ["byteorder/std", "crunchy/std", "hex/std"] quickcheck = ["qc", "rand07"] [[example]] name = "modular" [[test]] name = "uint_tests" required-features = ["std"] [dev-dependencies] criterion = "0.3.0" num-bigint = "0.3.1" [target.'cfg(all(unix, target_arch = "x86_64"))'.dev-dependencies] rug = { version = "1.6.0", default-features = false, features = ["integer"] } [[bench]] name = "bigint" harness = false