2018-09-20 16:50:34 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-glm"
|
2021-04-12 22:06:47 +08:00
|
|
|
version = "0.12.0"
|
2018-09-20 16:50:34 +08:00
|
|
|
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" }
|
|
|
|
|
2018-12-29 19:22:50 +08:00
|
|
|
[features]
|
2021-04-12 18:14:16 +08:00
|
|
|
default = [ "std" ]
|
|
|
|
std = [ "nalgebra/std", "simba/std" ]
|
|
|
|
arbitrary = [ "nalgebra/arbitrary" ]
|
|
|
|
serde-serialize = [ "nalgebra/serde-serialize-no-std" ]
|
2018-12-29 19:22:50 +08:00
|
|
|
abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
|
|
|
|
|
2018-09-20 16:50:34 +08:00
|
|
|
[dependencies]
|
|
|
|
num-traits = { version = "0.2", default-features = false }
|
2020-10-25 22:13:56 +08:00
|
|
|
approx = { version = "0.4", default-features = false }
|
2021-03-01 00:52:14 +08:00
|
|
|
simba = { version = "0.4", default-features = false }
|
2021-04-12 22:06:47 +08:00
|
|
|
nalgebra = { path = "..", version = "0.26", default-features = false }
|