forked from sebcrozet/kiss3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (50 loc) · 1.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "kiss3d"
version = "0.17.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "3D graphics engine for Rust."
repository = "https://github.com/sebcrozet/kiss3d"
readme = "README.md"
keywords = [ "3D", "graphics", "OpenGL", "KISS" ]
license = "BSD-3-Clause"
autoexamples = true
include = [
"src/**/*.rs",
"src/text/*.ttf",
"examples/**/*.rs",
"examples/media",
"examples/Cargo.toml",
"Cargo.toml",
"LICENSE",
"Readme.md"
]
[lib]
name = "kiss3d"
path = "src/lib.rs"
[dependencies]
libc = "0.2"
bitflags = "1.0"
num-traits = "0.2"
nalgebra = "0.16"
ncollide3d = "0.17"
image = "0.19"
serde = "1.0"
serde_derive = "1.0"
rusttype = { version = "0.6", features = [ "gpu_cache" ] }
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "asmjs")))'.dependencies]
gl = "0.10.0"
glutin = "0.19"
# We repeat all three targets instead of any(target_arch = "wasm32", target_arch = "asmjs")
# to avoid https://github.com/koute/stdweb/issues/135
[target.wasm32-unknown-unknown.dependencies]
stdweb = "0.4"
stdweb-derive = "0.5"
[target.wasm32-unknown-emscripten.dependencies]
stdweb = "0.4"
stdweb-derive = "0.5"
[target.asmjs-unknown-emscripten.dependencies]
stdweb = "0.4"
stdweb-derive = "0.5"
[dev-dependencies]
rand = "0.5"
ncollide2d = "0.17"