2014-06-23 03:35:40 +00:00
|
|
|
[package]
|
|
|
|
|
2014-06-30 02:12:43 +00:00
|
|
|
name = "cgmath"
|
2018-12-26 07:37:46 +00:00
|
|
|
version = "0.17.0"
|
2017-04-26 12:36:24 +00:00
|
|
|
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
|
2015-09-20 05:42:10 +00:00
|
|
|
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"
|
2019-02-25 15:29:42 +00:00
|
|
|
homepage = "https://github.com/rustgd/cgmath"
|
|
|
|
repository = "https://github.com/rustgd/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 = []
|
2017-10-01 20:26:47 +00:00
|
|
|
swizzle = []
|
2015-12-20 20:24:56 +00:00
|
|
|
|
2014-12-26 21:18:29 +00:00
|
|
|
[dependencies]
|
2018-12-26 07:37:46 +00:00
|
|
|
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"
|
2018-12-26 07:37:46 +00:00
|
|
|
rand = "0.6"
|
2017-06-06 20:48:55 +00:00
|
|
|
serde = { version = "1.0", features = ["serde_derive"], optional = true }
|
2017-02-24 23:26:11 +00:00
|
|
|
simd = { version = "0.2", optional = true }
|
2016-03-26 05:40:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-12-26 07:37:46 +00:00
|
|
|
glium = "0.23"
|
2017-04-22 22:31:50 +00:00
|
|
|
serde_json = "1.0"
|