[package]
edition = "2024"
name = "frlearn_math"
version = "0.1.0"
authors = ["Nitish Das"]
build = false
exclude = [
"target/**",
"**/*.tmp",
"**/*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fuzzy/rough math primitives and safe numeric transformations."
readme = "README.md"
keywords = [
"fuzzy",
"rough-sets",
"math",
"ndarray",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/nitishdas99-star/FuzzyRough"
resolver = "2"
[lib]
name = "frlearn_math"
path = "src/lib.rs"
[[test]]
name = "math_props"
path = "tests/math_props.rs"
[dependencies.ndarray]
version = "0.16.1"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.approx]
version = "0.5.1"