shitty message client
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1004 linhas
24 KiB

  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "ansi_term"
  5. version = "0.11.0"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  8. dependencies = [
  9. "winapi 0.3.8",
  10. ]
  11. [[package]]
  12. name = "anyhow"
  13. version = "1.0.31"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f"
  16. [[package]]
  17. name = "async-attributes"
  18. version = "1.1.1"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "efd3d156917d94862e779f356c5acae312b08fd3121e792c857d7928c8088423"
  21. dependencies = [
  22. "quote",
  23. "syn",
  24. ]
  25. [[package]]
  26. name = "async-std"
  27. version = "1.5.0"
  28. source = "registry+https://github.com/rust-lang/crates.io-index"
  29. checksum = "538ecb01eb64eecd772087e5b6f7540cbc917f047727339a472dafed2185b267"
  30. dependencies = [
  31. "async-attributes",
  32. "async-task",
  33. "crossbeam-channel",
  34. "crossbeam-deque",
  35. "crossbeam-utils",
  36. "futures-core",
  37. "futures-io",
  38. "futures-timer",
  39. "kv-log-macro",
  40. "log",
  41. "memchr",
  42. "mio",
  43. "mio-uds",
  44. "num_cpus",
  45. "once_cell",
  46. "pin-project-lite",
  47. "pin-utils",
  48. "slab",
  49. ]
  50. [[package]]
  51. name = "async-task"
  52. version = "1.3.1"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "0ac2c016b079e771204030951c366db398864f5026f84a44dafb0ff20f02085d"
  55. dependencies = [
  56. "libc",
  57. "winapi 0.3.8",
  58. ]
  59. [[package]]
  60. name = "atty"
  61. version = "0.2.14"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  64. dependencies = [
  65. "hermit-abi",
  66. "libc",
  67. "winapi 0.3.8",
  68. ]
  69. [[package]]
  70. name = "autocfg"
  71. version = "1.0.0"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
  74. [[package]]
  75. name = "bitflags"
  76. version = "1.2.1"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  79. [[package]]
  80. name = "bumpalo"
  81. version = "3.3.0"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "5356f1d23ee24a1f785a56d1d1a5f0fd5b0f6a0c0fb2412ce11da71649ab78f6"
  84. [[package]]
  85. name = "cc"
  86. version = "1.0.52"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "c3d87b23d6a92cd03af510a5ade527033f6aa6fa92161e2d5863a907d4c5e31d"
  89. [[package]]
  90. name = "cfg-if"
  91. version = "0.1.10"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  94. [[package]]
  95. name = "chrono"
  96. version = "0.4.11"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
  99. dependencies = [
  100. "num-integer",
  101. "num-traits",
  102. "time",
  103. ]
  104. [[package]]
  105. name = "clap"
  106. version = "2.33.1"
  107. source = "registry+https://github.com/rust-lang/crates.io-index"
  108. checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
  109. dependencies = [
  110. "ansi_term",
  111. "atty",
  112. "bitflags",
  113. "strsim",
  114. "textwrap",
  115. "unicode-width",
  116. "vec_map",
  117. ]
  118. [[package]]
  119. name = "crc32fast"
  120. version = "1.2.0"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
  123. dependencies = [
  124. "cfg-if",
  125. ]
  126. [[package]]
  127. name = "crossbeam-channel"
  128. version = "0.4.2"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "cced8691919c02aac3cb0a1bc2e9b73d89e832bf9a06fc579d4e71b68a2da061"
  131. dependencies = [
  132. "crossbeam-utils",
  133. "maybe-uninit",
  134. ]
  135. [[package]]
  136. name = "crossbeam-deque"
  137. version = "0.7.3"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
  140. dependencies = [
  141. "crossbeam-epoch",
  142. "crossbeam-utils",
  143. "maybe-uninit",
  144. ]
  145. [[package]]
  146. name = "crossbeam-epoch"
  147. version = "0.8.2"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
  150. dependencies = [
  151. "autocfg",
  152. "cfg-if",
  153. "crossbeam-utils",
  154. "lazy_static",
  155. "maybe-uninit",
  156. "memoffset",
  157. "scopeguard",
  158. ]
  159. [[package]]
  160. name = "crossbeam-utils"
  161. version = "0.7.2"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
  164. dependencies = [
  165. "autocfg",
  166. "cfg-if",
  167. "lazy_static",
  168. ]
  169. [[package]]
  170. name = "fuchsia-zircon"
  171. version = "0.3.3"
  172. source = "registry+https://github.com/rust-lang/crates.io-index"
  173. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  174. dependencies = [
  175. "bitflags",
  176. "fuchsia-zircon-sys",
  177. ]
  178. [[package]]
  179. name = "fuchsia-zircon-sys"
  180. version = "0.3.3"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  183. [[package]]
  184. name = "futures"
  185. version = "0.3.5"
  186. source = "registry+https://github.com/rust-lang/crates.io-index"
  187. checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
  188. dependencies = [
  189. "futures-channel",
  190. "futures-core",
  191. "futures-executor",
  192. "futures-io",
  193. "futures-sink",
  194. "futures-task",
  195. "futures-util",
  196. ]
  197. [[package]]
  198. name = "futures-channel"
  199. version = "0.3.5"
  200. source = "registry+https://github.com/rust-lang/crates.io-index"
  201. checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
  202. dependencies = [
  203. "futures-core",
  204. "futures-sink",
  205. ]
  206. [[package]]
  207. name = "futures-core"
  208. version = "0.3.5"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
  211. [[package]]
  212. name = "futures-executor"
  213. version = "0.3.5"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
  216. dependencies = [
  217. "futures-core",
  218. "futures-task",
  219. "futures-util",
  220. ]
  221. [[package]]
  222. name = "futures-io"
  223. version = "0.3.5"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
  226. [[package]]
  227. name = "futures-macro"
  228. version = "0.3.5"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
  231. dependencies = [
  232. "proc-macro-hack",
  233. "proc-macro2",
  234. "quote",
  235. "syn",
  236. ]
  237. [[package]]
  238. name = "futures-sink"
  239. version = "0.3.5"
  240. source = "registry+https://github.com/rust-lang/crates.io-index"
  241. checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
  242. [[package]]
  243. name = "futures-task"
  244. version = "0.3.5"
  245. source = "registry+https://github.com/rust-lang/crates.io-index"
  246. checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
  247. dependencies = [
  248. "once_cell",
  249. ]
  250. [[package]]
  251. name = "futures-timer"
  252. version = "2.0.2"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6"
  255. [[package]]
  256. name = "futures-util"
  257. version = "0.3.5"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
  260. dependencies = [
  261. "futures-channel",
  262. "futures-core",
  263. "futures-io",
  264. "futures-macro",
  265. "futures-sink",
  266. "futures-task",
  267. "memchr",
  268. "pin-project",
  269. "pin-utils",
  270. "proc-macro-hack",
  271. "proc-macro-nested",
  272. "slab",
  273. ]
  274. [[package]]
  275. name = "getrandom"
  276. version = "0.1.14"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
  279. dependencies = [
  280. "cfg-if",
  281. "libc",
  282. "wasi",
  283. ]
  284. [[package]]
  285. name = "heck"
  286. version = "0.3.1"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  289. dependencies = [
  290. "unicode-segmentation",
  291. ]
  292. [[package]]
  293. name = "hermit-abi"
  294. version = "0.1.12"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "61565ff7aaace3525556587bd2dc31d4a07071957be715e63ce7b1eccf51a8f4"
  297. dependencies = [
  298. "libc",
  299. ]
  300. [[package]]
  301. name = "ilmp"
  302. version = "0.1.0"
  303. dependencies = [
  304. "anyhow",
  305. "chrono",
  306. "crc32fast",
  307. "futures",
  308. "futures-util",
  309. "ring",
  310. "serde",
  311. "serde_json",
  312. "thiserror",
  313. "uuid",
  314. ]
  315. [[package]]
  316. name = "iovec"
  317. version = "0.1.4"
  318. source = "registry+https://github.com/rust-lang/crates.io-index"
  319. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  320. dependencies = [
  321. "libc",
  322. ]
  323. [[package]]
  324. name = "itoa"
  325. version = "0.4.5"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
  328. [[package]]
  329. name = "js-sys"
  330. version = "0.3.39"
  331. source = "registry+https://github.com/rust-lang/crates.io-index"
  332. checksum = "fa5a448de267e7358beaf4a5d849518fe9a0c13fce7afd44b06e68550e5562a7"
  333. dependencies = [
  334. "wasm-bindgen",
  335. ]
  336. [[package]]
  337. name = "kernel32-sys"
  338. version = "0.2.2"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  341. dependencies = [
  342. "winapi 0.2.8",
  343. "winapi-build",
  344. ]
  345. [[package]]
  346. name = "kv-log-macro"
  347. version = "1.0.5"
  348. source = "registry+https://github.com/rust-lang/crates.io-index"
  349. checksum = "2a2d3beed37e5483887d81eb39de6de03a8346531410e1306ca48a9a89bd3a51"
  350. dependencies = [
  351. "log",
  352. ]
  353. [[package]]
  354. name = "lazy_static"
  355. version = "1.4.0"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  358. [[package]]
  359. name = "libc"
  360. version = "0.2.70"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "3baa92041a6fec78c687fa0cc2b3fae8884f743d672cf551bed1d6dac6988d0f"
  363. [[package]]
  364. name = "log"
  365. version = "0.4.8"
  366. source = "registry+https://github.com/rust-lang/crates.io-index"
  367. checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
  368. dependencies = [
  369. "cfg-if",
  370. ]
  371. [[package]]
  372. name = "maybe-uninit"
  373. version = "2.0.0"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
  376. [[package]]
  377. name = "memchr"
  378. version = "2.3.3"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  381. [[package]]
  382. name = "memoffset"
  383. version = "0.5.4"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
  386. dependencies = [
  387. "autocfg",
  388. ]
  389. [[package]]
  390. name = "mio"
  391. version = "0.6.22"
  392. source = "registry+https://github.com/rust-lang/crates.io-index"
  393. checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
  394. dependencies = [
  395. "cfg-if",
  396. "fuchsia-zircon",
  397. "fuchsia-zircon-sys",
  398. "iovec",
  399. "kernel32-sys",
  400. "libc",
  401. "log",
  402. "miow",
  403. "net2",
  404. "slab",
  405. "winapi 0.2.8",
  406. ]
  407. [[package]]
  408. name = "mio-uds"
  409. version = "0.6.8"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  412. dependencies = [
  413. "iovec",
  414. "libc",
  415. "mio",
  416. ]
  417. [[package]]
  418. name = "miow"
  419. version = "0.2.1"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  422. dependencies = [
  423. "kernel32-sys",
  424. "net2",
  425. "winapi 0.2.8",
  426. "ws2_32-sys",
  427. ]
  428. [[package]]
  429. name = "msg"
  430. version = "0.1.0"
  431. dependencies = [
  432. "anyhow",
  433. "async-std",
  434. "chrono",
  435. "futures",
  436. "futures-util",
  437. "ilmp",
  438. "lazy_static",
  439. "ring",
  440. "serde",
  441. "serde_json",
  442. "structopt",
  443. "toml",
  444. "uuid",
  445. ]
  446. [[package]]
  447. name = "net2"
  448. version = "0.2.34"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
  451. dependencies = [
  452. "cfg-if",
  453. "libc",
  454. "winapi 0.3.8",
  455. ]
  456. [[package]]
  457. name = "num-integer"
  458. version = "0.1.42"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba"
  461. dependencies = [
  462. "autocfg",
  463. "num-traits",
  464. ]
  465. [[package]]
  466. name = "num-traits"
  467. version = "0.2.11"
  468. source = "registry+https://github.com/rust-lang/crates.io-index"
  469. checksum = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096"
  470. dependencies = [
  471. "autocfg",
  472. ]
  473. [[package]]
  474. name = "num_cpus"
  475. version = "1.13.0"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  478. dependencies = [
  479. "hermit-abi",
  480. "libc",
  481. ]
  482. [[package]]
  483. name = "once_cell"
  484. version = "1.4.0"
  485. source = "registry+https://github.com/rust-lang/crates.io-index"
  486. checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d"
  487. [[package]]
  488. name = "pin-project"
  489. version = "0.4.16"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "81d480cb4e89522ccda96d0eed9af94180b7a5f93fb28f66e1fd7d68431663d1"
  492. dependencies = [
  493. "pin-project-internal",
  494. ]
  495. [[package]]
  496. name = "pin-project-internal"
  497. version = "0.4.16"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "a82996f11efccb19b685b14b5df818de31c1edcee3daa256ab5775dd98e72feb"
  500. dependencies = [
  501. "proc-macro2",
  502. "quote",
  503. "syn",
  504. ]
  505. [[package]]
  506. name = "pin-project-lite"
  507. version = "0.1.5"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "f7505eeebd78492e0f6108f7171c4948dbb120ee8119d9d77d0afa5469bef67f"
  510. [[package]]
  511. name = "pin-utils"
  512. version = "0.1.0"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  515. [[package]]
  516. name = "ppv-lite86"
  517. version = "0.2.6"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b"
  520. [[package]]
  521. name = "proc-macro-error"
  522. version = "1.0.2"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"
  525. dependencies = [
  526. "proc-macro-error-attr",
  527. "proc-macro2",
  528. "quote",
  529. "syn",
  530. "version_check",
  531. ]
  532. [[package]]
  533. name = "proc-macro-error-attr"
  534. version = "1.0.2"
  535. source = "registry+https://github.com/rust-lang/crates.io-index"
  536. checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"
  537. dependencies = [
  538. "proc-macro2",
  539. "quote",
  540. "syn",
  541. "syn-mid",
  542. "version_check",
  543. ]
  544. [[package]]
  545. name = "proc-macro-hack"
  546. version = "0.5.15"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "0d659fe7c6d27f25e9d80a1a094c223f5246f6a6596453e09d7229bf42750b63"
  549. [[package]]
  550. name = "proc-macro-nested"
  551. version = "0.1.4"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "8e946095f9d3ed29ec38de908c22f95d9ac008e424c7bcae54c75a79c527c694"
  554. [[package]]
  555. name = "proc-macro2"
  556. version = "1.0.12"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "8872cf6f48eee44265156c111456a700ab3483686b3f96df4cf5481c89157319"
  559. dependencies = [
  560. "unicode-xid",
  561. ]
  562. [[package]]
  563. name = "quote"
  564. version = "1.0.5"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "42934bc9c8ab0d3b273a16d8551c8f0fcff46be73276ca083ec2414c15c4ba5e"
  567. dependencies = [
  568. "proc-macro2",
  569. ]
  570. [[package]]
  571. name = "rand"
  572. version = "0.7.3"
  573. source = "registry+https://github.com/rust-lang/crates.io-index"
  574. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  575. dependencies = [
  576. "getrandom",
  577. "libc",
  578. "rand_chacha",
  579. "rand_core",
  580. "rand_hc",
  581. ]
  582. [[package]]
  583. name = "rand_chacha"
  584. version = "0.2.2"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  587. dependencies = [
  588. "ppv-lite86",
  589. "rand_core",
  590. ]
  591. [[package]]
  592. name = "rand_core"
  593. version = "0.5.1"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  596. dependencies = [
  597. "getrandom",
  598. ]
  599. [[package]]
  600. name = "rand_hc"
  601. version = "0.2.0"
  602. source = "registry+https://github.com/rust-lang/crates.io-index"
  603. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  604. dependencies = [
  605. "rand_core",
  606. ]
  607. [[package]]
  608. name = "ring"
  609. version = "0.16.13"
  610. source = "registry+https://github.com/rust-lang/crates.io-index"
  611. checksum = "703516ae74571f24b465b4a1431e81e2ad51336cb0ded733a55a1aa3eccac196"
  612. dependencies = [
  613. "cc",
  614. "libc",
  615. "once_cell",
  616. "spin",
  617. "untrusted",
  618. "web-sys",
  619. "winapi 0.3.8",
  620. ]
  621. [[package]]
  622. name = "ryu"
  623. version = "1.0.4"
  624. source = "registry+https://github.com/rust-lang/crates.io-index"
  625. checksum = "ed3d612bc64430efeb3f7ee6ef26d590dce0c43249217bddc62112540c7941e1"
  626. [[package]]
  627. name = "scopeguard"
  628. version = "1.1.0"
  629. source = "registry+https://github.com/rust-lang/crates.io-index"
  630. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  631. [[package]]
  632. name = "serde"
  633. version = "1.0.110"
  634. source = "registry+https://github.com/rust-lang/crates.io-index"
  635. checksum = "99e7b308464d16b56eba9964e4972a3eee817760ab60d88c3f86e1fecb08204c"
  636. dependencies = [
  637. "serde_derive",
  638. ]
  639. [[package]]
  640. name = "serde_derive"
  641. version = "1.0.110"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "818fbf6bfa9a42d3bfcaca148547aa00c7b915bec71d1757aa2d44ca68771984"
  644. dependencies = [
  645. "proc-macro2",
  646. "quote",
  647. "syn",
  648. ]
  649. [[package]]
  650. name = "serde_json"
  651. version = "1.0.53"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "993948e75b189211a9b31a7528f950c6adc21f9720b6438ff80a7fa2f864cea2"
  654. dependencies = [
  655. "itoa",
  656. "ryu",
  657. "serde",
  658. ]
  659. [[package]]
  660. name = "slab"
  661. version = "0.4.2"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  664. [[package]]
  665. name = "spin"
  666. version = "0.5.2"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  669. [[package]]
  670. name = "strsim"
  671. version = "0.8.0"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  674. [[package]]
  675. name = "structopt"
  676. version = "0.3.14"
  677. source = "registry+https://github.com/rust-lang/crates.io-index"
  678. checksum = "863246aaf5ddd0d6928dfeb1a9ca65f505599e4e1b399935ef7e75107516b4ef"
  679. dependencies = [
  680. "clap",
  681. "lazy_static",
  682. "structopt-derive",
  683. ]
  684. [[package]]
  685. name = "structopt-derive"
  686. version = "0.4.7"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "d239ca4b13aee7a2142e6795cbd69e457665ff8037aed33b3effdc430d2f927a"
  689. dependencies = [
  690. "heck",
  691. "proc-macro-error",
  692. "proc-macro2",
  693. "quote",
  694. "syn",
  695. ]
  696. [[package]]
  697. name = "syn"
  698. version = "1.0.21"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "4696caa4048ac7ce2bcd2e484b3cef88c1004e41b8e945a277e2c25dc0b72060"
  701. dependencies = [
  702. "proc-macro2",
  703. "quote",
  704. "unicode-xid",
  705. ]
  706. [[package]]
  707. name = "syn-mid"
  708. version = "0.5.0"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a"
  711. dependencies = [
  712. "proc-macro2",
  713. "quote",
  714. "syn",
  715. ]
  716. [[package]]
  717. name = "textwrap"
  718. version = "0.11.0"
  719. source = "registry+https://github.com/rust-lang/crates.io-index"
  720. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  721. dependencies = [
  722. "unicode-width",
  723. ]
  724. [[package]]
  725. name = "thiserror"
  726. version = "1.0.18"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "5976891d6950b4f68477850b5b9e5aa64d955961466f9e174363f573e54e8ca7"
  729. dependencies = [
  730. "thiserror-impl",
  731. ]
  732. [[package]]
  733. name = "thiserror-impl"
  734. version = "1.0.18"
  735. source = "registry+https://github.com/rust-lang/crates.io-index"
  736. checksum = "ab81dbd1cd69cd2ce22ecfbdd3bdb73334ba25350649408cc6c085f46d89573d"
  737. dependencies = [
  738. "proc-macro2",
  739. "quote",
  740. "syn",
  741. ]
  742. [[package]]
  743. name = "time"
  744. version = "0.1.43"
  745. source = "registry+https://github.com/rust-lang/crates.io-index"
  746. checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
  747. dependencies = [
  748. "libc",
  749. "winapi 0.3.8",
  750. ]
  751. [[package]]
  752. name = "toml"
  753. version = "0.5.6"
  754. source = "registry+https://github.com/rust-lang/crates.io-index"
  755. checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
  756. dependencies = [
  757. "serde",
  758. ]
  759. [[package]]
  760. name = "unicode-segmentation"
  761. version = "1.6.0"
  762. source = "registry+https://github.com/rust-lang/crates.io-index"
  763. checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
  764. [[package]]
  765. name = "unicode-width"
  766. version = "0.1.7"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
  769. [[package]]
  770. name = "unicode-xid"
  771. version = "0.2.0"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
  774. [[package]]
  775. name = "untrusted"
  776. version = "0.7.1"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  779. [[package]]
  780. name = "uuid"
  781. version = "0.8.1"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
  784. dependencies = [
  785. "rand",
  786. ]
  787. [[package]]
  788. name = "vec_map"
  789. version = "0.8.2"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  792. [[package]]
  793. name = "version_check"
  794. version = "0.9.1"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "078775d0255232fb988e6fccf26ddc9d1ac274299aaedcedce21c6f72cc533ce"
  797. [[package]]
  798. name = "wasi"
  799. version = "0.9.0+wasi-snapshot-preview1"
  800. source = "registry+https://github.com/rust-lang/crates.io-index"
  801. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  802. [[package]]
  803. name = "wasm-bindgen"
  804. version = "0.2.62"
  805. source = "registry+https://github.com/rust-lang/crates.io-index"
  806. checksum = "e3c7d40d09cdbf0f4895ae58cf57d92e1e57a9dd8ed2e8390514b54a47cc5551"
  807. dependencies = [
  808. "cfg-if",
  809. "wasm-bindgen-macro",
  810. ]
  811. [[package]]
  812. name = "wasm-bindgen-backend"
  813. version = "0.2.62"
  814. source = "registry+https://github.com/rust-lang/crates.io-index"
  815. checksum = "c3972e137ebf830900db522d6c8fd74d1900dcfc733462e9a12e942b00b4ac94"
  816. dependencies = [
  817. "bumpalo",
  818. "lazy_static",
  819. "log",
  820. "proc-macro2",
  821. "quote",
  822. "syn",
  823. "wasm-bindgen-shared",
  824. ]
  825. [[package]]
  826. name = "wasm-bindgen-macro"
  827. version = "0.2.62"
  828. source = "registry+https://github.com/rust-lang/crates.io-index"
  829. checksum = "2cd85aa2c579e8892442954685f0d801f9129de24fa2136b2c6a539c76b65776"
  830. dependencies = [
  831. "quote",
  832. "wasm-bindgen-macro-support",
  833. ]
  834. [[package]]
  835. name = "wasm-bindgen-macro-support"
  836. version = "0.2.62"
  837. source = "registry+https://github.com/rust-lang/crates.io-index"
  838. checksum = "8eb197bd3a47553334907ffd2f16507b4f4f01bbec3ac921a7719e0decdfe72a"
  839. dependencies = [
  840. "proc-macro2",
  841. "quote",
  842. "syn",
  843. "wasm-bindgen-backend",
  844. "wasm-bindgen-shared",
  845. ]
  846. [[package]]
  847. name = "wasm-bindgen-shared"
  848. version = "0.2.62"
  849. source = "registry+https://github.com/rust-lang/crates.io-index"
  850. checksum = "a91c2916119c17a8e316507afaaa2dd94b47646048014bbdf6bef098c1bb58ad"
  851. [[package]]
  852. name = "web-sys"
  853. version = "0.3.39"
  854. source = "registry+https://github.com/rust-lang/crates.io-index"
  855. checksum = "8bc359e5dd3b46cb9687a051d50a2fdd228e4ba7cf6fcf861a5365c3d671a642"
  856. dependencies = [
  857. "js-sys",
  858. "wasm-bindgen",
  859. ]
  860. [[package]]
  861. name = "winapi"
  862. version = "0.2.8"
  863. source = "registry+https://github.com/rust-lang/crates.io-index"
  864. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  865. [[package]]
  866. name = "winapi"
  867. version = "0.3.8"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
  870. dependencies = [
  871. "winapi-i686-pc-windows-gnu",
  872. "winapi-x86_64-pc-windows-gnu",
  873. ]
  874. [[package]]
  875. name = "winapi-build"
  876. version = "0.1.1"
  877. source = "registry+https://github.com/rust-lang/crates.io-index"
  878. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  879. [[package]]
  880. name = "winapi-i686-pc-windows-gnu"
  881. version = "0.4.0"
  882. source = "registry+https://github.com/rust-lang/crates.io-index"
  883. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  884. [[package]]
  885. name = "winapi-x86_64-pc-windows-gnu"
  886. version = "0.4.0"
  887. source = "registry+https://github.com/rust-lang/crates.io-index"
  888. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  889. [[package]]
  890. name = "ws2_32-sys"
  891. version = "0.2.1"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  894. dependencies = [
  895. "winapi 0.2.8",
  896. "winapi-build",
  897. ]