nalgebra/nalgebra-glm/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Permalink Normal View History

[package]
name = "nalgebra-glm"
2024-06-23 21:28:37 +08:00
version = "0.19.0"
authors = ["sebcrozet <developer@crozet.re>"]
2018-09-23 23:14:30 +08:00
description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
2021-01-29 20:33:37 +08:00
documentation = "https://www.nalgebra.org/docs"
2018-09-23 23:14:30 +08:00
homepage = "https://nalgebra.org"
2021-01-29 20:33:37 +08:00
repository = "https://github.com/dimforge/nalgebra"
2018-09-23 23:14:30 +08:00
readme = "../README.md"
2024-06-23 01:06:20 +08:00
categories = ["science", "mathematics", "wasm", "no standard library"]
keywords = ["linear", "algebra", "matrix", "vector", "math"]
license = "Apache-2.0"
2019-03-23 21:29:07 +08:00
edition = "2018"
2018-09-23 23:14:30 +08:00
2021-01-29 20:33:37 +08:00
[badges]
maintenance = { status = "actively-developed" }
[features]
2024-06-23 01:06:20 +08:00
default = ["std"]
std = ["nalgebra/std", "simba/std"]
arbitrary = ["nalgebra/arbitrary"]
serde-serialize = ["nalgebra/serde-serialize-no-std"]
2021-10-01 01:30:53 +08:00
# Conversion
2024-06-23 01:06:20 +08:00
convert-mint = ["nalgebra/mint"]
convert-bytemuck = ["nalgebra/bytemuck"]
convert-glam014 = ["nalgebra/glam014"]
convert-glam015 = ["nalgebra/glam015"]
convert-glam016 = ["nalgebra/glam016"]
convert-glam017 = ["nalgebra/glam017"]
convert-glam018 = ["nalgebra/glam018"]
2021-10-01 01:30:53 +08:00
[dependencies]
num-traits = { version = "0.2", default-features = false }
2021-06-02 20:53:43 +08:00
approx = { version = "0.5", default-features = false }
2024-06-23 01:06:20 +08:00
simba = { version = "0.9", default-features = false }
2024-06-23 21:28:37 +08:00
nalgebra = { path = "..", version = "0.33", default-features = false }