[package]
name = "astro-float"
version = "0.9.6"
edition = "2021"
authors = ["stencillogic <stencillogic@gmail.com>"]
license = "MIT"
description = "Multiple precision floating-point numbers library."
categories = ["algorithms", "data-structures", "science", "no-std"]
keywords = ["bigfloat", "numeric", "mathematics", "bignum"]
readme = "README.md"
repository = "https://github.com/stencillogic/astro-float"
[dependencies]
astro-float-num = { version = "0.3.7", default-features = false }
astro-float-macro = "0.4.6"
[features]
default = ["std", "random", "serde"]
std = ["astro-float-num/std"]
random = ["astro-float-num/random"]
serde = ["astro-float-num/serde"]
[dev-dependencies]
trybuild = "1.0"
rusty-hook = "0.11.2"
[workspace]
members = [
"astro-float-num",
"astro-float-macro",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1