[package]
edition = "2024"
name = "burbomath"
version = "0.0.1"
authors = ["borys <burbokop@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Burbokop's rust math library"
documentation = "https://docs.rs/burbomath"
readme = "README.md"
keywords = [
"math",
"algorithms",
"no-std",
]
categories = [
"algorithms",
"science",
"no-std",
]
license = "MIT"
repository = "https://github.com/burbokop/burbomath"
[features]
default = [
"std",
"serde",
]
libm = ["dep:libm"]
serde = ["dep:serde"]
std = [
"rand/std",
"rand/std_rng",
]
[lib]
name = "burbomath"
path = "src/lib.rs"
[[test]]
name = "macro_test"
path = "tests/macro_test.rs"
[dependencies.burbomath_macro]
version = "0.0.1"
[dependencies.libm]
version = "0.2.16"
optional = true
[dependencies.rand]
version = "0.9.1"
features = ["alloc"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.rand_pcg]
version = "0.9.0"
[dev-dependencies.rand_seeder]
version = "0.4.0"
[dev-dependencies.serde_json]
version = "1.0.0"