~repos /rust-embed

#rust#proc-macro#http

GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone https://git.pyrossh.dev/rust-embed.git
Discussions: https://groups.google.com/g/rust-embed-devs

rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.


Files changed (3) hide show
  1. .travis.yml +0 -6
  2. Cargo.lock +509 -0
  3. Cargo.toml +2 -1
.travis.yml CHANGED
@@ -7,13 +7,7 @@ cache:
7
7
 
8
8
  matrix:
9
9
  include:
10
- - rust: 1.21.0
11
- - rust: stable
12
- - rust: beta
13
10
  - rust: nightly
14
- allow_failures:
15
- - rust: nightly
16
- - rust: beta
17
11
 
18
12
  script:
19
13
  - |
Cargo.lock CHANGED
@@ -1,3 +1,8 @@
1
+ [[package]]
2
+ name = "adler32"
3
+ version = "1.0.2"
4
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5
+
1
6
  [[package]]
2
7
  name = "arrayvec"
3
8
  version = "0.4.7"
@@ -6,6 +11,11 @@ dependencies = [
6
11
  "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
7
12
  ]
8
13
 
14
+ [[package]]
15
+ name = "ascii"
16
+ version = "0.7.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+
9
19
  [[package]]
10
20
  name = "base64"
11
21
  version = "0.6.0"
@@ -15,11 +25,52 @@ dependencies = [
15
25
  "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
16
26
  ]
17
27
 
28
+ [[package]]
29
+ name = "base64"
30
+ version = "0.7.0"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ dependencies = [
33
+ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
34
+ "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
35
+ ]
36
+
18
37
  [[package]]
19
38
  name = "bitflags"
20
39
  version = "1.0.1"
21
40
  source = "registry+https://github.com/rust-lang/crates.io-index"
22
41
 
