[package]
edition = "2021"
rust-version = "1.83"
name = "numra-core"
version = "0.1.4"
authors = ["Moussa <mlablouba@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for the Numra numerical methods library: Scalar, Vector, Signal, Uncertainty, error model."
homepage = "https://numra-rs.org"
documentation = "https://docs.rs/numra"
readme = "README.md"
keywords = [
"numerical",
"scientific",
"traits",
"no-std",
"numra",
]
categories = [
"science",
"mathematics",
"no-std",
"data-structures",
]
license = "LicenseRef-Numra-Academic-Research-NonCommercial"
repository = "https://github.com/moussaoutlook/numra-rs"
[features]
default = ["std"]
std = []
[lib]
name = "numra_core"
path = "src/lib.rs"
[[test]]
name = "scalar_renamed"
path = "tests/scalar_renamed.rs"
[dependencies.libm]
version = "0.2"
[dependencies.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dev-dependencies.approx]
version = "0.5"