diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 955 |
1 files changed, 955 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..46a6dd4 --- /dev/null +++ b/Cargo.lock | |||
@@ -0,0 +1,955 @@ | |||
1 | [[package]] | ||
2 | name = "aho-corasick" | ||
3 | version = "0.6.8" | ||
4 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
5 | dependencies = [ | ||
6 | "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
7 | ] | ||
8 | |||
9 | [[package]] | ||
10 | name = "ansi_term" | ||
11 | version = "0.11.0" | ||
12 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
13 | dependencies = [ | ||
14 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
15 | ] | ||
16 | |||
17 | [[package]] | ||
18 | name = "arrayref" | ||
19 | version = "0.3.5" | ||
20 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
21 | |||
22 | [[package]] | ||
23 | name = "ascii-canvas" | ||
24 | version = "1.0.0" | ||
25 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
26 | dependencies = [ | ||
27 | "term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
28 | ] | ||
29 | |||
30 | [[package]] | ||
31 | name = "atty" | ||
32 | version = "0.1.2" | ||
33 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
34 | dependencies = [ | ||
35 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
36 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
37 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
38 | ] | ||
39 | |||
40 | [[package]] | ||
41 | name = "atty" | ||
42 | version = "0.2.11" | ||
43 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
44 | dependencies = [ | ||
45 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
46 | "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
47 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
48 | ] | ||
49 | |||
50 | [[package]] | ||
51 | name = "backtrace" | ||
52 | version = "0.3.9" | ||
53 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
54 | dependencies = [ | ||
55 | "backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)", | ||
56 | "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
57 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
58 | "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
59 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
60 | ] | ||
61 | |||
62 | [[package]] | ||
63 | name = "backtrace-sys" | ||
64 | version = "0.1.24" | ||
65 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
66 | dependencies = [ | ||
67 | "cc 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", | ||
68 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
69 | ] | ||
70 | |||
71 | [[package]] | ||
72 | name = "bit-set" | ||
73 | version = "0.4.0" | ||
74 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
75 | dependencies = [ | ||
76 | "bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
77 | ] | ||
78 | |||
79 | [[package]] | ||
80 | name = "bit-vec" | ||
81 | version = "0.4.4" | ||
82 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
83 | |||
84 | [[package]] | ||
85 | name = "bitflags" | ||
86 | version = "1.0.4" | ||
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
88 | |||
89 | [[package]] | ||
90 | name = "block-buffer" | ||
91 | version = "0.3.3" | ||
92 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
93 | dependencies = [ | ||
94 | "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
95 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
96 | ] | ||
97 | |||
98 | [[package]] | ||
99 | name = "byte-tools" | ||
100 | version = "0.2.0" | ||
101 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
102 | |||
103 | [[package]] | ||
104 | name = "cc" | ||
105 | version = "1.0.23" | ||
106 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
107 | |||
108 | [[package]] | ||
109 | name = "cfg-if" | ||
110 | version = "0.1.5" | ||
111 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
112 | |||
113 | [[package]] | ||
114 | name = "clap" | ||
115 | version = "2.32.0" | ||
116 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
117 | dependencies = [ | ||
118 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
119 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
120 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
121 | "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
122 | "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
123 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
124 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
125 | ] | ||
126 | |||
127 | [[package]] | ||
128 | name = "clap" | ||
129 | version = "3.0.0-alpha.1" | ||
130 | source = "git+https://github.com/kbknapp/clap-rs?branch=v3-master#eaa0700e7ed76f37d245a6878deb3b8e81754d6c" | ||
131 | dependencies = [ | ||
132 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
133 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
134 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
135 | "clap_derive 0.3.0 (git+https://github.com/clap-rs/clap_derive)", | ||
136 | "indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
137 | "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
138 | "textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
139 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
140 | "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
141 | ] | ||
142 | |||
143 | [[package]] | ||
144 | name = "clap-log-flag" | ||
145 | version = "0.1.0" | ||
146 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
147 | dependencies = [ | ||
148 | "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
149 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
150 | "log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
151 | "pretty_env_logger 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
152 | "structopt 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
153 | ] | ||
154 | |||
155 | [[package]] | ||
156 | name = "clap-verbosity-flag" | ||
157 | version = "0.2.0" | ||
158 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
159 | dependencies = [ | ||
160 | "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
161 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
162 | "log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
163 | "structopt 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
164 | ] | ||
165 | |||
166 | [[package]] | ||
167 | name = "clap_derive" | ||
168 | version = "0.3.0" | ||
169 | source = "git+https://github.com/clap-rs/clap_derive#2fad2c8ae4b5c61a2bf343b4eed636d60bb161bf" | ||
170 | dependencies = [ | ||
171 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
172 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
173 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
174 | ] | ||
175 | |||
176 | [[package]] | ||
177 | name = "cloudabi" | ||
178 | version = "0.0.3" | ||
179 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
180 | dependencies = [ | ||
181 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
182 | ] | ||
183 | |||
184 | [[package]] | ||
185 | name = "dbus" | ||
186 | version = "0.6.2" | ||
187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
188 | dependencies = [ | ||
189 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
190 | "libdbus-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
191 | ] | ||
192 | |||
193 | [[package]] | ||
194 | name = "diff" | ||
195 | version = "0.1.11" | ||
196 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
197 | |||
198 | [[package]] | ||
199 | name = "digest" | ||
200 | version = "0.7.5" | ||
201 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
202 | dependencies = [ | ||
203 | "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
204 | ] | ||
205 | |||
206 | [[package]] | ||
207 | name = "docopt" | ||
208 | version = "0.8.3" | ||
209 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
210 | dependencies = [ | ||
211 | "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
212 | "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
213 | "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)", | ||
214 | "serde_derive 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)", | ||
215 | "strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
216 | ] | ||
217 | |||
218 | [[package]] | ||
219 | name = "either" | ||
220 | version = "1.5.0" | ||
221 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
222 | |||
223 | [[package]] | ||
224 | name = "ena" | ||
225 | version = "0.5.0" | ||
226 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
227 | |||
228 | [[package]] | ||
229 | name = "env_logger" | ||
230 | version = "0.5.13" | ||
231 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
232 | dependencies = [ | ||
233 | "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
234 | "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
235 | "log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
236 | "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
237 | "termcolor 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
238 | ] | ||
239 | |||
240 | [[package]] | ||
241 | name = "failure" | ||
242 | version = "0.1.2" | ||
243 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
244 | dependencies = [ | ||
245 | "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
246 | "failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
247 | ] | ||
248 | |||
249 | [[package]] | ||
250 | name = "failure_derive" | ||
251 | version = "0.1.2" | ||
252 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
253 | dependencies = [ | ||
254 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
255 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
256 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
257 | "synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
258 | ] | ||
259 | |||
260 | [[package]] | ||
261 | name = "fake-simd" | ||
262 | version = "0.1.2" | ||
263 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
264 | |||
265 | [[package]] | ||
266 | name = "fixedbitset" | ||
267 | version = "0.1.9" | ||
268 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
269 | |||
270 | [[package]] | ||
271 | name = "fuchsia-zircon" | ||
272 | version = "0.3.3" | ||
273 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
274 | dependencies = [ | ||
275 | "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
276 | "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
277 | ] | ||
278 | |||
279 | [[package]] | ||
280 | name = "fuchsia-zircon-sys" | ||
281 | version = "0.3.3" | ||
282 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
283 | |||
284 | [[package]] | ||
285 | name = "generic-array" | ||
286 | version = "0.9.0" | ||
287 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
288 | dependencies = [ | ||
289 | "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
290 | ] | ||
291 | |||
292 | [[package]] | ||
293 | name = "humantime" | ||
294 | version = "1.1.1" | ||
295 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
296 | dependencies = [ | ||
297 | "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
298 | ] | ||
299 | |||
300 | [[package]] | ||
301 | name = "indexmap" | ||
302 | version = "1.0.1" | ||
303 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
304 | |||
305 | [[package]] | ||
306 | name = "itertools" | ||
307 | version = "0.7.8" | ||
308 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
309 | dependencies = [ | ||
310 | "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
311 | ] | ||
312 | |||
313 | [[package]] | ||
314 | name = "kernel32-sys" | ||
315 | version = "0.2.2" | ||
316 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
317 | dependencies = [ | ||
318 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
319 | "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
320 | ] | ||
321 | |||
322 | [[package]] | ||
323 | name = "lalrpop" | ||
324 | version = "0.15.2" | ||
325 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
326 | dependencies = [ | ||
327 | "ascii-canvas 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
328 | "atty 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
329 | "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
330 | "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
331 | "digest 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
332 | "docopt 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
333 | "ena 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
334 | "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
335 | "lalrpop-snap 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
336 | "lalrpop-util 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
337 | "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
338 | "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
339 | "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
340 | "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)", | ||
341 | "serde_derive 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)", | ||
342 | "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
343 | "string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
344 | "term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
345 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
346 | ] | ||
347 | |||
348 | [[package]] | ||
349 | name = "lalrpop-snap" | ||
350 | version = "0.15.2" | ||
351 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
352 | dependencies = [ | ||
353 | "ascii-canvas 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
354 | "atty 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
355 | "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
356 | "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
357 | "ena 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
358 | "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
359 | "lalrpop-util 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
360 | "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
361 | "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", | ||
362 | "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
363 | "string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
364 | "term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
365 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
366 | ] | ||
367 | |||
368 | [[package]] | ||
369 | name = "lalrpop-util" | ||
370 | version = "0.15.2" | ||
371 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
372 | |||
373 | [[package]] | ||
374 | name = "lazy_static" | ||
375 | version = "1.1.0" | ||
376 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
377 | dependencies = [ | ||
378 | "version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
379 | ] | ||
380 | |||
381 | [[package]] | ||
382 | name = "libc" | ||
383 | version = "0.2.43" | ||
384 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
385 | |||
386 | [[package]] | ||
387 | name = "libdbus-sys" | ||
388 | version = "0.1.3" | ||
389 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
390 | dependencies = [ | ||
391 | "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", | ||
392 | ] | ||
393 | |||
394 | [[package]] | ||
395 | name = "log" | ||
396 | version = "0.4.4" | ||
397 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
398 | dependencies = [ | ||
399 | "cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
400 | ] | ||
401 | |||
402 | [[package]] | ||
403 | name = "memchr" | ||
404 | version = "2.0.2" | ||
405 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
406 | dependencies = [ | ||
407 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
408 | ] | ||
409 | |||
410 | [[package]] | ||
411 | name = "new_debug_unreachable" | ||
412 | version = "1.0.1" | ||
413 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
414 | dependencies = [ | ||
415 | "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
416 | ] | ||
417 | |||
418 | [[package]] | ||
419 | name = "ordermap" | ||
420 | version = "0.3.5" | ||
421 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
422 | |||
423 | [[package]] | ||
424 | name = "petgraph" | ||
425 | version = "0.4.13" | ||
426 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
427 | dependencies = [ | ||
428 | "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
429 | "ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
430 | ] | ||
431 | |||
432 | [[package]] | ||
433 | name = "phf_generator" | ||
434 | version = "0.7.23" | ||
435 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
436 | dependencies = [ | ||
437 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", | ||
438 | "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
439 | ] | ||
440 | |||
441 | [[package]] | ||
442 | name = "phf_shared" | ||
443 | version = "0.7.23" | ||
444 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
445 | dependencies = [ | ||
446 | "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
447 | ] | ||
448 | |||
449 | [[package]] | ||
450 | name = "pkg-config" | ||
451 | version = "0.3.14" | ||
452 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
453 | |||
454 | [[package]] | ||
455 | name = "precomputed-hash" | ||
456 | version = "0.1.1" | ||
457 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
458 | |||
459 | [[package]] | ||
460 | name = "pretty_env_logger" | ||
461 | version = "0.2.4" | ||
462 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
463 | dependencies = [ | ||
464 | "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
465 | "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", | ||
466 | "log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
467 | ] | ||
468 | |||
469 | [[package]] | ||
470 | name = "proc-macro2" | ||
471 | version = "0.3.8" | ||
472 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
473 | dependencies = [ | ||
474 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
475 | ] | ||
476 | |||
477 | [[package]] | ||
478 | name = "proc-macro2" | ||
479 | version = "0.4.15" | ||
480 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
481 | dependencies = [ | ||
482 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
483 | ] | ||
484 | |||
485 | [[package]] | ||
486 | name = "quick-error" | ||
487 | version = "1.2.2" | ||
488 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
489 | |||
490 | [[package]] | ||
491 | name = "quote" | ||
492 | version = "0.5.2" | ||
493 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
494 | dependencies = [ | ||
495 | "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
496 | ] | ||
497 | |||
498 | [[package]] | ||
499 | name = "quote" | ||
500 | version = "0.6.8" | ||
501 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
502 | dependencies = [ | ||
503 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
504 | ] | ||
505 | |||
506 | [[package]] | ||
507 | name = "rand" | ||
508 | version = "0.5.5" | ||
509 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
510 | dependencies = [ | ||
511 | "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
512 | "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
513 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
514 | "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
515 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
516 | ] | ||
517 | |||
518 | [[package]] | ||
519 | name = "rand_core" | ||
520 | version = "0.2.1" | ||
521 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
522 | |||
523 | [[package]] | ||
524 | name = "redox_syscall" | ||
525 | version = "0.1.40" | ||
526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
527 | |||
528 | [[package]] | ||
529 | name = "redox_termios" | ||
530 | version = "0.1.1" | ||
531 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
532 | dependencies = [ | ||
533 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | ||
534 | ] | ||
535 | |||
536 | [[package]] | ||
537 | name = "regex" | ||
538 | version = "0.2.11" | ||
539 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
540 | dependencies = [ | ||
541 | "aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
542 | "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
543 | "regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
544 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
545 | "utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
546 | ] | ||
547 | |||
548 | [[package]] | ||
549 | name = "regex" | ||
550 | version = "1.0.4" | ||
551 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
552 | dependencies = [ | ||
553 | "aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
554 | "memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
555 | "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
556 | "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", | ||
557 | "utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
558 | ] | ||
559 | |||
560 | [[package]] | ||
561 | name = "regex-syntax" | ||
562 | version = "0.4.2" | ||
563 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
564 | |||
565 | [[package]] | ||
566 | name = "regex-syntax" | ||
567 | version = "0.5.6" | ||
568 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
569 | dependencies = [ | ||
570 | "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
571 | ] | ||
572 | |||
573 | [[package]] | ||
574 | name = "regex-syntax" | ||
575 | version = "0.6.2" | ||
576 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
577 | dependencies = [ | ||
578 | "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
579 | ] | ||
580 | |||
581 | [[package]] | ||
582 | name = "rustc-demangle" | ||
583 | version = "0.1.9" | ||
584 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
585 | |||
586 | [[package]] | ||
587 | name = "serde" | ||
588 | version = "1.0.75" | ||
589 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
590 | |||
591 | [[package]] | ||
592 | name = "serde_derive" | ||
593 | version = "1.0.75" | ||
594 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
595 | dependencies = [ | ||
596 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
597 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
598 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
599 | ] | ||
600 | |||
601 | [[package]] | ||
602 | name = "set_eq" | ||
603 | version = "0.1.0" | ||
604 | dependencies = [ | ||
605 | "clap 3.0.0-alpha.1 (git+https://github.com/kbknapp/clap-rs?branch=v3-master)", | ||
606 | "clap-log-flag 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
607 | "clap-verbosity-flag 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
608 | "dbus 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
609 | "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
610 | "lalrpop 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
611 | "lalrpop-util 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
612 | "log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
613 | "regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", | ||
614 | "structopt 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
615 | ] | ||
616 | |||
617 | [[package]] | ||
618 | name = "sha2" | ||
619 | version = "0.7.1" | ||
620 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
621 | dependencies = [ | ||
622 | "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | ||
623 | "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
624 | "digest 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
625 | "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
626 | ] | ||
627 | |||
628 | [[package]] | ||
629 | name = "siphasher" | ||
630 | version = "0.2.3" | ||
631 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
632 | |||
633 | [[package]] | ||
634 | name = "string_cache" | ||
635 | version = "0.7.3" | ||
636 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
637 | dependencies = [ | ||
638 | "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
639 | "new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
640 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", | ||
641 | "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
642 | "serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)", | ||
643 | "string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
644 | "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
645 | ] | ||
646 | |||
647 | [[package]] | ||
648 | name = "string_cache_codegen" | ||
649 | version = "0.4.1" | ||
650 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
651 | dependencies = [ | ||
652 | "phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", | ||
653 | "phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)", | ||
654 | "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
655 | "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
656 | "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
657 | ] | ||
658 | |||
659 | [[package]] | ||
660 | name = "string_cache_shared" | ||
661 | version = "0.3.0" | ||
662 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
663 | |||
664 | [[package]] | ||
665 | name = "strsim" | ||
666 | version = "0.6.0" | ||
667 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
668 | |||
669 | [[package]] | ||
670 | name = "strsim" | ||
671 | version = "0.7.0" | ||
672 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
673 | |||
674 | [[package]] | ||
675 | name = "structopt" | ||
676 | version = "0.2.10" | ||
677 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
678 | dependencies = [ | ||
679 | "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
680 | "structopt-derive 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", | ||
681 | ] | ||
682 | |||
683 | [[package]] | ||
684 | name = "structopt-derive" | ||
685 | version = "0.2.10" | ||
686 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
687 | dependencies = [ | ||
688 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
689 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
690 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
691 | ] | ||
692 | |||
693 | [[package]] | ||
694 | name = "syn" | ||
695 | version = "0.14.9" | ||
696 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
697 | dependencies = [ | ||
698 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
699 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
700 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
701 | ] | ||
702 | |||
703 | [[package]] | ||
704 | name = "synstructure" | ||
705 | version = "0.9.0" | ||
706 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
707 | dependencies = [ | ||
708 | "proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)", | ||
709 | "quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
710 | "syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)", | ||
711 | "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
712 | ] | ||
713 | |||
714 | [[package]] | ||
715 | name = "term" | ||
716 | version = "0.4.6" | ||
717 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
718 | dependencies = [ | ||
719 | "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
720 | "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", | ||
721 | ] | ||
722 | |||
723 | [[package]] | ||
724 | name = "termcolor" | ||
725 | version = "1.0.3" | ||
726 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
727 | dependencies = [ | ||
728 | "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
729 | ] | ||
730 | |||
731 | [[package]] | ||
732 | name = "termion" | ||
733 | version = "1.5.1" | ||
734 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
735 | dependencies = [ | ||
736 | "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", | ||
737 | "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", | ||
738 | "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
739 | ] | ||
740 | |||
741 | [[package]] | ||
742 | name = "textwrap" | ||
743 | version = "0.10.0" | ||
744 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
745 | dependencies = [ | ||
746 | "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
747 | ] | ||
748 | |||
749 | [[package]] | ||
750 | name = "thread_local" | ||
751 | version = "0.3.6" | ||
752 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
753 | dependencies = [ | ||
754 | "lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
755 | ] | ||
756 | |||
757 | [[package]] | ||
758 | name = "typenum" | ||
759 | version = "1.10.0" | ||
760 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
761 | |||
762 | [[package]] | ||
763 | name = "ucd-util" | ||
764 | version = "0.1.1" | ||
765 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
766 | |||
767 | [[package]] | ||
768 | name = "unicode-width" | ||
769 | version = "0.1.5" | ||
770 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
771 | |||
772 | [[package]] | ||
773 | name = "unicode-xid" | ||
774 | version = "0.1.0" | ||
775 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
776 | |||
777 | [[package]] | ||
778 | name = "unreachable" | ||
779 | version = "1.0.0" | ||
780 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
781 | dependencies = [ | ||
782 | "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", | ||
783 | ] | ||
784 | |||
785 | [[package]] | ||
786 | name = "utf8-ranges" | ||
787 | version = "1.0.1" | ||
788 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
789 | |||
790 | [[package]] | ||
791 | name = "vec_map" | ||
792 | version = "0.8.1" | ||
793 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
794 | |||
795 | [[package]] | ||
796 | name = "version_check" | ||
797 | version = "0.1.4" | ||
798 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
799 | |||
800 | [[package]] | ||
801 | name = "void" | ||
802 | version = "1.0.2" | ||
803 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
804 | |||
805 | [[package]] | ||
806 | name = "winapi" | ||
807 | version = "0.2.8" | ||
808 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
809 | |||
810 | [[package]] | ||
811 | name = "winapi" | ||
812 | version = "0.3.5" | ||
813 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
814 | dependencies = [ | ||
815 | "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
816 | "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", | ||
817 | ] | ||
818 | |||
819 | [[package]] | ||
820 | name = "winapi-build" | ||
821 | version = "0.1.1" | ||
822 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
823 | |||
824 | [[package]] | ||
825 | name = "winapi-i686-pc-windows-gnu" | ||
826 | version = "0.4.0" | ||
827 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
828 | |||
829 | [[package]] | ||
830 | name = "winapi-util" | ||
831 | version = "0.1.1" | ||
832 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
833 | dependencies = [ | ||
834 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
835 | ] | ||
836 | |||
837 | [[package]] | ||
838 | name = "winapi-x86_64-pc-windows-gnu" | ||
839 | version = "0.4.0" | ||
840 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
841 | |||
842 | [[package]] | ||
843 | name = "wincolor" | ||
844 | version = "1.0.1" | ||
845 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
846 | dependencies = [ | ||
847 | "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", | ||
848 | "winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", | ||
849 | ] | ||
850 | |||
851 | [metadata] | ||
852 | "checksum aho-corasick 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "68f56c7353e5a9547cbd76ed90f7bb5ffc3ba09d4ea9bd1d8c06c8b1142eeb5a" | ||
853 | "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" | ||
854 | "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee" | ||
855 | "checksum ascii-canvas 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b385d69402821a1c254533a011a312531cbcc0e3e24f19bbb4747a5a2daf37e2" | ||
856 | "checksum atty 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d0fd4c0631f06448cc45a6bbb3b710ebb7ff8ccb96a0800c994afe23a70d5df2" | ||
857 | "checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" | ||
858 | "checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a" | ||
859 | "checksum backtrace-sys 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c66d56ac8dabd07f6aacdaf633f4b8262f5b3601a810a0dcddffd5c22c69daa0" | ||
860 | "checksum bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9bf6104718e80d7b26a68fdbacff3481cfc05df670821affc7e9cbc1884400c" | ||
861 | "checksum bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "02b4ff8b16e6076c3e14220b39fbc1fabb6737522281a388998046859400895f" | ||
862 | "checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" | ||
863 | "checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab" | ||
864 | "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40" | ||
865 | "checksum cc 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)" = "c37f0efaa4b9b001fa6f02d4b644dee4af97d3414df07c51e3e4f015f3a3e131" | ||
866 | "checksum cfg-if 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4e7bb64a8ebb0d856483e1e682ea3422f883c5f5615a90d51a2c82fe87fdd3" | ||
867 | "checksum clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e" | ||
868 | "checksum clap 3.0.0-alpha.1 (git+https://github.com/kbknapp/clap-rs?branch=v3-master)" = "<none>" | ||
869 | "checksum clap-log-flag 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b05213138aad9c0f820773c51e829eae4189986435aa5c115a6465b385892a5" | ||
870 | "checksum clap-verbosity-flag 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bda14f5323b2b747f52908c5b7b8af7790784088bc7c2957a11695e39ad476dc" | ||
871 | "checksum clap_derive 0.3.0 (git+https://github.com/clap-rs/clap_derive)" = "<none>" | ||
872 | "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" | ||
873 | "checksum dbus 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e34c238dfb3f5881d46ad301403cd8f8ecf946e2a4e89bdd1166728b68b5008" | ||
874 | "checksum diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a" | ||
875 | "checksum digest 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)" = "5b29c278aa8fd30796bd977169e8004b4aa88cdcd2f32a6eb22bc2d5d38df94a" | ||
876 | "checksum docopt 0.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d8acd393692c503b168471874953a2531df0e9ab77d0b6bbc582395743300a4a" | ||
877 | "checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" | ||
878 | "checksum ena 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cabe5a5078ac8c506d3e4430763b1ba9b609b1286913e7d08e581d1c2de9b7e5" | ||
879 | "checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" | ||
880 | "checksum failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9" | ||
881 | "checksum failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426" | ||
882 | "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" | ||
883 | "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33" | ||
884 | "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" | ||
885 | "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" | ||
886 | "checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d" | ||
887 | "checksum humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e" | ||
888 | "checksum indexmap 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08173ba1e906efb6538785a8844dd496f5d34f0a2d88038e95195172fc667220" | ||
889 | "checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450" | ||
890 | "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" | ||
891 | "checksum lalrpop 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ba451f7bd819b7afc99d4cf4bdcd5a4861e64955ba9680ac70df3a50625ad6cf" | ||
892 | "checksum lalrpop-snap 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "60013fd6be14317d43f47658b1440956a9ca48a9ed0257e0e0a59aac13e43a1f" | ||
893 | "checksum lalrpop-util 0.15.2 (registry+https://github.com/rust-lang/crates.io-index)" = "60c6c48ba857cd700673ce88907cadcdd7e2cd7783ed02378537c5ffd4f6460c" | ||
894 | "checksum lazy_static 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca488b89a5657b0a2ecd45b95609b3e848cf1755da332a0da46e2b2b1cb371a7" | ||
895 | "checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d" | ||
896 | "checksum libdbus-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8720f9274907052cb50313f91201597868da9d625f8dd125f2aca5bddb7e83a1" | ||
897 | "checksum log 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cba860f648db8e6f269df990180c2217f333472b4a6e901e97446858487971e2" | ||
898 | "checksum memchr 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3b4142ab8738a78c51896f704f83c11df047ff1bda9a92a661aa6361552d93d" | ||
899 | "checksum new_debug_unreachable 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0cdc457076c78ab54d5e0d6fa7c47981757f1e34dc39ff92787f217dede586c4" | ||
900 | "checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063" | ||
901 | "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f" | ||
902 | "checksum phf_generator 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "03dc191feb9b08b0dc1330d6549b795b9d81aec19efe6b4a45aec8d4caee0c4b" | ||
903 | "checksum phf_shared 0.7.23 (registry+https://github.com/rust-lang/crates.io-index)" = "b539898d22d4273ded07f64a05737649dc69095d92cb87c7097ec68e3f150b93" | ||
904 | "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" | ||
905 | "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" | ||
906 | "checksum pretty_env_logger 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8ae1b463255bf6613ad435f8997cb57f5d045ef35eb255f5a3d6085be936bd79" | ||
907 | "checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7" | ||
908 | "checksum proc-macro2 0.4.15 (registry+https://github.com/rust-lang/crates.io-index)" = "295af93acfb1d5be29c16ca5b3f82d863836efd9cb0c14fd83811eb9a110e452" | ||
909 | "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" | ||
910 | "checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" | ||
911 | "checksum quote 0.6.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dd636425967c33af890042c483632d33fa7a18f19ad1d7ea72e8998c6ef8dea5" | ||
912 | "checksum rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e464cd887e869cddcae8792a4ee31d23c7edd516700695608f5b98c67ee0131c" | ||
913 | "checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2" | ||
914 | "checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" | ||
915 | "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" | ||
916 | "checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384" | ||
917 | "checksum regex 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "67d0301b0c6804eca7e3c275119d0b01ff3b7ab9258a65709e608a66312a1025" | ||
918 | "checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" | ||
919 | "checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7" | ||
920 | "checksum regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d" | ||
921 | "checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395" | ||
922 | "checksum serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)" = "22d340507cea0b7e6632900a176101fea959c7065d93ba555072da90aaaafc87" | ||
923 | "checksum serde_derive 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)" = "234fc8b737737b148ccd625175fc6390f5e4dacfdaa543cb93a3430d984a9119" | ||
924 | "checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0" | ||
925 | "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" | ||
926 | "checksum string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423" | ||
927 | "checksum string_cache_codegen 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "35293b05cf1494e8ddd042a7df6756bf18d07f42d234f32e71dce8a7aabb0191" | ||
928 | "checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc" | ||
929 | "checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" | ||
930 | "checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" | ||
931 | "checksum structopt 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d8e9ad6a11096cbecdcca0cc6aa403fdfdbaeda2fb3323a39c98e6a166a1e45a" | ||
932 | "checksum structopt-derive 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4cbce8ccdc62166bd594c14396a3242bf94c337a51dbfa9be1076dd74b3db2af" | ||
933 | "checksum syn 0.14.9 (registry+https://github.com/rust-lang/crates.io-index)" = "261ae9ecaa397c42b960649561949d69311f08eeaea86a65696e6e46517cf741" | ||
934 | "checksum synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7" | ||
935 | "checksum term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fa63644f74ce96fbeb9b794f66aff2a52d601cbd5e80f4b97123e3899f4570f1" | ||
936 | "checksum termcolor 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ff3bac0e465b59f194e7037ed404b0326e56ff234d767edc4c5cc9cd49e7a2c7" | ||
937 | "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" | ||
938 | "checksum textwrap 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6" | ||
939 | "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" | ||
940 | "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" | ||
941 | "checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" | ||
942 | "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" | ||
943 | "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" | ||
944 | "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" | ||
945 | "checksum utf8-ranges 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd70f467df6810094968e2fce0ee1bd0e87157aceb026a8c083bcf5e25b9efe4" | ||
946 | "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a" | ||
947 | "checksum version_check 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7716c242968ee87e5542f8021178248f267f295a5c4803beae8b8b7fd9bc6051" | ||
948 | "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" | ||
949 | "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" | ||
950 | "checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd" | ||
951 | "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" | ||
952 | "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
953 | "checksum winapi-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "afc5508759c5bf4285e61feb862b6083c8480aec864fa17a81fdec6f69b461ab" | ||
954 | "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
955 | "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" | ||