Cargo.lock 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "ansi_term"
  6. version = "0.12.1"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  9. dependencies = [
  10. "winapi",
  11. ]
  12. [[package]]
  13. name = "anyhow"
  14. version = "1.0.51"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203"
  17. [[package]]
  18. name = "atty"
  19. version = "0.2.14"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  22. dependencies = [
  23. "hermit-abi",
  24. "libc",
  25. "winapi",
  26. ]
  27. [[package]]
  28. name = "bitflags"
  29. version = "1.3.2"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  32. [[package]]
  33. name = "cfg-if"
  34. version = "1.0.0"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  37. [[package]]
  38. name = "clap"
  39. version = "2.34.0"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  42. dependencies = [
  43. "ansi_term",
  44. "atty",
  45. "bitflags",
  46. "strsim",
  47. "textwrap",
  48. "unicode-width",
  49. "vec_map",
  50. ]
  51. [[package]]
  52. name = "colour"
  53. version = "0.6.0"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. checksum = "a27e4532f26f510c24bb8477d963c0c3ef27e293c3b2c507cccb0536d493201a"
  56. dependencies = [
  57. "crossterm",
  58. ]
  59. [[package]]
  60. name = "crossterm"
  61. version = "0.19.0"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c"
  64. dependencies = [
  65. "bitflags",
  66. "crossterm_winapi",
  67. "lazy_static",
  68. "libc",
  69. "mio",
  70. "parking_lot",
  71. "signal-hook",
  72. "winapi",
  73. ]
  74. [[package]]
  75. name = "crossterm_winapi"
  76. version = "0.7.0"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "0da8964ace4d3e4a044fd027919b2237000b24315a37c916f61809f1ff2140b9"
  79. dependencies = [
  80. "winapi",
  81. ]
  82. [[package]]
  83. name = "either"
  84. version = "1.6.1"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  87. [[package]]
  88. name = "hermit-abi"
  89. version = "0.1.19"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  92. dependencies = [
  93. "libc",
  94. ]
  95. [[package]]
  96. name = "instant"
  97. version = "0.1.12"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  100. dependencies = [
  101. "cfg-if",
  102. ]
  103. [[package]]
  104. name = "itertools"
  105. version = "0.10.3"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
  108. dependencies = [
  109. "either",
  110. ]
  111. [[package]]
  112. name = "lazy_static"
  113. version = "1.4.0"
  114. source = "registry+https://github.com/rust-lang/crates.io-index"
  115. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  116. [[package]]
  117. name = "libc"
  118. version = "0.2.112"
  119. source = "registry+https://github.com/rust-lang/crates.io-index"
  120. checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
  121. [[package]]
  122. name = "lock_api"
  123. version = "0.4.5"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
  126. dependencies = [
  127. "scopeguard",
  128. ]
  129. [[package]]
  130. name = "log"
  131. version = "0.4.14"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  134. dependencies = [
  135. "cfg-if",
  136. ]
  137. [[package]]
  138. name = "mio"
  139. version = "0.7.14"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
  142. dependencies = [
  143. "libc",
  144. "log",
  145. "miow",
  146. "ntapi",
  147. "winapi",
  148. ]
  149. [[package]]
  150. name = "miow"
  151. version = "0.3.7"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
  154. dependencies = [
  155. "winapi",
  156. ]
  157. [[package]]
  158. name = "ntapi"
  159. version = "0.3.6"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
  162. dependencies = [
  163. "winapi",
  164. ]
  165. [[package]]
  166. name = "parking_lot"
  167. version = "0.11.2"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  170. dependencies = [
  171. "instant",
  172. "lock_api",
  173. "parking_lot_core",
  174. ]
  175. [[package]]
  176. name = "parking_lot_core"
  177. version = "0.8.5"
  178. source = "registry+https://github.com/rust-lang/crates.io-index"
  179. checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
  180. dependencies = [
  181. "cfg-if",
  182. "instant",
  183. "libc",
  184. "redox_syscall",
  185. "smallvec",
  186. "winapi",
  187. ]
  188. [[package]]
  189. name = "redox_syscall"
  190. version = "0.2.10"
  191. source = "registry+https://github.com/rust-lang/crates.io-index"
  192. checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
  193. dependencies = [
  194. "bitflags",
  195. ]
  196. [[package]]
  197. name = "scopeguard"
  198. version = "1.1.0"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  201. [[package]]
  202. name = "signal-hook"
  203. version = "0.1.17"
  204. source = "registry+https://github.com/rust-lang/crates.io-index"
  205. checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729"
  206. dependencies = [
  207. "libc",
  208. "mio",
  209. "signal-hook-registry",
  210. ]
  211. [[package]]
  212. name = "signal-hook-registry"
  213. version = "1.4.0"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  216. dependencies = [
  217. "libc",
  218. ]
  219. [[package]]
  220. name = "smallvec"
  221. version = "1.7.0"
  222. source = "registry+https://github.com/rust-lang/crates.io-index"
  223. checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
  224. [[package]]
  225. name = "strsim"
  226. version = "0.8.0"
  227. source = "registry+https://github.com/rust-lang/crates.io-index"
  228. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  229. [[package]]
  230. name = "textwrap"
  231. version = "0.11.0"
  232. source = "registry+https://github.com/rust-lang/crates.io-index"
  233. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  234. dependencies = [
  235. "unicode-width",
  236. ]
  237. [[package]]
  238. name = "unicode-width"
  239. version = "0.1.9"
  240. source = "registry+https://github.com/rust-lang/crates.io-index"
  241. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  242. [[package]]
  243. name = "vec_map"
  244. version = "0.8.2"
  245. source = "registry+https://github.com/rust-lang/crates.io-index"
  246. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  247. [[package]]
  248. name = "winapi"
  249. version = "0.3.9"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  252. dependencies = [
  253. "winapi-i686-pc-windows-gnu",
  254. "winapi-x86_64-pc-windows-gnu",
  255. ]
  256. [[package]]
  257. name = "winapi-i686-pc-windows-gnu"
  258. version = "0.4.0"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  261. [[package]]
  262. name = "winapi-x86_64-pc-windows-gnu"
  263. version = "0.4.0"
  264. source = "registry+https://github.com/rust-lang/crates.io-index"
  265. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  266. [[package]]
  267. name = "zkas"
  268. version = "0.0.1"
  269. dependencies = [
  270. "anyhow",
  271. "clap",
  272. "colour",
  273. "itertools",
  274. ]