cgmath/Cargo.toml
Brendan Zabarauskas 78555ec780 Drop rustc-serialize support
According to [Rust release milestone predictions](https://internals.rust-lang.org/t/rust-release-milestone-predictions/4591?u=dtolnay), rustc-serialize is scheduled to be deprecated in next month's beta release of Rust.

Closes #395
2017-04-16 16:35:24 +10:00

44 lines
1 KiB
TOML

[package]
name = "cgmath"
version = "0.13.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Brian Heylin",
"Colin Sherratt",
"Dzmitry Malyshau",
"Erick Tryzelaar",
"Luqman Aden",
"Maik Klein",
"Mikko Perttunen",
"Pierre Krieger",
"Tomasz Stachowiak"
]
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 = []
eders = ["serde", "serde_derive"]
use_simd = ["simd"]
[dependencies]
approx = "0.1"
num-traits = "0.1"
rand = "0.3"
serde = { version = "0.9", optional = true }
serde_derive = { version = "0.9", optional = true }
simd = { version = "0.2", optional = true }
[dev-dependencies]
glium = "0.16"
serde_json = "0.9"