matamorph 0.2.0

Seamless conversions between Rust’s major matrix libraries: ndarray, faer, nalgebra, and mdarray.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"