fixed-bigint 0.2.4

Fixed-size big integer implementation for Rust
Documentation
# 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"
rust-version = "1.73"
name = "fixed-bigint"
version = "0.2.4"
authors = ["kaidokert <kaidokert@gmail.com>"]
build = false
exclude = ["/.github/*"]
autolib = false
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",
    "no-std::no-alloc",
]
license = "Apache-2.0"
repository = "https://github.com/kaidokert/fixed-bigint-rs"

[features]
1_87 = []
default = []
nightly = [
    "c0nst/nightly",
    "1_87",
]
use-unsafe = []

[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 = "core_functionality"
path = "tests/core_functionality.rs"

[[test]]
name = "identity"
path = "tests/identity.rs"

[[test]]
name = "integer"
path = "tests/integer.rs"

[[test]]
name = "iter_test"
path = "tests/iter_test.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 = "roots"
path = "tests/roots.rs"

[[test]]
name = "string_convert"
path = "tests/string_convert.rs"

[dependencies.c0nst]
version = "0.2"

[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

[profile.dev]
opt-level = 0
lto = false
codegen-units = 16
debug = 2
debug-assertions = true
panic = "unwind"
overflow-checks = true
incremental = false