]> code.octet-stream.net Git - hashgood/blob - Cargo.lock
Prepare 0.3.0 release
[hashgood] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "ansi_term"
7 version = "0.12.1"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
10 dependencies = [
11 "winapi",
12 ]
13
14 [[package]]
15 name = "atty"
16 version = "0.2.14"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
19 dependencies = [
20 "hermit-abi",
21 "libc",
22 "winapi",
23 ]
24
25 [[package]]
26 name = "autocfg"
27 version = "1.1.0"
28 source = "registry+https://github.com/rust-lang/crates.io-index"
29 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
30
31 [[package]]
32 name = "bitflags"
33 version = "1.3.2"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
36
37 [[package]]
38 name = "block"
39 version = "0.1.6"
40 source = "registry+https://github.com/rust-lang/crates.io-index"
41 checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
42
43 [[package]]
44 name = "block-buffer"
45 version = "0.10.2"
46 source = "registry+https://github.com/rust-lang/crates.io-index"
47 checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
48 dependencies = [
49 "generic-array",
50 ]
51
52 [[package]]
53 name = "cc"
54 version = "1.0.73"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
57
58 [[package]]
59 name = "cfg-if"
60 version = "1.0.0"
61 source = "registry+https://github.com/rust-lang/crates.io-index"
62 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
63
64 [[package]]
65 name = "clap"
66 version = "2.34.0"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
69 dependencies = [
70 "ansi_term",
71 "atty",
72 "bitflags",
73 "strsim",
74 "textwrap",
75 "unicode-width",
76 "vec_map",
77 ]
78
79 [[package]]
80 name = "clipboard-win"
81 version = "3.1.1"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83 checksum = "9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342"
84 dependencies = [
85 "lazy-bytes-cast",
86 "winapi",
87 ]
88
89 [[package]]
90 name = "copypasta"
91 version = "0.8.1"
92 source = "registry+https://github.com/rust-lang/crates.io-index"
93 checksum = "d7216b5c1e9ad3867252505995b02d01c6fa7e6db0d8abd42634352ef377777e"
94 dependencies = [
95 "clipboard-win",
96 "objc",
97 "objc-foundation",
98 "objc_id",
99 "smithay-clipboard",
100 "x11-clipboard",
101 ]
102
103 [[package]]
104 name = "cpufeatures"
105 version = "0.2.2"
106 source = "registry+https://github.com/rust-lang/crates.io-index"
107 checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
108 dependencies = [
109 "libc",
110 ]
111
112 [[package]]
113 name = "crossbeam-channel"
114 version = "0.5.6"
115 source = "registry+https://github.com/rust-lang/crates.io-index"
116 checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
117 dependencies = [
118 "cfg-if",
119 "crossbeam-utils",
120 ]
121
122 [[package]]
123 name = "crossbeam-utils"
124 version = "0.8.11"
125 source = "registry+https://github.com/rust-lang/crates.io-index"
126 checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
127 dependencies = [
128 "cfg-if",
129 "once_cell",
130 ]
131
132 [[package]]
133 name = "crypto-common"
134 version = "0.1.6"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
137 dependencies = [
138 "generic-array",
139 "typenum",
140 ]
141
142 [[package]]
143 name = "digest"
144 version = "0.10.3"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
147 dependencies = [
148 "block-buffer",
149 "crypto-common",
150 ]
151
152 [[package]]
153 name = "dlib"
154 version = "0.5.0"
155 source = "registry+https://github.com/rust-lang/crates.io-index"
156 checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
157 dependencies = [
158 "libloading",
159 ]
160
161 [[package]]
162 name = "downcast-rs"
163 version = "1.2.0"
164 source = "registry+https://github.com/rust-lang/crates.io-index"
165 checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
166
167 [[package]]
168 name = "generic-array"
169 version = "0.14.6"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
171 checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
172 dependencies = [
173 "typenum",
174 "version_check",
175 ]
176
177 [[package]]
178 name = "hashgood"
179 version = "0.3.0"
180 dependencies = [
181 "copypasta",
182 "crossbeam-channel",
183 "hex",
184 "md-5",
185 "sha1",
186 "sha2",
187 "structopt",
188 "termcolor",
189 ]
190
191 [[package]]
192 name = "heck"
193 version = "0.3.3"
194 source = "registry+https://github.com/rust-lang/crates.io-index"
195 checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
196 dependencies = [
197 "unicode-segmentation",
198 ]
199
200 [[package]]
201 name = "hermit-abi"
202 version = "0.1.19"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
205 dependencies = [
206 "libc",
207 ]
208
209 [[package]]
210 name = "hex"
211 version = "0.4.3"
212 source = "registry+https://github.com/rust-lang/crates.io-index"
213 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
214
215 [[package]]
216 name = "lazy-bytes-cast"
217 version = "5.0.1"
218 source = "registry+https://github.com/rust-lang/crates.io-index"
219 checksum = "10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b"
220
221 [[package]]
222 name = "lazy_static"
223 version = "1.4.0"
224 source = "registry+https://github.com/rust-lang/crates.io-index"
225 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
226
227 [[package]]
228 name = "libc"
229 version = "0.2.127"
230 source = "registry+https://github.com/rust-lang/crates.io-index"
231 checksum = "505e71a4706fa491e9b1b55f51b95d4037d0821ee40131190475f692b35b009b"
232
233 [[package]]
234 name = "libloading"
235 version = "0.7.3"
236 source = "registry+https://github.com/rust-lang/crates.io-index"
237 checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
238 dependencies = [
239 "cfg-if",
240 "winapi",
241 ]
242
243 [[package]]
244 name = "log"
245 version = "0.4.17"
246 source = "registry+https://github.com/rust-lang/crates.io-index"
247 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
248 dependencies = [
249 "cfg-if",
250 ]
251
252 [[package]]
253 name = "malloc_buf"
254 version = "0.0.6"
255 source = "registry+https://github.com/rust-lang/crates.io-index"
256 checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
257 dependencies = [
258 "libc",
259 ]
260
261 [[package]]
262 name = "md-5"
263 version = "0.10.1"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "658646b21e0b72f7866c7038ab086d3d5e1cd6271f060fd37defb241949d0582"
266 dependencies = [
267 "digest",
268 ]
269
270 [[package]]
271 name = "memchr"
272 version = "2.5.0"
273 source = "registry+https://github.com/rust-lang/crates.io-index"
274 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
275
276 [[package]]
277 name = "memmap2"
278 version = "0.5.5"
279 source = "registry+https://github.com/rust-lang/crates.io-index"
280 checksum = "3a79b39c93a7a5a27eeaf9a23b5ff43f1b9e0ad6b1cdd441140ae53c35613fc7"
281 dependencies = [
282 "libc",
283 ]
284
285 [[package]]
286 name = "memoffset"
287 version = "0.6.5"
288 source = "registry+https://github.com/rust-lang/crates.io-index"
289 checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
290 dependencies = [
291 "autocfg",
292 ]
293
294 [[package]]
295 name = "minimal-lexical"
296 version = "0.2.1"
297 source = "registry+https://github.com/rust-lang/crates.io-index"
298 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
299
300 [[package]]
301 name = "nix"
302 version = "0.22.3"
303 source = "registry+https://github.com/rust-lang/crates.io-index"
304 checksum = "e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf"
305 dependencies = [
306 "bitflags",
307 "cc",
308 "cfg-if",
309 "libc",
310 "memoffset",
311 ]
312
313 [[package]]
314 name = "nix"
315 version = "0.24.2"
316 source = "registry+https://github.com/rust-lang/crates.io-index"
317 checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
318 dependencies = [
319 "bitflags",
320 "cfg-if",
321 "libc",
322 ]
323
324 [[package]]
325 name = "nom"
326 version = "7.1.1"
327 source = "registry+https://github.com/rust-lang/crates.io-index"
328 checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
329 dependencies = [
330 "memchr",
331 "minimal-lexical",
332 ]
333
334 [[package]]
335 name = "objc"
336 version = "0.2.7"
337 source = "registry+https://github.com/rust-lang/crates.io-index"
338 checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
339 dependencies = [
340 "malloc_buf",
341 ]
342
343 [[package]]
344 name = "objc-foundation"
345 version = "0.1.1"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
348 dependencies = [
349 "block",
350 "objc",
351 "objc_id",
352 ]
353
354 [[package]]
355 name = "objc_id"
356 version = "0.1.1"
357 source = "registry+https://github.com/rust-lang/crates.io-index"
358 checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
359 dependencies = [
360 "objc",
361 ]
362
363 [[package]]
364 name = "once_cell"
365 version = "1.13.0"
366 source = "registry+https://github.com/rust-lang/crates.io-index"
367 checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
368
369 [[package]]
370 name = "pkg-config"
371 version = "0.3.25"
372 source = "registry+https://github.com/rust-lang/crates.io-index"
373 checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
374
375 [[package]]
376 name = "proc-macro-error"
377 version = "1.0.4"
378 source = "registry+https://github.com/rust-lang/crates.io-index"
379 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
380 dependencies = [
381 "proc-macro-error-attr",
382 "proc-macro2",
383 "quote",
384 "syn",
385 "version_check",
386 ]
387
388 [[package]]
389 name = "proc-macro-error-attr"
390 version = "1.0.4"
391 source = "registry+https://github.com/rust-lang/crates.io-index"
392 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
393 dependencies = [
394 "proc-macro2",
395 "quote",
396 "version_check",
397 ]
398
399 [[package]]
400 name = "proc-macro2"
401 version = "1.0.43"
402 source = "registry+https://github.com/rust-lang/crates.io-index"
403 checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
404 dependencies = [
405 "unicode-ident",
406 ]
407
408 [[package]]
409 name = "quick-xml"
410 version = "0.22.0"
411 source = "registry+https://github.com/rust-lang/crates.io-index"
412 checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
413 dependencies = [
414 "memchr",
415 ]
416
417 [[package]]
418 name = "quote"
419 version = "1.0.21"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
422 dependencies = [
423 "proc-macro2",
424 ]
425
426 [[package]]
427 name = "scoped-tls"
428 version = "1.0.0"
429 source = "registry+https://github.com/rust-lang/crates.io-index"
430 checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
431
432 [[package]]
433 name = "sha1"
434 version = "0.10.1"
435 source = "registry+https://github.com/rust-lang/crates.io-index"
436 checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
437 dependencies = [
438 "cfg-if",
439 "cpufeatures",
440 "digest",
441 ]
442
443 [[package]]
444 name = "sha2"
445 version = "0.10.2"
446 source = "registry+https://github.com/rust-lang/crates.io-index"
447 checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
448 dependencies = [
449 "cfg-if",
450 "cpufeatures",
451 "digest",
452 ]
453
454 [[package]]
455 name = "smallvec"
456 version = "1.9.0"
457 source = "registry+https://github.com/rust-lang/crates.io-index"
458 checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
459
460 [[package]]
461 name = "smithay-client-toolkit"
462 version = "0.16.0"
463 source = "registry+https://github.com/rust-lang/crates.io-index"
464 checksum = "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454"
465 dependencies = [
466 "bitflags",
467 "dlib",
468 "lazy_static",
469 "log",
470 "memmap2",
471 "nix 0.24.2",
472 "pkg-config",
473 "wayland-client",
474 "wayland-cursor",
475 "wayland-protocols",
476 ]
477
478 [[package]]
479 name = "smithay-clipboard"
480 version = "0.6.6"
481 source = "registry+https://github.com/rust-lang/crates.io-index"
482 checksum = "0a345c870a1fae0b1b779085e81b51e614767c239e93503588e54c5b17f4b0e8"
483 dependencies = [
484 "smithay-client-toolkit",
485 "wayland-client",
486 ]
487
488 [[package]]
489 name = "strsim"
490 version = "0.8.0"
491 source = "registry+https://github.com/rust-lang/crates.io-index"
492 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
493
494 [[package]]
495 name = "structopt"
496 version = "0.3.26"
497 source = "registry+https://github.com/rust-lang/crates.io-index"
498 checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
499 dependencies = [
500 "clap",
501 "lazy_static",
502 "structopt-derive",
503 ]
504
505 [[package]]
506 name = "structopt-derive"
507 version = "0.4.18"
508 source = "registry+https://github.com/rust-lang/crates.io-index"
509 checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
510 dependencies = [
511 "heck",
512 "proc-macro-error",
513 "proc-macro2",
514 "quote",
515 "syn",
516 ]
517
518 [[package]]
519 name = "syn"
520 version = "1.0.99"
521 source = "registry+https://github.com/rust-lang/crates.io-index"
522 checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
523 dependencies = [
524 "proc-macro2",
525 "quote",
526 "unicode-ident",
527 ]
528
529 [[package]]
530 name = "termcolor"
531 version = "1.1.3"
532 source = "registry+https://github.com/rust-lang/crates.io-index"
533 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
534 dependencies = [
535 "winapi-util",
536 ]
537
538 [[package]]
539 name = "textwrap"
540 version = "0.11.0"
541 source = "registry+https://github.com/rust-lang/crates.io-index"
542 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
543 dependencies = [
544 "unicode-width",
545 ]
546
547 [[package]]
548 name = "typenum"
549 version = "1.15.0"
550 source = "registry+https://github.com/rust-lang/crates.io-index"
551 checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
552
553 [[package]]
554 name = "unicode-ident"
555 version = "1.0.3"
556 source = "registry+https://github.com/rust-lang/crates.io-index"
557 checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
558
559 [[package]]
560 name = "unicode-segmentation"
561 version = "1.9.0"
562 source = "registry+https://github.com/rust-lang/crates.io-index"
563 checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
564
565 [[package]]
566 name = "unicode-width"
567 version = "0.1.9"
568 source = "registry+https://github.com/rust-lang/crates.io-index"
569 checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
570
571 [[package]]
572 name = "vec_map"
573 version = "0.8.2"
574 source = "registry+https://github.com/rust-lang/crates.io-index"
575 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
576
577 [[package]]
578 name = "version_check"
579 version = "0.9.4"
580 source = "registry+https://github.com/rust-lang/crates.io-index"
581 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
582
583 [[package]]
584 name = "wayland-client"
585 version = "0.29.4"
586 source = "registry+https://github.com/rust-lang/crates.io-index"
587 checksum = "91223460e73257f697d9e23d401279123d36039a3f7a449e983f123292d4458f"
588 dependencies = [
589 "bitflags",
590 "downcast-rs",
591 "libc",
592 "nix 0.22.3",
593 "scoped-tls",
594 "wayland-commons",
595 "wayland-scanner",
596 "wayland-sys",
597 ]
598
599 [[package]]
600 name = "wayland-commons"
601 version = "0.29.4"
602 source = "registry+https://github.com/rust-lang/crates.io-index"
603 checksum = "94f6e5e340d7c13490eca867898c4cec5af56c27a5ffe5c80c6fc4708e22d33e"
604 dependencies = [
605 "nix 0.22.3",
606 "once_cell",
607 "smallvec",
608 "wayland-sys",
609 ]
610
611 [[package]]
612 name = "wayland-cursor"
613 version = "0.29.4"
614 source = "registry+https://github.com/rust-lang/crates.io-index"
615 checksum = "c52758f13d5e7861fc83d942d3d99bf270c83269575e52ac29e5b73cb956a6bd"
616 dependencies = [
617 "nix 0.22.3",
618 "wayland-client",
619 "xcursor",
620 ]
621
622 [[package]]
623 name = "wayland-protocols"
624 version = "0.29.4"
625 source = "registry+https://github.com/rust-lang/crates.io-index"
626 checksum = "60147ae23303402e41fe034f74fb2c35ad0780ee88a1c40ac09a3be1e7465741"
627 dependencies = [
628 "bitflags",
629 "wayland-client",
630 "wayland-commons",
631 "wayland-scanner",
632 ]
633
634 [[package]]
635 name = "wayland-scanner"
636 version = "0.29.4"
637 source = "registry+https://github.com/rust-lang/crates.io-index"
638 checksum = "39a1ed3143f7a143187156a2ab52742e89dac33245ba505c17224df48939f9e0"
639 dependencies = [
640 "proc-macro2",
641 "quote",
642 "xml-rs",
643 ]
644
645 [[package]]
646 name = "wayland-sys"
647 version = "0.29.4"
648 source = "registry+https://github.com/rust-lang/crates.io-index"
649 checksum = "d9341df79a8975679188e37dab3889bfa57c44ac2cb6da166f519a81cbe452d4"
650 dependencies = [
651 "dlib",
652 "lazy_static",
653 "pkg-config",
654 ]
655
656 [[package]]
657 name = "winapi"
658 version = "0.3.9"
659 source = "registry+https://github.com/rust-lang/crates.io-index"
660 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
661 dependencies = [
662 "winapi-i686-pc-windows-gnu",
663 "winapi-x86_64-pc-windows-gnu",
664 ]
665
666 [[package]]
667 name = "winapi-i686-pc-windows-gnu"
668 version = "0.4.0"
669 source = "registry+https://github.com/rust-lang/crates.io-index"
670 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
671
672 [[package]]
673 name = "winapi-util"
674 version = "0.1.5"
675 source = "registry+https://github.com/rust-lang/crates.io-index"
676 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
677 dependencies = [
678 "winapi",
679 ]
680
681 [[package]]
682 name = "winapi-x86_64-pc-windows-gnu"
683 version = "0.4.0"
684 source = "registry+https://github.com/rust-lang/crates.io-index"
685 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
686
687 [[package]]
688 name = "x11-clipboard"
689 version = "0.6.1"
690 source = "registry+https://github.com/rust-lang/crates.io-index"
691 checksum = "6a7468a5768fea473e6c8c0d4b60d6d7001a64acceaac267207ca0281e1337e8"
692 dependencies = [
693 "xcb",
694 ]
695
696 [[package]]
697 name = "xcb"
698 version = "1.1.1"
699 source = "registry+https://github.com/rust-lang/crates.io-index"
700 checksum = "b127bf5bfe9dbb39118d6567e3773d4bbc795411a8e1ef7b7e056bccac0011a9"
701 dependencies = [
702 "bitflags",
703 "libc",
704 "quick-xml",
705 ]
706
707 [[package]]
708 name = "xcursor"
709 version = "0.3.4"
710 source = "registry+https://github.com/rust-lang/crates.io-index"
711 checksum = "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7"
712 dependencies = [
713 "nom",
714 ]
715
716 [[package]]
717 name = "xml-rs"
718 version = "0.8.4"
719 source = "registry+https://github.com/rust-lang/crates.io-index"
720 checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"