shitty message client
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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