-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.lock
275 lines (239 loc) · 9.08 KB
/
Cargo.lock
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
[root]
name = "img_dup"
version = "1.0.0"
dependencies = [
"conrod 0.0.0 (git+https://github.com/PistonDevelopers/conrod)",
"file_dialog 0.0.1 (git+https://github.com/cybergeek94/file_dialog)",
"img_hash 0.0.3 (git+https://github.com/cybergeek94/img_hash)",
"pistoncore-sdl2_window 0.0.0 (git+https://github.com/PistonDevelopers/sdl2_window)",
"time 0.1.5 (git+https://github.com/rust-lang/time)",
]
[[package]]
name = "conrod"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/conrod#0486ce0fb34676c33a0641c48332c356eed8172f"
dependencies = [
"freetype-rs 0.0.1 (git+https://github.com/PistonDevelopers/freetype-rs.git)",
"piston2d-graphics 0.0.1 (git+https://github.com/PistonDevelopers/graphics.git)",
"piston2d-opengl_graphics 0.0.0 (git+https://github.com/PistonDevelopers/opengl_graphics.git)",
"pistoncore-event 0.0.1 (git+https://github.com/PistonDevelopers/event)",
"pistoncore-input 0.0.3 (git+https://github.com/pistondevelopers/input)",
"vecmath 0.0.1 (git+https://github.com/PistonDevelopers/vecmath.git)",
]
[[package]]
name = "file_dialog"
version = "0.0.1"
source = "git+https://github.com/cybergeek94/file_dialog#3534c396dc550e697de166e0978b37df38e76bf6"
dependencies = [
"conrod 0.0.0 (git+https://github.com/PistonDevelopers/conrod)",
"pistoncore-sdl2_window 0.0.0 (git+https://github.com/PistonDevelopers/sdl2_window)",
]
[[package]]
name = "freetype-rs"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/freetype-rs.git#92334f88e4f9f3dbd848533ce109b442cc318a70"
dependencies = [
"freetype-sys 0.0.1 (git+https://github.com/PistonDevelopers/freetype-sys)",
]
[[package]]
name = "freetype-sys"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/freetype-sys#6ca43bb380bb84ae1b3b1479caff1cd8a4907fbd"
dependencies = [
"libz-sys 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "gcc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "gl"
version = "0.0.3"
source = "git+https://github.com/bjz/gl-rs#04f8d05a75852a9a1ac45a8b7df7b8ec664764a7"
dependencies = [
"gl_common 0.0.3 (git+https://github.com/bjz/gl-rs)",
"gl_generator 0.0.5 (git+https://github.com/bjz/gl-rs)",
]
[[package]]
name = "gl_common"
version = "0.0.3"
source = "git+https://github.com/bjz/gl-rs#04f8d05a75852a9a1ac45a8b7df7b8ec664764a7"
[[package]]
name = "gl_generator"
version = "0.0.5"
source = "git+https://github.com/bjz/gl-rs#04f8d05a75852a9a1ac45a8b7df7b8ec664764a7"
dependencies = [
"gl_common 0.0.3 (git+https://github.com/bjz/gl-rs)",
"khronos_api 0.0.4 (git+https://github.com/bjz/gl-rs)",
"log 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"xml-rs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "image"
version = "0.2.0-alpha.4"
source = "git+https://github.com/PistonDevelopers/image.git#b8f34bbb00a587a2b7826aeb893388116e08220f"
dependencies = [
"num 0.1.3 (git+https://github.com/rust-lang/num)",
]
[[package]]
name = "img_hash"
version = "0.0.3"
source = "git+https://github.com/cybergeek94/img_hash#c020fff53c393d873322b2d02e6157e66eb9b109"
dependencies = [
"image 0.2.0-alpha.4 (git+https://github.com/PistonDevelopers/image.git)",
]
[[package]]
name = "khronos_api"
version = "0.0.4"
source = "git+https://github.com/bjz/gl-rs#04f8d05a75852a9a1ac45a8b7df7b8ec664764a7"
[[package]]
name = "libz-sys"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"pkg-config 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "log"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"regex 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "num"
version = "0.1.3"
source = "git+https://github.com/rust-lang/num#c11ff279940c17f115ca3223ccb8d910f46dc0aa"
dependencies = [
"rustc-serialize 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "piston-texture"
version = "0.0.1"
source = "git+https://github.com/pistondevelopers/texture#0380876cec71e384841d5a06ad32cb462c97be20"
[[package]]
name = "piston2d-graphics"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/graphics.git#e749a60bf75a4f45ad97b3b4db6c9d96bb4a9a4e"
dependencies = [
"piston-texture 0.0.1 (git+https://github.com/pistondevelopers/texture)",
"quack 0.0.0 (git+https://github.com/pistondevelopers/quack)",
"read_color 0.0.1 (git+https://github.com/PistonDevelopers/read_color)",
"vecmath 0.0.1 (git+https://github.com/PistonDevelopers/vecmath.git)",
]
[[package]]
name = "piston2d-opengl_graphics"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/opengl_graphics.git#d59ccfb39f46f764a865c2b2829f11090051149a"
dependencies = [
"freetype-rs 0.0.1 (git+https://github.com/PistonDevelopers/freetype-rs.git)",
"gl 0.0.3 (git+https://github.com/bjz/gl-rs)",
"image 0.2.0-alpha.4 (git+https://github.com/PistonDevelopers/image.git)",
"piston-texture 0.0.1 (git+https://github.com/pistondevelopers/texture)",
"piston2d-graphics 0.0.1 (git+https://github.com/PistonDevelopers/graphics.git)",
"shader_version 0.0.0 (git+https://github.com/pistondevelopers/shader_version)",
]
[[package]]
name = "pistoncore-current"
version = "0.0.3"
source = "git+https://github.com/PistonDevelopers/current#6105d4706d2cf822942f11b6ce2d422ecab17769"
[[package]]
name = "pistoncore-event"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/event#8c35e7ed21777b277b46d9d89bc3ef2d451ab36a"
dependencies = [
"pistoncore-current 0.0.3 (git+https://github.com/PistonDevelopers/current)",
"pistoncore-event_loop 0.0.2 (git+https://github.com/pistondevelopers/event_loop)",
"pistoncore-input 0.0.3 (git+https://github.com/pistondevelopers/input)",
"pistoncore-window 0.0.1 (git+https://github.com/pistondevelopers/window)",
]
[[package]]
name = "pistoncore-event_loop"
version = "0.0.2"
source = "git+https://github.com/pistondevelopers/event_loop#34593ce6d3ab9a850cc93716bcac39d925e5dab0"
dependencies = [
"quack 0.0.0 (git+https://github.com/pistondevelopers/quack)",
"time 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pistoncore-input"
version = "0.0.3"
source = "git+https://github.com/pistondevelopers/input#c006f288c59fba634ea28fbb37ba2b7c4b28482d"
dependencies = [
"rustc-serialize 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pistoncore-sdl2_window"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/sdl2_window#23363d34f11e7f4af663a8cecac0edb660e48a08"
dependencies = [
"gl 0.0.3 (git+https://github.com/bjz/gl-rs)",
"pistoncore-input 0.0.3 (git+https://github.com/pistondevelopers/input)",
"pistoncore-window 0.0.1 (git+https://github.com/pistondevelopers/window)",
"sdl2 0.0.13 (git+https://github.com/AngryLawyer/rust-sdl2)",
"shader_version 0.0.0 (git+https://github.com/pistondevelopers/shader_version)",
]
[[package]]
name = "pistoncore-window"
version = "0.0.1"
source = "git+https://github.com/pistondevelopers/window#95ded7849150ef875fa0f158ce7e5c4aae50335a"
dependencies = [
"pistoncore-event_loop 0.0.2 (git+https://github.com/pistondevelopers/event_loop)",
"pistoncore-input 0.0.3 (git+https://github.com/pistondevelopers/input)",
"quack 0.0.0 (git+https://github.com/pistondevelopers/quack)",
]
[[package]]
name = "pkg-config"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "quack"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/quack#6e0294e2115a1f92ad1e8861bdade521f74583de"
[[package]]
name = "read_color"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/read_color#3341ae05529048810206377310048403e13de3a4"
[[package]]
name = "regex"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rustc-serialize"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rustc-serialize"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "sdl2"
version = "0.0.13"
source = "git+https://github.com/AngryLawyer/rust-sdl2#f8a13ec41125f261188fa09de20db4070ec29ce0"
[[package]]
name = "shader_version"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/shader_version#e8ccfd20b651b3c2d9303b2d80beff565be24bbd"
[[package]]
name = "time"
version = "0.1.5"
source = "git+https://github.com/rust-lang/time#ae6f82d2eb859fd7d7665b46fb43db8c839ebbeb"
dependencies = [
"gcc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "time"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vecmath"
version = "0.0.1"
source = "git+https://github.com/PistonDevelopers/vecmath.git#d3d3599709673faf7ee7b5204fd5c7b5561eed4a"
[[package]]
name = "xml-rs"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"