cgmath/Cargo.toml
2016-06-05 20:11:10 +10:00

44 lines
1 KiB
TOML

[package]
name = "cgmath"
version = "0.10.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Brian Heylin",
"Colin Sherratt",
"Dzmitry Malyshau",
"Erick Tryzelaar",
"Luqman Aden",
"Maik Klein",
"Mikko Perttunen",
"Pierre Krieger",
"Tomasz Stachowiak"
]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
documentation = "http://bjz.github.io/cgmath"
homepage = "https://github.com/bjz/cgmath"
repository = "https://github.com/bjz/cgmath"
readme = "README.md"
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"]
[lib]
name = "cgmath"
[features]
unstable = []
default = ["rustc-serialize"]
eders = ["serde", "serde_macros"]
[dependencies]
num-traits = "0.1"
rand = "0.3"
rustc-serialize = { version = "0.3", optional = true }
serde = { version = "0.7", optional = true }
serde_macros = { version = "0.7", optional = true }
[dev-dependencies]
glium = "0.14.0"
serde_json = "0.7"