forked from gfx-rs/gfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (54 loc) · 1.43 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "gfx"
version = "0.1.0"
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Corey Richardson <corey@octayn.net>",
"kvark",
]
[lib]
name = "gfx"
path = "src/gfx/lib.rs"
[dependencies.gfx_macros]
path = "src/gfx_macros"
[dependencies.device]
path = "src/device/"
[dependencies.render]
path = "src/render/"
[[example]]
name = "triangle"
path = "examples/triangle/main.rs"
[dev_dependencies.glfw]
git = "https://github.com/bjz/glfw-rs.git"
[[example]]
name = "cube"
path = "examples/cube/main.rs"
# [dev_dependencies.glfw]
# git = "https://github.com/bjz/glfw-rs.git"
[dev_dependencies.cgmath]
git = "http://github.com/bjz/cgmath-rs"
[[example]]
name = "terrain"
path = "examples/terrain/main.rs"
# [dev_dependencies.glfw]
# git = "https://github.com/bjz/glfw-rs.git"
# [dev_dependencies.cgmath]
# git = "http://github.com/bjz/cgmath-rs"
[dev_dependencies.genmesh]
git = "https://github.com/csherratt/genmesh.git"
[dev_dependencies.noise-rs]
git = "https://github.com/bjz/noise-rs.git"
[[example]]
name = "gl-init"
path = "examples/gl-init/main.rs"
[dev_dependencies.gl_init]
git = "https://github.com/tomaka/gl-init-rs.git"
[[example]]
name = "performance"
path = "examples/performance/main.rs"
# [dev_dependencies.glfw]
# git = "https://github.com/bjz/glfw-rs.git"
[dev_dependencies.gfx_gl]
git = "https://github.com/gfx-rs/gfx_gl.git"
# [dev_dependencies.cgmath]
# git = "http://github.com/bjz/cgmath-rs"