# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "crypto-bigint" version = "0.6.0-rc.6" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of a big integer library which has been designed from the ground-up for use in cryptographic applications. Provides constant-time, no_std-friendly implementations of modern formulas using const generics. """ readme = "README.md" keywords = [ "arbitrary", "crypto", "bignum", "integer", "precision", ] categories = [ "algorithms", "cryptography", "data-structures", "mathematics", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/crypto-bigint" resolver = "2" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "crypto_bigint" path = "src/lib.rs" [[test]] name = "boxed_monty_form" path = "tests/boxed_monty_form.rs" [[test]] name = "boxed_uint" path = "tests/boxed_uint.rs" [[test]] name = "const_monty_form" path = "tests/const_monty_form.rs" [[test]] name = "impl_modulus" path = "tests/impl_modulus.rs" [[test]] name = "monty_form" path = "tests/monty_form.rs" [[test]] name = "safegcd" path = "tests/safegcd.rs" [[test]] name = "uint" path = "tests/uint.rs" [[bench]] name = "boxed_monty" path = "benches/boxed_monty.rs" harness = false required-features = ["alloc"] [[bench]] name = "boxed_uint" path = "benches/boxed_uint.rs" harness = false required-features = ["alloc"] [[bench]] name = "const_monty" path = "benches/const_monty.rs" harness = false [[bench]] name = "limb" path = "benches/limb.rs" harness = false [[bench]] name = "monty" path = "benches/monty.rs" harness = false [[bench]] name = "uint" path = "benches/uint.rs" harness = false [dependencies.der] version = "0.8.0-rc.1" optional = true default-features = false [dependencies.hybrid-array] version = "0.2.0-rc.11" optional = true [dependencies.num-traits] version = "0.2.19" default-features = false [dependencies.rand_core] version = "0.6.4" optional = true [dependencies.rlp] version = "0.6" optional = true default-features = false [dependencies.serdect] version = "0.3.0-rc.0" optional = true default-features = false [dependencies.subtle] version = "2.6" default-features = false [dependencies.zeroize] version = "1" optional = true default-features = false [dev-dependencies.bincode] version = "1" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.num-bigint] version = "0.4" [dev-dependencies.num-integer] version = "0.1" [dev-dependencies.num-modular] version = "0.6" features = [ "num-bigint", "num-integer", "num-traits", ] [dev-dependencies.proptest] version = "1" [dev-dependencies.rand_chacha] version = "0.3" [dev-dependencies.rand_core] version = "0.6" features = ["std"] [features] alloc = ["serdect?/alloc"] default = ["rand"] extra-sizes = [] rand = ["rand_core/std"] serde = ["dep:serdect"]