# 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 = "2018" name = "fixed-bigint" version = "0.1.11" authors = ["kaidokert "] build = false exclude = ["/.github/*"] autobins = false autoexamples = false autotests = false autobenches = false description = """ Fixed-size big integer implementation for Rust """ homepage = "https://github.com/kaidokert/fixed-bigint-rs" documentation = "https://docs.rs/fixed-bigint" readme = "README.md" keywords = [ "mathematics", "numerics", "bignum", ] categories = [ "algorithms", "data-structures", "no-std", ] license = "Apache-2.0" repository = "https://github.com/kaidokert/fixed-bigint-rs" [profile.dev] opt-level = 0 lto = false codegen-units = 16 debug = 2 debug-assertions = true panic = "unwind" overflow-checks = true incremental = false [lib] name = "fixed_bigint" path = "src/lib.rs" [[test]] name = "add_subtract" path = "tests/add_subtract.rs" [[test]] name = "bit_ops" path = "tests/bit_ops.rs" [[test]] name = "bit_shift" path = "tests/bit_shift.rs" [[test]] name = "identity" path = "tests/identity.rs" [[test]] name = "integer" path = "tests/integer.rs" [[test]] name = "mul_div" path = "tests/mul_div.rs" [[test]] name = "num_assign" path = "tests/num_assign.rs" [[test]] name = "primint" path = "tests/primint.rs" [[test]] name = "string_convert" path = "tests/string_convert.rs" [dependencies.num-integer] version = "0.1.45" default-features = false [dependencies.num-traits] version = "0.2.19" default-features = false [dependencies.zeroize] version = "1.8.1" optional = true default-features = false [features] default = [] use-unsafe = []