nalgebra/nalgebra-glm/Cargo.toml

31 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "nalgebra-glm"
version = "0.15.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"
2021-01-29 20:33:37 +08:00
categories = [ "science", "mathematics", "wasm", "no standard library" ]
2018-09-23 23:14:30 +08:00
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
license = "BSD-3-Clause"
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]
default = [ "std" ]
std = [ "nalgebra/std", "simba/std" ]
arbitrary = [ "nalgebra/arbitrary" ]
serde-serialize = [ "nalgebra/serde-serialize-no-std" ]
abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
[dependencies]
num-traits = { version = "0.2", default-features = false }
2021-06-02 20:53:43 +08:00
approx = { version = "0.5", default-features = false }
2021-08-08 18:59:40 +08:00
simba = { version = "0.6", default-features = false }
2021-08-08 23:54:35 +08:00
nalgebra = { path = "..", version = "0.29", default-features = false }