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.

545 lines
14 KiB

2 years ago
2 years ago
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "aho-corasick"
  6. version = "0.7.20"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  9. dependencies = [
  10. "memchr",
  11. ]
  12. [[package]]
  13. name = "bitflags"
  14. version = "1.3.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  17. [[package]]
  18. name = "cc"
  19. version = "1.0.78"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
  22. [[package]]
  23. name = "cfg-if"
  24. version = "1.0.0"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  27. [[package]]
  28. name = "clipboard-win"
  29. version = "4.5.0"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362"
  32. dependencies = [
  33. "error-code",
  34. "str-buf",
  35. "winapi",
  36. ]
  37. [[package]]
  38. name = "crossbeam-channel"
  39. version = "0.5.6"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
  42. dependencies = [
  43. "cfg-if",
  44. "crossbeam-utils",
  45. ]
  46. [[package]]
  47. name = "crossbeam-utils"
  48. version = "0.8.14"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
  51. dependencies = [
  52. "cfg-if",
  53. ]
  54. [[package]]
  55. name = "ctrlc"
  56. version = "3.2.4"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "1631ca6e3c59112501a9d87fd86f21591ff77acd31331e8a73f8d80a65bbdd71"
  59. dependencies = [
  60. "nix",
  61. "windows-sys",
  62. ]
  63. [[package]]
  64. name = "dirs"
  65. version = "4.0.0"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
  68. dependencies = [
  69. "dirs-sys",
  70. ]
  71. [[package]]
  72. name = "dirs-next"
  73. version = "2.0.0"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  76. dependencies = [
  77. "cfg-if",
  78. "dirs-sys-next",
  79. ]
  80. [[package]]
  81. name = "dirs-sys"
  82. version = "0.3.7"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
  85. dependencies = [
  86. "libc",
  87. "redox_users",
  88. "winapi",
  89. ]
  90. [[package]]
  91. name = "dirs-sys-next"
  92. version = "0.1.2"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  95. dependencies = [
  96. "libc",
  97. "redox_users",
  98. "winapi",
  99. ]
  100. [[package]]
  101. name = "endian-type"
  102. version = "0.1.2"
  103. source = "registry+https://github.com/rust-lang/crates.io-index"
  104. checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
  105. [[package]]
  106. name = "errno"
  107. version = "0.2.8"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
  110. dependencies = [
  111. "errno-dragonfly",
  112. "libc",
  113. "winapi",
  114. ]
  115. [[package]]
  116. name = "errno-dragonfly"
  117. version = "0.1.2"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  120. dependencies = [
  121. "cc",
  122. "libc",
  123. ]
  124. [[package]]
  125. name = "error-code"
  126. version = "2.3.1"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21"
  129. dependencies = [
  130. "libc",
  131. "str-buf",
  132. ]
  133. [[package]]
  134. name = "fd-lock"
  135. version = "3.0.8"
  136. source = "registry+https://github.com/rust-lang/crates.io-index"
  137. checksum = "bb21c69b9fea5e15dbc1049e4b77145dd0ba1c84019c488102de0dc4ea4b0a27"
  138. dependencies = [
  139. "cfg-if",
  140. "rustix",
  141. "windows-sys",
  142. ]
  143. [[package]]
  144. name = "gethostname"
  145. version = "0.4.1"
  146. source = "registry+https://github.com/rust-lang/crates.io-index"
  147. checksum = "8a329e22866dd78b35d2c639a4a23d7b950aeae300dfd79f4fb19f74055c2404"
  148. dependencies = [
  149. "libc",
  150. "windows",
  151. ]
  152. [[package]]
  153. name = "getrandom"
  154. version = "0.2.8"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
  157. dependencies = [
  158. "cfg-if",
  159. "libc",
  160. "wasi",
  161. ]
  162. [[package]]
  163. name = "io-lifetimes"
  164. version = "1.0.4"
  165. source = "registry+https://github.com/rust-lang/crates.io-index"
  166. checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e"
  167. dependencies = [
  168. "libc",
  169. "windows-sys",
  170. ]
  171. [[package]]
  172. name = "libc"
  173. version = "0.2.139"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
  176. [[package]]
  177. name = "linux-raw-sys"
  178. version = "0.1.4"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
  181. [[package]]
  182. name = "log"
  183. version = "0.4.17"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  186. dependencies = [
  187. "cfg-if",
  188. ]
  189. [[package]]
  190. name = "memchr"
  191. version = "2.5.0"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  194. [[package]]
  195. name = "nibble_vec"
  196. version = "0.1.0"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
  199. dependencies = [
  200. "smallvec",
  201. ]
  202. [[package]]
  203. name = "nix"
  204. version = "0.26.1"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
  207. dependencies = [
  208. "bitflags",
  209. "cfg-if",
  210. "libc",
  211. "static_assertions",
  212. ]
  213. [[package]]
  214. name = "once_cell"
  215. version = "1.17.0"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
  218. [[package]]
  219. name = "pmuw-project"
  220. version = "0.1.0"
  221. dependencies = [
  222. "crossbeam-channel",
  223. "ctrlc",
  224. "dirs",
  225. "gethostname",
  226. "once_cell",
  227. "regex",
  228. "rustyline",
  229. "shlex",
  230. ]
  231. [[package]]
  232. name = "proc-macro2"
  233. version = "1.0.49"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
  236. dependencies = [
  237. "unicode-ident",
  238. ]
  239. [[package]]
  240. name = "quote"
  241. version = "1.0.23"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
  244. dependencies = [
  245. "proc-macro2",
  246. ]
  247. [[package]]
  248. name = "radix_trie"
  249. version = "0.2.1"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
  252. dependencies = [
  253. "endian-type",
  254. "nibble_vec",
  255. ]
  256. [[package]]
  257. name = "redox_syscall"
  258. version = "0.2.16"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  261. dependencies = [
  262. "bitflags",
  263. ]
  264. [[package]]
  265. name = "redox_users"
  266. version = "0.4.3"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  269. dependencies = [
  270. "getrandom",
  271. "redox_syscall",
  272. "thiserror",
  273. ]
  274. [[package]]
  275. name = "regex"
  276. version = "1.7.1"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
  279. dependencies = [
  280. "aho-corasick",
  281. "memchr",
  282. "regex-syntax",
  283. ]
  284. [[package]]
  285. name = "regex-syntax"
  286. version = "0.6.28"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
  289. [[package]]
  290. name = "rustix"
  291. version = "0.36.6"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549"
  294. dependencies = [
  295. "bitflags",
  296. "errno",
  297. "io-lifetimes",
  298. "libc",
  299. "linux-raw-sys",
  300. "windows-sys",
  301. ]
  302. [[package]]
  303. name = "rustyline"
  304. version = "10.1.0"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "5fc2d30f0bb29c4308f902d4a147b2d6cb022b59771463d9785f37e21f544df7"
  307. dependencies = [
  308. "bitflags",
  309. "cfg-if",
  310. "clipboard-win",
  311. "dirs-next",
  312. "fd-lock",
  313. "libc",
  314. "log",
  315. "memchr",
  316. "nix",
  317. "radix_trie",
  318. "scopeguard",
  319. "unicode-segmentation",
  320. "unicode-width",
  321. "utf8parse",
  322. "winapi",
  323. ]
  324. [[package]]
  325. name = "scopeguard"
  326. version = "1.1.0"
  327. source = "registry+https://github.com/rust-lang/crates.io-index"
  328. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  329. [[package]]
  330. name = "shlex"
  331. version = "1.1.0"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  334. [[package]]
  335. name = "smallvec"
  336. version = "1.10.0"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  339. [[package]]
  340. name = "static_assertions"
  341. version = "1.1.0"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  344. [[package]]
  345. name = "str-buf"
  346. version = "1.0.6"
  347. source = "registry+https://github.com/rust-lang/crates.io-index"
  348. checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"
  349. [[package]]
  350. name = "syn"
  351. version = "1.0.107"
  352. source = "registry+https://github.com/rust-lang/crates.io-index"
  353. checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
  354. dependencies = [
  355. "proc-macro2",
  356. "quote",
  357. "unicode-ident",
  358. ]
  359. [[package]]
  360. name = "thiserror"
  361. version = "1.0.38"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
  364. dependencies = [
  365. "thiserror-impl",
  366. ]
  367. [[package]]
  368. name = "thiserror-impl"
  369. version = "1.0.38"
  370. source = "registry+https://github.com/rust-lang/crates.io-index"
  371. checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
  372. dependencies = [
  373. "proc-macro2",
  374. "quote",
  375. "syn",
  376. ]
  377. [[package]]
  378. name = "unicode-ident"
  379. version = "1.0.6"
  380. source = "registry+https://github.com/rust-lang/crates.io-index"
  381. checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
  382. [[package]]
  383. name = "unicode-segmentation"
  384. version = "1.10.0"
  385. source = "registry+https://github.com/rust-lang/crates.io-index"
  386. checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
  387. [[package]]
  388. name = "unicode-width"
  389. version = "0.1.10"
  390. source = "registry+https://github.com/rust-lang/crates.io-index"
  391. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  392. [[package]]
  393. name = "utf8parse"
  394. version = "0.2.0"
  395. source = "registry+https://github.com/rust-lang/crates.io-index"
  396. checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372"
  397. [[package]]
  398. name = "wasi"
  399. version = "0.11.0+wasi-snapshot-preview1"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  402. [[package]]
  403. name = "winapi"
  404. version = "0.3.9"
  405. source = "registry+https://github.com/rust-lang/crates.io-index"
  406. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  407. dependencies = [
  408. "winapi-i686-pc-windows-gnu",
  409. "winapi-x86_64-pc-windows-gnu",
  410. ]
  411. [[package]]
  412. name = "winapi-i686-pc-windows-gnu"
  413. version = "0.4.0"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  416. [[package]]
  417. name = "winapi-x86_64-pc-windows-gnu"
  418. version = "0.4.0"
  419. source = "registry+https://github.com/rust-lang/crates.io-index"
  420. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  421. [[package]]
  422. name = "windows"
  423. version = "0.43.0"
  424. source = "registry+https://github.com/rust-lang/crates.io-index"
  425. checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244"
  426. dependencies = [
  427. "windows_aarch64_gnullvm",
  428. "windows_aarch64_msvc",
  429. "windows_i686_gnu",
  430. "windows_i686_msvc",
  431. "windows_x86_64_gnu",
  432. "windows_x86_64_gnullvm",
  433. "windows_x86_64_msvc",
  434. ]
  435. [[package]]
  436. name = "windows-sys"
  437. version = "0.42.0"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  440. dependencies = [
  441. "windows_aarch64_gnullvm",
  442. "windows_aarch64_msvc",
  443. "windows_i686_gnu",
  444. "windows_i686_msvc",
  445. "windows_x86_64_gnu",
  446. "windows_x86_64_gnullvm",
  447. "windows_x86_64_msvc",
  448. ]
  449. [[package]]
  450. name = "windows_aarch64_gnullvm"
  451. version = "0.42.1"
  452. source = "registry+https://github.com/rust-lang/crates.io-index"
  453. checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
  454. [[package]]
  455. name = "windows_aarch64_msvc"
  456. version = "0.42.1"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
  459. [[package]]
  460. name = "windows_i686_gnu"
  461. version = "0.42.1"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
  464. [[package]]
  465. name = "windows_i686_msvc"
  466. version = "0.42.1"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
  469. [[package]]
  470. name = "windows_x86_64_gnu"
  471. version = "0.42.1"
  472. source = "registry+https://github.com/rust-lang/crates.io-index"
  473. checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
  474. [[package]]
  475. name = "windows_x86_64_gnullvm"
  476. version = "0.42.1"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
  479. [[package]]
  480. name = "windows_x86_64_msvc"
  481. version = "0.42.1"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"