-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.lock
251 lines (217 loc) · 7.87 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
[root]
name = "rustyhex"
version = "0.0.3"
dependencies = [
"cgmath 0.0.1 (git+https://github.com/bjz/cgmath-rs)",
"gfx 0.1.0 (git+https://github.com/gfx-rs/gfx-rs/)",
"gl 0.0.1 (git+https://github.com/bjz/gl-rs)",
"glfw 0.0.1 (git+https://github.com/bjz/glfw-rs.git)",
"glfw_window 0.0.0 (git+https://github.com/PistonDevelopers/glfw_window)",
"hex2d 0.0.2 (git+https://github.com/dpc/hex2d-rs)",
"obj-rs 0.1.0 (git+https://github.com/csherratt/obj-rs.git)",
"piston 0.0.0 (git+https://github.com/pistondevelopers/piston/)",
]
[[package]]
name = "ai_behavior"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/ai_behavior#9037e1a5727e1df958d9a0be7e9e5fa683c5b801"
dependencies = [
"event 0.0.0 (git+https://github.com/pistondevelopers/event)",
]
[[package]]
name = "cam"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/cam#e80ce33e3e55f6f08ab88a875b90567285df5deb"
dependencies = [
"event 0.0.0 (git+https://github.com/pistondevelopers/event)",
"vecmath 0.0.0 (git+https://github.com/pistondevelopers/vecmath)",
]
[[package]]
name = "cgmath"
version = "0.0.1"
source = "git+https://github.com/bjz/cgmath-rs#2fe17066b21949b03802a4af96aa7e5e4303bffc"
[[package]]
name = "current"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/current#607d6028ae101ea77fae23b17e8f1c83e5d3231a"
[[package]]
name = "device"
version = "0.1.0"
source = "git+https://github.com/gfx-rs/gfx-rs/#ce713fbeb6c1b2f2e4914e6be1f9d575f4cd8c6c"
dependencies = [
"gfx_gl 0.1.0 (git+https://github.com/gfx-rs/gfx_gl.git)",
]
[[package]]
name = "event"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/event#58da25cf2f06d7bfcaa20b716762352d5459d5de"
dependencies = [
"current 0.0.0 (git+https://github.com/PistonDevelopers/current)",
"input 0.0.0 (git+https://github.com/pistondevelopers/input)",
]
[[package]]
name = "genmesh"
version = "0.1.0"
source = "git+https://github.com/csherratt/genmesh.git#5a745bee84ee98bdb773c31aca654cf3e3a1cbcd"
[[package]]
name = "gfx"
version = "0.1.0"
source = "git+https://github.com/gfx-rs/gfx-rs/#ce713fbeb6c1b2f2e4914e6be1f9d575f4cd8c6c"
dependencies = [
"device 0.1.0 (git+https://github.com/gfx-rs/gfx-rs/)",
"gfx_macros 0.1.0 (git+https://github.com/gfx-rs/gfx-rs/)",
"render 0.1.0 (git+https://github.com/gfx-rs/gfx-rs/)",
]
[[package]]
name = "gfx_gl"
version = "0.1.0"
source = "git+https://github.com/gfx-rs/gfx_gl.git#ed681503da2e7ed9343003e78af4767e8e4e33a8"
dependencies = [
"gl_generator 0.0.1 (git+https://github.com/bjz/gl-rs)",
]
[[package]]
name = "gfx_macros"
version = "0.1.0"
source = "git+https://github.com/gfx-rs/gfx-rs/#ce713fbeb6c1b2f2e4914e6be1f9d575f4cd8c6c"
[[package]]
name = "gl"
version = "0.0.1"
source = "git+https://github.com/bjz/gl-rs#79cd3b3f9f19aa0e39f6af572fc8673a6d9760bc"
dependencies = [
"gl_generator 0.0.1 (git+https://github.com/bjz/gl-rs)",
]
[[package]]
name = "gl_common"
version = "0.0.1"
source = "git+https://github.com/bjz/gl-rs#79cd3b3f9f19aa0e39f6af572fc8673a6d9760bc"
[[package]]
name = "gl_generator"
version = "0.0.1"
source = "git+https://github.com/bjz/gl-rs#79cd3b3f9f19aa0e39f6af572fc8673a6d9760bc"
dependencies = [
"gl_common 0.0.1 (git+https://github.com/bjz/gl-rs)",
"khronos_api 0.0.1 (git+https://github.com/bjz/gl-rs)",
"rust-xml 0.1.0 (git+https://github.com/netvl/rust-xml)",
]
[[package]]
name = "glfw"
version = "0.0.1"
source = "git+https://github.com/bjz/glfw-rs.git#6afb8eadf23e2ae5925e70d364c196ceab653edb"
dependencies = [
"glfw-sys 3.0.4 (git+https://github.com/servo/glfw?ref=cargo-3.0.4)",
"semver 0.1.0 (git+https://github.com/rust-lang/semver)",
]
[[package]]
name = "glfw-sys"
version = "3.0.4"
source = "git+https://github.com/servo/glfw?ref=cargo-3.0.4#765dace7e4125b87c764f5ac0e7a80eae5c550b2"
[[package]]
name = "glfw_window"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/glfw_window#2331deb4fece4f4dc1bec6422e037bfaf6de37af"
dependencies = [
"event 0.0.0 (git+https://github.com/pistondevelopers/event)",
"gl 0.0.1 (git+https://github.com/bjz/gl-rs)",
"glfw 0.0.1 (git+https://github.com/bjz/glfw-rs.git)",
"input 0.0.0 (git+https://github.com/pistondevelopers/input)",
"shader_version 0.0.0 (git+https://github.com/pistondevelopers/shader_version)",
]
[[package]]
name = "graphics"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/graphics#8c3a975dc7e2f353e344a957238e0953d1b1931a"
dependencies = [
"texture 0.0.0 (git+https://github.com/PistonDevelopers/texture)",
"vecmath 0.0.0 (git+https://github.com/pistondevelopers/vecmath)",
]
[[package]]
name = "hex2d"
version = "0.0.2"
source = "git+https://github.com/dpc/hex2d-rs#f648f8243fb8a2077a77fbc0d2296c572415c2ec"
dependencies = [
"num 0.0.1 (git+https://github.com/rust-lang/num)",
]
[[package]]
name = "image"
version = "0.1.0"
source = "git+https://github.com/pistondevelopers/image#4d83ec4e6abc2bdfce3da3e5f49762728b9f5617"
[[package]]
name = "input"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/input#27bfb0e86d6f01c26098eab279ae3a07eaac909a"
[[package]]
name = "khronos_api"
version = "0.0.1"
source = "git+https://github.com/bjz/gl-rs#79cd3b3f9f19aa0e39f6af572fc8673a6d9760bc"
[[package]]
name = "noise-rs"
version = "0.0.1"
source = "git+https://github.com/bjz/noise-rs#0f5cc9842328338beaa24e86843a6746ffe4239f"
[[package]]
name = "num"
version = "0.0.1"
source = "git+https://github.com/rust-lang/num#da2fcbaa0cff2281aede303204cc7884fb246880"
[[package]]
name = "obj-rs"
version = "0.1.0"
source = "git+https://github.com/csherratt/obj-rs.git#6ce66835c8d0d6161aad665863075a021326f045"
dependencies = [
"genmesh 0.1.0 (git+https://github.com/csherratt/genmesh.git)",
]
[[package]]
name = "piston"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/piston/#85a4604d7ff8cc7b9de61b5a805c287339147025"
dependencies = [
"cam 0.0.0 (git+https://github.com/pistondevelopers/cam)",
"event 0.0.0 (git+https://github.com/pistondevelopers/event)",
"genmesh 0.1.0 (git+https://github.com/csherratt/genmesh.git)",
"graphics 0.0.0 (git+https://github.com/pistondevelopers/graphics)",
"image 0.1.0 (git+https://github.com/pistondevelopers/image)",
"input 0.0.0 (git+https://github.com/pistondevelopers/input)",
"noise-rs 0.0.1 (git+https://github.com/bjz/noise-rs)",
"shader_version 0.0.0 (git+https://github.com/pistondevelopers/shader_version)",
"sprite 0.0.0 (git+https://github.com/pistondevelopers/sprite)",
"vecmath 0.0.0 (git+https://github.com/pistondevelopers/vecmath)",
]
[[package]]
name = "render"
version = "0.1.0"
source = "git+https://github.com/gfx-rs/gfx-rs/#ce713fbeb6c1b2f2e4914e6be1f9d575f4cd8c6c"
dependencies = [
"device 0.1.0 (git+https://github.com/gfx-rs/gfx-rs/)",
]
[[package]]
name = "rust-xml"
version = "0.1.0"
source = "git+https://github.com/netvl/rust-xml#d6c57380a300b94f7e7881979dbe5459dbe4ca06"
[[package]]
name = "semver"
version = "0.1.0"
source = "git+https://github.com/rust-lang/semver#7dca047a9cd40e929a4545b37a1917daff82f156"
[[package]]
name = "shader_version"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/shader_version#03509f5d6dc3c1ccf64471615f438be25186e73a"
[[package]]
name = "sprite"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/sprite#d1104b9fe6ef0aa104970085d97deeebe83c5774"
dependencies = [
"ai_behavior 0.0.0 (git+https://github.com/pistondevelopers/ai_behavior)",
"event 0.0.0 (git+https://github.com/pistondevelopers/event)",
"graphics 0.0.0 (git+https://github.com/pistondevelopers/graphics)",
"uuid 0.0.1 (git+https://github.com/rust-lang/uuid)",
]
[[package]]
name = "texture"
version = "0.0.0"
source = "git+https://github.com/PistonDevelopers/texture#8ef1371decddec0510e21b8b6534876945da35fc"
[[package]]
name = "uuid"
version = "0.0.1"
source = "git+https://github.com/rust-lang/uuid#7c5af48d4f9074717199e05a1895f42b9fb1c1f0"
[[package]]
name = "vecmath"
version = "0.0.0"
source = "git+https://github.com/pistondevelopers/vecmath#052095e8da431a8996d9b90d6745ee2d172022f2"