[package]
edition = "2021"
rust-version = "1.80"
name = "oxinum-float"
version = "0.1.0"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arbitrary-precision floats for OxiNum (FBig/DBig via dashu-float)"
readme = "README.md"
keywords = [
"bignum",
"arbitrary-precision",
"float",
"cooljapan",
"oxinum",
]
categories = [
"mathematics",
"algorithms",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxinum"
[features]
default = []
num-traits = ["dep:num-traits"]
serde = [
"dep:serde",
"dashu-float/serde",
"oxinum-int/serde",
]
[lib]
name = "oxinum_float"
path = "src/lib.rs"
[[test]]
name = "fuzz_parsers"
path = "tests/fuzz_parsers.rs"
[[test]]
name = "native_constants"
path = "tests/native_constants.rs"
[[test]]
name = "native_context"
path = "tests/native_context.rs"
[[test]]
name = "native_core_traits"
path = "tests/native_core_traits.rs"
[[test]]
name = "native_float"
path = "tests/native_float.rs"
[[test]]
name = "native_format"
path = "tests/native_format.rs"
[[test]]
name = "native_nonfinite"
path = "tests/native_nonfinite.rs"
[[test]]
name = "native_num_traits"
path = "tests/native_num_traits.rs"
[[test]]
name = "native_transcendentals"
path = "tests/native_transcendentals.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "wrapper_polish"
path = "tests/wrapper_polish.rs"
[[bench]]
name = "constants"
path = "benches/constants.rs"
harness = false
[[bench]]
name = "transcendentals"
path = "benches/transcendentals.rs"
harness = false
[dependencies.dashu-base]
version = "0.4"
[dependencies.dashu-float]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
optional = true
default-features = false
[dependencies.oxinum-core]
version = "0.1.0"
[dependencies.oxinum-int]
version = "0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.serde_json]
version = "1.0"