2014-06-23 03:35:40 +00:00
|
|
|
[package]
|
|
|
|
|
2014-06-30 02:12:43 +00:00
|
|
|
name = "cgmath"
|
2016-06-05 10:11:10 +00:00
|
|
|
version = "0.10.0"
|
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"
|
|
|
|
]
|
2015-09-20 05:42:10 +00:00
|
|
|
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"
|
2015-10-02 05:28:04 +00:00
|
|
|
readme = "README.md"
|
2015-09-20 05:42:10 +00:00
|
|
|
|
|
|
|
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 = []
|
2016-05-15 12:48:57 +00:00
|
|
|
default = ["rustc-serialize"]
|
2016-05-16 12:16:59 +00:00
|
|
|
eders = ["serde", "serde_macros"]
|
2015-12-20 20:24:56 +00:00
|
|
|
|
2014-12-26 21:18:29 +00:00
|
|
|
[dependencies]
|
2016-04-23 04:03:35 +00:00
|
|
|
num-traits = "0.1"
|
2015-10-25 07:09:12 +00:00
|
|
|
rand = "0.3"
|
2016-05-15 12:48:57 +00:00
|
|
|
rustc-serialize = { version = "0.3", optional = true }
|
2016-05-16 12:16:59 +00:00
|
|
|
serde = { version = "0.7", optional = true }
|
|
|
|
serde_macros = { version = "0.7", optional = true }
|
2016-03-26 05:40:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2016-04-19 12:13:18 +00:00
|
|
|
glium = "0.14.0"
|
2016-05-16 13:24:11 +00:00
|
|
|
serde_json = "0.7"
|