[package]
edition = "2024"
name = "scalars"
version = "0.3.0"
authors = ["p <p@p11c.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal numeric traits: Zero, One, Inv, Sqrt, Exp, Logarithm, Trigonometry, Real, Integer"
documentation = "https://docs.rs/scalars"
readme = "README.md"
keywords = [
"numeric",
"scalar",
"math",
"traits",
"real",
]
categories = [
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/porky11/scalars"
[features]
std = []
[lib]
name = "scalars"
path = "src/lib.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"
[dependencies.libm]
version = "0.2"