]> nmode's Git Repositories - signal-cli/blob - client/Cargo.lock
Decrypt and verify the profile payment address
[signal-cli] / client / 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 = "aho-corasick"
7 version = "0.7.18"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
10 dependencies = [
11 "memchr",
12 ]
13
14 [[package]]
15 name = "anyhow"
16 version = "1.0.57"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
19
20 [[package]]
21 name = "atty"
22 version = "0.2.14"
23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
25 dependencies = [
26 "hermit-abi",
27 "libc",
28 "winapi",
29 ]
30
31 [[package]]
32 name = "autocfg"
33 version = "1.1.0"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
36
37 [[package]]
38 name = "bitflags"
39 version = "1.3.2"
40 source = "registry+https://github.com/rust-lang/crates.io-index"
41 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
42
43 [[package]]
44 name = "bstr"
45 version = "0.2.17"
46 source = "registry+https://github.com/rust-lang/crates.io-index"
47 checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
48 dependencies = [
49 "memchr",
50 ]
51
52 [[package]]
53 name = "bytes"
54 version = "1.1.0"
55 source = "registry+https://github.com/rust-lang/crates.io-index"
56 checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
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 = "3.1.18"
67 source = "registry+https://github.com/rust-lang/crates.io-index"
68 checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
69 dependencies = [
70 "atty",
71 "bitflags",
72 "clap_derive",
73 "clap_lex",
74 "indexmap",
75 "lazy_static",
76 "strsim",
77 "termcolor",
78 "textwrap",
79 ]
80
81 [[package]]
82 name = "clap_derive"
83 version = "3.1.18"
84 source = "registry+https://github.com/rust-lang/crates.io-index"
85 checksum = "25320346e922cffe59c0bbc5410c8d8784509efb321488971081313cb1e1a33c"
86 dependencies = [
87 "heck",
88 "proc-macro-error",
89 "proc-macro2",
90 "quote",
91 "syn",
92 ]
93
94 [[package]]
95 name = "clap_lex"
96 version = "0.2.0"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
99 dependencies = [
100 "os_str_bytes",
101 ]
102
103 [[package]]
104 name = "convert_case"
105 version = "0.4.0"
106 source = "registry+https://github.com/rust-lang/crates.io-index"
107 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
108
109 [[package]]
110 name = "derive_more"
111 version = "0.99.17"
112 source = "registry+https://github.com/rust-lang/crates.io-index"
113 checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
114 dependencies = [
115 "convert_case",
116 "proc-macro2",
117 "quote",
118 "rustc_version",
119 "syn",
120 ]
121
122 [[package]]
123 name = "fnv"
124 version = "1.0.7"
125 source = "registry+https://github.com/rust-lang/crates.io-index"
126 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
127
128 [[package]]
129 name = "futures"
130 version = "0.1.31"
131 source = "registry+https://github.com/rust-lang/crates.io-index"
132 checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
133
134 [[package]]
135 name = "futures"
136 version = "0.3.21"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
138 checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
139 dependencies = [
140 "futures-channel",
141 "futures-core",
142 "futures-executor",
143 "futures-io",
144 "futures-sink",
145 "futures-task",
146 "futures-util",
147 ]
148
149 [[package]]
150 name = "futures-channel"
151 version = "0.3.21"
152 source = "registry+https://github.com/rust-lang/crates.io-index"
153 checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
154 dependencies = [
155 "futures-core",
156 "futures-sink",
157 ]
158
159 [[package]]
160 name = "futures-core"
161 version = "0.3.21"
162 source = "registry+https://github.com/rust-lang/crates.io-index"
163 checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
164
165 [[package]]
166 name = "futures-executor"
167 version = "0.3.21"
168 source = "registry+https://github.com/rust-lang/crates.io-index"
169 checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
170 dependencies = [
171 "futures-core",
172 "futures-task",
173 "futures-util",
174 "num_cpus",
175 ]
176
177 [[package]]
178 name = "futures-io"
179 version = "0.3.21"
180 source = "registry+https://github.com/rust-lang/crates.io-index"
181 checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
182
183 [[package]]
184 name = "futures-macro"
185 version = "0.3.21"
186 source = "registry+https://github.com/rust-lang/crates.io-index"
187 checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
188 dependencies = [
189 "proc-macro2",
190 "quote",
191 "syn",
192 ]
193
194 [[package]]
195 name = "futures-sink"
196 version = "0.3.21"
197 source = "registry+https://github.com/rust-lang/crates.io-index"
198 checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
199
200 [[package]]
201 name = "futures-task"
202 version = "0.3.21"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
205
206 [[package]]
207 name = "futures-util"
208 version = "0.3.21"
209 source = "registry+https://github.com/rust-lang/crates.io-index"
210 checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
211 dependencies = [
212 "futures 0.1.31",
213 "futures-channel",
214 "futures-core",
215 "futures-io",
216 "futures-macro",
217 "futures-sink",
218 "futures-task",
219 "memchr",
220 "pin-project-lite",
221 "pin-utils",
222 "slab",
223 ]
224
225 [[package]]
226 name = "getrandom"
227 version = "0.1.16"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
230 dependencies = [
231 "cfg-if",
232 "libc",
233 "wasi 0.9.0+wasi-snapshot-preview1",
234 ]
235
236 [[package]]
237 name = "globset"
238 version = "0.4.8"
239 source = "registry+https://github.com/rust-lang/crates.io-index"
240 checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
241 dependencies = [
242 "aho-corasick",
243 "bstr",
244 "fnv",
245 "log",
246 "regex",
247 ]
248
249 [[package]]
250 name = "hashbrown"
251 version = "0.11.2"
252 source = "registry+https://github.com/rust-lang/crates.io-index"
253 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
254
255 [[package]]
256 name = "heck"
257 version = "0.4.0"
258 source = "registry+https://github.com/rust-lang/crates.io-index"
259 checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
260
261 [[package]]
262 name = "hermit-abi"
263 version = "0.1.19"
264 source = "registry+https://github.com/rust-lang/crates.io-index"
265 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
266 dependencies = [
267 "libc",
268 ]
269
270 [[package]]
271 name = "indexmap"
272 version = "1.8.1"
273 source = "registry+https://github.com/rust-lang/crates.io-index"
274 checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
275 dependencies = [
276 "autocfg",
277 "hashbrown",
278 ]
279
280 [[package]]
281 name = "instant"
282 version = "0.1.12"
283 source = "registry+https://github.com/rust-lang/crates.io-index"
284 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
285 dependencies = [
286 "cfg-if",
287 ]
288
289 [[package]]
290 name = "itoa"
291 version = "1.0.2"
292 source = "registry+https://github.com/rust-lang/crates.io-index"
293 checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
294
295 [[package]]
296 name = "jsonrpc-client-transports"
297 version = "18.0.0"
298 source = "git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params#8a68f95e202943fd338fd0c14da08c2dc8f6e6a6"
299 dependencies = [
300 "derive_more",
301 "futures 0.3.21",
302 "jsonrpc-core 18.0.0 (git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params)",
303 "jsonrpc-pubsub",
304 "jsonrpc-server-utils 18.0.0 (git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params)",
305 "log",
306 "parity-tokio-ipc",
307 "serde",
308 "serde_json",
309 "tokio",
310 ]
311
312 [[package]]
313 name = "jsonrpc-core"
314 version = "18.0.0"
315 source = "registry+https://github.com/rust-lang/crates.io-index"
316 checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb"
317 dependencies = [
318 "futures 0.3.21",
319 "futures-executor",
320 "futures-util",
321 "log",
322 "serde",
323 "serde_derive",
324 "serde_json",
325 ]
326
327 [[package]]
328 name = "jsonrpc-core"
329 version = "18.0.0"
330 source = "git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params#8a68f95e202943fd338fd0c14da08c2dc8f6e6a6"
331 dependencies = [
332 "futures 0.3.21",
333 "futures-executor",
334 "futures-util",
335 "log",
336 "serde",
337 "serde_derive",
338 "serde_json",
339 ]
340
341 [[package]]
342 name = "jsonrpc-core-client"
343 version = "18.0.0"
344 source = "registry+https://github.com/rust-lang/crates.io-index"
345 checksum = "b51da17abecbdab3e3d4f26b01c5ec075e88d3abe3ab3b05dc9aa69392764ec0"
346 dependencies = [
347 "futures 0.3.21",
348 "jsonrpc-client-transports",
349 ]
350
351 [[package]]
352 name = "jsonrpc-derive"
353 version = "18.0.0"
354 source = "git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params#8a68f95e202943fd338fd0c14da08c2dc8f6e6a6"
355 dependencies = [
356 "proc-macro-crate",
357 "proc-macro2",
358 "quote",
359 "syn",
360 ]
361
362 [[package]]
363 name = "jsonrpc-pubsub"
364 version = "18.0.0"
365 source = "git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params#8a68f95e202943fd338fd0c14da08c2dc8f6e6a6"
366 dependencies = [
367 "futures 0.3.21",
368 "jsonrpc-core 18.0.0 (git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params)",
369 "lazy_static",
370 "log",
371 "parking_lot",
372 "rand",
373 "serde",
374 ]
375
376 [[package]]
377 name = "jsonrpc-server-utils"
378 version = "18.0.0"
379 source = "registry+https://github.com/rust-lang/crates.io-index"
380 checksum = "fa4fdea130485b572c39a460d50888beb00afb3e35de23ccd7fad8ff19f0e0d4"
381 dependencies = [
382 "bytes",
383 "futures 0.3.21",
384 "globset",
385 "jsonrpc-core 18.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
386 "lazy_static",
387 "log",
388 "tokio",
389 "tokio-stream",
390 "tokio-util",
391 "unicase",
392 ]
393
394 [[package]]
395 name = "jsonrpc-server-utils"
396 version = "18.0.0"
397 source = "git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params#8a68f95e202943fd338fd0c14da08c2dc8f6e6a6"
398 dependencies = [
399 "bytes",
400 "futures 0.3.21",
401 "globset",
402 "jsonrpc-core 18.0.0 (git+https://github.com/AsamK/jsonrpc?branch=client_subscribe_named_params)",
403 "lazy_static",
404 "log",
405 "tokio",
406 "tokio-stream",
407 "tokio-util",
408 "unicase",
409 ]
410
411 [[package]]
412 name = "lazy_static"
413 version = "1.4.0"
414 source = "registry+https://github.com/rust-lang/crates.io-index"
415 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
416
417 [[package]]
418 name = "libc"
419 version = "0.2.126"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
422
423 [[package]]
424 name = "lock_api"
425 version = "0.4.7"
426 source = "registry+https://github.com/rust-lang/crates.io-index"
427 checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
428 dependencies = [
429 "autocfg",
430 "scopeguard",
431 ]
432
433 [[package]]
434 name = "log"
435 version = "0.4.17"
436 source = "registry+https://github.com/rust-lang/crates.io-index"
437 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
438 dependencies = [
439 "cfg-if",
440 ]
441
442 [[package]]
443 name = "memchr"
444 version = "2.5.0"
445 source = "registry+https://github.com/rust-lang/crates.io-index"
446 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
447
448 [[package]]
449 name = "mio"
450 version = "0.8.3"
451 source = "registry+https://github.com/rust-lang/crates.io-index"
452 checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
453 dependencies = [
454 "libc",
455 "log",
456 "wasi 0.11.0+wasi-snapshot-preview1",
457 "windows-sys",
458 ]
459
460 [[package]]
461 name = "num_cpus"
462 version = "1.13.1"
463 source = "registry+https://github.com/rust-lang/crates.io-index"
464 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
465 dependencies = [
466 "hermit-abi",
467 "libc",
468 ]
469
470 [[package]]
471 name = "once_cell"
472 version = "1.11.0"
473 source = "registry+https://github.com/rust-lang/crates.io-index"
474 checksum = "7b10983b38c53aebdf33f542c6275b0f58a238129d00c4ae0e6fb59738d783ca"
475
476 [[package]]
477 name = "os_str_bytes"
478 version = "6.0.1"
479 source = "registry+https://github.com/rust-lang/crates.io-index"
480 checksum = "029d8d0b2f198229de29dca79676f2738ff952edf3fde542eb8bf94d8c21b435"
481
482 [[package]]
483 name = "parity-tokio-ipc"
484 version = "0.9.0"
485 source = "registry+https://github.com/rust-lang/crates.io-index"
486 checksum = "9981e32fb75e004cc148f5fb70342f393830e0a4aa62e3cc93b50976218d42b6"
487 dependencies = [
488 "futures 0.3.21",
489 "libc",
490 "log",
491 "rand",
492 "tokio",
493 "winapi",
494 ]
495
496 [[package]]
497 name = "parking_lot"
498 version = "0.11.2"
499 source = "registry+https://github.com/rust-lang/crates.io-index"
500 checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
501 dependencies = [
502 "instant",
503 "lock_api",
504 "parking_lot_core",
505 ]
506
507 [[package]]
508 name = "parking_lot_core"
509 version = "0.8.5"
510 source = "registry+https://github.com/rust-lang/crates.io-index"
511 checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
512 dependencies = [
513 "cfg-if",
514 "instant",
515 "libc",
516 "redox_syscall",
517 "smallvec",
518 "winapi",
519 ]
520
521 [[package]]
522 name = "pin-project-lite"
523 version = "0.2.9"
524 source = "registry+https://github.com/rust-lang/crates.io-index"
525 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
526
527 [[package]]
528 name = "pin-utils"
529 version = "0.1.0"
530 source = "registry+https://github.com/rust-lang/crates.io-index"
531 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
532
533 [[package]]
534 name = "ppv-lite86"
535 version = "0.2.16"
536 source = "registry+https://github.com/rust-lang/crates.io-index"
537 checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
538
539 [[package]]
540 name = "proc-macro-crate"
541 version = "0.1.5"
542 source = "registry+https://github.com/rust-lang/crates.io-index"
543 checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
544 dependencies = [
545 "toml",
546 ]
547
548 [[package]]
549 name = "proc-macro-error"
550 version = "1.0.4"
551 source = "registry+https://github.com/rust-lang/crates.io-index"
552 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
553 dependencies = [
554 "proc-macro-error-attr",
555 "proc-macro2",
556 "quote",
557 "syn",
558 "version_check",
559 ]
560
561 [[package]]
562 name = "proc-macro-error-attr"
563 version = "1.0.4"
564 source = "registry+https://github.com/rust-lang/crates.io-index"
565 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
566 dependencies = [
567 "proc-macro2",
568 "quote",
569 "version_check",
570 ]
571
572 [[package]]
573 name = "proc-macro2"
574 version = "1.0.39"
575 source = "registry+https://github.com/rust-lang/crates.io-index"
576 checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
577 dependencies = [
578 "unicode-ident",
579 ]
580
581 [[package]]
582 name = "quote"
583 version = "1.0.18"
584 source = "registry+https://github.com/rust-lang/crates.io-index"
585 checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
586 dependencies = [
587 "proc-macro2",
588 ]
589
590 [[package]]
591 name = "rand"
592 version = "0.7.3"
593 source = "registry+https://github.com/rust-lang/crates.io-index"
594 checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
595 dependencies = [
596 "getrandom",
597 "libc",
598 "rand_chacha",
599 "rand_core",
600 "rand_hc",
601 ]
602
603 [[package]]
604 name = "rand_chacha"
605 version = "0.2.2"
606 source = "registry+https://github.com/rust-lang/crates.io-index"
607 checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
608 dependencies = [
609 "ppv-lite86",
610 "rand_core",
611 ]
612
613 [[package]]
614 name = "rand_core"
615 version = "0.5.1"
616 source = "registry+https://github.com/rust-lang/crates.io-index"
617 checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
618 dependencies = [
619 "getrandom",
620 ]
621
622 [[package]]
623 name = "rand_hc"
624 version = "0.2.0"
625 source = "registry+https://github.com/rust-lang/crates.io-index"
626 checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
627 dependencies = [
628 "rand_core",
629 ]
630
631 [[package]]
632 name = "redox_syscall"
633 version = "0.2.13"
634 source = "registry+https://github.com/rust-lang/crates.io-index"
635 checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
636 dependencies = [
637 "bitflags",
638 ]
639
640 [[package]]
641 name = "regex"
642 version = "1.5.5"
643 source = "registry+https://github.com/rust-lang/crates.io-index"
644 checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
645 dependencies = [
646 "aho-corasick",
647 "memchr",
648 "regex-syntax",
649 ]
650
651 [[package]]
652 name = "regex-syntax"
653 version = "0.6.25"
654 source = "registry+https://github.com/rust-lang/crates.io-index"
655 checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
656
657 [[package]]
658 name = "rustc_version"
659 version = "0.4.0"
660 source = "registry+https://github.com/rust-lang/crates.io-index"
661 checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
662 dependencies = [
663 "semver",
664 ]
665
666 [[package]]
667 name = "ryu"
668 version = "1.0.10"
669 source = "registry+https://github.com/rust-lang/crates.io-index"
670 checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
671
672 [[package]]
673 name = "scopeguard"
674 version = "1.1.0"
675 source = "registry+https://github.com/rust-lang/crates.io-index"
676 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
677
678 [[package]]
679 name = "semver"
680 version = "1.0.9"
681 source = "registry+https://github.com/rust-lang/crates.io-index"
682 checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
683
684 [[package]]
685 name = "serde"
686 version = "1.0.137"
687 source = "registry+https://github.com/rust-lang/crates.io-index"
688 checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
689 dependencies = [
690 "serde_derive",
691 ]
692
693 [[package]]
694 name = "serde_derive"
695 version = "1.0.137"
696 source = "registry+https://github.com/rust-lang/crates.io-index"
697 checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
698 dependencies = [
699 "proc-macro2",
700 "quote",
701 "syn",
702 ]
703
704 [[package]]
705 name = "serde_json"
706 version = "1.0.81"
707 source = "registry+https://github.com/rust-lang/crates.io-index"
708 checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
709 dependencies = [
710 "itoa",
711 "ryu",
712 "serde",
713 ]
714
715 [[package]]
716 name = "signal-cli-client"
717 version = "0.0.1"
718 dependencies = [
719 "anyhow",
720 "clap",
721 "jsonrpc-client-transports",
722 "jsonrpc-core 18.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
723 "jsonrpc-core-client",
724 "jsonrpc-derive",
725 "jsonrpc-server-utils 18.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
726 "log",
727 "serde",
728 "serde_json",
729 "tokio",
730 ]
731
732 [[package]]
733 name = "slab"
734 version = "0.4.6"
735 source = "registry+https://github.com/rust-lang/crates.io-index"
736 checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
737
738 [[package]]
739 name = "smallvec"
740 version = "1.8.0"
741 source = "registry+https://github.com/rust-lang/crates.io-index"
742 checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
743
744 [[package]]
745 name = "socket2"
746 version = "0.4.4"
747 source = "registry+https://github.com/rust-lang/crates.io-index"
748 checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
749 dependencies = [
750 "libc",
751 "winapi",
752 ]
753
754 [[package]]
755 name = "strsim"
756 version = "0.10.0"
757 source = "registry+https://github.com/rust-lang/crates.io-index"
758 checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
759
760 [[package]]
761 name = "syn"
762 version = "1.0.95"
763 source = "registry+https://github.com/rust-lang/crates.io-index"
764 checksum = "fbaf6116ab8924f39d52792136fb74fd60a80194cf1b1c6ffa6453eef1c3f942"
765 dependencies = [
766 "proc-macro2",
767 "quote",
768 "unicode-ident",
769 ]
770
771 [[package]]
772 name = "termcolor"
773 version = "1.1.3"
774 source = "registry+https://github.com/rust-lang/crates.io-index"
775 checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
776 dependencies = [
777 "winapi-util",
778 ]
779
780 [[package]]
781 name = "textwrap"
782 version = "0.15.0"
783 source = "registry+https://github.com/rust-lang/crates.io-index"
784 checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
785
786 [[package]]
787 name = "tokio"
788 version = "1.18.2"
789 source = "registry+https://github.com/rust-lang/crates.io-index"
790 checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395"
791 dependencies = [
792 "bytes",
793 "libc",
794 "memchr",
795 "mio",
796 "num_cpus",
797 "once_cell",
798 "pin-project-lite",
799 "socket2",
800 "tokio-macros",
801 "winapi",
802 ]
803
804 [[package]]
805 name = "tokio-macros"
806 version = "1.7.0"
807 source = "registry+https://github.com/rust-lang/crates.io-index"
808 checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
809 dependencies = [
810 "proc-macro2",
811 "quote",
812 "syn",
813 ]
814
815 [[package]]
816 name = "tokio-stream"
817 version = "0.1.8"
818 source = "registry+https://github.com/rust-lang/crates.io-index"
819 checksum = "50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3"
820 dependencies = [
821 "futures-core",
822 "pin-project-lite",
823 "tokio",
824 ]
825
826 [[package]]
827 name = "tokio-util"
828 version = "0.6.10"
829 source = "registry+https://github.com/rust-lang/crates.io-index"
830 checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
831 dependencies = [
832 "bytes",
833 "futures-core",
834 "futures-sink",
835 "log",
836 "pin-project-lite",
837 "tokio",
838 ]
839
840 [[package]]
841 name = "toml"
842 version = "0.5.9"
843 source = "registry+https://github.com/rust-lang/crates.io-index"
844 checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
845 dependencies = [
846 "serde",
847 ]
848
849 [[package]]
850 name = "unicase"
851 version = "2.6.0"
852 source = "registry+https://github.com/rust-lang/crates.io-index"
853 checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
854 dependencies = [
855 "version_check",
856 ]
857
858 [[package]]
859 name = "unicode-ident"
860 version = "1.0.0"
861 source = "registry+https://github.com/rust-lang/crates.io-index"
862 checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
863
864 [[package]]
865 name = "version_check"
866 version = "0.9.4"
867 source = "registry+https://github.com/rust-lang/crates.io-index"
868 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
869
870 [[package]]
871 name = "wasi"
872 version = "0.9.0+wasi-snapshot-preview1"
873 source = "registry+https://github.com/rust-lang/crates.io-index"
874 checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
875
876 [[package]]
877 name = "wasi"
878 version = "0.11.0+wasi-snapshot-preview1"
879 source = "registry+https://github.com/rust-lang/crates.io-index"
880 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
881
882 [[package]]
883 name = "winapi"
884 version = "0.3.9"
885 source = "registry+https://github.com/rust-lang/crates.io-index"
886 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
887 dependencies = [
888 "winapi-i686-pc-windows-gnu",
889 "winapi-x86_64-pc-windows-gnu",
890 ]
891
892 [[package]]
893 name = "winapi-i686-pc-windows-gnu"
894 version = "0.4.0"
895 source = "registry+https://github.com/rust-lang/crates.io-index"
896 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
897
898 [[package]]
899 name = "winapi-util"
900 version = "0.1.5"
901 source = "registry+https://github.com/rust-lang/crates.io-index"
902 checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
903 dependencies = [
904 "winapi",
905 ]
906
907 [[package]]
908 name = "winapi-x86_64-pc-windows-gnu"
909 version = "0.4.0"
910 source = "registry+https://github.com/rust-lang/crates.io-index"
911 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
912
913 [[package]]
914 name = "windows-sys"
915 version = "0.36.1"
916 source = "registry+https://github.com/rust-lang/crates.io-index"
917 checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
918 dependencies = [
919 "windows_aarch64_msvc",
920 "windows_i686_gnu",
921 "windows_i686_msvc",
922 "windows_x86_64_gnu",
923 "windows_x86_64_msvc",
924 ]
925
926 [[package]]
927 name = "windows_aarch64_msvc"
928 version = "0.36.1"
929 source = "registry+https://github.com/rust-lang/crates.io-index"
930 checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
931
932 [[package]]
933 name = "windows_i686_gnu"
934 version = "0.36.1"
935 source = "registry+https://github.com/rust-lang/crates.io-index"
936 checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
937
938 [[package]]
939 name = "windows_i686_msvc"
940 version = "0.36.1"
941 source = "registry+https://github.com/rust-lang/crates.io-index"
942 checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
943
944 [[package]]
945 name = "windows_x86_64_gnu"
946 version = "0.36.1"
947 source = "registry+https://github.com/rust-lang/crates.io-index"
948 checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
949
950 [[package]]
951 name = "windows_x86_64_msvc"
952 version = "0.36.1"
953 source = "registry+https://github.com/rust-lang/crates.io-index"
954 checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"