matamorph 0.2.0

Seamless conversions between Rust’s major matrix libraries: ndarray, faer, nalgebra, and mdarray.
Documentation
[package]
name = "matamorph"
version = "0.2.0"
edition = "2024"
description = "Seamless conversions between Rust’s major matrix libraries: ndarray, faer, nalgebra, and mdarray."
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/starcluster/matamorph"
documentation = "https://docs.rs/matamorph"
keywords = [
    "matrix",
    "linear-algebra",
    "ndarray",
    "nalgebra",
    "faer"
]
categories = ["science", "mathematics"]

[dependencies]
faer = { version = "0.23.2", optional = true }
mdarray = { version = "0.8.0", optional = true }
nalgebra = { version = "0.34.1", optional = true }
ndarray = { version = "0.17.1", optional = true }
num-traits = "0.2.19"

[features]
default = []

with-ndarray = ["ndarray"]
with-faer = ["faer"]
with-nalgebra = ["nalgebra"]
with-mdarray = ["mdarray"]

full = ["with-ndarray", "with-faer", "with-nalgebra", "with-mdarray"]