You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

425 lines
11 KiB

  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "atty"
  5. version = "0.2.14"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  8. dependencies = [
  9. "hermit-abi",
  10. "libc",
  11. "winapi",
  12. ]
  13. [[package]]
  14. name = "autocfg"
  15. version = "1.0.1"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  18. [[package]]
  19. name = "base64"
  20. version = "0.13.0"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  23. [[package]]
  24. name = "bitflags"
  25. version = "1.2.1"
  26. source = "registry+https://github.com/rust-lang/crates.io-index"
  27. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  28. [[package]]
  29. name = "clap"
  30. version = "3.0.0-beta.2"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. checksum = "4bd1061998a501ee7d4b6d449020df3266ca3124b941ec56cf2005c3779ca142"
  33. dependencies = [
  34. "atty",
  35. "bitflags",
  36. "clap_derive",
  37. "indexmap",
  38. "lazy_static",
  39. "os_str_bytes",
  40. "strsim",
  41. "termcolor",
  42. "textwrap",
  43. "unicode-width",
  44. "vec_map",
  45. ]
  46. [[package]]
  47. name = "clap_derive"
  48. version = "3.0.0-beta.2"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "370f715b81112975b1b69db93e0b56ea4cd4e5002ac43b2da8474106a54096a1"
  51. dependencies = [
  52. "heck",
  53. "proc-macro-error",
  54. "proc-macro2",
  55. "quote",
  56. "syn",
  57. ]
  58. [[package]]
  59. name = "cloudabi"
  60. version = "0.0.3"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  63. dependencies = [
  64. "bitflags",
  65. ]
  66. [[package]]
  67. name = "fuchsia-cprng"
  68. version = "0.1.1"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  71. [[package]]
  72. name = "hashbrown"
  73. version = "0.9.1"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
  76. [[package]]
  77. name = "heck"
  78. version = "0.3.1"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  81. dependencies = [
  82. "unicode-segmentation",
  83. ]
  84. [[package]]
  85. name = "hermit-abi"
  86. version = "0.1.17"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
  89. dependencies = [
  90. "libc",
  91. ]
  92. [[package]]
  93. name = "hex"
  94. version = "0.4.2"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
  97. [[package]]
  98. name = "indexmap"
  99. version = "1.6.0"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
  102. dependencies = [
  103. "autocfg",
  104. "hashbrown",
  105. ]
  106. [[package]]
  107. name = "konv"
  108. version = "0.0.1"
  109. dependencies = [
  110. "base64",
  111. "clap",
  112. "hex",
  113. "num",
  114. "num-bigint",
  115. "num-traits",
  116. "termion",
  117. ]
  118. [[package]]
  119. name = "lazy_static"
  120. version = "1.4.0"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  123. [[package]]
  124. name = "libc"
  125. version = "0.2.80"
  126. source = "registry+https://github.com/rust-lang/crates.io-index"
  127. checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
  128. [[package]]
  129. name = "num"
  130. version = "0.2.1"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
  133. dependencies = [
  134. "num-bigint",
  135. "num-complex",
  136. "num-integer",
  137. "num-iter",
  138. "num-rational",
  139. "num-traits",
  140. ]
  141. [[package]]
  142. name = "num-bigint"
  143. version = "0.2.6"
  144. source = "registry+https://github.com/rust-lang/crates.io-index"
  145. checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
  146. dependencies = [
  147. "autocfg",
  148. "num-integer",
  149. "num-traits",
  150. "rand",
  151. ]
  152. [[package]]
  153. name = "num-complex"
  154. version = "0.2.4"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
  157. dependencies = [
  158. "autocfg",
  159. "num-traits",
  160. ]
  161. [[package]]
  162. name = "num-integer"
  163. version = "0.1.44"
  164. source = "registry+https://github.com/rust-lang/crates.io-index"
  165. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  166. dependencies = [
  167. "autocfg",
  168. "num-traits",
  169. ]
  170. [[package]]
  171. name = "num-iter"
  172. version = "0.1.42"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
  175. dependencies = [
  176. "autocfg",
  177. "num-integer",
  178. "num-traits",
  179. ]
  180. [[package]]
  181. name = "num-rational"
  182. version = "0.2.4"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
  185. dependencies = [
  186. "autocfg",
  187. "num-bigint",
  188. "num-integer",
  189. "num-traits",
  190. ]
  191. [[package]]
  192. name = "num-traits"
  193. version = "0.2.14"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  196. dependencies = [
  197. "autocfg",
  198. ]
  199. [[package]]
  200. name = "numtoa"
  201. version = "0.1.0"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
  204. [[package]]
  205. name = "os_str_bytes"
  206. version = "2.4.0"
  207. source = "registry+https://github.com/rust-lang/crates.io-index"
  208. checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85"
  209. [[package]]
  210. name = "proc-macro-error"
  211. version = "1.0.4"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  214. dependencies = [
  215. "proc-macro-error-attr",
  216. "proc-macro2",
  217. "quote",
  218. "syn",
  219. "version_check",
  220. ]
  221. [[package]]
  222. name = "proc-macro-error-attr"
  223. version = "1.0.4"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  226. dependencies = [
  227. "proc-macro2",
  228. "quote",
  229. "version_check",
  230. ]
  231. [[package]]
  232. name = "proc-macro2"
  233. version = "1.0.24"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  236. dependencies = [
  237. "unicode-xid",
  238. ]
  239. [[package]]
  240. name = "quote"
  241. version = "1.0.7"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  244. dependencies = [
  245. "proc-macro2",
  246. ]
  247. [[package]]
  248. name = "rand"
  249. version = "0.5.6"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
  252. dependencies = [
  253. "cloudabi",
  254. "fuchsia-cprng",
  255. "libc",
  256. "rand_core 0.3.1",
  257. "winapi",
  258. ]
  259. [[package]]
  260. name = "rand_core"
  261. version = "0.3.1"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  264. dependencies = [
  265. "rand_core 0.4.2",
  266. ]
  267. [[package]]
  268. name = "rand_core"
  269. version = "0.4.2"
  270. source = "registry+https://github.com/rust-lang/crates.io-index"
  271. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  272. [[package]]
  273. name = "redox_syscall"
  274. version = "0.1.57"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  277. [[package]]
  278. name = "redox_termios"
  279. version = "0.1.1"
  280. source = "registry+https://github.com/rust-lang/crates.io-index"
  281. checksum = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76"
  282. dependencies = [
  283. "redox_syscall",
  284. ]
  285. [[package]]
  286. name = "strsim"
  287. version = "0.10.0"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  290. [[package]]
  291. name = "syn"
  292. version = "1.0.48"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "cc371affeffc477f42a221a1e4297aedcea33d47d19b61455588bd9d8f6b19ac"
  295. dependencies = [
  296. "proc-macro2",
  297. "quote",
  298. "unicode-xid",
  299. ]
  300. [[package]]
  301. name = "termcolor"
  302. version = "1.1.0"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
  305. dependencies = [
  306. "winapi-util",
  307. ]
  308. [[package]]
  309. name = "termion"
  310. version = "1.5.5"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "c22cec9d8978d906be5ac94bceb5a010d885c626c4c8855721a4dbd20e3ac905"
  313. dependencies = [
  314. "libc",
  315. "numtoa",
  316. "redox_syscall",
  317. "redox_termios",
  318. ]
  319. [[package]]
  320. name = "textwrap"
  321. version = "0.12.1"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. checksum = "203008d98caf094106cfaba70acfed15e18ed3ddb7d94e49baec153a2b462789"
  324. dependencies = [
  325. "unicode-width",
  326. ]
  327. [[package]]
  328. name = "unicode-segmentation"
  329. version = "1.7.0"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "db8716a166f290ff49dabc18b44aa407cb7c6dbe1aa0971b44b8a24b0ca35aae"
  332. [[package]]
  333. name = "unicode-width"
  334. version = "0.1.8"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  337. [[package]]
  338. name = "unicode-xid"
  339. version = "0.2.1"
  340. source = "registry+https://github.com/rust-lang/crates.io-index"
  341. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  342. [[package]]
  343. name = "vec_map"
  344. version = "0.8.2"
  345. source = "registry+https://github.com/rust-lang/crates.io-index"
  346. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  347. [[package]]
  348. name = "version_check"
  349. version = "0.9.2"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
  352. [[package]]
  353. name = "winapi"
  354. version = "0.3.9"
  355. source = "registry+https://github.com/rust-lang/crates.io-index"
  356. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  357. dependencies = [
  358. "winapi-i686-pc-windows-gnu",
  359. "winapi-x86_64-pc-windows-gnu",
  360. ]
  361. [[package]]
  362. name = "winapi-i686-pc-windows-gnu"
  363. version = "0.4.0"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  366. [[package]]
  367. name = "winapi-util"
  368. version = "0.1.5"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  371. dependencies = [
  372. "winapi",
  373. ]
  374. [[package]]
  375. name = "winapi-x86_64-pc-windows-gnu"
  376. version = "0.4.0"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"