dashu-float 0.4.4

A big float library supporting arbitrary precision, arbitrary base and arbitrary rounding mode
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.68"
name = "dashu-float"
version = "0.4.4"
authors = ["Jacob Zhong <cmpute@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A big float library supporting arbitrary precision, arbitrary base and arbitrary rounding mode"
homepage = "https://github.com/cmpute/dashu"
documentation = "https://docs.rs/dashu-float"
readme = "README.md"
keywords = [
    "mathematics",
    "numerics",
    "floating-point",
    "decimal",
    "arbitrary-precision",
]
categories = [
    "mathematics",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cmpute/dashu"

[package.metadata.docs.rs]
all-features = true

[features]
default = [
    "std",
    "num-order",
]
diesel = ["diesel_v2"]
num-order = [
    "dep:num-order",
    "dep:_num-modular",
]
num-traits = ["num-traits_v02"]
num-traits_v02 = [
    "dep:num-traits_v02",
    "dashu-int/num-traits_v02",
]
postgres-types = ["postgres-types_v02"]
postgres-types_v02 = [
    "dep:postgres-types_v02",
    "dep:_bytes",
    "std",
]
rand = ["rand_v08"]
rand_v08 = [
    "dep:rand_v08",
    "dashu-int/rand_v08",
]
serde = [
    "dep:serde",
    "dashu-int/serde",
]
std = [
    "dashu-base/std",
    "dashu-int/std",
]
zeroize = [
    "dep:zeroize",
    "dashu-int/zeroize",
]

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

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

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

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

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

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

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

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

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

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

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

[[test]]
name = "num_order"
path = "tests/num_order.rs"
required-features = [
    "num-order",
    "dashu-int/num-order",
]

[[test]]
name = "postgres"
path = "tests/postgres.rs"
required-features = [
    "postgres-types",
    "diesel_v1",
    "diesel_v2",
    "diesel_v2/postgres",
]

[[test]]
name = "random"
path = "tests/random.rs"
required-features = ["rand"]

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

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

[[test]]
name = "serde"
path = "tests/serde.rs"
required-features = ["serde"]

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

[[bench]]
name = "primitive"
path = "benches/primitive.rs"
harness = false
required-features = ["rand"]

[dependencies._bytes]
version = "1.0"
optional = true
default-features = false
package = "bytes"

[dependencies._num-modular]
version = "0.6.1"
optional = true
default-features = false
package = "num-modular"

[dependencies.dashu-base]
version = "0.4.2"
default-features = false

[dependencies.dashu-int]
version = "0.4.2"
default-features = false

[dependencies.diesel_v1]
version = "1.4.0"
features = ["postgres"]
optional = true
default-features = false
package = "diesel"

[dependencies.diesel_v2]
version = "2.0.0"
features = ["postgres_backend"]
optional = true
default-features = false
package = "diesel"

[dependencies.num-order]
version = "1.2.0"
optional = true
default-features = false

[dependencies.num-traits_v02]
version = "0.2.15"
optional = true
default-features = false
package = "num-traits"

[dependencies.postgres-types_v02]
version = "0.2.4"
optional = true
default-features = false
package = "postgres-types"

[dependencies.rand_v08]
version = "0.8.3"
optional = true
default-features = false
package = "rand"

[dependencies.rustversion]
version = "1.0.0"

[dependencies.serde]
version = "1.0.130"
optional = true
default-features = false

[dependencies.static_assertions]
version = "1.1"

[dependencies.zeroize]
version = "1.5.7"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.5.1"
features = ["html_reports"]

[dev-dependencies.postcard]
version = "1.0.2"
features = ["alloc"]

[dev-dependencies.postgres]
version = "0.19.4"

[dev-dependencies.rand_v08]
version = "0.8.3"
package = "rand"

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

[dev-dependencies.serde_test]
version = "1.0.130"