[package]
edition = "2021"
name = "astro-float-num"
version = "0.3.7"
authors = ["stencillogic <stencillogic@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multiple precision floating point numbers implemented purely in Rust."
readme = "README.md"
keywords = [
"bigfloat",
"numeric",
"mathematics",
"bignum",
]
categories = [
"algorithms",
"data-structures",
"science",
]
license = "MIT"
repository = "https://github.com/stencillogic/astro-float"
[lib]
name = "astro_float_num"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.itertools]
version = "0.10.3"
features = []
default-features = false
[dependencies.lazy_static]
version = "1.4.0"
features = []
default-features = false
[dependencies.rand]
version = "0.8.5"
optional = true
[dependencies.serde]
version = "1.0.147"
optional = true
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.serde_json]
version = "1.0.89"
[features]
default = [
"std",
"random",
"serde",
]
random = ["dep:rand"]
serde = ["dep:serde"]
std = []
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dev-dependencies.gmp-mpfr-sys]
version = "~1.6.0"
features = []
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dev-dependencies.rug]
version = "~1.20.0"
features = [
"float",
"rand",
]