mats 2.0.1

A lightweight, efficient, and easy-to-use Rust matrix library.
[dependencies.glium]
optional = true
version = "0.36.0"

[dev-dependencies.glium]
version = "0.36.0"

[dev-dependencies.image]
version = "0.25.8"

[[example]]
name = "compute"
path = "examples/compute.rs"

[[example]]
name = "look_at"
path = "examples/look_at.rs"
required-features = ["graphics"]

[[example]]
name = "orthographic"
path = "examples/orthographic.rs"
required-features = ["graphics"]

[[example]]
name = "perspective"
path = "examples/perspective.rs"
required-features = ["graphics"]

[features]
default = []
graphics = ["uniforms"]
uniforms = ["glium"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["mathematics", "science"]
description = "A lightweight, efficient, and easy-to-use Rust matrix library."
edition = "2024"
license = "MIT OR Apache-2.0"
name = "mats"
readme = "CRATE.md"
repository = "https://github.com/Anglebase/Mats.git"
version = "2.0.1"

[package.metadata.docs.rs]
all-features = true