├── .gitignore ├── CopoFractalKoch.png ├── README.md ├── Cargo.toml ├── src └── main.rs └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /CopoFractalKoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aarroyoc/fractal_koch_rust/master/CopoFractalKoch.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Copo de nieve de Koch 2 | 3 | ``` 4 | cargo run --release 5 | ``` 6 | 7 | ![FractalKoch en GNOME](CopoFractalKoch.png) -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "fractal_koch_rust" 3 | version = "0.1.0" 4 | authors = ["Adrián Arroyo Calle "] 5 | 6 | [dependencies] 7 | turtle = "^1.0.0-alpha.7" 8 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | extern crate turtle; 2 | 3 | use turtle::Turtle; 4 | use turtle::Distance; 5 | 6 | trait Fractal{ 7 | fn koch(&mut self, length: f64, level: u32); 8 | fn op(&mut self, length: f64, level: u32) { 9 | if level == 0{ 10 | self.forward(length); 11 | }else{ 12 | self.koch(length,level); 13 | } 14 | } 15 | fn forward(&mut self, distance: Distance); 16 | } 17 | 18 | impl Fractal for Turtle{ 19 | fn koch(&mut self, length: f64, level: u32){ 20 | self.op(length/3.0,level-1); 21 | self.left(60.0); 22 | self.op(length/3.0,level-1); 23 | self.right(120.0); 24 | self.op(length/3.0,level-1); 25 | self.left(60.0); 26 | self.op(length/3.0,level-1); 27 | } 28 | fn forward(&mut self, distance: Distance){ 29 | self.forward(distance); 30 | } 31 | } 32 | 33 | fn main() { 34 | let mut turtle = Turtle::new (); 35 | turtle.set_pen_size(2.0); 36 | turtle.pen_up(); 37 | turtle.go_to([-200.0,100.0]); 38 | turtle.pen_down(); 39 | turtle.set_speed(0); 40 | turtle.hide(); 41 | turtle.right(90.0); 42 | turtle.koch(400.0,5); 43 | turtle.right(120.0); 44 | turtle.koch(400.0,5); 45 | turtle.right(120.0); 46 | turtle.koch(400.0,5); 47 | } 48 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "adler32" 3 | version = "1.0.2" 4 | source = "registry+https://github.com/rust-lang/crates.io-index" 5 | 6 | [[package]] 7 | name = "android_glue" 8 | version = "0.2.3" 9 | source = "registry+https://github.com/rust-lang/crates.io-index" 10 | 11 | [[package]] 12 | name = "arrayvec" 13 | version = "0.4.6" 14 | source = "registry+https://github.com/rust-lang/crates.io-index" 15 | dependencies = [ 16 | "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", 17 | ] 18 | 19 | [[package]] 20 | name = "bitflags" 21 | version = "0.7.0" 22 | source = "registry+https://github.com/rust-lang/crates.io-index" 23 | 24 | [[package]] 25 | name = "bitflags" 26 | version = "0.8.2" 27 | source = "registry+https://github.com/rust-lang/crates.io-index" 28 | 29 | [[package]] 30 | name = "bitflags" 31 | version = "0.9.1" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | 34 | [[package]] 35 | name = "bitflags" 36 | version = "1.0.1" 37 | source = "registry+https://github.com/rust-lang/crates.io-index" 38 | 39 | [[package]] 40 | name = "block" 41 | version = "0.1.6" 42 | source = "registry+https://github.com/rust-lang/crates.io-index" 43 | 44 | [[package]] 45 | name = "byteorder" 46 | version = "0.4.2" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | 49 | [[package]] 50 | name = "byteorder" 51 | version = "1.2.1" 52 | source = "registry+https://github.com/rust-lang/crates.io-index" 53 | 54 | [[package]] 55 | name = "cfg-if" 56 | version = "0.1.2" 57 | source = "registry+https://github.com/rust-lang/crates.io-index" 58 | 59 | [[package]] 60 | name = "cgl" 61 | version = "0.2.1" 62 | source = "registry+https://github.com/rust-lang/crates.io-index" 63 | dependencies = [ 64 | "gleam 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)", 65 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 66 | ] 67 | 68 | [[package]] 69 | name = "coco" 70 | version = "0.1.1" 71 | source = "registry+https://github.com/rust-lang/crates.io-index" 72 | dependencies = [ 73 | "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 74 | "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 75 | ] 76 | 77 | [[package]] 78 | name = "cocoa" 79 | version = "0.9.2" 80 | source = "registry+https://github.com/rust-lang/crates.io-index" 81 | dependencies = [ 82 | "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 83 | "block 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", 84 | "core-graphics 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 85 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 86 | "objc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 87 | ] 88 | 89 | [[package]] 90 | name = "color_quant" 91 | version = "1.0.0" 92 | source = "registry+https://github.com/rust-lang/crates.io-index" 93 | 94 | [[package]] 95 | name = "core-foundation" 96 | version = "0.3.0" 97 | source = "registry+https://github.com/rust-lang/crates.io-index" 98 | dependencies = [ 99 | "core-foundation-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 100 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 101 | ] 102 | 103 | [[package]] 104 | name = "core-foundation" 105 | version = "0.4.6" 106 | source = "registry+https://github.com/rust-lang/crates.io-index" 107 | dependencies = [ 108 | "core-foundation-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 109 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 110 | ] 111 | 112 | [[package]] 113 | name = "core-foundation-sys" 114 | version = "0.3.1" 115 | source = "registry+https://github.com/rust-lang/crates.io-index" 116 | dependencies = [ 117 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 118 | ] 119 | 120 | [[package]] 121 | name = "core-foundation-sys" 122 | version = "0.4.6" 123 | source = "registry+https://github.com/rust-lang/crates.io-index" 124 | dependencies = [ 125 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 126 | ] 127 | 128 | [[package]] 129 | name = "core-graphics" 130 | version = "0.8.2" 131 | source = "registry+https://github.com/rust-lang/crates.io-index" 132 | dependencies = [ 133 | "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 134 | "core-foundation 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 135 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 136 | ] 137 | 138 | [[package]] 139 | name = "deflate" 140 | version = "0.7.17" 141 | source = "registry+https://github.com/rust-lang/crates.io-index" 142 | dependencies = [ 143 | "adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 144 | "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 145 | ] 146 | 147 | [[package]] 148 | name = "derivative" 149 | version = "1.0.0" 150 | source = "registry+https://github.com/rust-lang/crates.io-index" 151 | dependencies = [ 152 | "itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", 153 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 154 | "syn 0.10.8 (registry+https://github.com/rust-lang/crates.io-index)", 155 | ] 156 | 157 | [[package]] 158 | name = "dlib" 159 | version = "0.3.1" 160 | source = "registry+https://github.com/rust-lang/crates.io-index" 161 | dependencies = [ 162 | "libloading 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 163 | ] 164 | 165 | [[package]] 166 | name = "draw_state" 167 | version = "0.7.1" 168 | source = "registry+https://github.com/rust-lang/crates.io-index" 169 | dependencies = [ 170 | "bitflags 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 171 | ] 172 | 173 | [[package]] 174 | name = "dtoa" 175 | version = "0.4.2" 176 | source = "registry+https://github.com/rust-lang/crates.io-index" 177 | 178 | [[package]] 179 | name = "dwmapi-sys" 180 | version = "0.1.1" 181 | source = "registry+https://github.com/rust-lang/crates.io-index" 182 | dependencies = [ 183 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 184 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 185 | ] 186 | 187 | [[package]] 188 | name = "either" 189 | version = "1.4.0" 190 | source = "registry+https://github.com/rust-lang/crates.io-index" 191 | 192 | [[package]] 193 | name = "enum_primitive" 194 | version = "0.1.1" 195 | source = "registry+https://github.com/rust-lang/crates.io-index" 196 | dependencies = [ 197 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 198 | ] 199 | 200 | [[package]] 201 | name = "fnv" 202 | version = "1.0.6" 203 | source = "registry+https://github.com/rust-lang/crates.io-index" 204 | 205 | [[package]] 206 | name = "fractal_koch_rust" 207 | version = "0.1.0" 208 | dependencies = [ 209 | "turtle 1.0.0-alpha.8 (registry+https://github.com/rust-lang/crates.io-index)", 210 | ] 211 | 212 | [[package]] 213 | name = "fs2" 214 | version = "0.2.5" 215 | source = "registry+https://github.com/rust-lang/crates.io-index" 216 | dependencies = [ 217 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 218 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 219 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 220 | ] 221 | 222 | [[package]] 223 | name = "fuchsia-zircon" 224 | version = "0.3.2" 225 | source = "registry+https://github.com/rust-lang/crates.io-index" 226 | dependencies = [ 227 | "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 228 | "fuchsia-zircon-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 229 | ] 230 | 231 | [[package]] 232 | name = "fuchsia-zircon-sys" 233 | version = "0.3.2" 234 | source = "registry+https://github.com/rust-lang/crates.io-index" 235 | 236 | [[package]] 237 | name = "gdi32-sys" 238 | version = "0.1.2" 239 | source = "registry+https://github.com/rust-lang/crates.io-index" 240 | dependencies = [ 241 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 242 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 243 | ] 244 | 245 | [[package]] 246 | name = "gfx" 247 | version = "0.16.2" 248 | source = "registry+https://github.com/rust-lang/crates.io-index" 249 | dependencies = [ 250 | "derivative 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 251 | "draw_state 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 252 | "gfx_core 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 253 | "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 254 | ] 255 | 256 | [[package]] 257 | name = "gfx_core" 258 | version = "0.7.2" 259 | source = "registry+https://github.com/rust-lang/crates.io-index" 260 | dependencies = [ 261 | "bitflags 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 262 | "derivative 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 263 | "draw_state 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 264 | "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 265 | ] 266 | 267 | [[package]] 268 | name = "gfx_device_gl" 269 | version = "0.14.6" 270 | source = "registry+https://github.com/rust-lang/crates.io-index" 271 | dependencies = [ 272 | "gfx_core 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 273 | "gfx_gl 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 274 | "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 275 | ] 276 | 277 | [[package]] 278 | name = "gfx_gl" 279 | version = "0.4.0" 280 | source = "registry+https://github.com/rust-lang/crates.io-index" 281 | dependencies = [ 282 | "gl_generator 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 283 | ] 284 | 285 | [[package]] 286 | name = "gif" 287 | version = "0.9.2" 288 | source = "registry+https://github.com/rust-lang/crates.io-index" 289 | dependencies = [ 290 | "color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 291 | "lzw 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", 292 | ] 293 | 294 | [[package]] 295 | name = "gl" 296 | version = "0.6.5" 297 | source = "registry+https://github.com/rust-lang/crates.io-index" 298 | dependencies = [ 299 | "gl_generator 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 300 | ] 301 | 302 | [[package]] 303 | name = "gl_generator" 304 | version = "0.6.1" 305 | source = "registry+https://github.com/rust-lang/crates.io-index" 306 | dependencies = [ 307 | "khronos_api 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 308 | "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 309 | "xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 310 | ] 311 | 312 | [[package]] 313 | name = "gl_generator" 314 | version = "0.7.0" 315 | source = "registry+https://github.com/rust-lang/crates.io-index" 316 | dependencies = [ 317 | "khronos_api 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 318 | "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 319 | "xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 320 | ] 321 | 322 | [[package]] 323 | name = "gleam" 324 | version = "0.4.17" 325 | source = "registry+https://github.com/rust-lang/crates.io-index" 326 | dependencies = [ 327 | "gl_generator 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 328 | "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 329 | ] 330 | 331 | [[package]] 332 | name = "glutin" 333 | version = "0.10.1" 334 | source = "registry+https://github.com/rust-lang/crates.io-index" 335 | dependencies = [ 336 | "android_glue 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 337 | "cgl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 338 | "cocoa 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 339 | "core-foundation 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 340 | "core-graphics 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 341 | "dwmapi-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 342 | "gdi32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 343 | "gl_generator 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 344 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 345 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 346 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 347 | "objc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 348 | "osmesa-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 349 | "shared_library 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 350 | "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 351 | "user32-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 352 | "wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 353 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 354 | "winit 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", 355 | "x11-dl 2.17.2 (registry+https://github.com/rust-lang/crates.io-index)", 356 | ] 357 | 358 | [[package]] 359 | name = "image" 360 | version = "0.17.0" 361 | source = "registry+https://github.com/rust-lang/crates.io-index" 362 | dependencies = [ 363 | "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 364 | "enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 365 | "gif 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 366 | "jpeg-decoder 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", 367 | "num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)", 368 | "num-rational 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", 369 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 370 | "png 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", 371 | "scoped_threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 372 | ] 373 | 374 | [[package]] 375 | name = "inflate" 376 | version = "0.3.3" 377 | source = "registry+https://github.com/rust-lang/crates.io-index" 378 | dependencies = [ 379 | "adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", 380 | ] 381 | 382 | [[package]] 383 | name = "interpolation" 384 | version = "0.1.0" 385 | source = "registry+https://github.com/rust-lang/crates.io-index" 386 | 387 | [[package]] 388 | name = "itertools" 389 | version = "0.5.10" 390 | source = "registry+https://github.com/rust-lang/crates.io-index" 391 | dependencies = [ 392 | "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 393 | ] 394 | 395 | [[package]] 396 | name = "itoa" 397 | version = "0.3.4" 398 | source = "registry+https://github.com/rust-lang/crates.io-index" 399 | 400 | [[package]] 401 | name = "jpeg-decoder" 402 | version = "0.1.13" 403 | source = "registry+https://github.com/rust-lang/crates.io-index" 404 | dependencies = [ 405 | "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 406 | "rayon 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 407 | ] 408 | 409 | [[package]] 410 | name = "kernel32-sys" 411 | version = "0.2.2" 412 | source = "registry+https://github.com/rust-lang/crates.io-index" 413 | dependencies = [ 414 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 415 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 416 | ] 417 | 418 | [[package]] 419 | name = "khronos_api" 420 | version = "2.0.0" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | 423 | [[package]] 424 | name = "lazy_static" 425 | version = "0.2.11" 426 | source = "registry+https://github.com/rust-lang/crates.io-index" 427 | 428 | [[package]] 429 | name = "lazy_static" 430 | version = "1.0.0" 431 | source = "registry+https://github.com/rust-lang/crates.io-index" 432 | 433 | [[package]] 434 | name = "libc" 435 | version = "0.2.34" 436 | source = "registry+https://github.com/rust-lang/crates.io-index" 437 | 438 | [[package]] 439 | name = "libloading" 440 | version = "0.3.4" 441 | source = "registry+https://github.com/rust-lang/crates.io-index" 442 | dependencies = [ 443 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 444 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 445 | "target_build_utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 446 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 447 | ] 448 | 449 | [[package]] 450 | name = "linked-hash-map" 451 | version = "0.5.0" 452 | source = "registry+https://github.com/rust-lang/crates.io-index" 453 | 454 | [[package]] 455 | name = "log" 456 | version = "0.3.9" 457 | source = "registry+https://github.com/rust-lang/crates.io-index" 458 | dependencies = [ 459 | "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", 460 | ] 461 | 462 | [[package]] 463 | name = "log" 464 | version = "0.4.1" 465 | source = "registry+https://github.com/rust-lang/crates.io-index" 466 | dependencies = [ 467 | "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 468 | ] 469 | 470 | [[package]] 471 | name = "lzw" 472 | version = "0.10.0" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | 475 | [[package]] 476 | name = "malloc_buf" 477 | version = "0.0.6" 478 | source = "registry+https://github.com/rust-lang/crates.io-index" 479 | dependencies = [ 480 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 481 | ] 482 | 483 | [[package]] 484 | name = "memmap" 485 | version = "0.4.0" 486 | source = "registry+https://github.com/rust-lang/crates.io-index" 487 | dependencies = [ 488 | "fs2 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", 489 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 490 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 491 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 492 | ] 493 | 494 | [[package]] 495 | name = "nodrop" 496 | version = "0.1.12" 497 | source = "registry+https://github.com/rust-lang/crates.io-index" 498 | 499 | [[package]] 500 | name = "num-integer" 501 | version = "0.1.35" 502 | source = "registry+https://github.com/rust-lang/crates.io-index" 503 | dependencies = [ 504 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 505 | ] 506 | 507 | [[package]] 508 | name = "num-iter" 509 | version = "0.1.34" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | dependencies = [ 512 | "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", 513 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 514 | ] 515 | 516 | [[package]] 517 | name = "num-rational" 518 | version = "0.1.40" 519 | source = "registry+https://github.com/rust-lang/crates.io-index" 520 | dependencies = [ 521 | "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", 522 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 523 | ] 524 | 525 | [[package]] 526 | name = "num-traits" 527 | version = "0.1.41" 528 | source = "registry+https://github.com/rust-lang/crates.io-index" 529 | 530 | [[package]] 531 | name = "num_cpus" 532 | version = "1.8.0" 533 | source = "registry+https://github.com/rust-lang/crates.io-index" 534 | dependencies = [ 535 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 536 | ] 537 | 538 | [[package]] 539 | name = "objc" 540 | version = "0.2.2" 541 | source = "registry+https://github.com/rust-lang/crates.io-index" 542 | dependencies = [ 543 | "malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 544 | ] 545 | 546 | [[package]] 547 | name = "osmesa-sys" 548 | version = "0.1.2" 549 | source = "registry+https://github.com/rust-lang/crates.io-index" 550 | dependencies = [ 551 | "shared_library 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 552 | ] 553 | 554 | [[package]] 555 | name = "phf" 556 | version = "0.7.21" 557 | source = "registry+https://github.com/rust-lang/crates.io-index" 558 | dependencies = [ 559 | "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 560 | ] 561 | 562 | [[package]] 563 | name = "phf_codegen" 564 | version = "0.7.21" 565 | source = "registry+https://github.com/rust-lang/crates.io-index" 566 | dependencies = [ 567 | "phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 568 | "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 569 | ] 570 | 571 | [[package]] 572 | name = "phf_generator" 573 | version = "0.7.21" 574 | source = "registry+https://github.com/rust-lang/crates.io-index" 575 | dependencies = [ 576 | "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 577 | "rand 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 578 | ] 579 | 580 | [[package]] 581 | name = "phf_shared" 582 | version = "0.7.21" 583 | source = "registry+https://github.com/rust-lang/crates.io-index" 584 | dependencies = [ 585 | "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 586 | ] 587 | 588 | [[package]] 589 | name = "piston" 590 | version = "0.35.0" 591 | source = "registry+https://github.com/rust-lang/crates.io-index" 592 | dependencies = [ 593 | "pistoncore-event_loop 0.35.0 (registry+https://github.com/rust-lang/crates.io-index)", 594 | "pistoncore-input 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", 595 | "pistoncore-window 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", 596 | ] 597 | 598 | [[package]] 599 | name = "piston-float" 600 | version = "0.3.0" 601 | source = "registry+https://github.com/rust-lang/crates.io-index" 602 | 603 | [[package]] 604 | name = "piston-gfx_texture" 605 | version = "0.29.0" 606 | source = "registry+https://github.com/rust-lang/crates.io-index" 607 | dependencies = [ 608 | "gfx 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)", 609 | "gfx_core 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", 610 | "image 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)", 611 | "piston-texture 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 612 | ] 613 | 614 | [[package]] 615 | name = "piston-shaders_graphics2d" 616 | version = "0.3.1" 617 | source = "registry+https://github.com/rust-lang/crates.io-index" 618 | 619 | [[package]] 620 | name = "piston-texture" 621 | version = "0.6.0" 622 | source = "registry+https://github.com/rust-lang/crates.io-index" 623 | 624 | [[package]] 625 | name = "piston-viewport" 626 | version = "0.3.0" 627 | source = "registry+https://github.com/rust-lang/crates.io-index" 628 | dependencies = [ 629 | "piston-float 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 630 | ] 631 | 632 | [[package]] 633 | name = "piston2d-gfx_graphics" 634 | version = "0.46.0" 635 | source = "registry+https://github.com/rust-lang/crates.io-index" 636 | dependencies = [ 637 | "draw_state 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 638 | "gfx 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)", 639 | "piston-gfx_texture 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)", 640 | "piston-shaders_graphics2d 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 641 | "piston2d-graphics 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", 642 | "shader_version 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 643 | ] 644 | 645 | [[package]] 646 | name = "piston2d-graphics" 647 | version = "0.23.0" 648 | source = "registry+https://github.com/rust-lang/crates.io-index" 649 | dependencies = [ 650 | "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 651 | "interpolation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 652 | "piston-texture 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 653 | "piston-viewport 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 654 | "read_color 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 655 | "rusttype 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 656 | "vecmath 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 657 | ] 658 | 659 | [[package]] 660 | name = "piston_window" 661 | version = "0.73.0" 662 | source = "registry+https://github.com/rust-lang/crates.io-index" 663 | dependencies = [ 664 | "gfx 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)", 665 | "gfx_device_gl 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)", 666 | "piston 0.35.0 (registry+https://github.com/rust-lang/crates.io-index)", 667 | "piston-texture 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", 668 | "piston2d-gfx_graphics 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)", 669 | "piston2d-graphics 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", 670 | "pistoncore-glutin_window 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)", 671 | "shader_version 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 672 | ] 673 | 674 | [[package]] 675 | name = "pistoncore-event_loop" 676 | version = "0.35.0" 677 | source = "registry+https://github.com/rust-lang/crates.io-index" 678 | dependencies = [ 679 | "pistoncore-input 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", 680 | "pistoncore-window 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", 681 | ] 682 | 683 | [[package]] 684 | name = "pistoncore-glutin_window" 685 | version = "0.42.1" 686 | source = "registry+https://github.com/rust-lang/crates.io-index" 687 | dependencies = [ 688 | "gl 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 689 | "glutin 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", 690 | "pistoncore-input 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", 691 | "pistoncore-window 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)", 692 | "shader_version 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 693 | ] 694 | 695 | [[package]] 696 | name = "pistoncore-input" 697 | version = "0.20.0" 698 | source = "registry+https://github.com/rust-lang/crates.io-index" 699 | dependencies = [ 700 | "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 701 | "piston-viewport 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 702 | "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", 703 | "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", 704 | ] 705 | 706 | [[package]] 707 | name = "pistoncore-window" 708 | version = "0.30.0" 709 | source = "registry+https://github.com/rust-lang/crates.io-index" 710 | dependencies = [ 711 | "pistoncore-input 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", 712 | "shader_version 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 713 | ] 714 | 715 | [[package]] 716 | name = "pkg-config" 717 | version = "0.3.9" 718 | source = "registry+https://github.com/rust-lang/crates.io-index" 719 | 720 | [[package]] 721 | name = "png" 722 | version = "0.11.0" 723 | source = "registry+https://github.com/rust-lang/crates.io-index" 724 | dependencies = [ 725 | "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 726 | "deflate 0.7.17 (registry+https://github.com/rust-lang/crates.io-index)", 727 | "inflate 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 728 | "num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)", 729 | ] 730 | 731 | [[package]] 732 | name = "quote" 733 | version = "0.3.15" 734 | source = "registry+https://github.com/rust-lang/crates.io-index" 735 | 736 | [[package]] 737 | name = "rand" 738 | version = "0.3.19" 739 | source = "registry+https://github.com/rust-lang/crates.io-index" 740 | dependencies = [ 741 | "fuchsia-zircon 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 742 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 743 | ] 744 | 745 | [[package]] 746 | name = "rayon" 747 | version = "0.8.2" 748 | source = "registry+https://github.com/rust-lang/crates.io-index" 749 | dependencies = [ 750 | "rayon-core 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 751 | ] 752 | 753 | [[package]] 754 | name = "rayon-core" 755 | version = "1.3.0" 756 | source = "registry+https://github.com/rust-lang/crates.io-index" 757 | dependencies = [ 758 | "coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 759 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 760 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 761 | "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 762 | "rand 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 763 | ] 764 | 765 | [[package]] 766 | name = "read_color" 767 | version = "0.1.0" 768 | source = "registry+https://github.com/rust-lang/crates.io-index" 769 | 770 | [[package]] 771 | name = "redox_syscall" 772 | version = "0.1.33" 773 | source = "registry+https://github.com/rust-lang/crates.io-index" 774 | 775 | [[package]] 776 | name = "rusttype" 777 | version = "0.2.3" 778 | source = "registry+https://github.com/rust-lang/crates.io-index" 779 | dependencies = [ 780 | "arrayvec 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 781 | "linked-hash-map 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 782 | "stb_truetype 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 783 | ] 784 | 785 | [[package]] 786 | name = "scoped_threadpool" 787 | version = "0.1.8" 788 | source = "registry+https://github.com/rust-lang/crates.io-index" 789 | 790 | [[package]] 791 | name = "scopeguard" 792 | version = "0.3.3" 793 | source = "registry+https://github.com/rust-lang/crates.io-index" 794 | 795 | [[package]] 796 | name = "serde" 797 | version = "0.9.15" 798 | source = "registry+https://github.com/rust-lang/crates.io-index" 799 | 800 | [[package]] 801 | name = "serde" 802 | version = "1.0.27" 803 | source = "registry+https://github.com/rust-lang/crates.io-index" 804 | 805 | [[package]] 806 | name = "serde_derive" 807 | version = "1.0.27" 808 | source = "registry+https://github.com/rust-lang/crates.io-index" 809 | dependencies = [ 810 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 811 | "serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", 812 | "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 813 | ] 814 | 815 | [[package]] 816 | name = "serde_derive_internals" 817 | version = "0.19.0" 818 | source = "registry+https://github.com/rust-lang/crates.io-index" 819 | dependencies = [ 820 | "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", 821 | "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", 822 | ] 823 | 824 | [[package]] 825 | name = "serde_json" 826 | version = "0.9.10" 827 | source = "registry+https://github.com/rust-lang/crates.io-index" 828 | dependencies = [ 829 | "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 830 | "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 831 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 832 | "serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", 833 | ] 834 | 835 | [[package]] 836 | name = "serde_json" 837 | version = "1.0.9" 838 | source = "registry+https://github.com/rust-lang/crates.io-index" 839 | dependencies = [ 840 | "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 841 | "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", 842 | "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", 843 | "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", 844 | ] 845 | 846 | [[package]] 847 | name = "shader_version" 848 | version = "0.3.0" 849 | source = "registry+https://github.com/rust-lang/crates.io-index" 850 | 851 | [[package]] 852 | name = "shared_library" 853 | version = "0.1.8" 854 | source = "registry+https://github.com/rust-lang/crates.io-index" 855 | dependencies = [ 856 | "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 857 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 858 | ] 859 | 860 | [[package]] 861 | name = "shell32-sys" 862 | version = "0.1.2" 863 | source = "registry+https://github.com/rust-lang/crates.io-index" 864 | dependencies = [ 865 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 866 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 867 | ] 868 | 869 | [[package]] 870 | name = "siphasher" 871 | version = "0.2.2" 872 | source = "registry+https://github.com/rust-lang/crates.io-index" 873 | 874 | [[package]] 875 | name = "stb_truetype" 876 | version = "0.2.1" 877 | source = "registry+https://github.com/rust-lang/crates.io-index" 878 | dependencies = [ 879 | "byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", 880 | ] 881 | 882 | [[package]] 883 | name = "syn" 884 | version = "0.10.8" 885 | source = "registry+https://github.com/rust-lang/crates.io-index" 886 | dependencies = [ 887 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 888 | "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 889 | ] 890 | 891 | [[package]] 892 | name = "syn" 893 | version = "0.11.11" 894 | source = "registry+https://github.com/rust-lang/crates.io-index" 895 | dependencies = [ 896 | "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", 897 | "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", 898 | "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 899 | ] 900 | 901 | [[package]] 902 | name = "synom" 903 | version = "0.11.3" 904 | source = "registry+https://github.com/rust-lang/crates.io-index" 905 | dependencies = [ 906 | "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", 907 | ] 908 | 909 | [[package]] 910 | name = "target_build_utils" 911 | version = "0.3.1" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | dependencies = [ 914 | "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 915 | "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", 916 | "serde_json 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 917 | ] 918 | 919 | [[package]] 920 | name = "tempfile" 921 | version = "2.2.0" 922 | source = "registry+https://github.com/rust-lang/crates.io-index" 923 | dependencies = [ 924 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 925 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 926 | "rand 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 927 | "redox_syscall 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)", 928 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 929 | ] 930 | 931 | [[package]] 932 | name = "turtle" 933 | version = "1.0.0-alpha.8" 934 | source = "registry+https://github.com/rust-lang/crates.io-index" 935 | dependencies = [ 936 | "interpolation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 937 | "piston_window 0.73.0 (registry+https://github.com/rust-lang/crates.io-index)", 938 | "rand 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", 939 | "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", 940 | "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", 941 | "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", 942 | ] 943 | 944 | [[package]] 945 | name = "unicode-xid" 946 | version = "0.0.4" 947 | source = "registry+https://github.com/rust-lang/crates.io-index" 948 | 949 | [[package]] 950 | name = "user32-sys" 951 | version = "0.1.3" 952 | source = "registry+https://github.com/rust-lang/crates.io-index" 953 | dependencies = [ 954 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 955 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 956 | ] 957 | 958 | [[package]] 959 | name = "vecmath" 960 | version = "0.3.1" 961 | source = "registry+https://github.com/rust-lang/crates.io-index" 962 | dependencies = [ 963 | "piston-float 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 964 | ] 965 | 966 | [[package]] 967 | name = "wayland-client" 968 | version = "0.9.10" 969 | source = "registry+https://github.com/rust-lang/crates.io-index" 970 | dependencies = [ 971 | "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 972 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 973 | "wayland-scanner 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 974 | "wayland-sys 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 975 | ] 976 | 977 | [[package]] 978 | name = "wayland-kbd" 979 | version = "0.9.1" 980 | source = "registry+https://github.com/rust-lang/crates.io-index" 981 | dependencies = [ 982 | "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", 983 | "dlib 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 984 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 985 | "memmap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 986 | "wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 987 | ] 988 | 989 | [[package]] 990 | name = "wayland-protocols" 991 | version = "0.9.10" 992 | source = "registry+https://github.com/rust-lang/crates.io-index" 993 | dependencies = [ 994 | "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 995 | "wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 996 | "wayland-scanner 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 997 | "wayland-sys 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 998 | ] 999 | 1000 | [[package]] 1001 | name = "wayland-scanner" 1002 | version = "0.9.10" 1003 | source = "registry+https://github.com/rust-lang/crates.io-index" 1004 | dependencies = [ 1005 | "xml-rs 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 1006 | ] 1007 | 1008 | [[package]] 1009 | name = "wayland-sys" 1010 | version = "0.9.10" 1011 | source = "registry+https://github.com/rust-lang/crates.io-index" 1012 | dependencies = [ 1013 | "dlib 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 1014 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 1015 | ] 1016 | 1017 | [[package]] 1018 | name = "wayland-window" 1019 | version = "0.8.0" 1020 | source = "registry+https://github.com/rust-lang/crates.io-index" 1021 | dependencies = [ 1022 | "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", 1023 | "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1024 | "wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 1025 | "wayland-protocols 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 1026 | ] 1027 | 1028 | [[package]] 1029 | name = "winapi" 1030 | version = "0.2.8" 1031 | source = "registry+https://github.com/rust-lang/crates.io-index" 1032 | 1033 | [[package]] 1034 | name = "winapi-build" 1035 | version = "0.1.1" 1036 | source = "registry+https://github.com/rust-lang/crates.io-index" 1037 | 1038 | [[package]] 1039 | name = "winit" 1040 | version = "0.8.3" 1041 | source = "registry+https://github.com/rust-lang/crates.io-index" 1042 | dependencies = [ 1043 | "android_glue 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", 1044 | "cocoa 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", 1045 | "core-foundation 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 1046 | "core-graphics 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", 1047 | "dwmapi-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", 1048 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1049 | "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", 1050 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 1051 | "objc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", 1052 | "shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 1053 | "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", 1054 | "user32-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 1055 | "wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 1056 | "wayland-kbd 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1057 | "wayland-protocols 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)", 1058 | "wayland-window 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 1059 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 1060 | "x11-dl 2.17.2 (registry+https://github.com/rust-lang/crates.io-index)", 1061 | ] 1062 | 1063 | [[package]] 1064 | name = "x11-dl" 1065 | version = "2.17.2" 1066 | source = "registry+https://github.com/rust-lang/crates.io-index" 1067 | dependencies = [ 1068 | "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 1069 | "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", 1070 | "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 1071 | ] 1072 | 1073 | [[package]] 1074 | name = "xml-rs" 1075 | version = "0.6.1" 1076 | source = "registry+https://github.com/rust-lang/crates.io-index" 1077 | dependencies = [ 1078 | "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", 1079 | ] 1080 | 1081 | [[package]] 1082 | name = "xml-rs" 1083 | version = "0.7.0" 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" 1085 | dependencies = [ 1086 | "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1087 | ] 1088 | 1089 | [metadata] 1090 | "checksum adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6cbd0b9af8587c72beadc9f72d35b9fbb070982c9e6203e46e93f10df25f8f45" 1091 | "checksum android_glue 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "000444226fcff248f2bc4c7625be32c63caccfecc2723a2b9f78a7487a49c407" 1092 | "checksum arrayvec 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2f0ef4a9820019a0c91d918918c93dc71d469f581a49b47ddc1d285d4270bbe2" 1093 | "checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" 1094 | "checksum bitflags 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1370e9fc2a6ae53aea8b7a5110edbd08836ed87c88736dfabccade1c2b44bff4" 1095 | "checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" 1096 | "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" 1097 | "checksum block 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 1098 | "checksum byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96c8b41881888cc08af32d47ac4edd52bc7fa27fef774be47a92443756451304" 1099 | "checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" 1100 | "checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" 1101 | "checksum cgl 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "86765cb42c2a2c497e142af72517c1b4d7ae5bb2f25dfa77a5c69642f2342d89" 1102 | "checksum coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c06169f5beb7e31c7c67ebf5540b8b472d23e3eade3b2ec7d1f5b504a85f91bd" 1103 | "checksum cocoa 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4047fed6536f40cc2ae5e7834fb38e382c788270191c4cd69196f89686d076ce" 1104 | "checksum color_quant 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a475fc4af42d83d28adf72968d9bcfaf035a1a9381642d8e85d8a04957767b0d" 1105 | "checksum core-foundation 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f51ce3b8ebe311c56de14231eb57572c15abebd2d32b3bcb99bcdb9c101f5ac3" 1106 | "checksum core-foundation 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8047f547cd6856d45b1cdd75ef8d2f21f3d0e4bf1dab0a0041b0ae9a5dda9c0e" 1107 | "checksum core-foundation-sys 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "41115a6aa5d3e1e5ef98148373f25971d1fad53818553f216495f9e67e90a624" 1108 | "checksum core-foundation-sys 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "152195421a2e6497a8179195672e9d4ee8e45ed8c465b626f1606d27a08ebcd5" 1109 | "checksum core-graphics 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9797d894882bbf37c0c1218a8d90333fae3c6b09d526534fd370aac2bc6efc21" 1110 | "checksum deflate 0.7.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4dddda59aaab719767ab11d3efd9a714e95b610c4445d4435765021e9d52dfb1" 1111 | "checksum derivative 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67b3d6d0e84e53a5bdc263cc59340541877bb541706a191d762bfac6a481bdde" 1112 | "checksum dlib 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "148bce4ce1c36c4509f29cb54e62c2bd265551a9b00b38070fad551a851866ec" 1113 | "checksum draw_state 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "337aeb4ca88f60f29e2e01ff252ac4eb40b9a86c65f699bdf4c7e3944390cea9" 1114 | "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab" 1115 | "checksum dwmapi-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b44b6442aeab12e609aee505bd1066bdfd36b79c3fe5aad604aae91537623e76" 1116 | "checksum either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "740178ddf48b1a9e878e6d6509a1442a2d42fd2928aae8e7a6f8a36fb01981b3" 1117 | "checksum enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180" 1118 | "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" 1119 | "checksum fs2 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bcd414e5a1a979b931bb92f41b7a54106d3f6d2e6c253e9ce943b7cd468251ef" 1120 | "checksum fuchsia-zircon 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bd510087c325af53ba24f3be8f1c081b0982319adcb8b03cad764512923ccc19" 1121 | "checksum fuchsia-zircon-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "08b3a6f13ad6b96572b53ce7af74543132f1a7055ccceb6d073dd36c54481859" 1122 | "checksum gdi32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e3eb92c1107527888f86b6ebb0b7f82794777dbf172a932998660a0a2e26c11" 1123 | "checksum gfx 0.16.2 (registry+https://github.com/rust-lang/crates.io-index)" = "582e735265170e2894ed8f52ef717f4a84f3bd76671e695aa4039ae85e4733dc" 1124 | "checksum gfx_core 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ceb99b721c3b5c30585d5bb33283c21bcd7c8feb29f0791b7372c3b006822c9b" 1125 | "checksum gfx_device_gl 0.14.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5f45e315f63439d0b1e2210a6a386a65fb0ed7ade4fc2bae57ad34d18073d8c1" 1126 | "checksum gfx_gl 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "daa001fc5c5d4bc78e0543f04ca3ef123e78fa79cfd7a27179cafddb90251540" 1127 | "checksum gif 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e41945ba23db3bf51b24756d73d81acb4f28d85c3dccc32c6fae904438c25f" 1128 | "checksum gl 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1c73b90c285f02059b34a6c66bc645ba5faa18c0e3ab332e0725654fc71db441" 1129 | "checksum gl_generator 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75d69f914b49d9ff32fdf394cbd798f8c716d74fd19f9cc29da3e99797b2a78d" 1130 | "checksum gl_generator 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "04e3e0220a68b8875b5a311fe67ee3b76d3d9b719a92277aff0ec5bb5e7b0ec1" 1131 | "checksum gleam 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4f9148004bdc641f47173769e2625d8dec7aafd3f8d808309aab8f2d7c5ee0" 1132 | "checksum glutin 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5d459b91c4aac4c5aee285f1ac55d7b8cc85aa5d2ffd1bdac3b2707b6ab95e4a" 1133 | "checksum image 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d1576ffa01849c91b484b95c01d54dddc242b4d50923eaa2d4d74a58c4b9e8fd" 1134 | "checksum inflate 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "10ec05638adf7c5c788bc0cfa608cd479a13572beda20feb4898fe1d85d2c64b" 1135 | "checksum interpolation 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "84e53e2877f735534c2d3cdbb5ba1d04ee11107f599a1e811ab0ff3dd93fe66e" 1136 | "checksum itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4833d6978da405305126af4ac88569b5d71ff758581ce5a987dbfa3755f694fc" 1137 | "checksum itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c" 1138 | "checksum jpeg-decoder 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2805ccb10ffe4d10e06ef68a158ff94c255211ecbae848fbde2146b098f93ce7" 1139 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" 1140 | "checksum khronos_api 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d867c645cfeb8a7fec503731679eac03ac11b7105aa5a71cb8f8ee5271636add" 1141 | "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" 1142 | "checksum lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c8f31047daa365f19be14b47c29df4f7c3b581832407daabe6ae77397619237d" 1143 | "checksum libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)" = "36fbc8a8929c632868295d0178dd8f63fc423fd7537ad0738372bd010b3ac9b0" 1144 | "checksum libloading 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "0a020ac941774eb37e9d13d418c37b522e76899bfc4e7b1a600d529a53f83a66" 1145 | "checksum linked-hash-map 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d2aab0478615bb586559b0114d94dd8eca4fdbb73b443adcb0d00b61692b4bf" 1146 | "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" 1147 | "checksum log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2" 1148 | "checksum lzw 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7d947cbb889ed21c2a84be6ffbaebf5b4e0f4340638cba0444907e38b56be084" 1149 | "checksum malloc_buf 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1150 | "checksum memmap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "69253224aa10070855ea8fe9dbe94a03fc2b1d7930bb340c9e586a7513716fea" 1151 | "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" 1152 | "checksum num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)" = "d1452e8b06e448a07f0e6ebb0bb1d92b8890eea63288c0b627331d53514d0fba" 1153 | "checksum num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)" = "7485fcc84f85b4ecd0ea527b14189281cf27d60e583ae65ebc9c088b13dffe01" 1154 | "checksum num-rational 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "0c7cb72a95250d8a370105c828f388932373e0e94414919891a0f945222310fe" 1155 | "checksum num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "cacfcab5eb48250ee7d0c7896b51a2c5eec99c1feea5f32025635f5ae4b00070" 1156 | "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" 1157 | "checksum objc 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "877f30f37acef6749b1841cceab289707f211aecfc756553cd63976190e6cc2e" 1158 | "checksum osmesa-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "88cfece6e95d2e717e0872a7f53a8684712ad13822a7979bc760b9c77ec0013b" 1159 | "checksum phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "cb325642290f28ee14d8c6201159949a872f220c62af6e110a56ea914fbe42fc" 1160 | "checksum phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d62594c0bb54c464f633175d502038177e90309daf2e0158be42ed5f023ce88f" 1161 | "checksum phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "6b07ffcc532ccc85e3afc45865469bf5d9e4ef5bfcf9622e3cfe80c2d275ec03" 1162 | "checksum phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "07e24b0ca9643bdecd0632f2b3da6b1b89bbb0030e0b992afc1113b23a7bc2f2" 1163 | "checksum piston 0.35.0 (registry+https://github.com/rust-lang/crates.io-index)" = "585e35022b731ff709ca9825107596d1b26f03748872b1a0744ba3bcc5b70f97" 1164 | "checksum piston-float 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b058c3a640efd4bcf63266512e4bb03187192c1b29edd38b16d5a014613e3199" 1165 | "checksum piston-gfx_texture 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0b20c55230fc65c9a1187f4f195c26fef881f3aa6d2bb95646b597824039f1c1" 1166 | "checksum piston-shaders_graphics2d 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "97bc17dac1dfff3e5cb84116062c7b46ff9d3dc0d88696a46d2f054cf64a10b6" 1167 | "checksum piston-texture 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3649b5f9d1ba48d95207976118e9e2ed473c1de36f6f79cc1b7ed5b75b655b61" 1168 | "checksum piston-viewport 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c5548a838fd9dc604c96d886c03c303f043a2d85f88719cca59dc7991d86343" 1169 | "checksum piston2d-gfx_graphics 0.46.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca1d3b7168055f100c714334b9ac44f21710d1105d21440d2f54ee0d6e136282" 1170 | "checksum piston2d-graphics 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7bac05c4f46995c9e5661980249008663e68fbf652f3334d9e613461a4e829db" 1171 | "checksum piston_window 0.73.0 (registry+https://github.com/rust-lang/crates.io-index)" = "289944fdfa65ead184fe1f20939c40ad0b3b88eadcfb912d65d4f3c41e0e18ac" 1172 | "checksum pistoncore-event_loop 0.35.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7018c8aeda06f0f030c42ac9b18901fca89d358e3a108018cdc67612db7afef0" 1173 | "checksum pistoncore-glutin_window 0.42.1 (registry+https://github.com/rust-lang/crates.io-index)" = "efe144c87d0e66898ecfa3c78718e8d239abac8ad2488fa2a164d1ef511f0390" 1174 | "checksum pistoncore-input 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7fef44b03e1dfe7f16aa067a0d3591a1e75635206279c12493ddcb279fbcb66" 1175 | "checksum pistoncore-window 0.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "32a9c9c708945c6e7064ed271be93a246e4c0b19eefe4d70ba38c9978c93abed" 1176 | "checksum pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903" 1177 | "checksum png 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925" 1178 | "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" 1179 | "checksum rand 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)" = "9e7944d95d25ace8f377da3ac7068ce517e4c646754c43a1b1849177bbf72e59" 1180 | "checksum rayon 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b614fe08b6665cb9a231d07ac1364b0ef3cb3698f1239ee0c4c3a88a524f54c8" 1181 | "checksum rayon-core 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e64b609139d83da75902f88fd6c01820046840a18471e4dfcd5ac7c0f46bea53" 1182 | "checksum read_color 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "682bfa200630193df2954f2632b690c4643563fd6abc575edc1239bcfe57ad83" 1183 | "checksum redox_syscall 0.1.33 (registry+https://github.com/rust-lang/crates.io-index)" = "07b8f011e3254d5a9b318fde596d409a0001c9ae4c6e7907520c2eaa4d988c99" 1184 | "checksum rusttype 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "30047cc747a78ae042bf2cd65c79f83c3485d90107535b532d6e8f60e2c89cb1" 1185 | "checksum scoped_threadpool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "4ea459fe3ceff01e09534847c49860891d3ff1c12b4eb7731b67f2778fb60190" 1186 | "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" 1187 | "checksum serde 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)" = "34b623917345a631dc9608d5194cc206b3fe6c3554cd1c75b937e55e285254af" 1188 | "checksum serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "db99f3919e20faa51bb2996057f5031d8685019b5a06139b1ce761da671b8526" 1189 | "checksum serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "f4ba7591cfe93755e89eeecdbcc668885624829b020050e6aec99c2a03bd3fd0" 1190 | "checksum serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e03f1c9530c3fb0a0a5c9b826bdd9246a5921ae995d75f512ac917fc4dd55b5" 1191 | "checksum serde_json 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ad8bcf487be7d2e15d3d543f04312de991d631cfe1b43ea0ade69e6a8a5b16a1" 1192 | "checksum serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c9db7266c7d63a4c4b7fe8719656ccdd51acf1bed6124b174f933b009fb10bcb" 1193 | "checksum shader_version 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a29e10c39144f4663c0f74de29b9a61237bf410be40753b1a3b682832abcf4aa" 1194 | "checksum shared_library 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8254bf098ce4d8d7cc7cc6de438c5488adc5297e5b7ffef88816c0a91bd289c1" 1195 | "checksum shell32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" 1196 | "checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537" 1197 | "checksum stb_truetype 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "21b5c3b588a493a477e0d99769ee091b3627625f9ba4bdd882e6b4b0b0958805" 1198 | "checksum syn 0.10.8 (registry+https://github.com/rust-lang/crates.io-index)" = "58fd09df59565db3399efbba34ba8a2fec1307511ebd245d0061ff9d42691673" 1199 | "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" 1200 | "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" 1201 | "checksum target_build_utils 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "013d134ae4a25ee744ad6129db589018558f620ddfa44043887cdd45fa08e75c" 1202 | "checksum tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0" 1203 | "checksum turtle 1.0.0-alpha.8 (registry+https://github.com/rust-lang/crates.io-index)" = "67b4f7c5421bcd3c8977f29a65c07c76fb68e56c3fd997ec8d38ad8c45a898ae" 1204 | "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" 1205 | "checksum user32-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6b719983b952c04198829b51653c06af36f0e44c967fcc1a2bb397ceafbf80a" 1206 | "checksum vecmath 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1bdd6034ee9c1e5e12485f3e4120e12777f6c81cf43bf9a73bff98ed2b479afe" 1207 | "checksum wayland-client 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "9b10f2880f3dedaa496609a0aa7117bc6824490a48309dfbbf26258e5acc5a9d" 1208 | "checksum wayland-kbd 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75485a10a894e48f4d21c15c8673ac84a073aef402e15060715fb3501416e58e" 1209 | "checksum wayland-protocols 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "008c5b9bffb6afdfcf8df0b72fd37b2508476867305ed6d47610f5431a534ac6" 1210 | "checksum wayland-scanner 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "6820262132b76ee4aa7893312fb9a24ce5434934a2b421669a30869fcd4a2769" 1211 | "checksum wayland-sys 0.9.10 (registry+https://github.com/rust-lang/crates.io-index)" = "b433ca9dbd9289a8ae8a5c49148d2a0e724b89432d7648727ca553027c247c47" 1212 | "checksum wayland-window 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c03dae6f8f8be09335444fc253620298bb05f5b8fbc6237798bbbc90ea841c4" 1213 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" 1214 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" 1215 | "checksum winit 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74bcacc675f952f71c2ebc9750dfd90d605de2cbe2e8ea3b38a370498238a507" 1216 | "checksum x11-dl 2.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "28ec50063128cfdbdfe683b0504a3740e07b779c7c75fa26e941218b5f95e098" 1217 | "checksum xml-rs 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e1945e12e16b951721d7976520b0832496ef79c31602c7a29d950de79ba74621" 1218 | "checksum xml-rs 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c1cb601d29fe2c2ac60a2b2e5e293994d87a1f6fa9687a31a15270f909be9c2" 1219 | --------------------------------------------------------------------------------