Cargo.lock 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702
  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.80"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1"
  17. [[package]]
  18. name = "autocfg"
  19. version = "1.1.0"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  22. [[package]]
  23. name = "average"
  24. version = "0.14.1"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "6d804c74bb2d66e9b7047658d21af0f1c937d7d2466410cbf1aed3b0c04048d4"
  27. dependencies = [
  28. "easy-cast",
  29. "float-ord",
  30. "num-traits",
  31. ]
  32. [[package]]
  33. name = "bio-types"
  34. version = "1.0.1"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "9d45749b87f21808051025e9bf714d14ff4627f9d8ca967eade6946ea769aa4a"
  37. dependencies = [
  38. "derive-new",
  39. "lazy_static",
  40. "regex",
  41. "strum_macros",
  42. "thiserror",
  43. ]
  44. [[package]]
  45. name = "byteorder"
  46. version = "1.5.0"
  47. source = "registry+https://github.com/rust-lang/crates.io-index"
  48. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  49. [[package]]
  50. name = "bzip2-sys"
  51. version = "0.1.11+1.0.8"
  52. source = "registry+https://github.com/rust-lang/crates.io-index"
  53. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  54. dependencies = [
  55. "cc",
  56. "libc",
  57. "pkg-config",
  58. ]
  59. [[package]]
  60. name = "cc"
  61. version = "1.0.89"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "a0ba8f7aaa012f30d5b2861462f6708eccd49c3c39863fe083a308035f63d723"
  64. dependencies = [
  65. "jobserver",
  66. "libc",
  67. ]
  68. [[package]]
  69. name = "cmake"
  70. version = "0.1.50"
  71. source = "registry+https://github.com/rust-lang/crates.io-index"
  72. checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
  73. dependencies = [
  74. "cc",
  75. ]
  76. [[package]]
  77. name = "crossbeam-deque"
  78. version = "0.8.5"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  81. dependencies = [
  82. "crossbeam-epoch",
  83. "crossbeam-utils",
  84. ]
  85. [[package]]
  86. name = "crossbeam-epoch"
  87. version = "0.9.18"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  90. dependencies = [
  91. "crossbeam-utils",
  92. ]
  93. [[package]]
  94. name = "crossbeam-utils"
  95. version = "0.8.19"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  98. [[package]]
  99. name = "curl-sys"
  100. version = "0.4.72+curl-8.6.0"
  101. source = "registry+https://github.com/rust-lang/crates.io-index"
  102. checksum = "29cbdc8314c447d11e8fd156dcdd031d9e02a7a976163e396b548c03153bc9ea"
  103. dependencies = [
  104. "cc",
  105. "libc",
  106. "libz-sys",
  107. "openssl-sys",
  108. "pkg-config",
  109. "vcpkg",
  110. "windows-sys",
  111. ]
  112. [[package]]
  113. name = "custom_derive"
  114. version = "0.1.7"
  115. source = "registry+https://github.com/rust-lang/crates.io-index"
  116. checksum = "ef8ae57c4978a2acd8b869ce6b9ca1dfe817bff704c220209fdef2c0b75a01b9"
  117. [[package]]
  118. name = "derive-new"
  119. version = "0.5.9"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535"
  122. dependencies = [
  123. "proc-macro2",
  124. "quote",
  125. "syn 1.0.109",
  126. ]
  127. [[package]]
  128. name = "easy-cast"
  129. version = "0.5.2"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "10936778145f3bea71fd9bf61332cce28c28e96a380714f7ab34838b80733fd6"
  132. dependencies = [
  133. "libm",
  134. ]
  135. [[package]]
  136. name = "either"
  137. version = "1.11.0"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
  140. [[package]]
  141. name = "env_logger"
  142. version = "0.10.2"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
  145. dependencies = [
  146. "humantime",
  147. "is-terminal",
  148. "log",
  149. "regex",
  150. "termcolor",
  151. ]
  152. [[package]]
  153. name = "float-ord"
  154. version = "0.3.2"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "8ce81f49ae8a0482e4c55ea62ebbd7e5a686af544c00b9d090bba3ff9be97b3d"
  157. [[package]]
  158. name = "form_urlencoded"
  159. version = "1.2.1"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  162. dependencies = [
  163. "percent-encoding",
  164. ]
  165. [[package]]
  166. name = "fs-utils"
  167. version = "1.1.4"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "6fc7a9dc005c944c98a935e7fd626faf5bf7e5a609f94bc13e42fc4a02e52593"
  170. dependencies = [
  171. "quick-error",
  172. ]
  173. [[package]]
  174. name = "glob"
  175. version = "0.3.1"
  176. source = "registry+https://github.com/rust-lang/crates.io-index"
  177. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  178. [[package]]
  179. name = "heck"
  180. version = "0.4.1"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  183. [[package]]
  184. name = "hermit-abi"
  185. version = "0.3.9"
  186. source = "registry+https://github.com/rust-lang/crates.io-index"
  187. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  188. [[package]]
  189. name = "hts-sys"
  190. version = "2.1.1"
  191. source = "registry+https://github.com/rust-lang/crates.io-index"
  192. checksum = "deebfb779c734d542e7f14c298597914b9b5425e4089aef482eacb5cab941915"
  193. dependencies = [
  194. "bzip2-sys",
  195. "cc",
  196. "curl-sys",
  197. "fs-utils",
  198. "glob",
  199. "libz-sys",
  200. "lzma-sys",
  201. "openssl-sys",
  202. ]
  203. [[package]]
  204. name = "humantime"
  205. version = "2.1.0"
  206. source = "registry+https://github.com/rust-lang/crates.io-index"
  207. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  208. [[package]]
  209. name = "idna"
  210. version = "0.5.0"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  213. dependencies = [
  214. "unicode-bidi",
  215. "unicode-normalization",
  216. ]
  217. [[package]]
  218. name = "ieee754"
  219. version = "0.2.6"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
  222. [[package]]
  223. name = "is-terminal"
  224. version = "0.4.12"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
  227. dependencies = [
  228. "hermit-abi",
  229. "libc",
  230. "windows-sys",
  231. ]
  232. [[package]]
  233. name = "jobserver"
  234. version = "0.1.28"
  235. source = "registry+https://github.com/rust-lang/crates.io-index"
  236. checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
  237. dependencies = [
  238. "libc",
  239. ]
  240. [[package]]
  241. name = "lazy_static"
  242. version = "1.4.0"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  245. [[package]]
  246. name = "libc"
  247. version = "0.2.153"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  250. [[package]]
  251. name = "libm"
  252. version = "0.2.8"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  255. [[package]]
  256. name = "libz-sys"
  257. version = "1.1.15"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "037731f5d3aaa87a5675e895b63ddff1a87624bc29f77004ea829809654e48f6"
  260. dependencies = [
  261. "cc",
  262. "cmake",
  263. "libc",
  264. "pkg-config",
  265. "vcpkg",
  266. ]
  267. [[package]]
  268. name = "linear-map"
  269. version = "1.2.0"
  270. source = "registry+https://github.com/rust-lang/crates.io-index"
  271. checksum = "bfae20f6b19ad527b550c223fddc3077a547fc70cda94b9b566575423fd303ee"
  272. [[package]]
  273. name = "log"
  274. version = "0.4.21"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  277. [[package]]
  278. name = "lzma-sys"
  279. version = "0.1.20"
  280. source = "registry+https://github.com/rust-lang/crates.io-index"
  281. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  282. dependencies = [
  283. "cc",
  284. "libc",
  285. "pkg-config",
  286. ]
  287. [[package]]
  288. name = "memchr"
  289. version = "2.7.1"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  292. [[package]]
  293. name = "newtype_derive"
  294. version = "0.1.6"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "ac8cd24d9f185bb7223958d8c1ff7a961b74b1953fd05dba7cc568a63b3861ec"
  297. dependencies = [
  298. "rustc_version",
  299. ]
  300. [[package]]
  301. name = "num-traits"
  302. version = "0.2.18"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
  305. dependencies = [
  306. "autocfg",
  307. "libm",
  308. ]
  309. [[package]]
  310. name = "openssl-src"
  311. version = "300.2.3+3.2.1"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843"
  314. dependencies = [
  315. "cc",
  316. ]
  317. [[package]]
  318. name = "openssl-sys"
  319. version = "0.9.101"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
  322. dependencies = [
  323. "cc",
  324. "libc",
  325. "openssl-src",
  326. "pkg-config",
  327. "vcpkg",
  328. ]
  329. [[package]]
  330. name = "percent-encoding"
  331. version = "2.3.1"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  334. [[package]]
  335. name = "pileup"
  336. version = "0.1.0"
  337. dependencies = [
  338. "anyhow",
  339. "average",
  340. "env_logger",
  341. "log",
  342. "rayon",
  343. "rust-htslib",
  344. ]
  345. [[package]]
  346. name = "pkg-config"
  347. version = "0.3.30"
  348. source = "registry+https://github.com/rust-lang/crates.io-index"
  349. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  350. [[package]]
  351. name = "proc-macro2"
  352. version = "1.0.78"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
  355. dependencies = [
  356. "unicode-ident",
  357. ]
  358. [[package]]
  359. name = "quick-error"
  360. version = "1.2.3"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  363. [[package]]
  364. name = "quote"
  365. version = "1.0.35"
  366. source = "registry+https://github.com/rust-lang/crates.io-index"
  367. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  368. dependencies = [
  369. "proc-macro2",
  370. ]
  371. [[package]]
  372. name = "rayon"
  373. version = "1.10.0"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  376. dependencies = [
  377. "either",
  378. "rayon-core",
  379. ]
  380. [[package]]
  381. name = "rayon-core"
  382. version = "1.12.1"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  385. dependencies = [
  386. "crossbeam-deque",
  387. "crossbeam-utils",
  388. ]
  389. [[package]]
  390. name = "regex"
  391. version = "1.10.3"
  392. source = "registry+https://github.com/rust-lang/crates.io-index"
  393. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  394. dependencies = [
  395. "aho-corasick",
  396. "memchr",
  397. "regex-automata",
  398. "regex-syntax",
  399. ]
  400. [[package]]
  401. name = "regex-automata"
  402. version = "0.4.5"
  403. source = "registry+https://github.com/rust-lang/crates.io-index"
  404. checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
  405. dependencies = [
  406. "aho-corasick",
  407. "memchr",
  408. "regex-syntax",
  409. ]
  410. [[package]]
  411. name = "regex-syntax"
  412. version = "0.8.2"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  415. [[package]]
  416. name = "rust-htslib"
  417. version = "0.46.0"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "aec6f9ca4601beb4ae75ff8c99144dd15de5a873f6adf058da299962c760968e"
  420. dependencies = [
  421. "bio-types",
  422. "byteorder",
  423. "custom_derive",
  424. "derive-new",
  425. "hts-sys",
  426. "ieee754",
  427. "lazy_static",
  428. "libc",
  429. "libz-sys",
  430. "linear-map",
  431. "newtype_derive",
  432. "regex",
  433. "thiserror",
  434. "url",
  435. ]
  436. [[package]]
  437. name = "rustc_version"
  438. version = "0.1.7"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084"
  441. dependencies = [
  442. "semver",
  443. ]
  444. [[package]]
  445. name = "rustversion"
  446. version = "1.0.14"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
  449. [[package]]
  450. name = "semver"
  451. version = "0.1.20"
  452. source = "registry+https://github.com/rust-lang/crates.io-index"
  453. checksum = "d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac"
  454. [[package]]
  455. name = "strum_macros"
  456. version = "0.25.3"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  459. dependencies = [
  460. "heck",
  461. "proc-macro2",
  462. "quote",
  463. "rustversion",
  464. "syn 2.0.52",
  465. ]
  466. [[package]]
  467. name = "syn"
  468. version = "1.0.109"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  471. dependencies = [
  472. "proc-macro2",
  473. "quote",
  474. "unicode-ident",
  475. ]
  476. [[package]]
  477. name = "syn"
  478. version = "2.0.52"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
  481. dependencies = [
  482. "proc-macro2",
  483. "quote",
  484. "unicode-ident",
  485. ]
  486. [[package]]
  487. name = "termcolor"
  488. version = "1.4.1"
  489. source = "registry+https://github.com/rust-lang/crates.io-index"
  490. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  491. dependencies = [
  492. "winapi-util",
  493. ]
  494. [[package]]
  495. name = "thiserror"
  496. version = "1.0.57"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
  499. dependencies = [
  500. "thiserror-impl",
  501. ]
  502. [[package]]
  503. name = "thiserror-impl"
  504. version = "1.0.57"
  505. source = "registry+https://github.com/rust-lang/crates.io-index"
  506. checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
  507. dependencies = [
  508. "proc-macro2",
  509. "quote",
  510. "syn 2.0.52",
  511. ]
  512. [[package]]
  513. name = "tinyvec"
  514. version = "1.6.0"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  517. dependencies = [
  518. "tinyvec_macros",
  519. ]
  520. [[package]]
  521. name = "tinyvec_macros"
  522. version = "0.1.1"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  525. [[package]]
  526. name = "unicode-bidi"
  527. version = "0.3.15"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  530. [[package]]
  531. name = "unicode-ident"
  532. version = "1.0.12"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  535. [[package]]
  536. name = "unicode-normalization"
  537. version = "0.1.23"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  540. dependencies = [
  541. "tinyvec",
  542. ]
  543. [[package]]
  544. name = "url"
  545. version = "2.5.0"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  548. dependencies = [
  549. "form_urlencoded",
  550. "idna",
  551. "percent-encoding",
  552. ]
  553. [[package]]
  554. name = "vcpkg"
  555. version = "0.2.15"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  558. [[package]]
  559. name = "winapi-util"
  560. version = "0.1.8"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
  563. dependencies = [
  564. "windows-sys",
  565. ]
  566. [[package]]
  567. name = "windows-sys"
  568. version = "0.52.0"
  569. source = "registry+https://github.com/rust-lang/crates.io-index"
  570. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  571. dependencies = [
  572. "windows-targets",
  573. ]
  574. [[package]]
  575. name = "windows-targets"
  576. version = "0.52.4"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
  579. dependencies = [
  580. "windows_aarch64_gnullvm",
  581. "windows_aarch64_msvc",
  582. "windows_i686_gnu",
  583. "windows_i686_msvc",
  584. "windows_x86_64_gnu",
  585. "windows_x86_64_gnullvm",
  586. "windows_x86_64_msvc",
  587. ]
  588. [[package]]
  589. name = "windows_aarch64_gnullvm"
  590. version = "0.52.4"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
  593. [[package]]
  594. name = "windows_aarch64_msvc"
  595. version = "0.52.4"
  596. source = "registry+https://github.com/rust-lang/crates.io-index"
  597. checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
  598. [[package]]
  599. name = "windows_i686_gnu"
  600. version = "0.52.4"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
  603. [[package]]
  604. name = "windows_i686_msvc"
  605. version = "0.52.4"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
  608. [[package]]
  609. name = "windows_x86_64_gnu"
  610. version = "0.52.4"
  611. source = "registry+https://github.com/rust-lang/crates.io-index"
  612. checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
  613. [[package]]
  614. name = "windows_x86_64_gnullvm"
  615. version = "0.52.4"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
  618. [[package]]
  619. name = "windows_x86_64_msvc"
  620. version = "0.52.4"
  621. source = "registry+https://github.com/rust-lang/crates.io-index"
  622. checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"