Cargo.lock 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923
  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 = "arc-swap"
  233. version = "1.5.1"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
  236. [[package]]
  237. name = "askama_escape"
  238. version = "0.10.3"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
  241. [[package]]
  242. name = "autocfg"
  243. version = "1.1.0"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  246. [[package]]
  247. name = "base64"
  248. version = "0.13.0"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  251. [[package]]
  252. name = "bitflags"
  253. version = "1.3.2"
  254. source = "registry+https://github.com/rust-lang/crates.io-index"
  255. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  256. [[package]]
  257. name = "block-buffer"
  258. version = "0.10.2"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
  261. dependencies = [
  262. "generic-array",
  263. ]
  264. [[package]]
  265. name = "brotli"
  266. version = "3.3.4"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  269. dependencies = [
  270. "alloc-no-stdlib",
  271. "alloc-stdlib",
  272. "brotli-decompressor",
  273. ]
  274. [[package]]
  275. name = "brotli-decompressor"
  276. version = "2.3.2"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
  279. dependencies = [
  280. "alloc-no-stdlib",
  281. "alloc-stdlib",
  282. ]
  283. [[package]]
  284. name = "bstr"
  285. version = "0.2.17"
  286. source = "registry+https://github.com/rust-lang/crates.io-index"
  287. checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
  288. dependencies = [
  289. "memchr",
  290. ]
  291. [[package]]
  292. name = "bumpalo"
  293. version = "3.10.0"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
  296. [[package]]
  297. name = "bytes"
  298. version = "1.1.0"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
  301. [[package]]
  302. name = "bytestring"
  303. version = "1.1.0"
  304. source = "registry+https://github.com/rust-lang/crates.io-index"
  305. checksum = "86b6a75fd3048808ef06af5cd79712be8111960adaf89d90250974b38fc3928a"
  306. dependencies = [
  307. "bytes",
  308. ]
  309. [[package]]
  310. name = "cc"
  311. version = "1.0.73"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
  314. dependencies = [
  315. "jobserver",
  316. ]
  317. [[package]]
  318. name = "cfg-if"
  319. version = "1.0.0"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  322. [[package]]
  323. name = "chrono"
  324. version = "0.4.19"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
  327. dependencies = [
  328. "libc",
  329. "num-integer",
  330. "num-traits",
  331. "time 0.1.44",
  332. "winapi",
  333. ]
  334. [[package]]
  335. name = "convert_case"
  336. version = "0.4.0"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  339. [[package]]
  340. name = "cookie"
  341. version = "0.16.0"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
  344. dependencies = [
  345. "percent-encoding",
  346. "time 0.3.11",
  347. "version_check",
  348. ]
  349. [[package]]
  350. name = "cpufeatures"
  351. version = "0.2.2"
  352. source = "registry+https://github.com/rust-lang/crates.io-index"
  353. checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
  354. dependencies = [
  355. "libc",
  356. ]
  357. [[package]]
  358. name = "crc32fast"
  359. version = "1.3.2"
  360. source = "registry+https://github.com/rust-lang/crates.io-index"
  361. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  362. dependencies = [
  363. "cfg-if",
  364. ]
  365. [[package]]
  366. name = "crossbeam-utils"
  367. version = "0.8.11"
  368. source = "registry+https://github.com/rust-lang/crates.io-index"
  369. checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
  370. dependencies = [
  371. "cfg-if",
  372. "once_cell",
  373. ]
  374. [[package]]
  375. name = "crypto-common"
  376. version = "0.1.4"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "5999502d32b9c48d492abe66392408144895020ec4709e549e840799f3bb74c0"
  379. dependencies = [
  380. "generic-array",
  381. "typenum",
  382. ]
  383. [[package]]
  384. name = "derive_more"
  385. version = "0.99.17"
  386. source = "registry+https://github.com/rust-lang/crates.io-index"
  387. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  388. dependencies = [
  389. "convert_case",
  390. "proc-macro2",
  391. "quote",
  392. "rustc_version",
  393. "syn",
  394. ]
  395. [[package]]
  396. name = "digest"
  397. version = "0.10.3"
  398. source = "registry+https://github.com/rust-lang/crates.io-index"
  399. checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
  400. dependencies = [
  401. "block-buffer",
  402. "crypto-common",
  403. ]
  404. [[package]]
  405. name = "doc-comment"
  406. version = "0.3.3"
  407. source = "registry+https://github.com/rust-lang/crates.io-index"
  408. checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
  409. [[package]]
  410. name = "encoding_rs"
  411. version = "0.8.31"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
  414. dependencies = [
  415. "cfg-if",
  416. ]
  417. [[package]]
  418. name = "fern"
  419. version = "0.6.1"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "3bdd7b0849075e79ee9a1836df22c717d1eba30451796fdc631b04565dd11e2a"
  422. dependencies = [
  423. "log",
  424. ]
  425. [[package]]
  426. name = "firestorm"
  427. version = "0.5.1"
  428. source = "registry+https://github.com/rust-lang/crates.io-index"
  429. checksum = "2c5f6c2c942da57e2aaaa84b8a521489486f14e75e7fa91dab70aba913975f98"
  430. [[package]]
  431. name = "flate2"
  432. version = "1.0.24"
  433. source = "registry+https://github.com/rust-lang/crates.io-index"
  434. checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
  435. dependencies = [
  436. "crc32fast",
  437. "miniz_oxide",
  438. ]
  439. [[package]]
  440. name = "fluent"
  441. version = "0.16.0"
  442. source = "registry+https://github.com/rust-lang/crates.io-index"
  443. checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7"
  444. dependencies = [
  445. "fluent-bundle",
  446. "unic-langid",
  447. ]
  448. [[package]]
  449. name = "fluent-bundle"
  450. version = "0.15.2"
  451. source = "registry+https://github.com/rust-lang/crates.io-index"
  452. checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd"
  453. dependencies = [
  454. "fluent-langneg",
  455. "fluent-syntax",
  456. "intl-memoizer",
  457. "intl_pluralrules",
  458. "rustc-hash",
  459. "self_cell",
  460. "smallvec",
  461. "unic-langid",
  462. ]
  463. [[package]]
  464. name = "fluent-langneg"
  465. version = "0.13.0"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
  468. dependencies = [
  469. "unic-langid",
  470. ]
  471. [[package]]
  472. name = "fluent-syntax"
  473. version = "0.11.0"
  474. source = "registry+https://github.com/rust-lang/crates.io-index"
  475. checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78"
  476. dependencies = [
  477. "thiserror",
  478. ]
  479. [[package]]
  480. name = "fluent-template-macros"
  481. version = "0.7.1"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "0209363718816f86738043b0e337119133a6135bde1c25e654a563c8a666addb"
  484. dependencies = [
  485. "flume",
  486. "ignore",
  487. "once_cell",
  488. "proc-macro2",
  489. "quote",
  490. "syn",
  491. "unic-langid",
  492. ]
  493. [[package]]
  494. name = "fluent-templates"
  495. version = "0.7.1"
  496. source = "registry+https://github.com/rust-lang/crates.io-index"
  497. checksum = "968769c4890659e8262fae40c43fb63b9d59c8e205d7696bda75e89e5a371154"
  498. dependencies = [
  499. "arc-swap",
  500. "fluent",
  501. "fluent-bundle",
  502. "fluent-langneg",
  503. "fluent-syntax",
  504. "fluent-template-macros",
  505. "flume",
  506. "handlebars",
  507. "heck",
  508. "ignore",
  509. "intl-memoizer",
  510. "lazy_static",
  511. "log",
  512. "once_cell",
  513. "serde_json",
  514. "snafu",
  515. "unic-langid",
  516. ]
  517. [[package]]
  518. name = "flume"
  519. version = "0.10.14"
  520. source = "registry+https://github.com/rust-lang/crates.io-index"
  521. checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
  522. dependencies = [
  523. "futures-core",
  524. "futures-sink",
  525. "nanorand",
  526. "pin-project",
  527. "spin",
  528. ]
  529. [[package]]
  530. name = "fnv"
  531. version = "1.0.7"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  534. [[package]]
  535. name = "form_urlencoded"
  536. version = "1.0.1"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  539. dependencies = [
  540. "matches",
  541. "percent-encoding",
  542. ]
  543. [[package]]
  544. name = "futures-core"
  545. version = "0.3.21"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
  548. [[package]]
  549. name = "futures-sink"
  550. version = "0.3.21"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
  553. [[package]]
  554. name = "futures-task"
  555. version = "0.3.21"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
  558. [[package]]
  559. name = "futures-util"
  560. version = "0.3.21"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
  563. dependencies = [
  564. "futures-core",
  565. "futures-task",
  566. "pin-project-lite",
  567. "pin-utils",
  568. ]
  569. [[package]]
  570. name = "generic-array"
  571. version = "0.14.5"
  572. source = "registry+https://github.com/rust-lang/crates.io-index"
  573. checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
  574. dependencies = [
  575. "typenum",
  576. "version_check",
  577. ]
  578. [[package]]
  579. name = "getopts"
  580. version = "0.2.21"
  581. source = "registry+https://github.com/rust-lang/crates.io-index"
  582. checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
  583. dependencies = [
  584. "unicode-width",
  585. ]
  586. [[package]]
  587. name = "getrandom"
  588. version = "0.2.7"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
  591. dependencies = [
  592. "cfg-if",
  593. "js-sys",
  594. "libc",
  595. "wasi 0.11.0+wasi-snapshot-preview1",
  596. "wasm-bindgen",
  597. ]
  598. [[package]]
  599. name = "git2"
  600. version = "0.14.4"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "d0155506aab710a86160ddb504a480d2964d7ab5b9e62419be69e0032bc5931c"
  603. dependencies = [
  604. "bitflags",
  605. "libc",
  606. "libgit2-sys",
  607. "log",
  608. "openssl-probe",
  609. "openssl-sys",
  610. "url",
  611. ]
  612. [[package]]
  613. name = "globset"
  614. version = "0.4.9"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"
  617. dependencies = [
  618. "aho-corasick",
  619. "bstr",
  620. "fnv",
  621. "log",
  622. "regex",
  623. ]
  624. [[package]]
  625. name = "h2"
  626. version = "0.3.13"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
  629. dependencies = [
  630. "bytes",
  631. "fnv",
  632. "futures-core",
  633. "futures-sink",
  634. "futures-util",
  635. "http",
  636. "indexmap",
  637. "slab",
  638. "tokio",
  639. "tokio-util",
  640. "tracing",
  641. ]
  642. [[package]]
  643. name = "handlebars"
  644. version = "4.3.3"
  645. source = "registry+https://github.com/rust-lang/crates.io-index"
  646. checksum = "360d9740069b2f6cbb63ce2dbaa71a20d3185350cbb990d7bebeb9318415eb17"
  647. dependencies = [
  648. "log",
  649. "pest",
  650. "pest_derive",
  651. "serde",
  652. "serde_json",
  653. "thiserror",
  654. "walkdir",
  655. ]
  656. [[package]]
  657. name = "hashbrown"
  658. version = "0.12.1"
  659. source = "registry+https://github.com/rust-lang/crates.io-index"
  660. checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
  661. [[package]]
  662. name = "heck"
  663. version = "0.4.0"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
  666. [[package]]
  667. name = "hermit-abi"
  668. version = "0.1.19"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  671. dependencies = [
  672. "libc",
  673. ]
  674. [[package]]
  675. name = "http"
  676. version = "0.2.8"
  677. source = "registry+https://github.com/rust-lang/crates.io-index"
  678. checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
  679. dependencies = [
  680. "bytes",
  681. "fnv",
  682. "itoa",
  683. ]
  684. [[package]]
  685. name = "http-range"
  686. version = "0.1.5"
  687. source = "registry+https://github.com/rust-lang/crates.io-index"
  688. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  689. [[package]]
  690. name = "httparse"
  691. version = "1.7.1"
  692. source = "registry+https://github.com/rust-lang/crates.io-index"
  693. checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
  694. [[package]]
  695. name = "httpdate"
  696. version = "1.0.2"
  697. source = "registry+https://github.com/rust-lang/crates.io-index"
  698. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  699. [[package]]
  700. name = "idna"
  701. version = "0.2.3"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  704. dependencies = [
  705. "matches",
  706. "unicode-bidi",
  707. "unicode-normalization",
  708. ]
  709. [[package]]
  710. name = "ignore"
  711. version = "0.4.18"
  712. source = "registry+https://github.com/rust-lang/crates.io-index"
  713. checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
  714. dependencies = [
  715. "crossbeam-utils",
  716. "globset",
  717. "lazy_static",
  718. "log",
  719. "memchr",
  720. "regex",
  721. "same-file",
  722. "thread_local",
  723. "walkdir",
  724. "winapi-util",
  725. ]
  726. [[package]]
  727. name = "indexmap"
  728. version = "1.9.1"
  729. source = "registry+https://github.com/rust-lang/crates.io-index"
  730. checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
  731. dependencies = [
  732. "autocfg",
  733. "hashbrown",
  734. ]
  735. [[package]]
  736. name = "intl-memoizer"
  737. version = "0.5.1"
  738. source = "registry+https://github.com/rust-lang/crates.io-index"
  739. checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f"
  740. dependencies = [
  741. "type-map",
  742. "unic-langid",
  743. ]
  744. [[package]]
  745. name = "intl_pluralrules"
  746. version = "7.0.1"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "b18f988384267d7066cc2be425e6faf352900652c046b6971d2e228d3b1c5ecf"
  749. dependencies = [
  750. "tinystr",
  751. "unic-langid",
  752. ]
  753. [[package]]
  754. name = "itoa"
  755. version = "1.0.2"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
  758. [[package]]
  759. name = "jobserver"
  760. version = "0.1.24"
  761. source = "registry+https://github.com/rust-lang/crates.io-index"
  762. checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
  763. dependencies = [
  764. "libc",
  765. ]
  766. [[package]]
  767. name = "js-sys"
  768. version = "0.3.59"
  769. source = "registry+https://github.com/rust-lang/crates.io-index"
  770. checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
  771. dependencies = [
  772. "wasm-bindgen",
  773. ]
  774. [[package]]
  775. name = "language-tags"
  776. version = "0.3.2"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
  779. [[package]]
  780. name = "lazy_static"
  781. version = "1.4.0"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  784. [[package]]
  785. name = "libc"
  786. version = "0.2.126"
  787. source = "registry+https://github.com/rust-lang/crates.io-index"
  788. checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
  789. [[package]]
  790. name = "libgit2-sys"
  791. version = "0.13.4+1.4.2"
  792. source = "registry+https://github.com/rust-lang/crates.io-index"
  793. checksum = "d0fa6563431ede25f5cc7f6d803c6afbc1c5d3ad3d4925d12c882bf2b526f5d1"
  794. dependencies = [
  795. "cc",
  796. "libc",
  797. "libssh2-sys",
  798. "libz-sys",
  799. "openssl-sys",
  800. "pkg-config",
  801. ]
  802. [[package]]
  803. name = "libssh2-sys"
  804. version = "0.2.23"
  805. source = "registry+https://github.com/rust-lang/crates.io-index"
  806. checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
  807. dependencies = [
  808. "cc",
  809. "libc",
  810. "libz-sys",
  811. "openssl-sys",
  812. "pkg-config",
  813. "vcpkg",
  814. ]
  815. [[package]]
  816. name = "libz-sys"
  817. version = "1.1.8"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
  820. dependencies = [
  821. "cc",
  822. "libc",
  823. "pkg-config",
  824. "vcpkg",
  825. ]
  826. [[package]]
  827. name = "local-channel"
  828. version = "0.1.3"
  829. source = "registry+https://github.com/rust-lang/crates.io-index"
  830. checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
  831. dependencies = [
  832. "futures-core",
  833. "futures-sink",
  834. "futures-util",
  835. "local-waker",
  836. ]
  837. [[package]]
  838. name = "local-waker"
  839. version = "0.1.3"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
  842. [[package]]
  843. name = "lock_api"
  844. version = "0.4.7"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
  847. dependencies = [
  848. "autocfg",
  849. "scopeguard",
  850. ]
  851. [[package]]
  852. name = "log"
  853. version = "0.4.17"
  854. source = "registry+https://github.com/rust-lang/crates.io-index"
  855. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  856. dependencies = [
  857. "cfg-if",
  858. ]
  859. [[package]]
  860. name = "matches"
  861. version = "0.1.9"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  864. [[package]]
  865. name = "memchr"
  866. version = "2.5.0"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  869. [[package]]
  870. name = "mime"
  871. version = "0.3.16"
  872. source = "registry+https://github.com/rust-lang/crates.io-index"
  873. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  874. [[package]]
  875. name = "mime_guess"
  876. version = "2.0.4"
  877. source = "registry+https://github.com/rust-lang/crates.io-index"
  878. checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
  879. dependencies = [
  880. "mime",
  881. "unicase",
  882. ]
  883. [[package]]
  884. name = "miniz_oxide"
  885. version = "0.5.3"
  886. source = "registry+https://github.com/rust-lang/crates.io-index"
  887. checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
  888. dependencies = [
  889. "adler",
  890. ]
  891. [[package]]
  892. name = "mio"
  893. version = "0.8.4"
  894. source = "registry+https://github.com/rust-lang/crates.io-index"
  895. checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
  896. dependencies = [
  897. "libc",
  898. "log",
  899. "wasi 0.11.0+wasi-snapshot-preview1",
  900. "windows-sys",
  901. ]
  902. [[package]]
  903. name = "nanorand"
  904. version = "0.7.0"
  905. source = "registry+https://github.com/rust-lang/crates.io-index"
  906. checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
  907. dependencies = [
  908. "getrandom",
  909. ]
  910. [[package]]
  911. name = "num-integer"
  912. version = "0.1.45"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  915. dependencies = [
  916. "autocfg",
  917. "num-traits",
  918. ]
  919. [[package]]
  920. name = "num-traits"
  921. version = "0.2.15"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  924. dependencies = [
  925. "autocfg",
  926. ]
  927. [[package]]
  928. name = "num_cpus"
  929. version = "1.13.1"
  930. source = "registry+https://github.com/rust-lang/crates.io-index"
  931. checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
  932. dependencies = [
  933. "hermit-abi",
  934. "libc",
  935. ]
  936. [[package]]
  937. name = "num_threads"
  938. version = "0.1.6"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  941. dependencies = [
  942. "libc",
  943. ]
  944. [[package]]
  945. name = "once_cell"
  946. version = "1.12.0"
  947. source = "registry+https://github.com/rust-lang/crates.io-index"
  948. checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
  949. [[package]]
  950. name = "openssl-probe"
  951. version = "0.1.5"
  952. source = "registry+https://github.com/rust-lang/crates.io-index"
  953. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  954. [[package]]
  955. name = "openssl-sys"
  956. version = "0.9.75"
  957. source = "registry+https://github.com/rust-lang/crates.io-index"
  958. checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
  959. dependencies = [
  960. "autocfg",
  961. "cc",
  962. "libc",
  963. "pkg-config",
  964. "vcpkg",
  965. ]
  966. [[package]]
  967. name = "parking_lot"
  968. version = "0.12.1"
  969. source = "registry+https://github.com/rust-lang/crates.io-index"
  970. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  971. dependencies = [
  972. "lock_api",
  973. "parking_lot_core",
  974. ]
  975. [[package]]
  976. name = "parking_lot_core"
  977. version = "0.9.3"
  978. source = "registry+https://github.com/rust-lang/crates.io-index"
  979. checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
  980. dependencies = [
  981. "cfg-if",
  982. "libc",
  983. "redox_syscall",
  984. "smallvec",
  985. "windows-sys",
  986. ]
  987. [[package]]
  988. name = "paste"
  989. version = "1.0.7"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
  992. [[package]]
  993. name = "percent-encoding"
  994. version = "2.1.0"
  995. source = "registry+https://github.com/rust-lang/crates.io-index"
  996. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  997. [[package]]
  998. name = "pest"
  999. version = "2.2.1"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "69486e2b8c2d2aeb9762db7b4e00b0331156393555cff467f4163ff06821eef8"
  1002. dependencies = [
  1003. "thiserror",
  1004. "ucd-trie",
  1005. ]
  1006. [[package]]
  1007. name = "pest_derive"
  1008. version = "2.2.1"
  1009. source = "registry+https://github.com/rust-lang/crates.io-index"
  1010. checksum = "b13570633aff33c6d22ce47dd566b10a3b9122c2fe9d8e7501895905be532b91"
  1011. dependencies = [
  1012. "pest",
  1013. "pest_generator",
  1014. ]
  1015. [[package]]
  1016. name = "pest_generator"
  1017. version = "2.2.1"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "b3c567e5702efdc79fb18859ea74c3eb36e14c43da7b8c1f098a4ed6514ec7a0"
  1020. dependencies = [
  1021. "pest",
  1022. "pest_meta",
  1023. "proc-macro2",
  1024. "quote",
  1025. "syn",
  1026. ]
  1027. [[package]]
  1028. name = "pest_meta"
  1029. version = "2.2.1"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "5eb32be5ee3bbdafa8c7a18b0a8a8d962b66cfa2ceee4037f49267a50ee821fe"
  1032. dependencies = [
  1033. "once_cell",
  1034. "pest",
  1035. "sha-1",
  1036. ]
  1037. [[package]]
  1038. name = "pin-project"
  1039. version = "1.0.11"
  1040. source = "registry+https://github.com/rust-lang/crates.io-index"
  1041. checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
  1042. dependencies = [
  1043. "pin-project-internal",
  1044. ]
  1045. [[package]]
  1046. name = "pin-project-internal"
  1047. version = "1.0.11"
  1048. source = "registry+https://github.com/rust-lang/crates.io-index"
  1049. checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
  1050. dependencies = [
  1051. "proc-macro2",
  1052. "quote",
  1053. "syn",
  1054. ]
  1055. [[package]]
  1056. name = "pin-project-lite"
  1057. version = "0.2.9"
  1058. source = "registry+https://github.com/rust-lang/crates.io-index"
  1059. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  1060. [[package]]
  1061. name = "pin-utils"
  1062. version = "0.1.0"
  1063. source = "registry+https://github.com/rust-lang/crates.io-index"
  1064. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1065. [[package]]
  1066. name = "pkg-config"
  1067. version = "0.3.25"
  1068. source = "registry+https://github.com/rust-lang/crates.io-index"
  1069. checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
  1070. [[package]]
  1071. name = "ppv-lite86"
  1072. version = "0.2.16"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  1075. [[package]]
  1076. name = "proc-macro-hack"
  1077. version = "0.5.19"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  1080. [[package]]
  1081. name = "proc-macro2"
  1082. version = "1.0.40"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
  1085. dependencies = [
  1086. "unicode-ident",
  1087. ]
  1088. [[package]]
  1089. name = "pulldown-cmark"
  1090. version = "0.9.1"
  1091. source = "registry+https://github.com/rust-lang/crates.io-index"
  1092. checksum = "34f197a544b0c9ab3ae46c359a7ec9cbbb5c7bf97054266fecb7ead794a181d6"
  1093. dependencies = [
  1094. "bitflags",
  1095. "getopts",
  1096. "memchr",
  1097. "unicase",
  1098. ]
  1099. [[package]]
  1100. name = "quote"
  1101. version = "1.0.20"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
  1104. dependencies = [
  1105. "proc-macro2",
  1106. ]
  1107. [[package]]
  1108. name = "rand"
  1109. version = "0.8.5"
  1110. source = "registry+https://github.com/rust-lang/crates.io-index"
  1111. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  1112. dependencies = [
  1113. "libc",
  1114. "rand_chacha",
  1115. "rand_core",
  1116. ]
  1117. [[package]]
  1118. name = "rand_chacha"
  1119. version = "0.3.1"
  1120. source = "registry+https://github.com/rust-lang/crates.io-index"
  1121. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  1122. dependencies = [
  1123. "ppv-lite86",
  1124. "rand_core",
  1125. ]
  1126. [[package]]
  1127. name = "rand_core"
  1128. version = "0.6.3"
  1129. source = "registry+https://github.com/rust-lang/crates.io-index"
  1130. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  1131. dependencies = [
  1132. "getrandom",
  1133. ]
  1134. [[package]]
  1135. name = "redox_syscall"
  1136. version = "0.2.13"
  1137. source = "registry+https://github.com/rust-lang/crates.io-index"
  1138. checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
  1139. dependencies = [
  1140. "bitflags",
  1141. ]
  1142. [[package]]
  1143. name = "regex"
  1144. version = "1.5.6"
  1145. source = "registry+https://github.com/rust-lang/crates.io-index"
  1146. checksum = "d83f127d94bdbcda4c8cc2e50f6f84f4b611f69c902699ca385a39c3a75f9ff1"
  1147. dependencies = [
  1148. "aho-corasick",
  1149. "memchr",
  1150. "regex-syntax",
  1151. ]
  1152. [[package]]
  1153. name = "regex-syntax"
  1154. version = "0.6.26"
  1155. source = "registry+https://github.com/rust-lang/crates.io-index"
  1156. checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
  1157. [[package]]
  1158. name = "rustc-hash"
  1159. version = "1.1.0"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  1162. [[package]]
  1163. name = "rustc_version"
  1164. version = "0.4.0"
  1165. source = "registry+https://github.com/rust-lang/crates.io-index"
  1166. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  1167. dependencies = [
  1168. "semver",
  1169. ]
  1170. [[package]]
  1171. name = "ryu"
  1172. version = "1.0.10"
  1173. source = "registry+https://github.com/rust-lang/crates.io-index"
  1174. checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
  1175. [[package]]
  1176. name = "same-file"
  1177. version = "1.0.6"
  1178. source = "registry+https://github.com/rust-lang/crates.io-index"
  1179. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1180. dependencies = [
  1181. "winapi-util",
  1182. ]
  1183. [[package]]
  1184. name = "scopeguard"
  1185. version = "1.1.0"
  1186. source = "registry+https://github.com/rust-lang/crates.io-index"
  1187. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1188. [[package]]
  1189. name = "self_cell"
  1190. version = "0.10.2"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af"
  1193. [[package]]
  1194. name = "semver"
  1195. version = "1.0.12"
  1196. source = "registry+https://github.com/rust-lang/crates.io-index"
  1197. checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
  1198. [[package]]
  1199. name = "serde"
  1200. version = "1.0.138"
  1201. source = "registry+https://github.com/rust-lang/crates.io-index"
  1202. checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
  1203. dependencies = [
  1204. "serde_derive",
  1205. ]
  1206. [[package]]
  1207. name = "serde_derive"
  1208. version = "1.0.138"
  1209. source = "registry+https://github.com/rust-lang/crates.io-index"
  1210. checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
  1211. dependencies = [
  1212. "proc-macro2",
  1213. "quote",
  1214. "syn",
  1215. ]
  1216. [[package]]
  1217. name = "serde_json"
  1218. version = "1.0.82"
  1219. source = "registry+https://github.com/rust-lang/crates.io-index"
  1220. checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
  1221. dependencies = [
  1222. "itoa",
  1223. "ryu",
  1224. "serde",
  1225. ]
  1226. [[package]]
  1227. name = "serde_urlencoded"
  1228. version = "0.7.1"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  1231. dependencies = [
  1232. "form_urlencoded",
  1233. "itoa",
  1234. "ryu",
  1235. "serde",
  1236. ]
  1237. [[package]]
  1238. name = "sha-1"
  1239. version = "0.10.0"
  1240. source = "registry+https://github.com/rust-lang/crates.io-index"
  1241. checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
  1242. dependencies = [
  1243. "cfg-if",
  1244. "cpufeatures",
  1245. "digest",
  1246. ]
  1247. [[package]]
  1248. name = "sha1"
  1249. version = "0.10.1"
  1250. source = "registry+https://github.com/rust-lang/crates.io-index"
  1251. checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
  1252. dependencies = [
  1253. "cfg-if",
  1254. "cpufeatures",
  1255. "digest",
  1256. ]
  1257. [[package]]
  1258. name = "signal-hook-registry"
  1259. version = "1.4.0"
  1260. source = "registry+https://github.com/rust-lang/crates.io-index"
  1261. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  1262. dependencies = [
  1263. "libc",
  1264. ]
  1265. [[package]]
  1266. name = "slab"
  1267. version = "0.4.6"
  1268. source = "registry+https://github.com/rust-lang/crates.io-index"
  1269. checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
  1270. [[package]]
  1271. name = "smallvec"
  1272. version = "1.9.0"
  1273. source = "registry+https://github.com/rust-lang/crates.io-index"
  1274. checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
  1275. [[package]]
  1276. name = "snafu"
  1277. version = "0.7.1"
  1278. source = "registry+https://github.com/rust-lang/crates.io-index"
  1279. checksum = "5177903bf45656592d9eb5c0e22f408fc023aae51dbe2088889b71633ba451f2"
  1280. dependencies = [
  1281. "doc-comment",
  1282. "snafu-derive",
  1283. ]
  1284. [[package]]
  1285. name = "snafu-derive"
  1286. version = "0.7.1"
  1287. source = "registry+https://github.com/rust-lang/crates.io-index"
  1288. checksum = "410b26ed97440d90ced3e2488c868d56a86e2064f5d7d6f417909b286afe25e5"
  1289. dependencies = [
  1290. "heck",
  1291. "proc-macro2",
  1292. "quote",
  1293. "syn",
  1294. ]
  1295. [[package]]
  1296. name = "socket2"
  1297. version = "0.4.4"
  1298. source = "registry+https://github.com/rust-lang/crates.io-index"
  1299. checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
  1300. dependencies = [
  1301. "libc",
  1302. "winapi",
  1303. ]
  1304. [[package]]
  1305. name = "spin"
  1306. version = "0.9.4"
  1307. source = "registry+https://github.com/rust-lang/crates.io-index"
  1308. checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
  1309. dependencies = [
  1310. "lock_api",
  1311. ]
  1312. [[package]]
  1313. name = "syn"
  1314. version = "1.0.98"
  1315. source = "registry+https://github.com/rust-lang/crates.io-index"
  1316. checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
  1317. dependencies = [
  1318. "proc-macro2",
  1319. "quote",
  1320. "unicode-ident",
  1321. ]
  1322. [[package]]
  1323. name = "thiserror"
  1324. version = "1.0.31"
  1325. source = "registry+https://github.com/rust-lang/crates.io-index"
  1326. checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
  1327. dependencies = [
  1328. "thiserror-impl",
  1329. ]
  1330. [[package]]
  1331. name = "thiserror-impl"
  1332. version = "1.0.31"
  1333. source = "registry+https://github.com/rust-lang/crates.io-index"
  1334. checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
  1335. dependencies = [
  1336. "proc-macro2",
  1337. "quote",
  1338. "syn",
  1339. ]
  1340. [[package]]
  1341. name = "thread_local"
  1342. version = "1.1.4"
  1343. source = "registry+https://github.com/rust-lang/crates.io-index"
  1344. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  1345. dependencies = [
  1346. "once_cell",
  1347. ]
  1348. [[package]]
  1349. name = "time"
  1350. version = "0.1.44"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  1353. dependencies = [
  1354. "libc",
  1355. "wasi 0.10.0+wasi-snapshot-preview1",
  1356. "winapi",
  1357. ]
  1358. [[package]]
  1359. name = "time"
  1360. version = "0.3.11"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
  1363. dependencies = [
  1364. "itoa",
  1365. "libc",
  1366. "num_threads",
  1367. "time-macros",
  1368. ]
  1369. [[package]]
  1370. name = "time-macros"
  1371. version = "0.2.4"
  1372. source = "registry+https://github.com/rust-lang/crates.io-index"
  1373. checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
  1374. [[package]]
  1375. name = "tinystr"
  1376. version = "0.3.4"
  1377. source = "registry+https://github.com/rust-lang/crates.io-index"
  1378. checksum = "29738eedb4388d9ea620eeab9384884fc3f06f586a2eddb56bedc5885126c7c1"
  1379. [[package]]
  1380. name = "tinyvec"
  1381. version = "1.6.0"
  1382. source = "registry+https://github.com/rust-lang/crates.io-index"
  1383. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  1384. dependencies = [
  1385. "tinyvec_macros",
  1386. ]
  1387. [[package]]
  1388. name = "tinyvec_macros"
  1389. version = "0.1.0"
  1390. source = "registry+https://github.com/rust-lang/crates.io-index"
  1391. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  1392. [[package]]
  1393. name = "tokio"
  1394. version = "1.19.2"
  1395. source = "registry+https://github.com/rust-lang/crates.io-index"
  1396. checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
  1397. dependencies = [
  1398. "bytes",
  1399. "libc",
  1400. "memchr",
  1401. "mio",
  1402. "once_cell",
  1403. "parking_lot",
  1404. "pin-project-lite",
  1405. "signal-hook-registry",
  1406. "socket2",
  1407. "winapi",
  1408. ]
  1409. [[package]]
  1410. name = "tokio-util"
  1411. version = "0.7.3"
  1412. source = "registry+https://github.com/rust-lang/crates.io-index"
  1413. checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
  1414. dependencies = [
  1415. "bytes",
  1416. "futures-core",
  1417. "futures-sink",
  1418. "pin-project-lite",
  1419. "tokio",
  1420. "tracing",
  1421. ]
  1422. [[package]]
  1423. name = "tracing"
  1424. version = "0.1.35"
  1425. source = "registry+https://github.com/rust-lang/crates.io-index"
  1426. checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
  1427. dependencies = [
  1428. "cfg-if",
  1429. "log",
  1430. "pin-project-lite",
  1431. "tracing-core",
  1432. ]
  1433. [[package]]
  1434. name = "tracing-core"
  1435. version = "0.1.28"
  1436. source = "registry+https://github.com/rust-lang/crates.io-index"
  1437. checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
  1438. dependencies = [
  1439. "once_cell",
  1440. ]
  1441. [[package]]
  1442. name = "type-map"
  1443. version = "0.4.0"
  1444. source = "registry+https://github.com/rust-lang/crates.io-index"
  1445. checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46"
  1446. dependencies = [
  1447. "rustc-hash",
  1448. ]
  1449. [[package]]
  1450. name = "typenum"
  1451. version = "1.15.0"
  1452. source = "registry+https://github.com/rust-lang/crates.io-index"
  1453. checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
  1454. [[package]]
  1455. name = "ucd-trie"
  1456. version = "0.1.4"
  1457. source = "registry+https://github.com/rust-lang/crates.io-index"
  1458. checksum = "89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c"
  1459. [[package]]
  1460. name = "unic-langid"
  1461. version = "0.9.0"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "73328fcd730a030bdb19ddf23e192187a6b01cd98be6d3140622a89129459ce5"
  1464. dependencies = [
  1465. "unic-langid-impl",
  1466. "unic-langid-macros",
  1467. ]
  1468. [[package]]
  1469. name = "unic-langid-impl"
  1470. version = "0.9.0"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "1a4a8eeaf0494862c1404c95ec2f4c33a2acff5076f64314b465e3ddae1b934d"
  1473. dependencies = [
  1474. "tinystr",
  1475. ]
  1476. [[package]]
  1477. name = "unic-langid-macros"
  1478. version = "0.9.0"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "18f980d6d87e8805f2836d64b4138cc95aa7986fa63b1f51f67d5fbff64dd6e5"
  1481. dependencies = [
  1482. "proc-macro-hack",
  1483. "tinystr",
  1484. "unic-langid-impl",
  1485. "unic-langid-macros-impl",
  1486. ]
  1487. [[package]]
  1488. name = "unic-langid-macros-impl"
  1489. version = "0.9.0"
  1490. source = "registry+https://github.com/rust-lang/crates.io-index"
  1491. checksum = "29396ffd97e27574c3e01368b1a64267d3064969e4848e2e130ff668be9daa9f"
  1492. dependencies = [
  1493. "proc-macro-hack",
  1494. "quote",
  1495. "syn",
  1496. "unic-langid-impl",
  1497. ]
  1498. [[package]]
  1499. name = "unicase"
  1500. version = "2.6.0"
  1501. source = "registry+https://github.com/rust-lang/crates.io-index"
  1502. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  1503. dependencies = [
  1504. "version_check",
  1505. ]
  1506. [[package]]
  1507. name = "unicode-bidi"
  1508. version = "0.3.8"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
  1511. [[package]]
  1512. name = "unicode-ident"
  1513. version = "1.0.1"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
  1516. [[package]]
  1517. name = "unicode-normalization"
  1518. version = "0.1.21"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
  1521. dependencies = [
  1522. "tinyvec",
  1523. ]
  1524. [[package]]
  1525. name = "unicode-width"
  1526. version = "0.1.9"
  1527. source = "registry+https://github.com/rust-lang/crates.io-index"
  1528. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  1529. [[package]]
  1530. name = "url"
  1531. version = "2.2.2"
  1532. source = "registry+https://github.com/rust-lang/crates.io-index"
  1533. checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
  1534. dependencies = [
  1535. "form_urlencoded",
  1536. "idna",
  1537. "matches",
  1538. "percent-encoding",
  1539. ]
  1540. [[package]]
  1541. name = "vcpkg"
  1542. version = "0.2.15"
  1543. source = "registry+https://github.com/rust-lang/crates.io-index"
  1544. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  1545. [[package]]
  1546. name = "vcs-blog"
  1547. version = "0.1.0"
  1548. dependencies = [
  1549. "actix-files",
  1550. "actix-web",
  1551. "chrono",
  1552. "fern",
  1553. "fluent-templates",
  1554. "git2",
  1555. "handlebars",
  1556. "log",
  1557. "pulldown-cmark",
  1558. "serde",
  1559. "serde_json",
  1560. "walkdir",
  1561. ]
  1562. [[package]]
  1563. name = "version_check"
  1564. version = "0.9.4"
  1565. source = "registry+https://github.com/rust-lang/crates.io-index"
  1566. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1567. [[package]]
  1568. name = "walkdir"
  1569. version = "2.3.2"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  1572. dependencies = [
  1573. "same-file",
  1574. "winapi",
  1575. "winapi-util",
  1576. ]
  1577. [[package]]
  1578. name = "wasi"
  1579. version = "0.10.0+wasi-snapshot-preview1"
  1580. source = "registry+https://github.com/rust-lang/crates.io-index"
  1581. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  1582. [[package]]
  1583. name = "wasi"
  1584. version = "0.11.0+wasi-snapshot-preview1"
  1585. source = "registry+https://github.com/rust-lang/crates.io-index"
  1586. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1587. [[package]]
  1588. name = "wasm-bindgen"
  1589. version = "0.2.82"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
  1592. dependencies = [
  1593. "cfg-if",
  1594. "wasm-bindgen-macro",
  1595. ]
  1596. [[package]]
  1597. name = "wasm-bindgen-backend"
  1598. version = "0.2.82"
  1599. source = "registry+https://github.com/rust-lang/crates.io-index"
  1600. checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
  1601. dependencies = [
  1602. "bumpalo",
  1603. "log",
  1604. "once_cell",
  1605. "proc-macro2",
  1606. "quote",
  1607. "syn",
  1608. "wasm-bindgen-shared",
  1609. ]
  1610. [[package]]
  1611. name = "wasm-bindgen-macro"
  1612. version = "0.2.82"
  1613. source = "registry+https://github.com/rust-lang/crates.io-index"
  1614. checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
  1615. dependencies = [
  1616. "quote",
  1617. "wasm-bindgen-macro-support",
  1618. ]
  1619. [[package]]
  1620. name = "wasm-bindgen-macro-support"
  1621. version = "0.2.82"
  1622. source = "registry+https://github.com/rust-lang/crates.io-index"
  1623. checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
  1624. dependencies = [
  1625. "proc-macro2",
  1626. "quote",
  1627. "syn",
  1628. "wasm-bindgen-backend",
  1629. "wasm-bindgen-shared",
  1630. ]
  1631. [[package]]
  1632. name = "wasm-bindgen-shared"
  1633. version = "0.2.82"
  1634. source = "registry+https://github.com/rust-lang/crates.io-index"
  1635. checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
  1636. [[package]]
  1637. name = "winapi"
  1638. version = "0.3.9"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1641. dependencies = [
  1642. "winapi-i686-pc-windows-gnu",
  1643. "winapi-x86_64-pc-windows-gnu",
  1644. ]
  1645. [[package]]
  1646. name = "winapi-i686-pc-windows-gnu"
  1647. version = "0.4.0"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1650. [[package]]
  1651. name = "winapi-util"
  1652. version = "0.1.5"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1655. dependencies = [
  1656. "winapi",
  1657. ]
  1658. [[package]]
  1659. name = "winapi-x86_64-pc-windows-gnu"
  1660. version = "0.4.0"
  1661. source = "registry+https://github.com/rust-lang/crates.io-index"
  1662. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1663. [[package]]
  1664. name = "windows-sys"
  1665. version = "0.36.1"
  1666. source = "registry+https://github.com/rust-lang/crates.io-index"
  1667. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  1668. dependencies = [
  1669. "windows_aarch64_msvc",
  1670. "windows_i686_gnu",
  1671. "windows_i686_msvc",
  1672. "windows_x86_64_gnu",
  1673. "windows_x86_64_msvc",
  1674. ]
  1675. [[package]]
  1676. name = "windows_aarch64_msvc"
  1677. version = "0.36.1"
  1678. source = "registry+https://github.com/rust-lang/crates.io-index"
  1679. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  1680. [[package]]
  1681. name = "windows_i686_gnu"
  1682. version = "0.36.1"
  1683. source = "registry+https://github.com/rust-lang/crates.io-index"
  1684. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  1685. [[package]]
  1686. name = "windows_i686_msvc"
  1687. version = "0.36.1"
  1688. source = "registry+https://github.com/rust-lang/crates.io-index"
  1689. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  1690. [[package]]
  1691. name = "windows_x86_64_gnu"
  1692. version = "0.36.1"
  1693. source = "registry+https://github.com/rust-lang/crates.io-index"
  1694. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  1695. [[package]]
  1696. name = "windows_x86_64_msvc"
  1697. version = "0.36.1"
  1698. source = "registry+https://github.com/rust-lang/crates.io-index"
  1699. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
  1700. [[package]]
  1701. name = "zstd"
  1702. version = "0.11.2+zstd.1.5.2"
  1703. source = "registry+https://github.com/rust-lang/crates.io-index"
  1704. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  1705. dependencies = [
  1706. "zstd-safe",
  1707. ]
  1708. [[package]]
  1709. name = "zstd-safe"
  1710. version = "5.0.2+zstd.1.5.2"
  1711. source = "registry+https://github.com/rust-lang/crates.io-index"
  1712. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  1713. dependencies = [
  1714. "libc",
  1715. "zstd-sys",
  1716. ]
  1717. [[package]]
  1718. name = "zstd-sys"
  1719. version = "2.0.1+zstd.1.5.2"
  1720. source = "registry+https://github.com/rust-lang/crates.io-index"
  1721. checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
  1722. dependencies = [
  1723. "cc",
  1724. "libc",
  1725. ]