-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (42 loc) · 1.09 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
[package]
name = "sabahinator"
version = "0.1.0"
license = "MIT"
[dependencies]
log = "0.3"
env_logger = "0.4"
glutin = "0.9"
winit = "0.7"
cgmath = "0.15"
gfx_gl = "0.3"
rand = "0.3"
genmesh = "0.5"
noise = "0.4"
gfx = { path = "./gfx/src/render", version = "0.16" }
gfx_core = { path = "./gfx/src/core", version = "0.7.1" }
gfx_corell = { path = "./gfx/src/corell", version = "0.1" }
gfx_support = { path = "./gfx/src/support", version = "0.7" }
gfx_device_gl = { path = "./gfx/src/backend/gl", version = "0.14", optional = true }
gfx_window_glutin = { path = "./gfx/src/window/glutin", version = "0.17", optional = true }
[dependencies.image]
version = "*"
default-features = false
features = ["png_codec"]
[[example]]
name = "main"
path = "src/main.rs"
[[example]]
name = "tutorial01"
path = "examples/tutorial01/main.rs"
[[example]]
name = "tutorial02"
path = "examples/tutorial02/main.rs"
[[example]]
name = "tutorial03"
path = "examples/tutorial03/main.rs"
[[example]]
name = "tutorial04"
path = "examples/tutorial04/main.rs"
[[example]]
name = "tutorial05"
path = "examples/tutorial05/main.rs"