# 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.74.0" name = "malachite-float" version = "0.4.16" authors = ["Mikhail Hogrefe "] build = 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" [package.metadata.docs.rs] features = ["random"] rustdoc-args = [ "--html-in-header", "katex-header.html", ] [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.11.0" features = ["use_alloc"] default-features = false [dependencies.malachite-base] version = "0.4.16" default-features = false [dependencies.malachite-nz] version = "0.4.16" features = ["float_helpers"] default-features = false [dependencies.malachite-q] version = "0.4.16" default-features = false [dependencies.num] version = "0.4.3" features = ["serde"] optional = true [dependencies.rug] version = "1.24.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.105" optional = true [dev-dependencies] [features] 32_bit_limbs = [ "malachite-nz/32_bit_limbs", "malachite-q/32_bit_limbs", ] bin_build = ["test_build"] enable_serde = [ "serde", "malachite-nz/enable_serde", "malachite-q/enable_serde", ] random = [ "malachite-base/random", "malachite-nz/random", "malachite-q/random", ] test_build = [ "malachite-base/test_build", "malachite-nz/test_build", "malachite-q/test_build", "random", "serde", "serde_json", "num", "rug", ]