[package]
edition = "2024"
name = "matamorph"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Seamless conversions between Rust’s major matrix libraries: ndarray, faer, nalgebra, and mdarray."
documentation = "https://docs.rs/matamorph"
readme = "README.md"
keywords = [
"matrix",
"linear-algebra",
"ndarray",
"nalgebra",
"faer",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/starcluster/matamorph"
[features]
default = []
full = [
"with-ndarray",
"with-faer",
"with-nalgebra",
"with-mdarray",
]
with-faer = ["faer"]
with-mdarray = ["mdarray"]
with-nalgebra = ["nalgebra"]
with-ndarray = ["ndarray"]
[lib]
name = "matamorph"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.faer]
version = "0.23.2"
optional = true
[dependencies.mdarray]
version = "0.8.0"
optional = true
[dependencies.nalgebra]
version = "0.34.1"
optional = true
[dependencies.ndarray]
version = "0.17.1"
optional = true
[dependencies.num-traits]
version = "0.2.19"