Cargo.lock 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "actix-codec"
  6. version = "0.5.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
  9. dependencies = [
  10. "bitflags",
  11. "bytes",
  12. "futures-core",
  13. "futures-sink",
  14. "log",
  15. "memchr",
  16. "pin-project-lite",
  17. "tokio",
  18. "tokio-util",
  19. ]
  20. [[package]]
  21. name = "actix-files"
  22. version = "0.6.1"
  23. source = "registry+https://github.com/rust-lang/crates.io-index"
  24. checksum = "e04dcf7654254676d434b0285e2298d577ed4826f67f536e7a39bb0f64721164"
  25. dependencies = [
  26. "actix-http",
  27. "actix-service",
  28. "actix-utils",
  29. "actix-web",
  30. "askama_escape",
  31. "bitflags",
  32. "bytes",
  33. "derive_more",
  34. "futures-core",
  35. "http-range",
  36. "log",
  37. "mime",
  38. "mime_guess",
  39. "percent-encoding",
  40. "pin-project-lite",
  41. ]
  42. [[package]]
  43. name = "actix-http"
  44. version = "3.2.1"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. checksum = "6f9ffb6db08c1c3a1f4aef540f1a63193adc73c4fbd40b75a95fc8c5258f6e51"
  47. dependencies = [
  48. "actix-codec",
  49. "actix-rt",
  50. "actix-service",
  51. "actix-utils",
  52. "ahash",
  53. "base64",
  54. "bitflags",
  55. "brotli",
  56. "bytes",
  57. "bytestring",
  58. "derive_more",
  59. "encoding_rs",
  60. "flate2",
  61. "futures-core",
  62. "h2",
  63. "http",
  64. "httparse",
  65. "httpdate",
  66. "itoa",
  67. "language-tags",
  68. "local-channel",
  69. "mime",
  70. "percent-encoding",
  71. "pin-project-lite",
  72. "rand",
  73. "sha1",
  74. "smallvec",
  75. "tracing",
  76. "zstd",
  77. ]
  78. [[package]]
  79. name = "actix-macros"
  80. version = "0.2.3"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
  83. dependencies = [
  84. "quote",
  85. "syn",
  86. ]
  87. [[package]]
  88. name = "actix-router"
  89. version = "0.5.0"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
  92. dependencies = [
  93. "bytestring",
  94. "firestorm",
  95. "http",
  96. "log",
  97. "regex",
  98. "serde",
  99. ]
  100. [[package]]
  101. name = "actix-rt"
  102. version = "2.7.0"
  103. source = "registry+https://github.com/rust-lang/crates.io-index"
  104. checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
  105. dependencies = [
  106. "futures-core",
  107. "tokio",
  108. ]
  109. [[package]]
  110. name = "actix-server"
  111. version = "2.1.1"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
  114. dependencies = [
  115. "actix-rt",
  116. "actix-service",
  117. "actix-utils",
  118. "futures-core",
  119. "futures-util",
  120. "mio",
  121. "num_cpus",
  122. "socket2",
  123. "tokio",
  124. "tracing",
  125. ]
  126. [[package]]
  127. name = "actix-service"
  128. version = "2.0.2"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
  131. dependencies = [
  132. "futures-core",
  133. "paste",
  134. "pin-project-lite",
  135. ]
  136. [[package]]
  137. name = "actix-utils"
  138. version = "3.0.0"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
  141. dependencies = [
  142. "local-waker",
  143. "pin-project-lite",
  144. ]
  145. [[package]]
  146. name = "actix-web"
  147. version = "4.1.0"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "a27e8fe9ba4ae613c21f677c2cfaf0696c3744030c6f485b34634e502d6bb379"
  150. dependencies = [
  151. "actix-codec",
  152. "actix-http",
  153. "actix-macros",
  154. "actix-router",
  155. "actix-rt",
  156. "actix-server",
  157. "actix-service",
  158. "actix-utils",
  159. "actix-web-codegen",
  160. "ahash",
  161. "bytes",
  162. "bytestring",
  163. "cfg-if",
  164. "cookie",
  165. "derive_more",
  166. "encoding_rs",
  167. "futures-core",
  168. "futures-util",
  169. "itoa",
  170. "language-tags",
  171. "log",
  172. "mime",
  173. "once_cell",
  174. "pin-project-lite",
  175. "regex",
  176. "serde",
  177. "serde_json",
  178. "serde_urlencoded",
  179. "smallvec",
  180. "socket2",
  181. "time 0.3.11",
  182. "url",
  183. ]
  184. [[package]]
  185. name = "actix-web-codegen"
  186. version = "4.0.1"
  187. source = "registry+https://github.com/rust-lang/crates.io-index"
  188. checksum = "5f270541caec49c15673b0af0e9a00143421ad4f118d2df7edcb68b627632f56"
  189. dependencies = [
  190. "actix-router",
  191. "proc-macro2",
  192. "quote",
  193. "syn",
  194. ]
  195. [[package]]
  196. name = "adler"
  197. version = "1.0.2"
  198. source = "registry+https://github.com/rust-lang/crates.io-index"
  199. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  200. [[package]]
  201. name = "ahash"
  202. version = "0.7.6"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  205. dependencies = [
  206. "getrandom",
  207. "once_cell",
  208. "version_check",
  209. ]
  210. [[package]]
  211. name = "aho-corasick"
  212. version = "0.7.18"
  213. source = "registry+https://github.com/rust-lang/crates.io-index"
  214. checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
  215. dependencies = [
  216. "memchr",
  217. ]
  218. [[package]]
  219. name = "alloc-no-stdlib"
  220. version = "2.0.3"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
  223. [[package]]
  224. name = "alloc-stdlib"
  225. version = "0.2.1"
  226. source = "registry+https://github.com/rust-lang/crates.io-index"
  227. checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
  228. dependencies = [
  229. "alloc-no-stdlib",
  230. ]
  231. [[package]]
  232. name = "askama_escape"
  233. version = "0.10.3"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
  236. [[package]]
  237. name = "autocfg"
  238. version = "1.1.0"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  241. [[package]]
  242. name = "base64"
  243. version = "0.13.0"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  246. [[package]]
  247. name = "bitflags"
  248. version = "1.3.2"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  251. [[package]]
  252. name = "block-buffer"
  253. version = "0.10.2"
  254. source = "registry+https://github.com/rust-lang/crates.io-index"
  255. checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
  256. dependencies = [
  257. "generic-array",
  258. ]
  259. [[package]]
  260. name = "brotli"
  261. version = "3.3.4"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  264. dependencies = [
  265. "alloc-no-stdlib",
  266. "alloc-stdlib",
  267. "brotli-decompressor",
  268. ]
  269. [[package]]
  270. name = "brotli-decompressor"
  271. version = "2.3.2"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
  274. dependencies = [
  275. "alloc-no-stdlib",
  276. "alloc-stdlib",
  277. ]
  278. [[package]]
  279. name = "bytes"
  280. version = "1.1.0"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
  283. [[package]]
  284. name = "bytestring"
  285. version = "1.1.0"
  286. source = "registry+https://github.com/rust-lang/crates.io-index"
  287. checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
  288. dependencies = [
  289. "bytes",
  290. ]
  291. [[package]]
  292. name = "cc"
  293. version = "1.0.73"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
  296. dependencies = [
  297. "jobserver",
  298. ]
  299. [[package]]
  300. name = "cfg-if"
  301. version = "1.0.0"
  302. source = "registry+https://github.com/rust-lang/crates.io-index"
  303. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  304. [[package]]
  305. name = "chrono"
  306. version = "0.4.19"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
  309. dependencies = [
  310. "libc",
  311. "num-integer",
  312. "num-traits",
  313. "time 0.1.44",
  314. "winapi",
  315. ]
  316. [[package]]
  317. name = "convert_case"
  318. version = "0.4.0"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  321. [[package]]
  322. name = "cookie"
  323. version = "0.16.0"
  324. source = "registry+https://github.com/rust-lang/crates.io-index"
  325. checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
  326. dependencies = [
  327. "percent-encoding",
  328. "time 0.3.11",
  329. "version_check",
  330. ]
  331. [[package]]
  332. name = "cpufeatures"
  333. version = "0.2.2"
  334. source = "registry+https://github.com/rust-lang/crates.io-index"
  335. checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
  336. dependencies = [
  337. "libc",
  338. ]
  339. [[package]]
  340. name = "crc32fast"
  341. version = "1.3.2"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  344. dependencies = [
  345. "cfg-if",
  346. ]
  347. [[package]]
  348. name = "crypto-common"
  349. version = "0.1.4"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "5999502d32b9c48d492abe66392408144895020ec4709e549e840799f3bb74c0"
  352. dependencies = [
  353. "generic-array",
  354. "typenum",
  355. ]
  356. [[package]]
  357. name = "derive_more"
  358. version = "0.99.17"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  361. dependencies = [
  362. "convert_case",
  363. "proc-macro2",
  364. "quote",
  365. "rustc_version",
  366. "syn",
  367. ]
  368. [[package]]
  369. name = "digest"
  370. version = "0.10.3"
  371. source = "registry+https://github.com/rust-lang/crates.io-index"
  372. checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
  373. dependencies = [
  374. "block-buffer",
  375. "crypto-common",
  376. ]
  377. [[package]]
  378. name = "encoding_rs"
  379. version = "0.8.31"
  380. source = "registry+https://github.com/rust-lang/crates.io-index"
  381. checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
  382. dependencies = [
  383. "cfg-if",
  384. ]
  385. [[package]]
  386. name = "fern"
  387. version = "0.6.1"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "3bdd7b0849075e79ee9a1836df22c717d1eba30451796fdc631b04565dd11e2a"
  390. dependencies = [
  391. "log",
  392. ]
  393. [[package]]
  394. name = "firestorm"
  395. version = "0.5.1"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
  398. [[package]]
  399. name = "flate2"
  400. version = "1.0.24"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
  403. dependencies = [
  404. "crc32fast",
  405. "miniz_oxide",
  406. ]
  407. [[package]]
  408. name = "fnv"
  409. version = "1.0.7"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  412. [[package]]
  413. name = "form_urlencoded"
  414. version = "1.0.1"
  415. source = "registry+https://github.com/rust-lang/crates.io-index"
  416. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  417. dependencies = [
  418. "matches",
  419. "percent-encoding",
  420. ]
  421. [[package]]
  422. name = "futures-core"
  423. version = "0.3.21"
  424. source = "registry+https://github.com/rust-lang/crates.io-index"
  425. checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
  426. [[package]]
  427. name = "futures-sink"
  428. version = "0.3.21"
  429. source = "registry+https://github.com/rust-lang/crates.io-index"
  430. checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
  431. [[package]]
  432. name = "futures-task"
  433. version = "0.3.21"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
  436. [[package]]
  437. name = "futures-util"
  438. version = "0.3.21"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
  441. dependencies = [
  442. "futures-core",
  443. "futures-task",
  444. "pin-project-lite",
  445. "pin-utils",
  446. ]
  447. [[package]]
  448. name = "generic-array"
  449. version = "0.14.5"
  450. source = "registry+https://github.com/rust-lang/crates.io-index"
  451. checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
  452. dependencies = [
  453. "typenum",
  454. "version_check",
  455. ]
  456. [[package]]
  457. name = "getopts"
  458. version = "0.2.21"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
  461. dependencies = [
  462. "unicode-width",
  463. ]
  464. [[package]]
  465. name = "getrandom"
  466. version = "0.2.7"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
  469. dependencies = [
  470. "cfg-if",
  471. "libc",
  472. "wasi 0.11.0+wasi-snapshot-preview1",
  473. ]
  474. [[package]]
  475. name = "h2"
  476. version = "0.3.13"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
  479. dependencies = [
  480. "bytes",
  481. "fnv",
  482. "futures-core",
  483. "futures-sink",
  484. "futures-util",
  485. "http",
  486. "indexmap",
  487. "slab",
  488. "tokio",
  489. "tokio-util",
  490. "tracing",
  491. ]
  492. [[package]]
  493. name = "hashbrown"
  494. version = "0.12.1"
  495. source = "registry+https://github.com/rust-lang/crates.io-index"
  496. checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
  497. [[package]]
  498. name = "hermit-abi"
  499. version = "0.1.19"
  500. source = "registry+https://github.com/rust-lang/crates.io-index"
  501. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  502. dependencies = [
  503. "libc",
  504. ]
  505. [[package]]
  506. name = "http"
  507. version = "0.2.8"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
  510. dependencies = [
  511. "bytes",
  512. "fnv",
  513. "itoa",
  514. ]
  515. [[package]]
  516. name = "http-range"
  517. version = "0.1.5"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  520. [[package]]
  521. name = "httparse"
  522. version = "1.7.1"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
  525. [[package]]
  526. name = "httpdate"
  527. version = "1.0.2"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  530. [[package]]
  531. name = "idna"
  532. version = "0.2.3"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  535. dependencies = [
  536. "matches",
  537. "unicode-bidi",
  538. "unicode-normalization",
  539. ]
  540. [[package]]
  541. name = "indexmap"
  542. version = "1.9.1"
  543. source = "registry+https://github.com/rust-lang/crates.io-index"
  544. checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
  545. dependencies = [
  546. "autocfg",
  547. "hashbrown",
  548. ]
  549. [[package]]
  550. name = "itoa"
  551. version = "1.0.2"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
  554. [[package]]
  555. name = "jobserver"
  556. version = "0.1.24"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
  559. dependencies = [
  560. "libc",
  561. ]
  562. [[package]]
  563. name = "language-tags"
  564. version = "0.3.2"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
  567. [[package]]
  568. name = "libc"
  569. version = "0.2.126"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
  572. [[package]]
  573. name = "local-channel"
  574. version = "0.1.3"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
  577. dependencies = [
  578. "futures-core",
  579. "futures-sink",
  580. "futures-util",
  581. "local-waker",
  582. ]
  583. [[package]]
  584. name = "local-waker"
  585. version = "0.1.3"
  586. source = "registry+https://github.com/rust-lang/crates.io-index"
  587. checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
  588. [[package]]
  589. name = "lock_api"
  590. version = "0.4.7"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
  593. dependencies = [
  594. "autocfg",
  595. "scopeguard",
  596. ]
  597. [[package]]
  598. name = "log"
  599. version = "0.4.17"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  602. dependencies = [
  603. "cfg-if",
  604. ]
  605. [[package]]
  606. name = "matches"
  607. version = "0.1.9"
  608. source = "registry+https://github.com/rust-lang/crates.io-index"
  609. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  610. [[package]]
  611. name = "memchr"
  612. version = "2.5.0"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  615. [[package]]
  616. name = "mime"
  617. version = "0.3.16"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  620. [[package]]
  621. name = "mime_guess"
  622. version = "2.0.4"
  623. source = "registry+https://github.com/rust-lang/crates.io-index"
  624. checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
  625. dependencies = [
  626. "mime",
  627. "unicase",
  628. ]
  629. [[package]]
  630. name = "miniz_oxide"
  631. version = "0.5.3"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
  634. dependencies = [
  635. "adler",
  636. ]
  637. [[package]]
  638. name = "mio"
  639. version = "0.8.4"
  640. source = "registry+https://github.com/rust-lang/crates.io-index"
  641. checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
  642. dependencies = [
  643. "libc",
  644. "log",
  645. "wasi 0.11.0+wasi-snapshot-preview1",
  646. "windows-sys",
  647. ]
  648. [[package]]
  649. name = "num-integer"
  650. version = "0.1.45"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  653. dependencies = [
  654. "autocfg",
  655. "num-traits",
  656. ]
  657. [[package]]
  658. name = "num-traits"
  659. version = "0.2.15"
  660. source = "registry+https://github.com/rust-lang/crates.io-index"
  661. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  662. dependencies = [
  663. "autocfg",
  664. ]
  665. [[package]]
  666. name = "num_cpus"
  667. version = "1.13.1"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
  670. dependencies = [
  671. "hermit-abi",
  672. "libc",
  673. ]
  674. [[package]]
  675. name = "num_threads"
  676. version = "0.1.6"
  677. source = "registry+https://github.com/rust-lang/crates.io-index"
  678. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  679. dependencies = [
  680. "libc",
  681. ]
  682. [[package]]
  683. name = "once_cell"
  684. version = "1.12.0"
  685. source = "registry+https://github.com/rust-lang/crates.io-index"
  686. checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
  687. [[package]]
  688. name = "parking_lot"
  689. version = "0.12.1"
  690. source = "registry+https://github.com/rust-lang/crates.io-index"
  691. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  692. dependencies = [
  693. "lock_api",
  694. "parking_lot_core",
  695. ]
  696. [[package]]
  697. name = "parking_lot_core"
  698. version = "0.9.3"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
  701. dependencies = [
  702. "cfg-if",
  703. "libc",
  704. "redox_syscall",
  705. "smallvec",
  706. "windows-sys",
  707. ]
  708. [[package]]
  709. name = "paste"
  710. version = "1.0.7"
  711. source = "registry+https://github.com/rust-lang/crates.io-index"
  712. checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
  713. [[package]]
  714. name = "percent-encoding"
  715. version = "2.1.0"
  716. source = "registry+https://github.com/rust-lang/crates.io-index"
  717. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  718. [[package]]
  719. name = "pin-project-lite"
  720. version = "0.2.9"
  721. source = "registry+https://github.com/rust-lang/crates.io-index"
  722. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  723. [[package]]
  724. name = "pin-utils"
  725. version = "0.1.0"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  728. [[package]]
  729. name = "ppv-lite86"
  730. version = "0.2.16"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  733. [[package]]
  734. name = "proc-macro2"
  735. version = "1.0.40"
  736. source = "registry+https://github.com/rust-lang/crates.io-index"
  737. checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
  738. dependencies = [
  739. "unicode-ident",
  740. ]
  741. [[package]]
  742. name = "pulldown-cmark"
  743. version = "0.9.1"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
  746. dependencies = [
  747. "bitflags",
  748. "getopts",
  749. "memchr",
  750. "unicase",
  751. ]
  752. [[package]]
  753. name = "quote"
  754. version = "1.0.20"
  755. source = "registry+https://github.com/rust-lang/crates.io-index"
  756. checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
  757. dependencies = [
  758. "proc-macro2",
  759. ]
  760. [[package]]
  761. name = "rand"
  762. version = "0.8.5"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  765. dependencies = [
  766. "libc",
  767. "rand_chacha",
  768. "rand_core",
  769. ]
  770. [[package]]
  771. name = "rand_chacha"
  772. version = "0.3.1"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  775. dependencies = [
  776. "ppv-lite86",
  777. "rand_core",
  778. ]
  779. [[package]]
  780. name = "rand_core"
  781. version = "0.6.3"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  784. dependencies = [
  785. "getrandom",
  786. ]
  787. [[package]]
  788. name = "redox_syscall"
  789. version = "0.2.13"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
  792. dependencies = [
  793. "bitflags",
  794. ]
  795. [[package]]
  796. name = "regex"
  797. version = "1.5.6"
  798. source = "registry+https://github.com/rust-lang/crates.io-index"
  799. checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
  800. dependencies = [
  801. "aho-corasick",
  802. "memchr",
  803. "regex-syntax",
  804. ]
  805. [[package]]
  806. name = "regex-syntax"
  807. version = "0.6.26"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
  810. [[package]]
  811. name = "rustc_version"
  812. version = "0.4.0"
  813. source = "registry+https://github.com/rust-lang/crates.io-index"
  814. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  815. dependencies = [
  816. "semver",
  817. ]
  818. [[package]]
  819. name = "ryu"
  820. version = "1.0.10"
  821. source = "registry+https://github.com/rust-lang/crates.io-index"
  822. checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
  823. [[package]]
  824. name = "same-file"
  825. version = "1.0.6"
  826. source = "registry+https://github.com/rust-lang/crates.io-index"
  827. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  828. dependencies = [
  829. "winapi-util",
  830. ]
  831. [[package]]
  832. name = "scopeguard"
  833. version = "1.1.0"
  834. source = "registry+https://github.com/rust-lang/crates.io-index"
  835. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  836. [[package]]
  837. name = "semver"
  838. version = "1.0.12"
  839. source = "registry+https://github.com/rust-lang/crates.io-index"
  840. checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
  841. [[package]]
  842. name = "serde"
  843. version = "1.0.138"
  844. source = "registry+https://github.com/rust-lang/crates.io-index"
  845. checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
  846. [[package]]
  847. name = "serde_json"
  848. version = "1.0.82"
  849. source = "registry+https://github.com/rust-lang/crates.io-index"
  850. checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
  851. dependencies = [
  852. "itoa",
  853. "ryu",
  854. "serde",
  855. ]
  856. [[package]]
  857. name = "serde_urlencoded"
  858. version = "0.7.1"
  859. source = "registry+https://github.com/rust-lang/crates.io-index"
  860. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  861. dependencies = [
  862. "form_urlencoded",
  863. "itoa",
  864. "ryu",
  865. "serde",
  866. ]
  867. [[package]]
  868. name = "sha1"
  869. version = "0.10.1"
  870. source = "registry+https://github.com/rust-lang/crates.io-index"
  871. checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
  872. dependencies = [
  873. "cfg-if",
  874. "cpufeatures",
  875. "digest",
  876. ]
  877. [[package]]
  878. name = "signal-hook-registry"
  879. version = "1.4.0"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  882. dependencies = [
  883. "libc",
  884. ]
  885. [[package]]
  886. name = "slab"
  887. version = "0.4.6"
  888. source = "registry+https://github.com/rust-lang/crates.io-index"
  889. checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
  890. [[package]]
  891. name = "smallvec"
  892. version = "1.9.0"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
  895. [[package]]
  896. name = "socket2"
  897. version = "0.4.4"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
  900. dependencies = [
  901. "libc",
  902. "winapi",
  903. ]
  904. [[package]]
  905. name = "syn"
  906. version = "1.0.98"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
  909. dependencies = [
  910. "proc-macro2",
  911. "quote",
  912. "unicode-ident",
  913. ]
  914. [[package]]
  915. name = "time"
  916. version = "0.1.44"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  919. dependencies = [
  920. "libc",
  921. "wasi 0.10.0+wasi-snapshot-preview1",
  922. "winapi",
  923. ]
  924. [[package]]
  925. name = "time"
  926. version = "0.3.11"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
  929. dependencies = [
  930. "itoa",
  931. "libc",
  932. "num_threads",
  933. "time-macros",
  934. ]
  935. [[package]]
  936. name = "time-macros"
  937. version = "0.2.4"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
  940. [[package]]
  941. name = "tinyvec"
  942. version = "1.6.0"
  943. source = "registry+https://github.com/rust-lang/crates.io-index"
  944. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  945. dependencies = [
  946. "tinyvec_macros",
  947. ]
  948. [[package]]
  949. name = "tinyvec_macros"
  950. version = "0.1.0"
  951. source = "registry+https://github.com/rust-lang/crates.io-index"
  952. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  953. [[package]]
  954. name = "tokio"
  955. version = "1.19.2"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
  958. dependencies = [
  959. "bytes",
  960. "libc",
  961. "memchr",
  962. "mio",
  963. "once_cell",
  964. "parking_lot",
  965. "pin-project-lite",
  966. "signal-hook-registry",
  967. "socket2",
  968. "winapi",
  969. ]
  970. [[package]]
  971. name = "tokio-util"
  972. version = "0.7.3"
  973. source = "registry+https://github.com/rust-lang/crates.io-index"
  974. checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
  975. dependencies = [
  976. "bytes",
  977. "futures-core",
  978. "futures-sink",
  979. "pin-project-lite",
  980. "tokio",
  981. "tracing",
  982. ]
  983. [[package]]
  984. name = "tracing"
  985. version = "0.1.35"
  986. source = "registry+https://github.com/rust-lang/crates.io-index"
  987. checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
  988. dependencies = [
  989. "cfg-if",
  990. "log",
  991. "pin-project-lite",
  992. "tracing-core",
  993. ]
  994. [[package]]
  995. name = "tracing-core"
  996. version = "0.1.28"
  997. source = "registry+https://github.com/rust-lang/crates.io-index"
  998. checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
  999. dependencies = [
  1000. "once_cell",
  1001. ]
  1002. [[package]]
  1003. name = "typenum"
  1004. version = "1.15.0"
  1005. source = "registry+https://github.com/rust-lang/crates.io-index"
  1006. checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
  1007. [[package]]
  1008. name = "unicase"
  1009. version = "2.6.0"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  1012. dependencies = [
  1013. "version_check",
  1014. ]
  1015. [[package]]
  1016. name = "unicode-bidi"
  1017. version = "0.3.8"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
  1020. [[package]]
  1021. name = "unicode-ident"
  1022. version = "1.0.1"
  1023. source = "registry+https://github.com/rust-lang/crates.io-index"
  1024. checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
  1025. [[package]]
  1026. name = "unicode-normalization"
  1027. version = "0.1.21"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
  1030. dependencies = [
  1031. "tinyvec",
  1032. ]
  1033. [[package]]
  1034. name = "unicode-width"
  1035. version = "0.1.9"
  1036. source = "registry+https://github.com/rust-lang/crates.io-index"
  1037. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  1038. [[package]]
  1039. name = "url"
  1040. version = "2.2.2"
  1041. source = "registry+https://github.com/rust-lang/crates.io-index"
  1042. checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
  1043. dependencies = [
  1044. "form_urlencoded",
  1045. "idna",
  1046. "matches",
  1047. "percent-encoding",
  1048. ]
  1049. [[package]]
  1050. name = "vcs-blog"
  1051. version = "0.1.0"
  1052. dependencies = [
  1053. "actix-files",
  1054. "actix-web",
  1055. "chrono",
  1056. "fern",
  1057. "log",
  1058. "pulldown-cmark",
  1059. "walkdir",
  1060. ]
  1061. [[package]]
  1062. name = "version_check"
  1063. version = "0.9.4"
  1064. source = "registry+https://github.com/rust-lang/crates.io-index"
  1065. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1066. [[package]]
  1067. name = "walkdir"
  1068. version = "2.3.2"
  1069. source = "registry+https://github.com/rust-lang/crates.io-index"
  1070. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  1071. dependencies = [
  1072. "same-file",
  1073. "winapi",
  1074. "winapi-util",
  1075. ]
  1076. [[package]]
  1077. name = "wasi"
  1078. version = "0.10.0+wasi-snapshot-preview1"
  1079. source = "registry+https://github.com/rust-lang/crates.io-index"
  1080. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  1081. [[package]]
  1082. name = "wasi"
  1083. version = "0.11.0+wasi-snapshot-preview1"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1086. [[package]]
  1087. name = "winapi"
  1088. version = "0.3.9"
  1089. source = "registry+https://github.com/rust-lang/crates.io-index"
  1090. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1091. dependencies = [
  1092. "winapi-i686-pc-windows-gnu",
  1093. "winapi-x86_64-pc-windows-gnu",
  1094. ]
  1095. [[package]]
  1096. name = "winapi-i686-pc-windows-gnu"
  1097. version = "0.4.0"
  1098. source = "registry+https://github.com/rust-lang/crates.io-index"
  1099. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1100. [[package]]
  1101. name = "winapi-util"
  1102. version = "0.1.5"
  1103. source = "registry+https://github.com/rust-lang/crates.io-index"
  1104. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1105. dependencies = [
  1106. "winapi",
  1107. ]
  1108. [[package]]
  1109. name = "winapi-x86_64-pc-windows-gnu"
  1110. version = "0.4.0"
  1111. source = "registry+https://github.com/rust-lang/crates.io-index"
  1112. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1113. [[package]]
  1114. name = "windows-sys"
  1115. version = "0.36.1"
  1116. source = "registry+https://github.com/rust-lang/crates.io-index"
  1117. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  1118. dependencies = [
  1119. "windows_aarch64_msvc",
  1120. "windows_i686_gnu",
  1121. "windows_i686_msvc",
  1122. "windows_x86_64_gnu",
  1123. "windows_x86_64_msvc",
  1124. ]
  1125. [[package]]
  1126. name = "windows_aarch64_msvc"
  1127. version = "0.36.1"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  1130. [[package]]
  1131. name = "windows_i686_gnu"
  1132. version = "0.36.1"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  1135. [[package]]
  1136. name = "windows_i686_msvc"
  1137. version = "0.36.1"
  1138. source = "registry+https://github.com/rust-lang/crates.io-index"
  1139. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  1140. [[package]]
  1141. name = "windows_x86_64_gnu"
  1142. version = "0.36.1"
  1143. source = "registry+https://github.com/rust-lang/crates.io-index"
  1144. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  1145. [[package]]
  1146. name = "windows_x86_64_msvc"
  1147. version = "0.36.1"
  1148. source = "registry+https://github.com/rust-lang/crates.io-index"
  1149. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
  1150. [[package]]
  1151. name = "zstd"
  1152. version = "0.11.2+zstd.1.5.2"
  1153. source = "registry+https://github.com/rust-lang/crates.io-index"
  1154. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  1155. dependencies = [
  1156. "zstd-safe",
  1157. ]
  1158. [[package]]
  1159. name = "zstd-safe"
  1160. version = "5.0.2+zstd.1.5.2"
  1161. source = "registry+https://github.com/rust-lang/crates.io-index"
  1162. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  1163. dependencies = [
  1164. "libc",
  1165. "zstd-sys",
  1166. ]
  1167. [[package]]
  1168. name = "zstd-sys"
  1169. version = "2.0.1+zstd.1.5.2"
  1170. source = "registry+https://github.com/rust-lang/crates.io-index"
  1171. checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
  1172. dependencies = [
  1173. "cc",
  1174. "libc",
  1175. ]