Cargo.lock 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  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.3"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  9. dependencies = [
  10. "memchr",
  11. ]
  12. [[package]]
  13. name = "anstream"
  14. version = "0.6.14"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
  17. dependencies = [
  18. "anstyle",
  19. "anstyle-parse",
  20. "anstyle-query",
  21. "anstyle-wincon",
  22. "colorchoice",
  23. "is_terminal_polyfill",
  24. "utf8parse",
  25. ]
  26. [[package]]
  27. name = "anstyle"
  28. version = "1.0.7"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
  31. [[package]]
  32. name = "anstyle-parse"
  33. version = "0.2.4"
  34. source = "registry+https://github.com/rust-lang/crates.io-index"
  35. checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
  36. dependencies = [
  37. "utf8parse",
  38. ]
  39. [[package]]
  40. name = "anstyle-query"
  41. version = "1.1.0"
  42. source = "registry+https://github.com/rust-lang/crates.io-index"
  43. checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"
  44. dependencies = [
  45. "windows-sys",
  46. ]
  47. [[package]]
  48. name = "anstyle-wincon"
  49. version = "3.0.3"
  50. source = "registry+https://github.com/rust-lang/crates.io-index"
  51. checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
  52. dependencies = [
  53. "anstyle",
  54. "windows-sys",
  55. ]
  56. [[package]]
  57. name = "anyhow"
  58. version = "1.0.86"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
  61. [[package]]
  62. name = "autocfg"
  63. version = "1.3.0"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
  66. [[package]]
  67. name = "average"
  68. version = "0.15.1"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "3a237a6822e1c3c98e700b6db5b293eb341b7524dcb8d227941245702b7431dc"
  71. dependencies = [
  72. "easy-cast",
  73. "float-ord",
  74. "num-traits",
  75. ]
  76. [[package]]
  77. name = "bindgen"
  78. version = "0.69.4"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
  81. dependencies = [
  82. "bitflags",
  83. "cexpr",
  84. "clang-sys",
  85. "itertools",
  86. "lazy_static",
  87. "lazycell",
  88. "proc-macro2",
  89. "quote",
  90. "regex",
  91. "rustc-hash",
  92. "shlex",
  93. "syn 2.0.64",
  94. ]
  95. [[package]]
  96. name = "bio-types"
  97. version = "1.0.1"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "9d45749b87f21808051025e9bf714d14ff4627f9d8ca967eade6946ea769aa4a"
  100. dependencies = [
  101. "derive-new",
  102. "lazy_static",
  103. "regex",
  104. "strum_macros",
  105. "thiserror",
  106. ]
  107. [[package]]
  108. name = "bitflags"
  109. version = "2.6.0"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  112. [[package]]
  113. name = "byteorder"
  114. version = "1.5.0"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  117. [[package]]
  118. name = "bzip2-sys"
  119. version = "0.1.11+1.0.8"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  122. dependencies = [
  123. "cc",
  124. "libc",
  125. "pkg-config",
  126. ]
  127. [[package]]
  128. name = "cc"
  129. version = "1.0.97"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
  132. dependencies = [
  133. "jobserver",
  134. "libc",
  135. "once_cell",
  136. ]
  137. [[package]]
  138. name = "cexpr"
  139. version = "0.6.0"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  142. dependencies = [
  143. "nom",
  144. ]
  145. [[package]]
  146. name = "cfg-if"
  147. version = "1.0.0"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  150. [[package]]
  151. name = "clang-sys"
  152. version = "1.8.1"
  153. source = "registry+https://github.com/rust-lang/crates.io-index"
  154. checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
  155. dependencies = [
  156. "glob",
  157. "libc",
  158. "libloading",
  159. ]
  160. [[package]]
  161. name = "cmake"
  162. version = "0.1.50"
  163. source = "registry+https://github.com/rust-lang/crates.io-index"
  164. checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
  165. dependencies = [
  166. "cc",
  167. ]
  168. [[package]]
  169. name = "colorchoice"
  170. version = "1.0.1"
  171. source = "registry+https://github.com/rust-lang/crates.io-index"
  172. checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
  173. [[package]]
  174. name = "crossbeam-deque"
  175. version = "0.8.5"
  176. source = "registry+https://github.com/rust-lang/crates.io-index"
  177. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  178. dependencies = [
  179. "crossbeam-epoch",
  180. "crossbeam-utils",
  181. ]
  182. [[package]]
  183. name = "crossbeam-epoch"
  184. version = "0.9.18"
  185. source = "registry+https://github.com/rust-lang/crates.io-index"
  186. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  187. dependencies = [
  188. "crossbeam-utils",
  189. ]
  190. [[package]]
  191. name = "crossbeam-utils"
  192. version = "0.8.19"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  195. [[package]]
  196. name = "curl-sys"
  197. version = "0.4.72+curl-8.6.0"
  198. source = "registry+https://github.com/rust-lang/crates.io-index"
  199. checksum = "29cbdc8314c447d11e8fd156dcdd031d9e02a7a976163e396b548c03153bc9ea"
  200. dependencies = [
  201. "cc",
  202. "libc",
  203. "libz-sys",
  204. "openssl-sys",
  205. "pkg-config",
  206. "vcpkg",
  207. "windows-sys",
  208. ]
  209. [[package]]
  210. name = "custom_derive"
  211. version = "0.1.7"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9"
  214. [[package]]
  215. name = "derive-new"
  216. version = "0.5.9"
  217. source = "registry+https://github.com/rust-lang/crates.io-index"
  218. checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535"
  219. dependencies = [
  220. "proc-macro2",
  221. "quote",
  222. "syn 1.0.109",
  223. ]
  224. [[package]]
  225. name = "easy-cast"
  226. version = "0.5.2"
  227. source = "registry+https://github.com/rust-lang/crates.io-index"
  228. checksum = "10936778145f3bea71fd9bf61332cce28c28e96a380714f7ab34838b80733fd6"
  229. dependencies = [
  230. "libm",
  231. ]
  232. [[package]]
  233. name = "either"
  234. version = "1.12.0"
  235. source = "registry+https://github.com/rust-lang/crates.io-index"
  236. checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
  237. [[package]]
  238. name = "env_filter"
  239. version = "0.1.0"
  240. source = "registry+https://github.com/rust-lang/crates.io-index"
  241. checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
  242. dependencies = [
  243. "log",
  244. "regex",
  245. ]
  246. [[package]]
  247. name = "env_logger"
  248. version = "0.11.3"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
  251. dependencies = [
  252. "anstream",
  253. "anstyle",
  254. "env_filter",
  255. "humantime",
  256. "log",
  257. ]
  258. [[package]]
  259. name = "float-ord"
  260. version = "0.3.2"
  261. source = "registry+https://github.com/rust-lang/crates.io-index"
  262. checksum = "8ce81f49ae8a0482e4c55ea62ebbd7e5a686af544c00b9d090bba3ff9be97b3d"
  263. [[package]]
  264. name = "form_urlencoded"
  265. version = "1.2.1"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  268. dependencies = [
  269. "percent-encoding",
  270. ]
  271. [[package]]
  272. name = "fs-utils"
  273. version = "1.1.4"
  274. source = "registry+https://github.com/rust-lang/crates.io-index"
  275. checksum = "6fc7a9dc005c944c98a935e7fd626faf5bf7e5a609f94bc13e42fc4a02e52593"
  276. dependencies = [
  277. "quick-error",
  278. ]
  279. [[package]]
  280. name = "glob"
  281. version = "0.3.1"
  282. source = "registry+https://github.com/rust-lang/crates.io-index"
  283. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  284. [[package]]
  285. name = "heck"
  286. version = "0.4.1"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  289. [[package]]
  290. name = "hts-sys"
  291. version = "2.1.4"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "e9f348d14cb4e50444e39fcd6b00302fe2ed2bc88094142f6278391d349a386d"
  294. dependencies = [
  295. "bindgen",
  296. "bzip2-sys",
  297. "cc",
  298. "curl-sys",
  299. "fs-utils",
  300. "glob",
  301. "libz-sys",
  302. "lzma-sys",
  303. "openssl-sys",
  304. ]
  305. [[package]]
  306. name = "humantime"
  307. version = "2.1.0"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  310. [[package]]
  311. name = "idna"
  312. version = "0.5.0"
  313. source = "registry+https://github.com/rust-lang/crates.io-index"
  314. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  315. dependencies = [
  316. "unicode-bidi",
  317. "unicode-normalization",
  318. ]
  319. [[package]]
  320. name = "ieee754"
  321. version = "0.2.6"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
  324. [[package]]
  325. name = "is_terminal_polyfill"
  326. version = "1.70.0"
  327. source = "registry+https://github.com/rust-lang/crates.io-index"
  328. checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
  329. [[package]]
  330. name = "itertools"
  331. version = "0.12.1"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  334. dependencies = [
  335. "either",
  336. ]
  337. [[package]]
  338. name = "jobserver"
  339. version = "0.1.31"
  340. source = "registry+https://github.com/rust-lang/crates.io-index"
  341. checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
  342. dependencies = [
  343. "libc",
  344. ]
  345. [[package]]
  346. name = "lazy_static"
  347. version = "1.4.0"
  348. source = "registry+https://github.com/rust-lang/crates.io-index"
  349. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  350. [[package]]
  351. name = "lazycell"
  352. version = "1.3.0"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  355. [[package]]
  356. name = "libc"
  357. version = "0.2.153"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  360. [[package]]
  361. name = "libloading"
  362. version = "0.8.4"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
  365. dependencies = [
  366. "cfg-if",
  367. "windows-targets",
  368. ]
  369. [[package]]
  370. name = "libm"
  371. version = "0.2.8"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  374. [[package]]
  375. name = "libz-sys"
  376. version = "1.1.16"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9"
  379. dependencies = [
  380. "cc",
  381. "cmake",
  382. "libc",
  383. "pkg-config",
  384. "vcpkg",
  385. ]
  386. [[package]]
  387. name = "linear-map"
  388. version = "1.2.0"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "bfae20f6b19ad527b550c223fddc3077a547fc70cda94b9b566575423fd303ee"
  391. [[package]]
  392. name = "log"
  393. version = "0.4.22"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  396. [[package]]
  397. name = "lzma-sys"
  398. version = "0.1.20"
  399. source = "registry+https://github.com/rust-lang/crates.io-index"
  400. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  401. dependencies = [
  402. "cc",
  403. "libc",
  404. "pkg-config",
  405. ]
  406. [[package]]
  407. name = "memchr"
  408. version = "2.7.2"
  409. source = "registry+https://github.com/rust-lang/crates.io-index"
  410. checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
  411. [[package]]
  412. name = "minimal-lexical"
  413. version = "0.2.1"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  416. [[package]]
  417. name = "newtype_derive"
  418. version = "0.1.6"
  419. source = "registry+https://github.com/rust-lang/crates.io-index"
  420. checksum = "ac8cd24d9f185bb7223958d8c1ff7a961b74b1953fd05dba7cc568a63b3861ec"
  421. dependencies = [
  422. "rustc_version",
  423. ]
  424. [[package]]
  425. name = "nom"
  426. version = "7.1.3"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  429. dependencies = [
  430. "memchr",
  431. "minimal-lexical",
  432. ]
  433. [[package]]
  434. name = "num-traits"
  435. version = "0.2.19"
  436. source = "registry+https://github.com/rust-lang/crates.io-index"
  437. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  438. dependencies = [
  439. "autocfg",
  440. "libm",
  441. ]
  442. [[package]]
  443. name = "once_cell"
  444. version = "1.19.0"
  445. source = "registry+https://github.com/rust-lang/crates.io-index"
  446. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  447. [[package]]
  448. name = "openssl-src"
  449. version = "300.2.3+3.2.1"
  450. source = "registry+https://github.com/rust-lang/crates.io-index"
  451. checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843"
  452. dependencies = [
  453. "cc",
  454. ]
  455. [[package]]
  456. name = "openssl-sys"
  457. version = "0.9.102"
  458. source = "registry+https://github.com/rust-lang/crates.io-index"
  459. checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
  460. dependencies = [
  461. "cc",
  462. "libc",
  463. "openssl-src",
  464. "pkg-config",
  465. "vcpkg",
  466. ]
  467. [[package]]
  468. name = "pandora_lib_pileup"
  469. version = "0.1.0"
  470. dependencies = [
  471. "anyhow",
  472. "average",
  473. "env_logger",
  474. "log",
  475. "rayon",
  476. "rust-htslib",
  477. ]
  478. [[package]]
  479. name = "percent-encoding"
  480. version = "2.3.1"
  481. source = "registry+https://github.com/rust-lang/crates.io-index"
  482. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  483. [[package]]
  484. name = "pkg-config"
  485. version = "0.3.30"
  486. source = "registry+https://github.com/rust-lang/crates.io-index"
  487. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  488. [[package]]
  489. name = "proc-macro2"
  490. version = "1.0.82"
  491. source = "registry+https://github.com/rust-lang/crates.io-index"
  492. checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
  493. dependencies = [
  494. "unicode-ident",
  495. ]
  496. [[package]]
  497. name = "quick-error"
  498. version = "1.2.3"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  501. [[package]]
  502. name = "quote"
  503. version = "1.0.36"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  506. dependencies = [
  507. "proc-macro2",
  508. ]
  509. [[package]]
  510. name = "rayon"
  511. version = "1.10.0"
  512. source = "registry+https://github.com/rust-lang/crates.io-index"
  513. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  514. dependencies = [
  515. "either",
  516. "rayon-core",
  517. ]
  518. [[package]]
  519. name = "rayon-core"
  520. version = "1.12.1"
  521. source = "registry+https://github.com/rust-lang/crates.io-index"
  522. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  523. dependencies = [
  524. "crossbeam-deque",
  525. "crossbeam-utils",
  526. ]
  527. [[package]]
  528. name = "regex"
  529. version = "1.10.4"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
  532. dependencies = [
  533. "aho-corasick",
  534. "memchr",
  535. "regex-automata",
  536. "regex-syntax",
  537. ]
  538. [[package]]
  539. name = "regex-automata"
  540. version = "0.4.6"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  543. dependencies = [
  544. "aho-corasick",
  545. "memchr",
  546. "regex-syntax",
  547. ]
  548. [[package]]
  549. name = "regex-syntax"
  550. version = "0.8.3"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
  553. [[package]]
  554. name = "rust-htslib"
  555. version = "0.47.0"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "41f1796800e73ebb282c6fc5c03f1fe160e867e01114a58a7e115ee3c1d02482"
  558. dependencies = [
  559. "bio-types",
  560. "byteorder",
  561. "custom_derive",
  562. "derive-new",
  563. "hts-sys",
  564. "ieee754",
  565. "lazy_static",
  566. "libc",
  567. "libz-sys",
  568. "linear-map",
  569. "newtype_derive",
  570. "regex",
  571. "thiserror",
  572. "url",
  573. ]
  574. [[package]]
  575. name = "rustc-hash"
  576. version = "1.1.0"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  579. [[package]]
  580. name = "rustc_version"
  581. version = "0.1.7"
  582. source = "registry+https://github.com/rust-lang/crates.io-index"
  583. checksum = "c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084"
  584. dependencies = [
  585. "semver",
  586. ]
  587. [[package]]
  588. name = "rustversion"
  589. version = "1.0.17"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
  592. [[package]]
  593. name = "semver"
  594. version = "0.1.20"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac"
  597. [[package]]
  598. name = "shlex"
  599. version = "1.3.0"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  602. [[package]]
  603. name = "strum_macros"
  604. version = "0.25.3"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  607. dependencies = [
  608. "heck",
  609. "proc-macro2",
  610. "quote",
  611. "rustversion",
  612. "syn 2.0.64",
  613. ]
  614. [[package]]
  615. name = "syn"
  616. version = "1.0.109"
  617. source = "registry+https://github.com/rust-lang/crates.io-index"
  618. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  619. dependencies = [
  620. "proc-macro2",
  621. "quote",
  622. "unicode-ident",
  623. ]
  624. [[package]]
  625. name = "syn"
  626. version = "2.0.64"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f"
  629. dependencies = [
  630. "proc-macro2",
  631. "quote",
  632. "unicode-ident",
  633. ]
  634. [[package]]
  635. name = "thiserror"
  636. version = "1.0.60"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
  639. dependencies = [
  640. "thiserror-impl",
  641. ]
  642. [[package]]
  643. name = "thiserror-impl"
  644. version = "1.0.60"
  645. source = "registry+https://github.com/rust-lang/crates.io-index"
  646. checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
  647. dependencies = [
  648. "proc-macro2",
  649. "quote",
  650. "syn 2.0.64",
  651. ]
  652. [[package]]
  653. name = "tinyvec"
  654. version = "1.6.0"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  657. dependencies = [
  658. "tinyvec_macros",
  659. ]
  660. [[package]]
  661. name = "tinyvec_macros"
  662. version = "0.1.1"
  663. source = "registry+https://github.com/rust-lang/crates.io-index"
  664. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  665. [[package]]
  666. name = "unicode-bidi"
  667. version = "0.3.15"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  670. [[package]]
  671. name = "unicode-ident"
  672. version = "1.0.12"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  675. [[package]]
  676. name = "unicode-normalization"
  677. version = "0.1.23"
  678. source = "registry+https://github.com/rust-lang/crates.io-index"
  679. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  680. dependencies = [
  681. "tinyvec",
  682. ]
  683. [[package]]
  684. name = "url"
  685. version = "2.5.0"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  688. dependencies = [
  689. "form_urlencoded",
  690. "idna",
  691. "percent-encoding",
  692. ]
  693. [[package]]
  694. name = "utf8parse"
  695. version = "0.2.2"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  698. [[package]]
  699. name = "vcpkg"
  700. version = "0.2.15"
  701. source = "registry+https://github.com/rust-lang/crates.io-index"
  702. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  703. [[package]]
  704. name = "windows-sys"
  705. version = "0.52.0"
  706. source = "registry+https://github.com/rust-lang/crates.io-index"
  707. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  708. dependencies = [
  709. "windows-targets",
  710. ]
  711. [[package]]
  712. name = "windows-targets"
  713. version = "0.52.5"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
  716. dependencies = [
  717. "windows_aarch64_gnullvm",
  718. "windows_aarch64_msvc",
  719. "windows_i686_gnu",
  720. "windows_i686_gnullvm",
  721. "windows_i686_msvc",
  722. "windows_x86_64_gnu",
  723. "windows_x86_64_gnullvm",
  724. "windows_x86_64_msvc",
  725. ]
  726. [[package]]
  727. name = "windows_aarch64_gnullvm"
  728. version = "0.52.5"
  729. source = "registry+https://github.com/rust-lang/crates.io-index"
  730. checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
  731. [[package]]
  732. name = "windows_aarch64_msvc"
  733. version = "0.52.5"
  734. source = "registry+https://github.com/rust-lang/crates.io-index"
  735. checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
  736. [[package]]
  737. name = "windows_i686_gnu"
  738. version = "0.52.5"
  739. source = "registry+https://github.com/rust-lang/crates.io-index"
  740. checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
  741. [[package]]
  742. name = "windows_i686_gnullvm"
  743. version = "0.52.5"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
  746. [[package]]
  747. name = "windows_i686_msvc"
  748. version = "0.52.5"
  749. source = "registry+https://github.com/rust-lang/crates.io-index"
  750. checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
  751. [[package]]
  752. name = "windows_x86_64_gnu"
  753. version = "0.52.5"
  754. source = "registry+https://github.com/rust-lang/crates.io-index"
  755. checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
  756. [[package]]
  757. name = "windows_x86_64_gnullvm"
  758. version = "0.52.5"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
  761. [[package]]
  762. name = "windows_x86_64_msvc"
  763. version = "0.52.5"
  764. source = "registry+https://github.com/rust-lang/crates.io-index"
  765. checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"