malachite-float 0.9.1

The arbitrary-precision floating-point type Float, with efficient algorithms partially derived from 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-float"
version = "0.9.1"
authors = ["Mikhail Hogrefe <mikhailhogrefe@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The arbitrary-precision floating-point type Float, with efficient algorithms partially derived from 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 = ["random"]
rustdoc-args = [
    "--html-in-header",
    "katex-header.html",
]

[features]
32_bit_limbs = [
    "malachite-nz/32_bit_limbs",
    "malachite-q/32_bit_limbs",
]
bin_build = ["test_build"]
default = ["std"]
enable_serde = [
    "serde",
    "malachite-nz/enable_serde",
    "malachite-q/enable_serde",
]
random = [
    "malachite-base/random",
    "malachite-nz/random",
    "malachite-q/random",
]
std = [
    "malachite-base/std",
    "malachite-nz/std",
    "malachite-q/std",
]
test_build = [
    "malachite-base/test_build",
    "malachite-nz/test_build",
    "malachite-q/test_build",
    "random",
    "serde",
    "serde_json",
    "num",
    "rug",
]

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

[[bin]]
name = "malachite_float_main"
path = "src/bin.rs"

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

[dependencies.itertools]
version = "0.14.0"
features = ["use_alloc"]
default-features = false

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

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

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

[dependencies.num]
version = "0.4.3"
features = ["serde"]
optional = true

[dependencies.rug]
version = "1.28.1"
features = [
    "float",
    "serde",
]
optional = true
default-features = false

[dependencies.serde]
version = "1.0.188"
features = [
    "alloc",
    "derive",
]
optional = true
default-features = false

[dependencies.serde_json]
version = "1.0.149"
optional = true

[dev-dependencies]