forked from PistonDevelopers/piston-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·51 lines (42 loc) · 822 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
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "piston-examples"
version = "0.0.0"
authors = ["bvssvni <[email protected]>"]
keywords = []
[[bin]]
name = "hello_world"
path = "src/hello_world.rs"
[[bin]]
name = "draw_state"
path = "src/draw_state.rs"
[[bin]]
name = "sprite"
path = "src/sprite.rs"
[[bin]]
name = "image"
path = "src/image.rs"
[[bin]]
name = "paint"
path = "src/paint.rs"
[[bin]]
name = "deform"
path = "src/deform.rs"
[[bin]]
name = "cube"
path = "src/cube.rs"
[[bin]]
name = "texture_swap"
path = "src/texture_swap.rs"
[dependencies]
piston_window = "0.30.0"
find_folder = "0.3.0"
piston-ai_behavior = "0.11.0"
piston2d-sprite = "0.18.0"
image = "0.5.0"
piston2d-drag_controller = "0.10.0"
gfx = "0.8.0"
gfx_device_gl = "0.7.0"
vecmath = "0.2.0"
camera_controllers = "0.10.0"
pistoncore-sdl2_window = "0.20.0"
rand = "0.3.8"