-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
46 lines (39 loc) · 1.04 KB
/
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
39
40
41
42
43
44
45
46
[package]
name = "collision"
version = "0.20.1"
authors = ["Brendan Zabarauskas <[email protected]>",
"Brian Heylin",
"Colin Sherratt",
"Dzmitry Malyshau",
"Erick Tryzelaar",
"Ilya Bogdanov",
"Luqman Aden",
"Maik Klein",
"Mikko Perttunen",
"Simon Rönnberg",
"Pierre Krieger",
"Tomasz Stachowiak",
"Zeke Foppa",
"Thomas O'Dell"
]
license = "Apache-2.0"
description = "A collision extension to cgmath"
edition = "2018"
documentation = "https://docs.rs/collision"
homepage = "https://github.com/rustgd/collision-rs"
repository = "https://github.com/rustgd/collision-rs"
readme = "README.md"
keywords = ["gamedev", "cgmath", "collision"]
[lib]
name = "collision"
[features]
serde = ["serde_crate", "cgmath/serde", "num/serde"]
[dependencies]
rand = "0.8.4"
cgmath = "0.18.0"
serde_crate = { version = "1.0.126", package="serde", optional = true, features = ["derive"] }
bit-set = "0.5.2"
smallvec = "1.6.1"
num = "0.4.0"
[dev-dependencies]
genmesh = "0.5"