42
+ [[package]]
43
+ name = "brotli-sys"
44
+ version = "0.2.1"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ dependencies = [
47
+ "gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)",
48
+ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "brotli2"
53
+ version = "0.2.2"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ dependencies = [
56
+ "brotli-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
57
+ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "buf_redux"
62
+ version = "0.6.3"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ dependencies = [
65
+ "memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
66
+ "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "build_const"
71
+ version = "0.2.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+
23
74
  [[package]]
24
75
  name = "byteorder"
25
76
  version = "1.2.1"
@@ -30,6 +81,29 @@ name = "cfg-if"
30
81
  version = "0.1.2"
31
82
  source = "registry+https://github.com/rust-lang/crates.io-index"
32
83
 
84
+ [[package]]
85
+ name = "chrono"
86
+ version = "0.2.25"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ dependencies = [
89
+ "num 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
90
+ "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "chrono"
95
+ version = "0.4.0"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ dependencies = [
98
+ "num 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
99
+ "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "chunked_transfer"
104
+ version = "0.3.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+
33
107
  [[package]]
34
108
  name = "cookie"
35
109
  version = "0.9.2"
@@ -41,6 +115,14 @@ dependencies = [
41
115
  "url 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
42
116
  ]
43
117
 
118
+ [[package]]
119
+ name = "crc"
120
+ version = "1.7.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ dependencies = [
123
+ "build_const 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
124
+ ]
125
+
44
126
  [[package]]
45
127
  name = "crossbeam-deque"
46
128
  version = "0.2.0"
@@ -72,11 +154,96 @@ dependencies = [
72
154
  "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
73
155
  ]
74
156
 
157
+ [[package]]
158
+ name = "deflate"
159
+ version = "0.7.17"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ dependencies = [
162
+ "adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
163
+ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
164
+ "gzip-header 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
165
+ ]
166
+
75
167
  [[package]]
76
168
  name = "dtoa"
77
169
  version = "0.4.2"
78
170
  source = "registry+https://github.com/rust-lang/crates.io-index"
79
171
 
172
+ [[package]]
173
+ name = "encoding"
174
+ version = "0.2.33"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ dependencies = [
177
+ "encoding-index-japanese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)",
178
+ "encoding-index-korean 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)",
179
+ "encoding-index-simpchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)",
180
+ "encoding-index-singlebyte 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)",
181
+ "encoding-index-tradchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "encoding-index-japanese"
186
+ version = "1.20141219.5"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ dependencies = [
189
+ "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "encoding-index-korean"
194
+ version = "1.20141219.5"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ dependencies = [
197
+ "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "encoding-index-simpchinese"
202
+ version = "1.20141219.5"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ dependencies = [
205
+ "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "encoding-index-singlebyte"
210
+ version = "1.20141219.5"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ dependencies = [
213
+ "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "encoding-index-tradchinese"
218
+ version = "1.20141219.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ dependencies = [
221
+ "encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "encoding_index_tests"
226
+ version = "0.1.4"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+
229
+ [[package]]
230
+ name = "enum_primitive"
231
+ version = "0.1.1"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ dependencies = [
234
+ "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "filetime"
239
+ version = "0.1.15"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ dependencies = [
242
+ "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
243
+ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
244
+ "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)",
245
+ ]
246
+
80
247
  [[package]]
81
248
  name = "fuchsia-zircon"
82
249
  version = "0.3.3"
@@ -96,6 +263,15 @@ name = "gcc"
96
263
  version = "0.3.54"
97
264
  source = "registry+https://github.com/rust-lang/crates.io-index"
98
265
 
266
+ [[package]]
267
+ name = "gzip-header"
268
+ version = "0.1.2"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ dependencies = [
271
+ "crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
272
+ "enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
273
+ ]
274
+
99
275
  [[package]]
100
276
  name = "httparse"
101
277
  version = "1.2.4"
@@ -203,6 +379,14 @@ dependencies = [
203
379
  "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
204
380
  ]
205
381
 
382
+ [[package]]
383
+ name = "memchr"
384
+ version = "2.0.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ dependencies = [
387
+ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
388
+ ]
389
+
206
390
  [[package]]
207
391
  name = "memoffset"
208
392
  version = "0.2.1"
@@ -216,11 +400,73 @@ dependencies = [
216
400
  "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
217
401
  ]
218
402
 
403
+ [[package]]
404
+ name = "mime_guess"
405
+ version = "1.8.4"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ dependencies = [
408
+ "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
409
+ "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
410
+ "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
411
+ "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "multipart"
416
+ version = "0.13.6"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ dependencies = [
419
+ "buf_redux 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
420
+ "httparse 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
421
+ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
422
+ "mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
423
+ "mime_guess 1.8.4 (registry+https://github.com/rust-lang/crates.io-index)",
424
+ "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
425
+ "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
426
+ "tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
427
+ "twoway 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
428
+ ]
429
+
219
430
  [[package]]
220
431
  name = "nodrop"
221
432
  version = "0.1.12"
222
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
223
434
 
435
+ [[package]]
436
+ name = "num"
437
+ version = "0.1.42"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ dependencies = [
440
+ "num-integer 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)",
441
+ "num-iter 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
442
+ "num-traits 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "num-integer"
447
+ version = "0.1.36"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ dependencies = [
450
+ "num-traits 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "num-iter"
455
+ version = "0.1.35"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ dependencies = [
458
+ "num-integer 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)",
459
+ "num-traits 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "num-traits"
464
+ version = "0.1.43"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ dependencies = [
467
+ "num-traits 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
468
+ ]
469
+
224
470
  [[package]]
225
471
  name = "num-traits"
226
472
  version = "0.2.1"
@@ -258,6 +504,67 @@ name = "percent-encoding"
258
504
  version = "1.0.1"
259
505
  source = "registry+https://github.com/rust-lang/crates.io-index"
260
506
 
507
+ [[package]]
508
+ name = "phf"
509
+ version = "0.7.21"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ dependencies = [
512
+ "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "phf_codegen"
517
+ version = "0.7.21"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ dependencies = [
520
+ "phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
521
+ "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "phf_generator"
526
+ version = "0.7.21"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ dependencies = [
529
+ "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)",
530
+ "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "phf_shared"
535
+ version = "0.7.21"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ dependencies = [
538
+ "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
539
+ "unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "proc-macro2"
544
+ version = "0.2.3"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ dependencies = [
547
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "quote"
552
+ version = "0.4.2"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ dependencies = [
555
+ "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "rand"
560
+ version = "0.3.22"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ dependencies = [
563
+ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
564
+ "libc 0.2.39 (registry+https://github.com/rust-lang/crates.io-index)",
565
+ "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
566
+ ]
567
+
261
568
  [[package]]
262
569
  name = "rand"
263
570
  version = "0.4.2"
@@ -301,6 +608,15 @@ dependencies = [
301
608
  "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)",
302
609
  ]
303
610
 
611
+ [[package]]
612
+ name = "remove_dir_all"
613
+ version = "0.3.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ dependencies = [
616
+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
617
+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
618
+ ]
619
+
304
620
  [[package]]
305
621
  name = "ring"
306
622
  version = "0.11.0"
@@ -359,6 +675,30 @@ dependencies = [
359
675
  "serde_json 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
360
676
  ]
361
677
 
678
+ [[package]]
679
+ name = "rouille"
680
+ version = "2.1.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ dependencies = [
683
+ "base64 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
684
+ "brotli2 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
685
+ "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
686
+ "deflate 0.7.17 (registry+https://github.com/rust-lang/crates.io-index)",
687
+ "filetime 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
688
+ "multipart 0.13.6 (registry+https://github.com/rust-lang/crates.io-index)",
689
+ "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
690
+ "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
691
+ "serde 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)",
692
+ "serde_derive 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)",
693
+ "serde_json 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
694
+ "sha1 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
695
+ "term 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
696
+ "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
697
+ "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)",
698
+ "tiny_http 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)",
699
+ "url 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
700
+ ]
701
+
362
702
  [[package]]
363
703
  name = "rust-embed"
364
704
  version = "0.5.1"
@@ -367,9 +707,15 @@ dependencies = [
367
707
  "rocket 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
368
708
  "rocket_codegen 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
369
709
  "rocket_contrib 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
710
+ "rouille 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
370
711
  "walkdir 2.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
371
712
  ]
372
713
 
714
+ [[package]]
715
+ name = "rustc-serialize"
716
+ version = "0.3.24"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+
373
719
  [[package]]
374
720
  name = "safemem"
375
721
  version = "0.2.0"
@@ -393,6 +739,26 @@ name = "serde"
393
739
  version = "1.0.30"
394
740
  source = "registry+https://github.com/rust-lang/crates.io-index"
395
741
 
742
+ [[package]]
743
+ name = "serde_derive"
744
+ version = "1.0.32"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ dependencies = [
747
+ "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
748
+ "quote 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
749
+ "serde_derive_internals 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)",
750
+ "syn 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "serde_derive_internals"
755
+ version = "0.20.1"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ dependencies = [
758
+ "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
759
+ "syn 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)",
760
+ ]
761
+
396
762
  [[package]]
397
763
  name = "serde_json"
398
764
  version = "1.0.11"
@@ -404,6 +770,16 @@ dependencies = [
404
770
  "serde 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)",
405
771
  ]
406
772
 
773
+ [[package]]
774
+ name = "sha1"
775
+ version = "0.2.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+
778
+ [[package]]
779
+ name = "siphasher"
780
+ version = "0.2.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+
407
783
  [[package]]
408
784
  name = "smallvec"
409
785
  version = "0.4.4"
@@ -414,6 +790,34 @@ name = "state"
414
790
  version = "0.3.3"
415
791
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
792
 
793
+ [[package]]
794
+ name = "syn"
795
+ version = "0.12.14"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ dependencies = [
798
+ "proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
799
+ "quote 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
800
+ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "tempdir"
805
+ version = "0.3.6"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ dependencies = [
808
+ "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
809
+ "remove_dir_all 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "term"
814
+ version = "0.2.14"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ dependencies = [
817
+ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
818
+ "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
819
+ ]
820
+
417
821
  [[package]]
418
822
  name = "termion"
419
823
  version = "1.5.1"
@@ -424,6 +828,14 @@ dependencies = [
424
828
  "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
425
829
  ]
426
830
 
831
+ [[package]]
832
+ name = "threadpool"
833
+ version = "1.7.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ dependencies = [
836
+ "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
837
+ ]
838
+
427
839
  [[package]]
428
840
  name = "time"
429
841
  version = "0.1.39"
@@ -434,6 +846,19 @@ dependencies = [
434
846
  "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
435
847
  ]
436
848
 
849
+ [[package]]
850
+ name = "tiny_http"
851
+ version = "0.5.9"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ dependencies = [
854
+ "ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
855
+ "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)",
856
+ "chunked_transfer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
857
+ "encoding 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
858
+ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
859
+ "url 0.2.38 (registry+https://github.com/rust-lang/crates.io-index)",
860
+ ]
861
+
437
862
  [[package]]
438
863
  name = "toml"
439
864
  version = "0.4.5"
@@ -447,6 +872,14 @@ name = "traitobject"
447
872
  version = "0.1.0"
448
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
449
874
 
875
+ [[package]]
876
+ name = "twoway"
877
+ version = "0.1.7"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ dependencies = [
880
+ "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
881
+ ]
882
+
450
883
  [[package]]
451
884
  name = "typeable"
452
885
  version = "0.1.2"
@@ -473,11 +906,26 @@ name = "unicode-normalization"
473
906
  version = "0.1.5"
474
907
  source = "registry+https://github.com/rust-lang/crates.io-index"
475
908
 
909
+ [[package]]
910
+ name = "unicode-xid"
911
+ version = "0.1.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+
476
914
  [[package]]
477
915
  name = "untrusted"
478
916
  version = "0.5.1"
479
917
  source = "registry+https://github.com/rust-lang/crates.io-index"
480
918
 
919
+ [[package]]
920
+ name = "url"
921
+ version = "0.2.38"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ dependencies = [
924
+ "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
925
+ "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
926
+ "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
927
+ ]
928
+
481
929
  [[package]]
482
930
  name = "url"
483
931
  version = "1.7.0"
@@ -488,6 +936,15 @@ dependencies = [
488
936
  "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
489
937
  ]
490
938
 
939
+ [[package]]
940
+ name = "uuid"
941
+ version = "0.1.18"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ dependencies = [
944
+ "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)",
945
+ "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)",
946
+ ]
947
+
491
948
  [[package]]
492
949
  name = "version_check"
493
950
  version = "0.1.3"
@@ -537,19 +994,41 @@ version = "0.3.4"
537
994
  source = "registry+https://github.com/rust-lang/crates.io-index"
538
995
 
539
996
  [metadata]
997
+ "checksum adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6cbd0b9af8587c72beadc9f72d35b9fbb070982c9e6203e46e93f10df25f8f45"
540
998
  "checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef"
999
+ "checksum ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50"
541
1000
  "checksum base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96434f987501f0ed4eb336a411e0631ecd1afa11574fe148587adc4ff96143c9"
1001
+ "checksum base64 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5032d51da2741729bfdaeb2664d9b8c6d9fd1e2b90715c660b6def36628499c2"
542
1002
  "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf"
1003
+ "checksum brotli-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cb50f54b2e0c671b7ef1637a76237ebacbb293be179440d5d65ca288e42116bb"
1004
+ "checksum brotli2 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ea9d0bbab1235017a09226b079ed733bca4bf9ecb6b6102bd01aac79ea082dca"
1005
+ "checksum buf_redux 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b9279646319ff816b05fb5897883ece50d7d854d12b59992683d4f8a71b0f949"
1006
+ "checksum build_const 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e90dc84f5e62d2ebe7676b83c22d33b6db8bd27340fb6ffbff0a364efa0cb9c9"
543
1007
  "checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23"
544
1008
  "checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de"
1009
+ "checksum chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)" = "9213f7cd7c27e95c2b57c49f0e69b1ea65b27138da84a170133fd21b07659c00"
1010
+ "checksum chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c20ebe0b2b08b0aeddba49c609fe7957ba2e33449882cb186a180bc60682fa9"
1011
+ "checksum chunked_transfer 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "498d20a7aaf62625b9bf26e637cf7736417cde1d0c99f1d04d1170229a85cf87"
545
1012
  "checksum cookie 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "477eb650753e319be2ae77ec368a58c638f9f0c4d941c39bad95e950fb1d1d0d"
1013
+ "checksum crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd5d02c0aac6bd68393ed69e00bbc2457f3e89075c6349db7189618dc4ddc1d7"
546
1014
  "checksum crossbeam-deque 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3"
547
1015
  "checksum crossbeam-epoch 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "59796cc6cbbdc6bb319161349db0c3250ec73ec7fcb763a51065ec4e2e158552"
548
1016
  "checksum crossbeam-utils 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9"
1017
+ "checksum deflate 0.7.17 (registry+https://github.com/rust-lang/crates.io-index)" = "4dddda59aaab719767ab11d3efd9a714e95b610c4445d4435765021e9d52dfb1"
549
1018
  "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab"
1019
+ "checksum encoding 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
1020
+ "checksum encoding-index-japanese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
1021
+ "checksum encoding-index-korean 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
1022
+ "checksum encoding-index-simpchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
1023
+ "checksum encoding-index-singlebyte 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
1024
+ "checksum encoding-index-tradchinese 1.20141219.5 (registry+https://github.com/rust-lang/crates.io-index)" = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
1025
+ "checksum encoding_index_tests 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
1026
+ "checksum enum_primitive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180"
1027
+ "checksum filetime 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "714653f3e34871534de23771ac7b26e999651a0a228f47beb324dfdf1dd4b10f"
550
1028
  "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
551
1029
  "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
552
1030
  "checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb"
1031
+ "checksum gzip-header 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0a9fcfe1c9ee125342355b2467bc29b9dfcb2124fcae27edb9cee6f4cc5ecd40"
553
1032
  "checksum httparse 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2f407128745b78abc95c0ffbe4e5d37427fdc0d45470710cfef8c44522a2e37"
554
1033
  "checksum hyper 0.10.13 (registry+https://github.com/rust-lang/crates.io-index)" = "368cb56b2740ebf4230520e2b90ebb0461e69034d85d1945febd9b3971426db2"
555
1034
  "checksum idna 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "014b298351066f1512874135335d62a789ffe78a9974f94b43ed5621951eaf7d"
@@ -564,41 +1043,71 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
564
1043
  "checksum log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2"
565
1044
  "checksum matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "100aabe6b8ff4e4a7e32c1c13523379802df0772b82466207ac25b013f193376"
566
1045
  "checksum memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a"
1046
+ "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d"
567
1047
  "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
568
1048
  "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
1049
+ "checksum mime_guess 1.8.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b7e2b09d08313f84e0fb82d13a4d859109a17543fe9af3b6d941dc1431f7de79"
1050
+ "checksum multipart 0.13.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92f54eb45230c3aa20864ccf0c277eeaeadcf5e437e91731db498dbf7fbe0ec6"
569
1051
  "checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2"
1052
+ "checksum num 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e"
1053
+ "checksum num-integer 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)" = "f8d26da319fb45674985c78f1d1caf99aa4941f785d384a2ae36d0740bc3e2fe"
1054
+ "checksum num-iter 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)" = "4b226df12c5a59b63569dd57fafb926d91b385dfce33d8074a412411b689d593"
1055
+ "checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
570
1056
  "checksum num-traits 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3c2bd9b9d21e48e956b763c9f37134dc62d9e95da6edb3f672cacb6caf3cd3"
571
1057
  "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30"
572
1058
  "checksum ordermap 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "b81cf3b8cb96aa0e73bbedfcdc9708d09fec2854ba8d474be4e6f666d7379e8b"
573
1059
  "checksum pear 0.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "b5c2dabd6c1650d9bfac8e46be7b518b31c3885ab4412de1aca330938616c5bd"
574
1060
  "checksum pear_codegen 0.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "df863bb78b3ee6b049278324eea8df6b2553a8db9a3504c0e32cfcc17bc8d18c"
575
1061
  "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
1062
+ "checksum phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "cb325642290f28ee14d8c6201159949a872f220c62af6e110a56ea914fbe42fc"
1063
+ "checksum phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d62594c0bb54c464f633175d502038177e90309daf2e0158be42ed5f023ce88f"
1064
+ "checksum phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "6b07ffcc532ccc85e3afc45865469bf5d9e4ef5bfcf9622e3cfe80c2d275ec03"
1065
+ "checksum phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "07e24b0ca9643bdecd0632f2b3da6b1b89bbb0030e0b992afc1113b23a7bc2f2"
1066
+ "checksum proc-macro2 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cd07deb3c6d1d9ff827999c7f9b04cdfd66b1b17ae508e14fe47b620f2282ae0"
1067
+ "checksum quote 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1eca14c727ad12702eb4b6bfb5a232287dcf8385cb8ca83a3eeaf6519c44c408"
1068
+ "checksum rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)" = "15a732abf9d20f0ad8eeb6f909bf6868722d9a06e1e50802b6a70351f40b4eb1"
576
1069
  "checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5"
577
1070
  "checksum rayon 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a77c51c07654ddd93f6cb543c7a849863b03abc7e82591afda6dc8ad4ac3ac4a"
578
1071
  "checksum rayon-core 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9d24ad214285a7729b174ed6d3bcfcb80177807f959d95fafd5bfc5c4f201ac8"
579
1072
  "checksum redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "0d92eecebad22b767915e4d529f89f28ee96dbbf5a4810d2b844373f136417fd"
580
1073
  "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
1074
+ "checksum remove_dir_all 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5d2f806b0fcdabd98acd380dc8daef485e22bcb7cddc811d1337967f2528cf5"
581
1075
  "checksum ring 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1f2a6dc7fc06a05e6de183c5b97058582e9da2de0c136eafe49609769c507724"
582
1076
  "checksum rocket 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "531c93452333bc5a13d3cbd776a8cac299215ba23be1583fdb307fef75ae0516"
583
1077
  "checksum rocket_codegen 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a7ad25afa7baa27347981fc4d450713d1d9f7533fd5a0c4664519fe661bcd827"
584
1078
  "checksum rocket_contrib 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8c65e9bac3d41a9011adb4adccc819ab4a182657eb5cd478fd0e2a3c1eb7dfe"
1079
+ "checksum rouille 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc1f8407af80b0630983b2c1f1860dda1960fdec8d3ee75ba8db14937756d3a0"
1080
+ "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda"
585
1081
  "checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f"
586
1082
  "checksum same-file 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "cfb6eded0b06a0b512c8ddbcf04089138c9b4362c2f696f3c3d76039d68f3637"
587
1083
  "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
588
1084
  "checksum serde 1.0.30 (registry+https://github.com/rust-lang/crates.io-index)" = "1f4d6340aa5fcdac490a1aa3511ff079b1cdaa45ffb766b2fd83395dae085cd5"
1085
+ "checksum serde_derive 1.0.32 (registry+https://github.com/rust-lang/crates.io-index)" = "9cd9e89b8be5b611971734eaf887f1da0ce1a5b51491f04b09fe855649a84f3b"
1086
+ "checksum serde_derive_internals 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a79b781fe5c4a7037a10a485249a499ea02927046360afe7e04885aad2f9c10c"
589
1087
  "checksum serde_json 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "fab6c4d75bedcf880711c85e39ebf8ccc70d0eba259899047ec5d7436643ee17"
1088
+ "checksum sha1 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cc30b1e1e8c40c121ca33b86c23308a090d19974ef001b4bf6e61fd1a0fb095c"
1089
+ "checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
590
1090
  "checksum smallvec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ee4f357e8cd37bf8822e1b964e96fd39e2cb5a0424f8aaa284ccaccc2162411c"
591
1091
  "checksum state 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e2fe297055568778ddc83eb1d4292bcdab36bf9e5e7adf4d0ce4ee59caf778d9"
1092
+ "checksum syn 0.12.14 (registry+https://github.com/rust-lang/crates.io-index)" = "8c5bc2d6ff27891209efa5f63e9de78648d7801f085e4653701a692ce938d6fd"
1093
+ "checksum tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f73eebdb68c14bcb24aef74ea96079830e7fa7b31a6106e42ea7ee887c1e134e"
1094
+ "checksum term 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "f2077e54d38055cf1ca0fd7933a2e00cd3ec8f6fed352b2a377f06dcdaaf3281"
592
1095
  "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096"
1096
+ "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865"
593
1097
  "checksum time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "a15375f1df02096fb3317256ce2cee6a1f42fc84ea5ad5fc8c421cfe40c73098"
1098
+ "checksum tiny_http 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)" = "2f4d55c9a213880d1f0c89ded183f209c6e45b912ca6c7df6f93c163773572e1"
594
1099
  "checksum toml 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7540f4ffc193e0d3c94121edb19b055670d369f77d5804db11ae053a45b6e7e"
595
1100
  "checksum traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079"
1101
+ "checksum twoway 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "db65ddf5811ef1964163e55df0b0b8171e4afc8a53a606dcdb5df87be3dcc302"
596
1102
  "checksum typeable 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887"
597
1103
  "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
598
1104
  "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
599
1105
  "checksum unicode-normalization 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "51ccda9ef9efa3f7ef5d91e8f9b83bbe6955f9bf86aec89d5cce2c874625920f"
1106
+ "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
600
1107
  "checksum untrusted 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f392d7819dbe58833e26872f5f6f0d68b7bbbe90fc3667e98731c4a15ad9a7ae"
1108
+ "checksum url 0.2.38 (registry+https://github.com/rust-lang/crates.io-index)" = "cbaa8377a162d88e7d15db0cf110c8523453edcbc5bc66d2b6fffccffa34a068"
601
1109
  "checksum url 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f808aadd8cfec6ef90e4a14eb46f24511824d1ac596b9682703c87056c8678b7"
1110
+ "checksum uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "78c590b5bd79ed10aad8fb75f078a59d8db445af6c743e55c4a53227fc01c13f"
602
1111
  "checksum version_check 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6b772017e347561807c1aa192438c5fd74242a670a6cffacc40f2defd1dc069d"
603
1112
  "checksum walkdir 2.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "63636bd0eb3d00ccb8b9036381b526efac53caf112b7783b730ab3f8e44da369"
604
1113
  "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
Cargo.toml CHANGED
@@ -17,4 +17,5 @@ walkdir = "2.1.4"
17
17
  [dev-dependencies]
18
18
  rocket = "0.3.6"
19
19
  rocket_codegen = "0.3.6"
20
- rocket_contrib = "0.3.6"
20
+ rocket_contrib = "0.3.6"
21
+ rouille = "2.1.0"