Cargo.lock 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  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 = "atty"
  14. version = "0.2.14"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  17. dependencies = [
  18. "hermit-abi",
  19. "libc",
  20. "winapi",
  21. ]
  22. [[package]]
  23. name = "autocfg"
  24. version = "1.1.0"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  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 = "byteorder"
  34. version = "1.4.3"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  37. [[package]]
  38. name = "cassowary"
  39. version = "0.3.0"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
  42. [[package]]
  43. name = "cfg-if"
  44. version = "1.0.0"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  47. [[package]]
  48. name = "clap"
  49. version = "2.34.0"
  50. source = "registry+https://github.com/rust-lang/crates.io-index"
  51. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  52. dependencies = [
  53. "ansi_term",
  54. "atty",
  55. "bitflags",
  56. "strsim",
  57. "textwrap",
  58. "unicode-width",
  59. "vec_map",
  60. ]
  61. [[package]]
  62. name = "crossterm"
  63. version = "0.26.1"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
  66. dependencies = [
  67. "bitflags",
  68. "crossterm_winapi",
  69. "libc",
  70. "mio",
  71. "parking_lot",
  72. "signal-hook",
  73. "signal-hook-mio",
  74. "winapi",
  75. ]
  76. [[package]]
  77. name = "crossterm_winapi"
  78. version = "0.9.1"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
  81. dependencies = [
  82. "winapi",
  83. ]
  84. [[package]]
  85. name = "heck"
  86. version = "0.3.3"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  89. dependencies = [
  90. "unicode-segmentation",
  91. ]
  92. [[package]]
  93. name = "hermit-abi"
  94. version = "0.1.19"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  97. dependencies = [
  98. "libc",
  99. ]
  100. [[package]]
  101. name = "libc"
  102. version = "0.2.146"
  103. source = "registry+https://github.com/rust-lang/crates.io-index"
  104. checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
  105. [[package]]
  106. name = "lock_api"
  107. version = "0.4.10"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
  110. dependencies = [
  111. "autocfg",
  112. "scopeguard",
  113. ]
  114. [[package]]
  115. name = "log"
  116. version = "0.4.19"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
  119. [[package]]
  120. name = "mio"
  121. version = "0.8.8"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
  124. dependencies = [
  125. "libc",
  126. "log",
  127. "wasi",
  128. "windows-sys",
  129. ]
  130. [[package]]
  131. name = "num_threads"
  132. version = "0.1.6"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  135. dependencies = [
  136. "libc",
  137. ]
  138. [[package]]
  139. name = "parking_lot"
  140. version = "0.12.1"
  141. source = "registry+https://github.com/rust-lang/crates.io-index"
  142. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  143. dependencies = [
  144. "lock_api",
  145. "parking_lot_core",
  146. ]
  147. [[package]]
  148. name = "parking_lot_core"
  149. version = "0.9.8"
  150. source = "registry+https://github.com/rust-lang/crates.io-index"
  151. checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
  152. dependencies = [
  153. "cfg-if",
  154. "libc",
  155. "redox_syscall",
  156. "smallvec",
  157. "windows-targets",
  158. ]
  159. [[package]]
  160. name = "proc-macro2"
  161. version = "0.4.30"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
  164. dependencies = [
  165. "unicode-xid",
  166. ]
  167. [[package]]
  168. name = "quote"
  169. version = "0.6.13"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
  172. dependencies = [
  173. "proc-macro2",
  174. ]
  175. [[package]]
  176. name = "ratatui"
  177. version = "0.21.0"
  178. source = "registry+https://github.com/rust-lang/crates.io-index"
  179. checksum = "ce841e0486e7c2412c3740168ede33adeba8e154a15107b879d8162d77c7174e"
  180. dependencies = [
  181. "bitflags",
  182. "cassowary",
  183. "crossterm",
  184. "time",
  185. "unicode-segmentation",
  186. "unicode-width",
  187. ]
  188. [[package]]
  189. name = "redox_syscall"
  190. version = "0.3.5"
  191. source = "registry+https://github.com/rust-lang/crates.io-index"
  192. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  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 = "serde"
  203. version = "1.0.164"
  204. source = "registry+https://github.com/rust-lang/crates.io-index"
  205. checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
  206. [[package]]
  207. name = "signal-hook"
  208. version = "0.3.15"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
  211. dependencies = [
  212. "libc",
  213. "signal-hook-registry",
  214. ]
  215. [[package]]
  216. name = "signal-hook-mio"
  217. version = "0.2.3"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
  220. dependencies = [
  221. "libc",
  222. "mio",
  223. "signal-hook",
  224. ]
  225. [[package]]
  226. name = "signal-hook-registry"
  227. version = "1.4.1"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  230. dependencies = [
  231. "libc",
  232. ]
  233. [[package]]
  234. name = "smallvec"
  235. version = "1.10.0"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  238. [[package]]
  239. name = "strsim"
  240. version = "0.8.0"
  241. source = "registry+https://github.com/rust-lang/crates.io-index"
  242. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  243. [[package]]
  244. name = "structopt"
  245. version = "0.2.18"
  246. source = "registry+https://github.com/rust-lang/crates.io-index"
  247. checksum = "16c2cdbf9cc375f15d1b4141bc48aeef444806655cd0e904207edc8d68d86ed7"
  248. dependencies = [
  249. "clap",
  250. "structopt-derive",
  251. ]
  252. [[package]]
  253. name = "structopt-derive"
  254. version = "0.2.18"
  255. source = "registry+https://github.com/rust-lang/crates.io-index"
  256. checksum = "53010261a84b37689f9ed7d395165029f9cc7abb9f56bbfe86bee2597ed25107"
  257. dependencies = [
  258. "heck",
  259. "proc-macro2",
  260. "quote",
  261. "syn",
  262. ]
  263. [[package]]
  264. name = "syn"
  265. version = "0.15.44"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
  268. dependencies = [
  269. "proc-macro2",
  270. "quote",
  271. "unicode-xid",
  272. ]
  273. [[package]]
  274. name = "textwrap"
  275. version = "0.11.0"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  278. dependencies = [
  279. "unicode-width",
  280. ]
  281. [[package]]
  282. name = "time"
  283. version = "0.3.22"
  284. source = "registry+https://github.com/rust-lang/crates.io-index"
  285. checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
  286. dependencies = [
  287. "libc",
  288. "num_threads",
  289. "serde",
  290. "time-core",
  291. ]
  292. [[package]]
  293. name = "time-core"
  294. version = "0.1.1"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  297. [[package]]
  298. name = "unicode-segmentation"
  299. version = "1.10.1"
  300. source = "registry+https://github.com/rust-lang/crates.io-index"
  301. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  302. [[package]]
  303. name = "unicode-width"
  304. version = "0.1.10"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  307. [[package]]
  308. name = "unicode-xid"
  309. version = "0.1.0"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
  312. [[package]]
  313. name = "vec_map"
  314. version = "0.8.2"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  317. [[package]]
  318. name = "wad"
  319. version = "0.3.2"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "cca16874efe33ab5a2414731b43cfee9897aaf43e2824718c7b2564ee3e1aa9d"
  322. dependencies = [
  323. "byteorder",
  324. "structopt",
  325. ]
  326. [[package]]
  327. name = "wad-goggles"
  328. version = "0.1.0"
  329. dependencies = [
  330. "crossterm",
  331. "ratatui",
  332. "wad",
  333. ]
  334. [[package]]
  335. name = "wasi"
  336. version = "0.11.0+wasi-snapshot-preview1"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  339. [[package]]
  340. name = "winapi"
  341. version = "0.3.9"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  344. dependencies = [
  345. "winapi-i686-pc-windows-gnu",
  346. "winapi-x86_64-pc-windows-gnu",
  347. ]
  348. [[package]]
  349. name = "winapi-i686-pc-windows-gnu"
  350. version = "0.4.0"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  353. [[package]]
  354. name = "winapi-x86_64-pc-windows-gnu"
  355. version = "0.4.0"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  358. [[package]]
  359. name = "windows-sys"
  360. version = "0.48.0"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  363. dependencies = [
  364. "windows-targets",
  365. ]
  366. [[package]]
  367. name = "windows-targets"
  368. version = "0.48.0"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  371. dependencies = [
  372. "windows_aarch64_gnullvm",
  373. "windows_aarch64_msvc",
  374. "windows_i686_gnu",
  375. "windows_i686_msvc",
  376. "windows_x86_64_gnu",
  377. "windows_x86_64_gnullvm",
  378. "windows_x86_64_msvc",
  379. ]
  380. [[package]]
  381. name = "windows_aarch64_gnullvm"
  382. version = "0.48.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  385. [[package]]
  386. name = "windows_aarch64_msvc"
  387. version = "0.48.0"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  390. [[package]]
  391. name = "windows_i686_gnu"
  392. version = "0.48.0"
  393. source = "registry+https://github.com/rust-lang/crates.io-index"
  394. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  395. [[package]]
  396. name = "windows_i686_msvc"
  397. version = "0.48.0"
  398. source = "registry+https://github.com/rust-lang/crates.io-index"
  399. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  400. [[package]]
  401. name = "windows_x86_64_gnu"
  402. version = "0.48.0"
  403. source = "registry+https://github.com/rust-lang/crates.io-index"
  404. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  405. [[package]]
  406. name = "windows_x86_64_gnullvm"
  407. version = "0.48.0"
  408. source = "registry+https://github.com/rust-lang/crates.io-index"
  409. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  410. [[package]]
  411. name = "windows_x86_64_msvc"
  412. version = "0.48.0"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"