cgmath/Cargo.toml

34 lines
777 B
TOML
Raw Normal View History

2014-06-23 03:35:40 +00:00
[package]
name = "cgmath"
version = "0.17.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
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 = []
swizzle = []
2015-12-20 20:24:56 +00:00
2014-12-26 21:18:29 +00:00
[dependencies]
approx = "0.3"
2018-01-03 01:39:34 +00:00
mint = { version = "0.5", optional = true }
2018-04-29 04:00:36 +00:00
num-traits = "0.2"
rand = "0.6"
2017-06-06 20:48:55 +00:00
serde = { version = "1.0", features = ["serde_derive"], optional = true }
simd = { version = "0.2", optional = true }
2016-03-26 05:40:31 +00:00
[dev-dependencies]
glium = "0.23"
2017-04-22 22:31:50 +00:00
serde_json = "1.0"