cgmath/Cargo.toml

39 lines
817 B
TOML
Raw Normal View History

2014-06-23 03:35:40 +00:00
[package]
name = "cgmath"
2016-04-20 12:59:45 +00:00
version = "0.9.1"
2014-06-23 03:35:40 +00:00
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Brian Heylin",
"Colin Sherratt",
"Dzmitry Malyshau",
"Erick Tryzelaar",
"Luqman Aden",
"Maik Klein",
"Mikko Perttunen",
2015-05-10 22:38:44 +00:00
"Pierre Krieger",
2014-06-23 03:35:40 +00:00
"Tomasz Stachowiak"
]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
2015-12-22 21:39:10 +00:00
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"]
2014-06-23 03:35:40 +00:00
2014-08-30 00:00:34 +00:00
[lib]
2014-06-23 03:35:40 +00:00
name = "cgmath"
2014-12-26 21:18:29 +00:00
2015-12-20 20:24:56 +00:00
[features]
unstable = []
2014-12-26 21:18:29 +00:00
[dependencies]
num-traits = "0.1"
2015-10-25 07:09:12 +00:00
rand = "0.3"
rustc-serialize = "0.3"
2016-03-26 05:40:31 +00:00
[dev-dependencies]
2016-04-19 12:13:18 +00:00
glium = "0.14.0"