cgmath/Cargo.toml
hclarke f94888c879 update glium to version 0.17
old version of cocoa wasn't building on nightly (it's a dependency of glium->glutin->cocoa and glium->glutin->winit->cocoa on osx)
updating glium fixes it
2017-07-31 21:37:30 -04:00

33 lines
766 B
TOML

[package]
name = "cgmath"
version = "0.15.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
documentation = "https://docs.rs/cgmath"
homepage = "https://github.com/brendanzab/cgmath"
repository = "https://github.com/brendanzab/cgmath"
readme = "README.md"
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"]
[lib]
name = "cgmath"
[features]
unstable = []
[dependencies]
approx = "0.1"
mint = { version = "0.4.1", optional = true }
num-traits = "0.1"
rand = "0.3"
serde = { version = "1.0", features = ["serde_derive"], optional = true }
simd = { version = "0.2", optional = true }
[dev-dependencies]
glium = "0.17"
serde_json = "1.0"