[package]
edition = "2021"
name = "zenith-float"
version = "1.0.0"
authors = ["Jeffrey S Carr <jeff@mcgeeresources.com>"]
build = false
exclude = [
"zenith-float-num",
"zenith-float-macro",
"zenith-float-compare",
"scripts",
"golds",
"doc/BUILD_CHECKLIST.md",
"doc/ZENITH_FLOAT_BUILD_PLAN.md",
"doc/Additions_to_existing_29-082026.md",
"doc/zenith-float.code-workspace",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Arbitrary-precision software floating-point arithmetic on integer limbs."
homepage = "https://github.com/jscarr64/zenith-float"
documentation = "https://docs.rs/zenith-float"
readme = "README.md"
keywords = [
"arbitrary-precision",
"bigfloat",
"numeric",
"no-std",
]
categories = [
"mathematics",
"no-std",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jscarr64/zenith-float"
[features]
default = ["std"]
hdf5 = [
"std",
"zenith-float-num/hdf5",
]
mpfr-tests = ["zenith-float-num/mpfr-tests"]
random = ["zenith-float-num/random"]
serde = [
"std",
"zenith-float-num/serde",
]
std = ["zenith-float-num/std"]
[lib]
name = "zenith_float"
path = "src/lib.rs"
[[bin]]
name = "hex_golds"
path = "src/bin/hex_golds.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.zenith-float-macro]
version = "1.0.0"
[dependencies.zenith-float-num]
version = "1.0.0"
default-features = false
[dev-dependencies.trybuild]
version = "1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1