1
0

Cargo.lock 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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.12.1"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  8. dependencies = [
  9. "winapi",
  10. ]
  11. [[package]]
  12. name = "autocfg"
  13. version = "1.0.1"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  16. [[package]]
  17. name = "bitflags"
  18. version = "1.2.1"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  21. [[package]]
  22. name = "byteorder"
  23. version = "1.3.4"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  26. [[package]]
  27. name = "cc"
  28. version = "1.0.61"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
  31. dependencies = [
  32. "jobserver",
  33. ]
  34. [[package]]
  35. name = "cfg-if"
  36. version = "0.1.10"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  39. [[package]]
  40. name = "datetime"
  41. version = "0.5.1"
  42. source = "registry+https://github.com/rust-lang/crates.io-index"
  43. checksum = "d0fcb4df22ae812fa2f6d5e3b577247584cc67fce06ad0779168d1dd41cbcce3"
  44. dependencies = [
  45. "iso8601",
  46. "libc",
  47. "locale",
  48. "num-traits",
  49. "pad",
  50. "redox_syscall",
  51. "winapi",
  52. ]
  53. [[package]]
  54. name = "exa"
  55. version = "0.9.0"
  56. dependencies = [
  57. "ansi_term",
  58. "datetime",
  59. "git2",
  60. "glob",
  61. "lazy_static",
  62. "libc",
  63. "locale",
  64. "log",
  65. "natord",
  66. "num_cpus",
  67. "number_prefix",
  68. "scoped_threadpool",
  69. "term_grid",
  70. "term_size",
  71. "unicode-width",
  72. "users",
  73. "zoneinfo_compiled",
  74. ]
  75. [[package]]
  76. name = "git2"
  77. version = "0.13.11"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "1e094214efbc7fdbbdee952147e493b00e99a4e52817492277e98967ae918165"
  80. dependencies = [
  81. "bitflags",
  82. "libc",
  83. "libgit2-sys",
  84. "log",
  85. "openssl-sys",
  86. "url",
  87. ]
  88. [[package]]
  89. name = "glob"
  90. version = "0.3.0"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  93. [[package]]
  94. name = "hermit-abi"
  95. version = "0.1.17"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
  98. dependencies = [
  99. "libc",
  100. ]
  101. [[package]]
  102. name = "idna"
  103. version = "0.2.0"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  106. dependencies = [
  107. "matches",
  108. "unicode-bidi",
  109. "unicode-normalization",
  110. ]
  111. [[package]]
  112. name = "iso8601"
  113. version = "0.3.0"
  114. source = "registry+https://github.com/rust-lang/crates.io-index"
  115. checksum = "43e86914a73535f3f541a765adea0a9fafcf53fa6adb73662c4988fd9233766f"
  116. dependencies = [
  117. "nom",
  118. ]
  119. [[package]]
  120. name = "jobserver"
  121. version = "0.1.21"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
  124. dependencies = [
  125. "libc",
  126. ]
  127. [[package]]
  128. name = "lazy_static"
  129. version = "1.4.0"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  132. [[package]]
  133. name = "libc"
  134. version = "0.2.79"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "2448f6066e80e3bfc792e9c98bf705b4b0fc6e8ef5b43e5889aff0eaa9c58743"
  137. [[package]]
  138. name = "libgit2-sys"
  139. version = "0.12.14+1.1.0"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "8f25af58e6495f7caf2919d08f212de550cfa3ed2f5e744988938ea292b9f549"
  142. dependencies = [
  143. "cc",
  144. "libc",
  145. "libz-sys",
  146. "pkg-config",
  147. ]
  148. [[package]]
  149. name = "libz-sys"
  150. version = "1.1.2"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
  153. dependencies = [
  154. "cc",
  155. "libc",
  156. "pkg-config",
  157. "vcpkg",
  158. ]
  159. [[package]]
  160. name = "locale"
  161. version = "0.2.2"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "5fdbe492a9c0238da900a1165c42fc5067161ce292678a6fe80921f30fe307fd"
  164. dependencies = [
  165. "libc",
  166. ]
  167. [[package]]
  168. name = "log"
  169. version = "0.4.11"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  172. dependencies = [
  173. "cfg-if",
  174. ]
  175. [[package]]
  176. name = "matches"
  177. version = "0.1.8"
  178. source = "registry+https://github.com/rust-lang/crates.io-index"
  179. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  180. [[package]]
  181. name = "memchr"
  182. version = "2.3.3"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  185. [[package]]
  186. name = "natord"
  187. version = "1.0.9"
  188. source = "registry+https://github.com/rust-lang/crates.io-index"
  189. checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
  190. [[package]]
  191. name = "nom"
  192. version = "4.2.3"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
  195. dependencies = [
  196. "memchr",
  197. "version_check",
  198. ]
  199. [[package]]
  200. name = "num-traits"
  201. version = "0.2.12"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
  204. dependencies = [
  205. "autocfg",
  206. ]
  207. [[package]]
  208. name = "num_cpus"
  209. version = "1.13.0"
  210. source = "registry+https://github.com/rust-lang/crates.io-index"
  211. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  212. dependencies = [
  213. "hermit-abi",
  214. "libc",
  215. ]
  216. [[package]]
  217. name = "number_prefix"
  218. version = "0.4.0"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
  221. [[package]]
  222. name = "openssl-src"
  223. version = "111.12.0+1.1.1h"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "858a4132194f8570a7ee9eb8629e85b23cbc4565f2d4a162e87556e5956abf61"
  226. dependencies = [
  227. "cc",
  228. ]
  229. [[package]]
  230. name = "openssl-sys"
  231. version = "0.9.58"
  232. source = "registry+https://github.com/rust-lang/crates.io-index"
  233. checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
  234. dependencies = [
  235. "autocfg",
  236. "cc",
  237. "libc",
  238. "openssl-src",
  239. "pkg-config",
  240. "vcpkg",
  241. ]
  242. [[package]]
  243. name = "pad"
  244. version = "0.1.6"
  245. source = "registry+https://github.com/rust-lang/crates.io-index"
  246. checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3"
  247. dependencies = [
  248. "unicode-width",
  249. ]
  250. [[package]]
  251. name = "percent-encoding"
  252. version = "2.1.0"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  255. [[package]]
  256. name = "pkg-config"
  257. version = "0.3.19"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
  260. [[package]]
  261. name = "redox_syscall"
  262. version = "0.1.57"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  265. [[package]]
  266. name = "scoped_threadpool"
  267. version = "0.1.9"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
  270. [[package]]
  271. name = "term_grid"
  272. version = "0.1.7"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "230d3e804faaed5a39b08319efb797783df2fd9671b39b7596490cb486d702cf"
  275. dependencies = [
  276. "unicode-width",
  277. ]
  278. [[package]]
  279. name = "term_size"
  280. version = "0.3.2"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
  283. dependencies = [
  284. "libc",
  285. "winapi",
  286. ]
  287. [[package]]
  288. name = "tinyvec"
  289. version = "0.3.4"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
  292. [[package]]
  293. name = "unicode-bidi"
  294. version = "0.3.4"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  297. dependencies = [
  298. "matches",
  299. ]
  300. [[package]]
  301. name = "unicode-normalization"
  302. version = "0.1.13"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
  305. dependencies = [
  306. "tinyvec",
  307. ]
  308. [[package]]
  309. name = "unicode-width"
  310. version = "0.1.8"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  313. [[package]]
  314. name = "url"
  315. version = "2.1.1"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
  318. dependencies = [
  319. "idna",
  320. "matches",
  321. "percent-encoding",
  322. ]
  323. [[package]]
  324. name = "users"
  325. version = "0.11.0"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
  328. dependencies = [
  329. "libc",
  330. "log",
  331. ]
  332. [[package]]
  333. name = "vcpkg"
  334. version = "0.2.10"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
  337. [[package]]
  338. name = "version_check"
  339. version = "0.1.5"
  340. source = "registry+https://github.com/rust-lang/crates.io-index"
  341. checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
  342. [[package]]
  343. name = "winapi"
  344. version = "0.3.9"
  345. source = "registry+https://github.com/rust-lang/crates.io-index"
  346. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  347. dependencies = [
  348. "winapi-i686-pc-windows-gnu",
  349. "winapi-x86_64-pc-windows-gnu",
  350. ]
  351. [[package]]
  352. name = "winapi-i686-pc-windows-gnu"
  353. version = "0.4.0"
  354. source = "registry+https://github.com/rust-lang/crates.io-index"
  355. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  356. [[package]]
  357. name = "winapi-x86_64-pc-windows-gnu"
  358. version = "0.4.0"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  361. [[package]]
  362. name = "zoneinfo_compiled"
  363. version = "0.5.0"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "7033eef97c288bfa49e3ebf958245a41016f1673a5317196efad03eb656a7648"
  366. dependencies = [
  367. "byteorder",
  368. "datetime",
  369. ]