[package]
edition = "2021"
rust-version = "1.77"
name = "mlua-mathlib"
version = "0.2.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Math library for mlua — RNG, distributions, and descriptive statistics"
homepage = "https://github.com/ynishi/mlua-mathlib"
readme = "README.md"
keywords = [
"lua",
"mlua",
"math",
"statistics",
"random",
]
categories = [
"mathematics",
"api-bindings",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-mathlib"
[lib]
name = "mlua_mathlib"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[bench]]
name = "stats"
path = "benches/stats.rs"
harness = false
[dependencies.mlua]
version = "0.11"
features = [
"lua54",
"vendored",
]
[dependencies.rand]
version = "0.9"
[dependencies.rand_distr]
version = "0.5"
[dependencies.statrs]
version = "0.18"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[profile.release]
overflow-checks = true