1
0

Cargo.lock 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  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 = "1.1.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
  9. dependencies = [
  10. "memchr",
  11. ]
  12. [[package]]
  13. name = "anyhow"
  14. version = "1.0.79"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
  17. [[package]]
  18. name = "argh"
  19. version = "0.1.12"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "7af5ba06967ff7214ce4c7419c7d185be7ecd6cc4965a8f6e1d8ce0398aad219"
  22. dependencies = [
  23. "argh_derive",
  24. "argh_shared",
  25. ]
  26. [[package]]
  27. name = "argh_derive"
  28. version = "0.1.12"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "56df0aeedf6b7a2fc67d06db35b09684c3e8da0c95f8f27685cb17e08413d87a"
  31. dependencies = [
  32. "argh_shared",
  33. "proc-macro2",
  34. "quote",
  35. "syn",
  36. ]
  37. [[package]]
  38. name = "argh_shared"
  39. version = "0.1.12"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531"
  42. dependencies = [
  43. "serde",
  44. ]
  45. [[package]]
  46. name = "autocfg"
  47. version = "1.1.0"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  50. [[package]]
  51. name = "bitflags"
  52. version = "2.4.2"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
  55. [[package]]
  56. name = "cfg-if"
  57. version = "1.0.0"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  60. [[package]]
  61. name = "env_logger"
  62. version = "0.10.2"
  63. source = "registry+https://github.com/rust-lang/crates.io-index"
  64. checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
  65. dependencies = [
  66. "humantime",
  67. "is-terminal",
  68. "log",
  69. "regex",
  70. "termcolor",
  71. ]
  72. [[package]]
  73. name = "errno"
  74. version = "0.3.8"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  77. dependencies = [
  78. "libc",
  79. "windows-sys",
  80. ]
  81. [[package]]
  82. name = "futures"
  83. version = "0.3.30"
  84. source = "registry+https://github.com/rust-lang/crates.io-index"
  85. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  86. dependencies = [
  87. "futures-channel",
  88. "futures-core",
  89. "futures-executor",
  90. "futures-io",
  91. "futures-sink",
  92. "futures-task",
  93. "futures-util",
  94. ]
  95. [[package]]
  96. name = "futures-channel"
  97. version = "0.3.30"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  100. dependencies = [
  101. "futures-core",
  102. "futures-sink",
  103. ]
  104. [[package]]
  105. name = "futures-core"
  106. version = "0.3.30"
  107. source = "registry+https://github.com/rust-lang/crates.io-index"
  108. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  109. [[package]]
  110. name = "futures-executor"
  111. version = "0.3.30"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  114. dependencies = [
  115. "futures-core",
  116. "futures-task",
  117. "futures-util",
  118. ]
  119. [[package]]
  120. name = "futures-io"
  121. version = "0.3.30"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  124. [[package]]
  125. name = "futures-macro"
  126. version = "0.3.30"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  129. dependencies = [
  130. "proc-macro2",
  131. "quote",
  132. "syn",
  133. ]
  134. [[package]]
  135. name = "futures-sink"
  136. version = "0.3.30"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  139. [[package]]
  140. name = "futures-task"
  141. version = "0.3.30"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  144. [[package]]
  145. name = "futures-timer"
  146. version = "3.0.2"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
  149. [[package]]
  150. name = "futures-util"
  151. version = "0.3.30"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  154. dependencies = [
  155. "futures-channel",
  156. "futures-core",
  157. "futures-io",
  158. "futures-macro",
  159. "futures-sink",
  160. "futures-task",
  161. "memchr",
  162. "pin-project-lite",
  163. "pin-utils",
  164. "slab",
  165. ]
  166. [[package]]
  167. name = "glob"
  168. version = "0.3.1"
  169. source = "registry+https://github.com/rust-lang/crates.io-index"
  170. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  171. [[package]]
  172. name = "hermit-abi"
  173. version = "0.3.4"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
  176. [[package]]
  177. name = "humantime"
  178. version = "2.1.0"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  181. [[package]]
  182. name = "is-terminal"
  183. version = "0.4.10"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
  186. dependencies = [
  187. "hermit-abi",
  188. "rustix",
  189. "windows-sys",
  190. ]
  191. [[package]]
  192. name = "itoa"
  193. version = "1.0.10"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  196. [[package]]
  197. name = "libc"
  198. version = "0.2.152"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
  201. [[package]]
  202. name = "linux-raw-sys"
  203. version = "0.4.13"
  204. source = "registry+https://github.com/rust-lang/crates.io-index"
  205. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  206. [[package]]
  207. name = "log"
  208. version = "0.4.20"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
  211. [[package]]
  212. name = "memchr"
  213. version = "2.7.1"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  216. [[package]]
  217. name = "once_cell"
  218. version = "1.19.0"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  221. [[package]]
  222. name = "pin-project-lite"
  223. version = "0.2.13"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  226. [[package]]
  227. name = "pin-utils"
  228. version = "0.1.0"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  231. [[package]]
  232. name = "proc-macro2"
  233. version = "1.0.78"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
  236. dependencies = [
  237. "unicode-ident",
  238. ]
  239. [[package]]
  240. name = "quote"
  241. version = "1.0.35"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  244. dependencies = [
  245. "proc-macro2",
  246. ]
  247. [[package]]
  248. name = "regex"
  249. version = "1.10.3"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  252. dependencies = [
  253. "aho-corasick",
  254. "memchr",
  255. "regex-automata",
  256. "regex-syntax",
  257. ]
  258. [[package]]
  259. name = "regex-automata"
  260. version = "0.4.4"
  261. source = "registry+https://github.com/rust-lang/crates.io-index"
  262. checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a"
  263. dependencies = [
  264. "aho-corasick",
  265. "memchr",
  266. "regex-syntax",
  267. ]
  268. [[package]]
  269. name = "regex-syntax"
  270. version = "0.8.2"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  273. [[package]]
  274. name = "relative-path"
  275. version = "1.9.2"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
  278. [[package]]
  279. name = "rstest"
  280. version = "0.18.2"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
  283. dependencies = [
  284. "futures",
  285. "futures-timer",
  286. "rstest_macros",
  287. "rustc_version",
  288. ]
  289. [[package]]
  290. name = "rstest_macros"
  291. version = "0.18.2"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
  294. dependencies = [
  295. "cfg-if",
  296. "glob",
  297. "proc-macro2",
  298. "quote",
  299. "regex",
  300. "relative-path",
  301. "rustc_version",
  302. "syn",
  303. "unicode-ident",
  304. ]
  305. [[package]]
  306. name = "rustc_version"
  307. version = "0.4.0"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  310. dependencies = [
  311. "semver",
  312. ]
  313. [[package]]
  314. name = "rustix"
  315. version = "0.38.30"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
  318. dependencies = [
  319. "bitflags",
  320. "errno",
  321. "libc",
  322. "linux-raw-sys",
  323. "windows-sys",
  324. ]
  325. [[package]]
  326. name = "ryu"
  327. version = "1.0.16"
  328. source = "registry+https://github.com/rust-lang/crates.io-index"
  329. checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
  330. [[package]]
  331. name = "semver"
  332. version = "1.0.21"
  333. source = "registry+https://github.com/rust-lang/crates.io-index"
  334. checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
  335. [[package]]
  336. name = "serde"
  337. version = "1.0.195"
  338. source = "registry+https://github.com/rust-lang/crates.io-index"
  339. checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
  340. dependencies = [
  341. "serde_derive",
  342. ]
  343. [[package]]
  344. name = "serde_derive"
  345. version = "1.0.195"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
  348. dependencies = [
  349. "proc-macro2",
  350. "quote",
  351. "syn",
  352. ]
  353. [[package]]
  354. name = "serde_json"
  355. version = "1.0.111"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
  358. dependencies = [
  359. "itoa",
  360. "ryu",
  361. "serde",
  362. ]
  363. [[package]]
  364. name = "slab"
  365. version = "0.4.9"
  366. source = "registry+https://github.com/rust-lang/crates.io-index"
  367. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  368. dependencies = [
  369. "autocfg",
  370. ]
  371. [[package]]
  372. name = "syn"
  373. version = "2.0.48"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
  376. dependencies = [
  377. "proc-macro2",
  378. "quote",
  379. "unicode-ident",
  380. ]
  381. [[package]]
  382. name = "termcolor"
  383. version = "1.4.1"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  386. dependencies = [
  387. "winapi-util",
  388. ]
  389. [[package]]
  390. name = "unicode-ident"
  391. version = "1.0.12"
  392. source = "registry+https://github.com/rust-lang/crates.io-index"
  393. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  394. [[package]]
  395. name = "vcpu_blocker_analyzer_rust"
  396. version = "0.1.0"
  397. dependencies = [
  398. "anyhow",
  399. "argh",
  400. "env_logger",
  401. "log",
  402. "once_cell",
  403. "regex",
  404. "rstest",
  405. "serde",
  406. "serde_json",
  407. ]
  408. [[package]]
  409. name = "winapi"
  410. version = "0.3.9"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  413. dependencies = [
  414. "winapi-i686-pc-windows-gnu",
  415. "winapi-x86_64-pc-windows-gnu",
  416. ]
  417. [[package]]
  418. name = "winapi-i686-pc-windows-gnu"
  419. version = "0.4.0"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  422. [[package]]
  423. name = "winapi-util"
  424. version = "0.1.6"
  425. source = "registry+https://github.com/rust-lang/crates.io-index"
  426. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  427. dependencies = [
  428. "winapi",
  429. ]
  430. [[package]]
  431. name = "winapi-x86_64-pc-windows-gnu"
  432. version = "0.4.0"
  433. source = "registry+https://github.com/rust-lang/crates.io-index"
  434. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  435. [[package]]
  436. name = "windows-sys"
  437. version = "0.52.0"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  440. dependencies = [
  441. "windows-targets",
  442. ]
  443. [[package]]
  444. name = "windows-targets"
  445. version = "0.52.0"
  446. source = "registry+https://github.com/rust-lang/crates.io-index"
  447. checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
  448. dependencies = [
  449. "windows_aarch64_gnullvm",
  450. "windows_aarch64_msvc",
  451. "windows_i686_gnu",
  452. "windows_i686_msvc",
  453. "windows_x86_64_gnu",
  454. "windows_x86_64_gnullvm",
  455. "windows_x86_64_msvc",
  456. ]
  457. [[package]]
  458. name = "windows_aarch64_gnullvm"
  459. version = "0.52.0"
  460. source = "registry+https://github.com/rust-lang/crates.io-index"
  461. checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
  462. [[package]]
  463. name = "windows_aarch64_msvc"
  464. version = "0.52.0"
  465. source = "registry+https://github.com/rust-lang/crates.io-index"
  466. checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
  467. [[package]]
  468. name = "windows_i686_gnu"
  469. version = "0.52.0"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
  472. [[package]]
  473. name = "windows_i686_msvc"
  474. version = "0.52.0"
  475. source = "registry+https://github.com/rust-lang/crates.io-index"
  476. checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
  477. [[package]]
  478. name = "windows_x86_64_gnu"
  479. version = "0.52.0"
  480. source = "registry+https://github.com/rust-lang/crates.io-index"
  481. checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
  482. [[package]]
  483. name = "windows_x86_64_gnullvm"
  484. version = "0.52.0"
  485. source = "registry+https://github.com/rust-lang/crates.io-index"
  486. checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
  487. [[package]]
  488. name = "windows_x86_64_msvc"
  489. version = "0.52.0"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"