forked from rustgd/cgmath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 810 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "cgmath"
version = "0.9.0"
authors = ["Brendan Zabarauskas <[email protected]>",
"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 = "http://bjz.github.io/cgmath"
homepage = "https://github.com/bjz/cgmath"
repository = "https://github.com/bjz/cgmath"
readme = "README.md"
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"]
[lib]
name = "cgmath"
[features]
unstable = []
[dependencies]
num = "0.1"
rand = "0.3"
rustc-serialize = "0.3"
[dev-dependencies]
glium = "0.14.0"