malachite 0.9.1

Arbitrary-precision arithmetic, with efficient algorithms partially derived from GMP, FLINT, and MPFR.
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 = "2024"
rust-version = "1.90.0"
name = "malachite"
version = "0.9.1"
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arbitrary-precision arithmetic, with efficient algorithms partially derived from GMP, FLINT, and MPFR."
homepage = "https://malachite.rs/"
readme = "README.md"
keywords = [
    "mathematics",
    "math",
    "numerics",
    "bignum",
]
categories = ["mathematics"]
license = "LGPL-3.0-only"
repository = "https://github.com/mhogrefe/malachite"
resolver = "2"

[package.metadata.docs.rs]
features = [
    "embed-doc-image",
    "random",
]
rustdoc-args = [
    "--html-in-header",
    "katex-header.html",
]

[features]
32_bit_limbs = [
    "malachite-nz/32_bit_limbs",
    "malachite-q/32_bit_limbs",
    "malachite-float/32_bit_limbs",
]
default = [
    "std",
    "naturals_and_integers",
    "rationals",
]
enable_pyo3 = ["malachite-nz/enable_pyo3"]
enable_serde = [
    "malachite-nz/enable_serde",
    "malachite-q/enable_serde",
    "malachite-float/enable_serde",
]
floats = ["malachite-float"]
naturals_and_integers = ["malachite-nz"]
random = [
    "malachite-base/random",
    "malachite-nz/random",
    "malachite-q/random",
    "malachite-float/random",
]
rationals = ["malachite-q"]
std = [
    "malachite-base/std",
    "malachite-nz/std",
    "malachite-q/std",
    "malachite-float/std",
]

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

[dependencies.embed-doc-image]
version = "0.1.4"
optional = true

[dependencies.malachite-base]
version = "0.9.1"
default-features = false

[dependencies.malachite-float]
version = "0.9.1"
optional = true
default-features = false

[dependencies.malachite-nz]
version = "0.9.1"
optional = true
default-features = false

[dependencies.malachite-q]
version = "0.9.1"
optional = true
default-features = false

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