cgmath/Cargo.toml

45 lines
1 KiB
TOML
Raw Normal View History

2014-06-23 03:35:40 +00:00
[package]
name = "cgmath"
2016-09-14 13:06:08 +00:00
version = "0.12.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"
]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
2016-09-05 19:01:27 +00:00
documentation = "https://docs.rs/cgmath"
2016-08-17 13:03:39 +00:00
homepage = "https://github.com/brendanzab/cgmath"
repository = "https://github.com/brendanzab/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 = []
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]
approx = "0.1"
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-08-22 23:22:15 +00:00
serde = { version = "0.8", optional = true }
serde_macros = { version = "0.8", optional = true }
2016-03-26 05:40:31 +00:00
[dev-dependencies]
2016-08-22 23:22:15 +00:00
glium = "0.15"
serde_json = "0.8"