mathru 0.6.3

Simple mathematics library written in Rust
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/lib.rs"
[badges.maintenance]
status = "actively-developed"
[dependencies.blas]
optional = true
version = "0.20"

[dependencies.blas-src]
features = ["openblas"]
optional = true
version = "0.5.0"

[dependencies.lapack]
optional = true
version = "0.16"

[dependencies.lapack-src]
features = ["openblas"]
optional = true
version = "0.5.0"

[dependencies.rand]
version = "0.7.3"

[dependencies.serde]
features = ["derive"]
version = "1.0"
[dev-dependencies.criterion]
version = "0.3"

[dev-dependencies.serde_json]
version = "1.0"

[features]
blaslapack = ["lapack", "blas", "lapack-src", "blas-src"]
default = ["native"]
native = []

[lib]
name = "mathru"
path = "src/lib.rs"

[package]
authors = ["Matthias Eiholzer <matthias.eiholzer@gmail.com>"]
autobenches = false
categories = ["mathematics", "science", "algorithms"]
description = "Simple mathematics library written in Rust"
documentation = "https://docs.rs/crate/mathru/latest/"
edition = "2018"
exclude = ["literature/*", "tests/*", "backup/*", ".gitignore"]
homepage = "http://matthiaseiholzer.gitlab.io/mathru"
keywords = ["optimization", "statistics", "algebra", "matrix", "ode"]
license = "MIT OR Apache-2.0"
name = "mathru"
readme = "README.md"
repository = "https://gitlab.com/matthiaseiholzer/mathru"
version = "0.6.3"
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex.html"]
[profile.bench]
debug = false
opt-level = 3

[profile.dev]
debug = true
opt-level = 0

[profile.release]
debug = false
opt-level = 3

[profile.test]
debug = true
opt-level = 0