diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 553 |
1 files changed, 553 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..ad20d8e --- /dev/null +++ b/Cargo.lock | |||
@@ -0,0 +1,553 @@ | |||
1 | # This file is automatically @generated by Cargo. | ||
2 | # It is not intended for manual editing. | ||
3 | [[package]] | ||
4 | name = "aho-corasick" | ||
5 | version = "0.7.6" | ||
6 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
7 | dependencies = [ | ||
8 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
9 | ] | ||
10 | |||
11 | [[package]] | ||
12 | name = "ansi_term" | ||
13 | version = "0.11.0" | ||
14 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
15 | dependencies = [ | ||
16 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
17 | ] | ||
18 | |||
19 | [[package]] | ||
20 | name = "anyhow" | ||
21 | version = "1.0.12" | ||
22 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
23 | |||
24 | [[package]] | ||
25 | name = "atty" | ||
26 | version = "0.2.13" | ||
27 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
28 | dependencies = [ | ||
29 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
30 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
31 | ] | ||
32 | |||
33 | [[package]] | ||
34 | name = "autocfg" | ||
35 | version = "0.1.6" | ||
36 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
37 | |||
38 | [[package]] | ||
39 | name = "bitflags" | ||
40 | version = "1.2.0" | ||
41 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
42 | |||
43 | [[package]] | ||
44 | name = "cfg-if" | ||
45 | version = "0.1.9" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | |||
48 | [[package]] | ||
49 | name = "chrono" | ||
50 | version = "0.4.9" | ||
51 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
52 | dependencies = [ | ||
53 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
54 | "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", | ||
55 | "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
56 | "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", | ||
57 | ] | ||
58 | |||
59 | [[package]] | ||
60 | name = "clang" | ||
61 | version = "0.23.0" | ||
62 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
63 | dependencies = [ | ||
64 | "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
65 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
66 | ] | ||
67 | |||
68 | [[package]] | ||
69 | name = "clang-sys" | ||
70 | version = "0.28.1" | ||
71 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
72 | dependencies = [ | ||
73 | "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
74 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
75 | ] | ||
76 | |||
77 | [[package]] | ||
78 | name = "clap" | ||
79 | version = "2.33.0" | ||
80 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
81 | dependencies = [ | ||
82 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
83 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
84 | "bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
85 | "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
86 | "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
87 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
88 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
89 | ] | ||
90 | |||
91 | [[package]] | ||
92 | name = "codemap" | ||
93 | version = "0.1.2" | ||
94 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
95 | |||
96 | [[package]] | ||
97 | name = "codemap-diagnostic" | ||
98 | version = "0.1.1" | ||
99 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
100 | dependencies = [ | ||
101 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
102 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
103 | "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
104 | ] | ||
105 | |||
106 | [[package]] | ||
107 | name = "env_logger" | ||
108 | version = "0.6.2" | ||
109 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
110 | dependencies = [ | ||
111 | "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
112 | "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
113 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
114 | "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
115 | "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
116 | ] | ||
117 | |||
118 | [[package]] | ||
119 | name = "glob" | ||
120 | version = "0.3.0" | ||
121 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
122 | |||
123 | [[package]] | ||
124 | name = "heck" | ||
125 | version = "0.3.1" | ||
126 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
127 | dependencies = [ | ||
128 | "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
129 | ] | ||
130 | |||
131 | [[package]] | ||
132 | name = "hermit-abi" | ||
133 | version = "0.1.3" | ||
134 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
135 | dependencies = [ | ||
136 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
137 | ] | ||
138 | |||
139 | [[package]] | ||
140 | name = "humantime" | ||
141 | version = "1.3.0" | ||
142 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
143 | dependencies = [ | ||
144 | "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
145 | ] | ||
146 | |||
147 | [[package]] | ||
148 | name = "itoa" | ||
149 | version = "0.4.4" | ||
150 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
151 | |||
152 | [[package]] | ||
153 | name = "lazy_static" | ||
154 | version = "1.4.0" | ||
155 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
156 | |||
157 | [[package]] | ||
158 | name = "libc" | ||
159 | version = "0.2.62" | ||
160 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
161 | |||
162 | [[package]] | ||
163 | name = "log" | ||
164 | version = "0.4.8" | ||
165 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
166 | dependencies = [ | ||
167 | "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
168 | ] | ||
169 | |||
170 | [[package]] | ||
171 | name = "memchr" | ||
172 | version = "2.2.1" | ||
173 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
174 | |||
175 | [[package]] | ||
176 | name = "num-integer" | ||
177 | version = "0.1.41" | ||
178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
179 | dependencies = [ | ||
180 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
181 | "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
182 | ] | ||
183 | |||
184 | [[package]] | ||
185 | name = "num-traits" | ||
186 | version = "0.2.8" | ||
187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
188 | dependencies = [ | ||
189 | "autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
190 | ] | ||
191 | |||
192 | [[package]] | ||
193 | name = "num_cpus" | ||
194 | version = "1.11.0" | ||
195 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
196 | dependencies = [ | ||
197 | "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
198 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
199 | ] | ||
200 | |||
201 | [[package]] | ||
202 | name = "pandoc_types" | ||
203 | version = "0.2.0" | ||
204 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
205 | dependencies = [ | ||
206 | "serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)", | ||
207 | "serde_derive 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)", | ||
208 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", | ||
209 | ] | ||
210 | |||
211 | [[package]] | ||
212 | name = "percent-encoding" | ||
213 | version = "2.1.0" | ||
214 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
215 | |||
216 | [[package]] | ||
217 | name = "poseidoc" | ||
218 | version = "0.1.0" | ||
219 | dependencies = [ | ||
220 | "anyhow 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)", | ||
221 | "clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
222 | "codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
223 | "codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
224 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
225 | "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
226 | "pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
227 | "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
228 | "pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
229 | "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", | ||
230 | "shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
231 | "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
232 | "thiserror 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
233 | "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
234 | "xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
235 | ] | ||
236 | |||
237 | [[package]] | ||
238 | name = "pretty_env_logger" | ||
239 | version = "0.3.1" | ||
240 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
241 | dependencies = [ | ||
242 | "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
243 | "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
244 | "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
245 | ] | ||
246 | |||
247 | [[package]] | ||
248 | name = "proc-macro-error" | ||
249 | version = "0.2.6" | ||
250 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
251 | dependencies = [ | ||
252 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
253 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
254 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
255 | ] | ||
256 | |||
257 | [[package]] | ||
258 | name = "proc-macro2" | ||
259 | version = "1.0.3" | ||
260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
261 | dependencies = [ | ||
262 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
263 | ] | ||
264 | |||
265 | [[package]] | ||
266 | name = "quick-error" | ||
267 | version = "1.2.2" | ||
268 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
269 | |||
270 | [[package]] | ||
271 | name = "quote" | ||
272 | version = "1.0.2" | ||
273 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
274 | dependencies = [ | ||
275 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
276 | ] | ||
277 | |||
278 | [[package]] | ||
279 | name = "redox_syscall" | ||
280 | version = "0.1.56" | ||
281 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
282 | |||
283 | [[package]] | ||
284 | name = "regex" | ||
285 | version = "1.3.1" | ||
286 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
287 | dependencies = [ | ||
288 | "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
289 | "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
290 | "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", | ||
291 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
292 | ] | ||
293 | |||
294 | [[package]] | ||
295 | name = "regex-syntax" | ||
296 | version = "0.6.12" | ||
297 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
298 | |||
299 | [[package]] | ||
300 | name = "ryu" | ||
301 | version = "1.0.0" | ||
302 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
303 | |||
304 | [[package]] | ||
305 | name = "serde" | ||
306 | version = "1.0.100" | ||
307 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
308 | |||
309 | [[package]] | ||
310 | name = "serde_derive" | ||
311 | version = "1.0.100" | ||
312 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
313 | dependencies = [ | ||
314 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
315 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
316 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
317 | ] | ||
318 | |||
319 | [[package]] | ||
320 | name = "serde_json" | ||
321 | version = "1.0.40" | ||
322 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
323 | dependencies = [ | ||
324 | "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
325 | "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
326 | "serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)", | ||
327 | ] | ||
328 | |||
329 | [[package]] | ||
330 | name = "shell-words" | ||
331 | version = "0.1.0" | ||
332 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
333 | |||
334 | [[package]] | ||
335 | name = "strsim" | ||
336 | version = "0.8.0" | ||
337 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
338 | |||
339 | [[package]] | ||
340 | name = "structopt" | ||
341 | version = "0.3.3" | ||
342 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
343 | dependencies = [ | ||
344 | "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
345 | "structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
346 | ] | ||
347 | |||
348 | [[package]] | ||
349 | name = "structopt-derive" | ||
350 | version = "0.3.3" | ||
351 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
352 | dependencies = [ | ||
353 | "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
354 | "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
355 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
356 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
357 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
358 | ] | ||
359 | |||
360 | [[package]] | ||
361 | name = "syn" | ||
362 | version = "1.0.5" | ||
363 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
364 | dependencies = [ | ||
365 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
366 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
367 | "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
368 | ] | ||
369 | |||
370 | [[package]] | ||
371 | name = "termcolor" | ||
372 | version = "1.0.5" | ||
373 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
374 | dependencies = [ | ||
375 | "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
376 | ] | ||
377 | |||
378 | [[package]] | ||
379 | name = "textwrap" | ||
380 | version = "0.11.0" | ||
381 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
382 | dependencies = [ | ||
383 | "unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
384 | ] | ||
385 | |||
386 | [[package]] | ||
387 | name = "thiserror" | ||
388 | version = "1.0.1" | ||
389 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
390 | dependencies = [ | ||
391 | "thiserror-impl 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
392 | ] | ||
393 | |||
394 | [[package]] | ||
395 | name = "thiserror-impl" | ||
396 | version = "1.0.0" | ||
397 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
398 | dependencies = [ | ||
399 | "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
400 | "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
401 | "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
402 | ] | ||
403 | |||
404 | [[package]] | ||
405 | name = "thread_local" | ||
406 | version = "0.3.6" | ||
407 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
408 | dependencies = [ | ||
409 | "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
410 | ] | ||
411 | |||
412 | [[package]] | ||
413 | name = "threadpool" | ||
414 | version = "1.7.1" | ||
415 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
416 | dependencies = [ | ||
417 | "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
418 | ] | ||
419 | |||
420 | [[package]] | ||
421 | name = "time" | ||
422 | version = "0.1.42" | ||
423 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
424 | dependencies = [ | ||
425 | "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)", | ||
426 | "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", | ||
427 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
428 | ] | ||
429 | |||
430 | [[package]] | ||
431 | name = "unicode-segmentation" | ||
432 | version = "1.3.0" | ||
433 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
434 | |||
435 | [[package]] | ||
436 | name = "unicode-width" | ||
437 | version = "0.1.6" | ||
438 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
439 | |||
440 | [[package]] | ||
441 | name = "unicode-xid" | ||
442 | version = "0.2.0" | ||
443 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
444 | |||
445 | [[package]] | ||
446 | name = "vec_map" | ||
447 | version = "0.8.1" | ||
448 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
449 | |||
450 | [[package]] | ||
451 | name = "winapi" | ||
452 | version = "0.3.8" | ||
453 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
454 | dependencies = [ | ||
455 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
456 | "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
457 | ] | ||
458 | |||
459 | [[package]] | ||
460 | name = "winapi-i686-pc-windows-gnu" | ||
461 | version = "0.4.0" | ||
462 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
463 | |||
464 | [[package]] | ||
465 | name = "winapi-util" | ||
466 | version = "0.1.2" | ||
467 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
468 | dependencies = [ | ||
469 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
470 | ] | ||
471 | |||
472 | [[package]] | ||
473 | name = "winapi-x86_64-pc-windows-gnu" | ||
474 | version = "0.4.0" | ||
475 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
476 | |||
477 | [[package]] | ||
478 | name = "wincolor" | ||
479 | version = "1.0.2" | ||
480 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
481 | dependencies = [ | ||
482 | "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
483 | "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
484 | ] | ||
485 | |||
486 | [[package]] | ||
487 | name = "xml-rs" | ||
488 | version = "0.8.0" | ||
489 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
490 | |||
491 | [metadata] | ||
492 | "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" | ||
493 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | ||
494 | "checksum anyhow 1.0.12 (registry+https://github.com/rust-lang/crates.io-index)" = "aaf594cde167a6a4e715d4c8c3a71eb07e6b2c48b28014f9425bc8f7d8bdec11" | ||
495 | "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" | ||
496 | "checksum autocfg 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b671c8fb71b457dd4ae18c4ba1e59aa81793daacc361d82fcd410cef0d491875" | ||
497 | "checksum bitflags 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a606a02debe2813760609f57a64a2ffd27d9fdf5b2f133eaca0b248dd92cdd2" | ||
498 | "checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" | ||
499 | "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" | ||
500 | "checksum clang 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "edaa418fdc81a329f3c8258a4e8776f7d2c31682147c5bda1c5c37ab8e818114" | ||
501 | "checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853" | ||
502 | "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" | ||
503 | "checksum codemap 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa90095b7cbcca06055fed0e0bc0dcfc66a841bd9ea62bab2303a41e092ed72" | ||
504 | "checksum codemap-diagnostic 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4ba0e6be8e2774e750f9e90625b490249715bece38a12f9d09e82477caba5028" | ||
505 | "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" | ||
506 | "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | ||
507 | "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" | ||
508 | "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" | ||
509 | "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" | ||
510 | "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" | ||
511 | "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
512 | "checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba" | ||
513 | "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" | ||
514 | "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" | ||
515 | "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" | ||
516 | "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32" | ||
517 | "checksum num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "155394f924cdddf08149da25bfb932d226b4a593ca7468b08191ff6335941af5" | ||
518 | "checksum pandoc_types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29869c4f0ed84c2514105047415ff220679d7dbe566982c32f60a5c330cb77ed" | ||
519 | "checksum percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" | ||
520 | "checksum pretty_env_logger 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "717ee476b1690853d222af4634056d830b5197ffd747726a9a1eee6da9f49074" | ||
521 | "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097" | ||
522 | "checksum proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e98a83a9f9b331f54b924e68a66acb1bb35cb01fb0a23645139967abefb697e8" | ||
523 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" | ||
524 | "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" | ||
525 | "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" | ||
526 | "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" | ||
527 | "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" | ||
528 | "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997" | ||
529 | "checksum serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)" = "f4473e8506b213730ff2061073b48fa51dcc66349219e2e7c5608f0296a1d95a" | ||
530 | "checksum serde_derive 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)" = "11e410fde43e157d789fc290d26bc940778ad0fdd47836426fbac36573710dbb" | ||
531 | "checksum serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)" = "051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704" | ||
532 | "checksum shell-words 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "39acde55a154c4cd3ae048ac78cc21c25f3a0145e44111b523279113dce0d94a" | ||
533 | "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" | ||
534 | "checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc" | ||
535 | "checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae" | ||
536 | "checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf" | ||
537 | "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" | ||
538 | "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" | ||
539 | "checksum thiserror 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76a6728729f99559e9ec7e39848ea39623849aa1d7d3bb99b30ec349a2ffc730" | ||
540 | "checksum thiserror-impl 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e9d53f5a0d2bd66d1d841e69a4beb74a226216b3f158ff0c534578f76e7beac9" | ||
541 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" | ||
542 | "checksum threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e2f0c90a5f3459330ac8bc0d2f879c693bb7a2f59689c1083fc4ef83834da865" | ||
543 | "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" | ||
544 | "checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9" | ||
545 | "checksum unicode-width 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7007dbd421b92cc6e28410fe7362e2e0a2503394908f417b68ec8d1c364c4e20" | ||
546 | "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" | ||
547 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" | ||
548 | "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" | ||
549 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
550 | "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" | ||
551 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
552 | "checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" | ||
553 | "checksum xml-rs 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "541b12c998c5b56aa2b4e6f18f03664eef9a4fd0a246a55594efae6cc2d964b5" | ||