forked from deltaphc/raylib-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
81 lines (62 loc) · 1.15 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 = "raylib-examples"
version = "3.5.0"
authors = ["David Ayeke"]
edition = "2018"
license = "Zlib"
readme = "../README.md"
repository = "https://github.com/deltaphc/raylib-rs"
[dependencies]
raylib = { version = "3.0", path = "../raylib" }
structopt = "0.2"
specs-derive = "0.4.1"
rand = "0.7"
tcod = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
arr_macro = "0.1.3"
[dependencies.specs]
version = "0.16.1"
default-features = false
[[bin]]
name = "specs"
path = "./specs.rs"
[[bin]]
name = "rgui"
path = "./rgui.rs"
[[bin]]
name = "arkanoid"
path = "./arkanoid.rs"
[[bin]]
name = "logo"
path = "./logo.rs"
[[bin]]
name = "camera2D"
path = "./camera2D.rs"
[[bin]]
name = "raymarch"
path = "./raymarch.rs"
[[bin]]
name = "font"
path = "./font.rs"
[[bin]]
name = "drop"
path = "./drop.rs"
[[bin]]
name = "texture"
path = "./texture.rs"
[[bin]]
name = "yaw_pitch_roll"
path = "yaw_pitch_roll.rs"
[[bin]]
name = "roguelike"
path = "roguelike.rs"
[[bin]]
name = "input"
path = "input.rs"
[[bin]]
name = "3d_camera_first_person"
path = "3d_camera_first_person.rs"
[[bin]]
name = "model_shader"
path = "model_shader.rs"