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