oxinum-int 0.1.3

Arbitrary-precision integers for OxiNum (UBig/IBig via dashu-int)
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 = "2021"
rust-version = "1.80"
name = "oxinum-int"
version = "0.1.3"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arbitrary-precision integers for OxiNum (UBig/IBig via dashu-int)"
documentation = "https://docs.rs/oxinum-int"
readme = "README.md"
keywords = [
    "bignum",
    "arbitrary-precision",
    "integer",
    "cooljapan",
    "oxinum",
]
categories = [
    "mathematics",
    "algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxinum"

[features]
default = []
num-traits = ["dep:num-traits"]
rand = ["dep:rand"]
serde = [
    "dep:serde",
    "oxinum-core/serde",
]
simd = []

[lib]
name = "oxinum_int"
path = "src/lib.rs"

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "alloc_profile"
path = "benches/alloc_profile.rs"
harness = false

[[bench]]
name = "bitops"
path = "benches/bitops.rs"
harness = false

[[bench]]
name = "div"
path = "benches/div.rs"
harness = false

[[bench]]
name = "factorial"
path = "benches/factorial.rs"
harness = false

[[bench]]
name = "gcd"
path = "benches/gcd.rs"
harness = false

[[bench]]
name = "modexp"
path = "benches/modexp.rs"
harness = false

[[bench]]
name = "mul"
path = "benches/mul.rs"
harness = false

[[bench]]
name = "primality"
path = "benches/primality.rs"
harness = false

[dependencies.dashu-base]
version = "0.4"

[dependencies.dashu-int]
version = "0.4"

[dependencies.num-traits]
version = "0.2"
optional = true
default-features = false

[dependencies.oxinum-core]
version = "0.1.3"

[dependencies.rand]
version = "0.10"
features = ["std_rng"]
optional = true
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dev-dependencies.criterion]
version = "0.8"
default-features = false

[dev-dependencies.num-bigint]
version = "0.4.6"

[dev-dependencies.proptest]
version = "1.11"

[dev-dependencies.serde_json]
version = "1.0"