matreex 0.42.2

A simple matrix implementation.
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 = "matreex"
version = "0.42.2"
authors = ["Lingxuan Ye <ink@lingxuan.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple matrix implementation."
readme = "README.md"
categories = [
    "data-structures",
    "no-std",
]
license = "MIT"
repository = "https://github.com/Lingxuan-Ye/matreex"

[features]
default = [
    "parallel",
    "pretty-debug",
    "serde",
]
parallel = ["dep:rayon"]
pretty-debug = ["dep:owo-colors"]
serde = ["dep:serde"]

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

[dependencies.owo-colors]
version = "4.3.0"
optional = true

[dependencies.rayon]
version = "1.11.0"
optional = true

[dependencies.serde]
version = "1.0.228"
features = [
    "alloc",
    "derive",
]
optional = true
default-features = false

[dev-dependencies.serde_test]
version = "1.0.177"