Cargo.lock 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "adler"
  6. version = "1.0.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  9. [[package]]
  10. name = "adler32"
  11. version = "1.2.0"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
  14. [[package]]
  15. name = "aho-corasick"
  16. version = "0.7.18"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
  19. dependencies = [
  20. "memchr",
  21. ]
  22. [[package]]
  23. name = "anyhow"
  24. version = "1.0.43"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "28ae2b3dec75a406790005a200b1bd89785afc02517a00ca99ecfe093ee9e6cf"
  27. [[package]]
  28. name = "arrayref"
  29. version = "0.3.6"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
  32. [[package]]
  33. name = "arrayvec"
  34. version = "0.7.1"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "be4dc07131ffa69b8072d35f5007352af944213cde02545e2103680baed38fcd"
  37. [[package]]
  38. name = "atk"
  39. version = "0.14.0"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "a83b21d2aa75e464db56225e1bda2dd5993311ba1095acaa8fa03d1ae67026ba"
  42. dependencies = [
  43. "atk-sys",
  44. "bitflags",
  45. "glib",
  46. "libc",
  47. ]
  48. [[package]]
  49. name = "atk-sys"
  50. version = "0.14.0"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "badcf670157c84bb8b1cf6b5f70b650fed78da2033c9eed84c4e49b11cbe83ea"
  53. dependencies = [
  54. "glib-sys 0.14.0",
  55. "gobject-sys 0.14.0",
  56. "libc",
  57. "system-deps 3.2.0",
  58. ]
  59. [[package]]
  60. name = "attohttpc"
  61. version = "0.17.0"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "9a8bda305457262b339322106c776e3fd21df860018e566eb6a5b1aa4b6ae02d"
  64. dependencies = [
  65. "flate2",
  66. "http",
  67. "log",
  68. "native-tls",
  69. "openssl",
  70. "serde",
  71. "serde_json",
  72. "serde_urlencoded",
  73. "url",
  74. "wildmatch",
  75. ]
  76. [[package]]
  77. name = "autocfg"
  78. version = "1.0.1"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  81. [[package]]
  82. name = "bincode"
  83. version = "1.3.3"
  84. source = "registry+https://github.com/rust-lang/crates.io-index"
  85. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  86. dependencies = [
  87. "serde",
  88. ]
  89. [[package]]
  90. name = "bitflags"
  91. version = "1.3.2"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  94. [[package]]
  95. name = "blake3"
  96. version = "1.0.0"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "dcd555c66291d5f836dbb6883b48660ece810fe25a31f3bdfb911945dff2691f"
  99. dependencies = [
  100. "arrayref",
  101. "arrayvec",
  102. "cc",
  103. "cfg-if 1.0.0",
  104. "constant_time_eq",
  105. "digest",
  106. "rayon",
  107. ]
  108. [[package]]
  109. name = "block"
  110. version = "0.1.6"
  111. source = "registry+https://github.com/rust-lang/crates.io-index"
  112. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  113. [[package]]
  114. name = "bstr"
  115. version = "0.2.16"
  116. source = "registry+https://github.com/rust-lang/crates.io-index"
  117. checksum = "90682c8d613ad3373e66de8c6411e0ae2ab2571e879d2efbf73558cc66f21279"
  118. dependencies = [
  119. "memchr",
  120. ]
  121. [[package]]
  122. name = "bumpalo"
  123. version = "3.7.0"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
  126. [[package]]
  127. name = "byteorder"
  128. version = "1.4.3"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  131. [[package]]
  132. name = "bytes"
  133. version = "1.0.1"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
  136. [[package]]
  137. name = "bzip2"
  138. version = "0.4.3"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
  141. dependencies = [
  142. "bzip2-sys",
  143. "libc",
  144. ]
  145. [[package]]
  146. name = "bzip2-sys"
  147. version = "0.1.11+1.0.8"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  150. dependencies = [
  151. "cc",
  152. "libc",
  153. "pkg-config",
  154. ]
  155. [[package]]
  156. name = "cairo-rs"
  157. version = "0.14.1"
  158. source = "registry+https://github.com/rust-lang/crates.io-index"
  159. checksum = "a408c13bbc04c3337b94194c1a4d04067097439b79dbc1dcbceba299d828b9ea"
  160. dependencies = [
  161. "bitflags",
  162. "cairo-sys-rs",
  163. "glib",
  164. "libc",
  165. "thiserror",
  166. ]
  167. [[package]]
  168. name = "cairo-sys-rs"
  169. version = "0.14.0"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "d7c9c3928781e8a017ece15eace05230f04b647457d170d2d9641c94a444ff80"
  172. dependencies = [
  173. "glib-sys 0.14.0",
  174. "libc",
  175. "system-deps 3.2.0",
  176. ]
  177. [[package]]
  178. name = "cc"
  179. version = "1.0.69"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
  182. dependencies = [
  183. "jobserver",
  184. ]
  185. [[package]]
  186. name = "cfb"
  187. version = "0.4.0"
  188. source = "registry+https://github.com/rust-lang/crates.io-index"
  189. checksum = "ca453e8624711b2f0f4eb47076a318feda166252a827ee25d067b43de83dcba0"
  190. dependencies = [
  191. "byteorder",
  192. "uuid",
  193. ]
  194. [[package]]
  195. name = "cfg-expr"
  196. version = "0.8.1"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "b412e83326147c2bb881f8b40edfbf9905b9b8abaebd0e47ca190ba62fda8f0e"
  199. dependencies = [
  200. "smallvec",
  201. ]
  202. [[package]]
  203. name = "cfg-if"
  204. version = "0.1.10"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  207. [[package]]
  208. name = "cfg-if"
  209. version = "1.0.0"
  210. source = "registry+https://github.com/rust-lang/crates.io-index"
  211. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  212. [[package]]
  213. name = "cfg_aliases"
  214. version = "0.1.1"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
  217. [[package]]
  218. name = "cocoa"
  219. version = "0.24.0"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
  222. dependencies = [
  223. "bitflags",
  224. "block",
  225. "cocoa-foundation",
  226. "core-foundation 0.9.1",
  227. "core-graphics 0.22.2",
  228. "foreign-types",
  229. "libc",
  230. "objc",
  231. ]
  232. [[package]]
  233. name = "cocoa-foundation"
  234. version = "0.1.0"
  235. source = "registry+https://github.com/rust-lang/crates.io-index"
  236. checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
  237. dependencies = [
  238. "bitflags",
  239. "block",
  240. "core-foundation 0.9.1",
  241. "core-graphics-types",
  242. "foreign-types",
  243. "libc",
  244. "objc",
  245. ]
  246. [[package]]
  247. name = "com"
  248. version = "0.2.0"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "5a30a2b2a013da986dc5cc3eda3d19c0d59d53f835be1b2356eb8d00f000c793"
  251. dependencies = [
  252. "com_macros",
  253. ]
  254. [[package]]
  255. name = "com_macros"
  256. version = "0.2.0"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "7606b05842fea68ddcc89e8053b8860ebcb2a0ba8d6abfe3a148e5d5a8d3f0c1"
  259. dependencies = [
  260. "com_macros_support",
  261. "proc-macro2",
  262. "syn",
  263. ]
  264. [[package]]
  265. name = "com_macros_support"
  266. version = "0.2.0"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "97e9a6d20f4ac8830e309a455d7e9416e65c6af5a97c88c55fbb4c2012e107da"
  269. dependencies = [
  270. "proc-macro2",
  271. "quote",
  272. "syn",
  273. ]
  274. [[package]]
  275. name = "constant_time_eq"
  276. version = "0.1.5"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  279. [[package]]
  280. name = "convert_case"
  281. version = "0.4.0"
  282. source = "registry+https://github.com/rust-lang/crates.io-index"
  283. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  284. [[package]]
  285. name = "core-foundation"
  286. version = "0.7.0"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
  289. dependencies = [
  290. "core-foundation-sys 0.7.0",
  291. "libc",
  292. ]
  293. [[package]]
  294. name = "core-foundation"
  295. version = "0.9.1"
  296. source = "registry+https://github.com/rust-lang/crates.io-index"
  297. checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
  298. dependencies = [
  299. "core-foundation-sys 0.8.2",
  300. "libc",
  301. ]
  302. [[package]]
  303. name = "core-foundation-sys"
  304. version = "0.7.0"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
  307. [[package]]
  308. name = "core-foundation-sys"
  309. version = "0.8.2"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
  312. [[package]]
  313. name = "core-graphics"
  314. version = "0.19.2"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923"
  317. dependencies = [
  318. "bitflags",
  319. "core-foundation 0.7.0",
  320. "foreign-types",
  321. "libc",
  322. ]
  323. [[package]]
  324. name = "core-graphics"
  325. version = "0.22.2"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "269f35f69b542b80e736a20a89a05215c0ce80c2c03c514abb2e318b78379d86"
  328. dependencies = [
  329. "bitflags",
  330. "core-foundation 0.9.1",
  331. "core-graphics-types",
  332. "foreign-types",
  333. "libc",
  334. ]
  335. [[package]]
  336. name = "core-graphics-types"
  337. version = "0.1.1"
  338. source = "registry+https://github.com/rust-lang/crates.io-index"
  339. checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
  340. dependencies = [
  341. "bitflags",
  342. "core-foundation 0.9.1",
  343. "foreign-types",
  344. "libc",
  345. ]
  346. [[package]]
  347. name = "core-video-sys"
  348. version = "0.1.4"
  349. source = "registry+https://github.com/rust-lang/crates.io-index"
  350. checksum = "34ecad23610ad9757664d644e369246edde1803fcb43ed72876565098a5d3828"
  351. dependencies = [
  352. "cfg-if 0.1.10",
  353. "core-foundation-sys 0.7.0",
  354. "core-graphics 0.19.2",
  355. "libc",
  356. "objc",
  357. ]
  358. [[package]]
  359. name = "crc32fast"
  360. version = "1.2.1"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
  363. dependencies = [
  364. "cfg-if 1.0.0",
  365. ]
  366. [[package]]
  367. name = "crossbeam-channel"
  368. version = "0.5.1"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
  371. dependencies = [
  372. "cfg-if 1.0.0",
  373. "crossbeam-utils",
  374. ]
  375. [[package]]
  376. name = "crossbeam-deque"
  377. version = "0.8.1"
  378. source = "registry+https://github.com/rust-lang/crates.io-index"
  379. checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
  380. dependencies = [
  381. "cfg-if 1.0.0",
  382. "crossbeam-epoch",
  383. "crossbeam-utils",
  384. ]
  385. [[package]]
  386. name = "crossbeam-epoch"
  387. version = "0.9.5"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
  390. dependencies = [
  391. "cfg-if 1.0.0",
  392. "crossbeam-utils",
  393. "lazy_static",
  394. "memoffset",
  395. "scopeguard",
  396. ]
  397. [[package]]
  398. name = "crossbeam-utils"
  399. version = "0.8.5"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
  402. dependencies = [
  403. "cfg-if 1.0.0",
  404. "lazy_static",
  405. ]
  406. [[package]]
  407. name = "cssparser"
  408. version = "0.27.2"
  409. source = "registry+https://github.com/rust-lang/crates.io-index"
  410. checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
  411. dependencies = [
  412. "cssparser-macros",
  413. "dtoa-short",
  414. "itoa",
  415. "matches",
  416. "phf 0.8.0",
  417. "proc-macro2",
  418. "quote",
  419. "smallvec",
  420. "syn",
  421. ]
  422. [[package]]
  423. name = "cssparser-macros"
  424. version = "0.6.0"
  425. source = "registry+https://github.com/rust-lang/crates.io-index"
  426. checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
  427. dependencies = [
  428. "quote",
  429. "syn",
  430. ]
  431. [[package]]
  432. name = "darling"
  433. version = "0.10.2"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
  436. dependencies = [
  437. "darling_core",
  438. "darling_macro",
  439. ]
  440. [[package]]
  441. name = "darling_core"
  442. version = "0.10.2"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
  445. dependencies = [
  446. "fnv",
  447. "ident_case",
  448. "proc-macro2",
  449. "quote",
  450. "strsim",
  451. "syn",
  452. ]
  453. [[package]]
  454. name = "darling_macro"
  455. version = "0.10.2"
  456. source = "registry+https://github.com/rust-lang/crates.io-index"
  457. checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
  458. dependencies = [
  459. "darling_core",
  460. "quote",
  461. "syn",
  462. ]
  463. [[package]]
  464. name = "deflate"
  465. version = "0.7.20"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4"
  468. dependencies = [
  469. "adler32",
  470. "byteorder",
  471. ]
  472. [[package]]
  473. name = "deflate"
  474. version = "0.8.6"
  475. source = "registry+https://github.com/rust-lang/crates.io-index"
  476. checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
  477. dependencies = [
  478. "adler32",
  479. "byteorder",
  480. ]
  481. [[package]]
  482. name = "derivative"
  483. version = "2.2.0"
  484. source = "registry+https://github.com/rust-lang/crates.io-index"
  485. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  486. dependencies = [
  487. "proc-macro2",
  488. "quote",
  489. "syn",
  490. ]
  491. [[package]]
  492. name = "derive_more"
  493. version = "0.99.16"
  494. source = "registry+https://github.com/rust-lang/crates.io-index"
  495. checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
  496. dependencies = [
  497. "convert_case",
  498. "proc-macro2",
  499. "quote",
  500. "rustc_version",
  501. "syn",
  502. ]
  503. [[package]]
  504. name = "digest"
  505. version = "0.9.0"
  506. source = "registry+https://github.com/rust-lang/crates.io-index"
  507. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  508. dependencies = [
  509. "generic-array",
  510. ]
  511. [[package]]
  512. name = "dirs-next"
  513. version = "2.0.0"
  514. source = "registry+https://github.com/rust-lang/crates.io-index"
  515. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  516. dependencies = [
  517. "cfg-if 1.0.0",
  518. "dirs-sys-next",
  519. ]
  520. [[package]]
  521. name = "dirs-sys-next"
  522. version = "0.1.2"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  525. dependencies = [
  526. "libc",
  527. "redox_users",
  528. "winapi",
  529. ]
  530. [[package]]
  531. name = "dispatch"
  532. version = "0.2.0"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  535. [[package]]
  536. name = "dtoa"
  537. version = "0.4.8"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
  540. [[package]]
  541. name = "dtoa-short"
  542. version = "0.3.3"
  543. source = "registry+https://github.com/rust-lang/crates.io-index"
  544. checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
  545. dependencies = [
  546. "dtoa",
  547. ]
  548. [[package]]
  549. name = "either"
  550. version = "1.6.1"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  553. [[package]]
  554. name = "embed_plist"
  555. version = "1.2.0"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "53dd2e43a7d32952a6054141ee0d75183958620e84e5eab045de362dff13dc99"
  558. [[package]]
  559. name = "fastrand"
  560. version = "1.5.0"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "b394ed3d285a429378d3b384b9eb1285267e7df4b166df24b7a6939a04dc392e"
  563. dependencies = [
  564. "instant",
  565. ]
  566. [[package]]
  567. name = "field-offset"
  568. version = "0.3.4"
  569. source = "registry+https://github.com/rust-lang/crates.io-index"
  570. checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
  571. dependencies = [
  572. "memoffset",
  573. "rustc_version",
  574. ]
  575. [[package]]
  576. name = "filetime"
  577. version = "0.2.15"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
  580. dependencies = [
  581. "cfg-if 1.0.0",
  582. "libc",
  583. "redox_syscall",
  584. "winapi",
  585. ]
  586. [[package]]
  587. name = "flate2"
  588. version = "1.0.20"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
  591. dependencies = [
  592. "cfg-if 1.0.0",
  593. "crc32fast",
  594. "libc",
  595. "miniz_oxide 0.4.4",
  596. ]
  597. [[package]]
  598. name = "fnv"
  599. version = "1.0.7"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  602. [[package]]
  603. name = "foreign-types"
  604. version = "0.3.2"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  607. dependencies = [
  608. "foreign-types-shared",
  609. ]
  610. [[package]]
  611. name = "foreign-types-shared"
  612. version = "0.1.1"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  615. [[package]]
  616. name = "form_urlencoded"
  617. version = "1.0.1"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  620. dependencies = [
  621. "matches",
  622. "percent-encoding",
  623. ]
  624. [[package]]
  625. name = "futf"
  626. version = "0.1.4"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
  629. dependencies = [
  630. "mac",
  631. "new_debug_unreachable",
  632. ]
  633. [[package]]
  634. name = "futures"
  635. version = "0.3.16"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
  638. dependencies = [
  639. "futures-channel",
  640. "futures-core",
  641. "futures-executor",
  642. "futures-io",
  643. "futures-sink",
  644. "futures-task",
  645. "futures-util",
  646. ]
  647. [[package]]
  648. name = "futures-channel"
  649. version = "0.3.16"
  650. source = "registry+https://github.com/rust-lang/crates.io-index"
  651. checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
  652. dependencies = [
  653. "futures-core",
  654. "futures-sink",
  655. ]
  656. [[package]]
  657. name = "futures-core"
  658. version = "0.3.16"
  659. source = "registry+https://github.com/rust-lang/crates.io-index"
  660. checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
  661. [[package]]
  662. name = "futures-executor"
  663. version = "0.3.16"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
  666. dependencies = [
  667. "futures-core",
  668. "futures-task",
  669. "futures-util",
  670. ]
  671. [[package]]
  672. name = "futures-io"
  673. version = "0.3.16"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
  676. [[package]]
  677. name = "futures-lite"
  678. version = "1.12.0"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
  681. dependencies = [
  682. "fastrand",
  683. "futures-core",
  684. "futures-io",
  685. "memchr",
  686. "parking",
  687. "pin-project-lite",
  688. "waker-fn",
  689. ]
  690. [[package]]
  691. name = "futures-macro"
  692. version = "0.3.16"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
  695. dependencies = [
  696. "autocfg",
  697. "proc-macro-hack",
  698. "proc-macro2",
  699. "quote",
  700. "syn",
  701. ]
  702. [[package]]
  703. name = "futures-sink"
  704. version = "0.3.16"
  705. source = "registry+https://github.com/rust-lang/crates.io-index"
  706. checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
  707. [[package]]
  708. name = "futures-task"
  709. version = "0.3.16"
  710. source = "registry+https://github.com/rust-lang/crates.io-index"
  711. checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
  712. [[package]]
  713. name = "futures-util"
  714. version = "0.3.16"
  715. source = "registry+https://github.com/rust-lang/crates.io-index"
  716. checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
  717. dependencies = [
  718. "autocfg",
  719. "futures-channel",
  720. "futures-core",
  721. "futures-io",
  722. "futures-macro",
  723. "futures-sink",
  724. "futures-task",
  725. "memchr",
  726. "pin-project-lite",
  727. "pin-utils",
  728. "proc-macro-hack",
  729. "proc-macro-nested",
  730. "slab",
  731. ]
  732. [[package]]
  733. name = "fxhash"
  734. version = "0.2.1"
  735. source = "registry+https://github.com/rust-lang/crates.io-index"
  736. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  737. dependencies = [
  738. "byteorder",
  739. ]
  740. [[package]]
  741. name = "gdk"
  742. version = "0.14.0"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "679e22651cd15888e7acd01767950edca2ee9fcd6421fbf5b3c3b420d4e88bb0"
  745. dependencies = [
  746. "bitflags",
  747. "cairo-rs",
  748. "gdk-pixbuf",
  749. "gdk-sys",
  750. "gio",
  751. "glib",
  752. "libc",
  753. "pango",
  754. ]
  755. [[package]]
  756. name = "gdk-pixbuf"
  757. version = "0.14.0"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "534192cb8f01daeb8fab2c8d4baa8f9aae5b7a39130525779f5c2608e235b10f"
  760. dependencies = [
  761. "gdk-pixbuf-sys",
  762. "gio",
  763. "glib",
  764. "libc",
  765. ]
  766. [[package]]
  767. name = "gdk-pixbuf-sys"
  768. version = "0.14.0"
  769. source = "registry+https://github.com/rust-lang/crates.io-index"
  770. checksum = "f097c0704201fbc8f69c1762dc58c6947c8bb188b8ed0bc7e65259f1894fe590"
  771. dependencies = [
  772. "gio-sys 0.14.0",
  773. "glib-sys 0.14.0",
  774. "gobject-sys 0.14.0",
  775. "libc",
  776. "system-deps 3.2.0",
  777. ]
  778. [[package]]
  779. name = "gdk-sys"
  780. version = "0.14.0"
  781. source = "registry+https://github.com/rust-lang/crates.io-index"
  782. checksum = "0e091b3d3d6696949ac3b3fb3c62090e5bfd7bd6850bef5c3c5ea701de1b1f1e"
  783. dependencies = [
  784. "cairo-sys-rs",
  785. "gdk-pixbuf-sys",
  786. "gio-sys 0.14.0",
  787. "glib-sys 0.14.0",
  788. "gobject-sys 0.14.0",
  789. "libc",
  790. "pango-sys",
  791. "pkg-config",
  792. "system-deps 3.2.0",
  793. ]
  794. [[package]]
  795. name = "generator"
  796. version = "0.7.0"
  797. source = "registry+https://github.com/rust-lang/crates.io-index"
  798. checksum = "c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee"
  799. dependencies = [
  800. "cc",
  801. "libc",
  802. "log",
  803. "rustversion",
  804. "winapi",
  805. ]
  806. [[package]]
  807. name = "generic-array"
  808. version = "0.14.4"
  809. source = "registry+https://github.com/rust-lang/crates.io-index"
  810. checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
  811. dependencies = [
  812. "typenum",
  813. "version_check",
  814. ]
  815. [[package]]
  816. name = "getrandom"
  817. version = "0.1.16"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  820. dependencies = [
  821. "cfg-if 1.0.0",
  822. "libc",
  823. "wasi 0.9.0+wasi-snapshot-preview1",
  824. ]
  825. [[package]]
  826. name = "getrandom"
  827. version = "0.2.3"
  828. source = "registry+https://github.com/rust-lang/crates.io-index"
  829. checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
  830. dependencies = [
  831. "cfg-if 1.0.0",
  832. "libc",
  833. "wasi 0.10.2+wasi-snapshot-preview1",
  834. ]
  835. [[package]]
  836. name = "gio"
  837. version = "0.14.0"
  838. source = "registry+https://github.com/rust-lang/crates.io-index"
  839. checksum = "86c6823b39d46d22cac2466de261f28d7f049ebc18f7b35296a42c7ed8a88325"
  840. dependencies = [
  841. "bitflags",
  842. "futures-channel",
  843. "futures-core",
  844. "futures-io",
  845. "gio-sys 0.14.0",
  846. "glib",
  847. "libc",
  848. "once_cell",
  849. "thiserror",
  850. ]
  851. [[package]]
  852. name = "gio-sys"
  853. version = "0.10.1"
  854. source = "registry+https://github.com/rust-lang/crates.io-index"
  855. checksum = "5e24fb752f8f5d2cf6bbc2c606fd2bc989c81c5e2fe321ab974d54f8b6344eac"
  856. dependencies = [
  857. "glib-sys 0.10.1",
  858. "gobject-sys 0.10.0",
  859. "libc",
  860. "system-deps 1.3.2",
  861. "winapi",
  862. ]
  863. [[package]]
  864. name = "gio-sys"
  865. version = "0.14.0"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "c0a41df66e57fcc287c4bcf74fc26b884f31901ea9792ec75607289b456f48fa"
  868. dependencies = [
  869. "glib-sys 0.14.0",
  870. "gobject-sys 0.14.0",
  871. "libc",
  872. "system-deps 3.2.0",
  873. "winapi",
  874. ]
  875. [[package]]
  876. name = "glib"
  877. version = "0.14.2"
  878. source = "registry+https://github.com/rust-lang/crates.io-index"
  879. checksum = "dbecad7a3a898ee749d491ce2ae0decb0bce9e736f9747bc49159b1cea5d37f4"
  880. dependencies = [
  881. "bitflags",
  882. "futures-channel",
  883. "futures-core",
  884. "futures-executor",
  885. "futures-task",
  886. "glib-macros",
  887. "glib-sys 0.14.0",
  888. "gobject-sys 0.14.0",
  889. "libc",
  890. "once_cell",
  891. "smallvec",
  892. ]
  893. [[package]]
  894. name = "glib-macros"
  895. version = "0.14.1"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "2aad66361f66796bfc73f530c51ef123970eb895ffba991a234fcf7bea89e518"
  898. dependencies = [
  899. "anyhow",
  900. "heck",
  901. "proc-macro-crate 1.0.0",
  902. "proc-macro-error",
  903. "proc-macro2",
  904. "quote",
  905. "syn",
  906. ]
  907. [[package]]
  908. name = "glib-sys"
  909. version = "0.10.1"
  910. source = "registry+https://github.com/rust-lang/crates.io-index"
  911. checksum = "c7e9b997a66e9a23d073f2b1abb4dbfc3925e0b8952f67efd8d9b6e168e4cdc1"
  912. dependencies = [
  913. "libc",
  914. "system-deps 1.3.2",
  915. ]
  916. [[package]]
  917. name = "glib-sys"
  918. version = "0.14.0"
  919. source = "registry+https://github.com/rust-lang/crates.io-index"
  920. checksum = "1c1d60554a212445e2a858e42a0e48cece1bd57b311a19a9468f70376cf554ae"
  921. dependencies = [
  922. "libc",
  923. "system-deps 3.2.0",
  924. ]
  925. [[package]]
  926. name = "globset"
  927. version = "0.4.8"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "10463d9ff00a2a068db14231982f5132edebad0d7660cd956a1c30292dbcbfbd"
  930. dependencies = [
  931. "aho-corasick",
  932. "bstr",
  933. "fnv",
  934. "log",
  935. "regex",
  936. ]
  937. [[package]]
  938. name = "gobject-sys"
  939. version = "0.10.0"
  940. source = "registry+https://github.com/rust-lang/crates.io-index"
  941. checksum = "952133b60c318a62bf82ee75b93acc7e84028a093e06b9e27981c2b6fe68218c"
  942. dependencies = [
  943. "glib-sys 0.10.1",
  944. "libc",
  945. "system-deps 1.3.2",
  946. ]
  947. [[package]]
  948. name = "gobject-sys"
  949. version = "0.14.0"
  950. source = "registry+https://github.com/rust-lang/crates.io-index"
  951. checksum = "aa92cae29759dae34ab5921d73fff5ad54b3d794ab842c117e36cafc7994c3f5"
  952. dependencies = [
  953. "glib-sys 0.14.0",
  954. "libc",
  955. "system-deps 3.2.0",
  956. ]
  957. [[package]]
  958. name = "gtk"
  959. version = "0.14.0"
  960. source = "registry+https://github.com/rust-lang/crates.io-index"
  961. checksum = "10ae864e5eab8bc8b6b8544ed259eb02dd61b25323b20e777a77aa289c05fd0c"
  962. dependencies = [
  963. "atk",
  964. "bitflags",
  965. "cairo-rs",
  966. "field-offset",
  967. "futures-channel",
  968. "gdk",
  969. "gdk-pixbuf",
  970. "gio",
  971. "glib",
  972. "gtk-sys",
  973. "gtk3-macros",
  974. "libc",
  975. "once_cell",
  976. "pango",
  977. "pkg-config",
  978. ]
  979. [[package]]
  980. name = "gtk-sys"
  981. version = "0.14.0"
  982. source = "registry+https://github.com/rust-lang/crates.io-index"
  983. checksum = "8c14c8d3da0545785a7c5a120345b3abb534010fb8ae0f2ef3f47c027fba303e"
  984. dependencies = [
  985. "atk-sys",
  986. "cairo-sys-rs",
  987. "gdk-pixbuf-sys",
  988. "gdk-sys",
  989. "gio-sys 0.14.0",
  990. "glib-sys 0.14.0",
  991. "gobject-sys 0.14.0",
  992. "libc",
  993. "pango-sys",
  994. "system-deps 3.2.0",
  995. ]
  996. [[package]]
  997. name = "gtk3-macros"
  998. version = "0.14.0"
  999. source = "registry+https://github.com/rust-lang/crates.io-index"
  1000. checksum = "21de1da96dc117443fb03c2e270b2d34b7de98d0a79a19bbb689476173745b79"
  1001. dependencies = [
  1002. "anyhow",
  1003. "heck",
  1004. "proc-macro-crate 1.0.0",
  1005. "proc-macro-error",
  1006. "proc-macro2",
  1007. "quote",
  1008. "syn",
  1009. ]
  1010. [[package]]
  1011. name = "heck"
  1012. version = "0.3.3"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1015. dependencies = [
  1016. "unicode-segmentation",
  1017. ]
  1018. [[package]]
  1019. name = "hermit-abi"
  1020. version = "0.1.19"
  1021. source = "registry+https://github.com/rust-lang/crates.io-index"
  1022. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  1023. dependencies = [
  1024. "libc",
  1025. ]
  1026. [[package]]
  1027. name = "html5ever"
  1028. version = "0.25.1"
  1029. source = "registry+https://github.com/rust-lang/crates.io-index"
  1030. checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b"
  1031. dependencies = [
  1032. "log",
  1033. "mac",
  1034. "markup5ever",
  1035. "proc-macro2",
  1036. "quote",
  1037. "syn",
  1038. ]
  1039. [[package]]
  1040. name = "http"
  1041. version = "0.2.4"
  1042. source = "registry+https://github.com/rust-lang/crates.io-index"
  1043. checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
  1044. dependencies = [
  1045. "bytes",
  1046. "fnv",
  1047. "itoa",
  1048. ]
  1049. [[package]]
  1050. name = "http-range"
  1051. version = "0.1.4"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "eee9694f83d9b7c09682fdb32213682939507884e5bcf227be9aff5d644b90dc"
  1054. [[package]]
  1055. name = "ico"
  1056. version = "0.1.0"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "6a4b3331534254a9b64095ae60d3dc2a8225a7a70229cd5888be127cdc1f6804"
  1059. dependencies = [
  1060. "byteorder",
  1061. "png 0.11.0",
  1062. ]
  1063. [[package]]
  1064. name = "ident_case"
  1065. version = "1.0.1"
  1066. source = "registry+https://github.com/rust-lang/crates.io-index"
  1067. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  1068. [[package]]
  1069. name = "idna"
  1070. version = "0.2.3"
  1071. source = "registry+https://github.com/rust-lang/crates.io-index"
  1072. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  1073. dependencies = [
  1074. "matches",
  1075. "unicode-bidi",
  1076. "unicode-normalization",
  1077. ]
  1078. [[package]]
  1079. name = "ignore"
  1080. version = "0.4.18"
  1081. source = "registry+https://github.com/rust-lang/crates.io-index"
  1082. checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d"
  1083. dependencies = [
  1084. "crossbeam-utils",
  1085. "globset",
  1086. "lazy_static",
  1087. "log",
  1088. "memchr",
  1089. "regex",
  1090. "same-file",
  1091. "thread_local",
  1092. "walkdir",
  1093. "winapi-util",
  1094. ]
  1095. [[package]]
  1096. name = "infer"
  1097. version = "0.4.0"
  1098. source = "registry+https://github.com/rust-lang/crates.io-index"
  1099. checksum = "f92b41dab759f9e8427c03f519c344a14655490b8db548dac1e57a75b3258391"
  1100. dependencies = [
  1101. "cfb",
  1102. ]
  1103. [[package]]
  1104. name = "inflate"
  1105. version = "0.3.4"
  1106. source = "registry+https://github.com/rust-lang/crates.io-index"
  1107. checksum = "f5f9f47468e9a76a6452271efadc88fe865a82be91fe75e6c0c57b87ccea59d4"
  1108. dependencies = [
  1109. "adler32",
  1110. ]
  1111. [[package]]
  1112. name = "instant"
  1113. version = "0.1.10"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
  1116. dependencies = [
  1117. "cfg-if 1.0.0",
  1118. ]
  1119. [[package]]
  1120. name = "itertools"
  1121. version = "0.10.1"
  1122. source = "registry+https://github.com/rust-lang/crates.io-index"
  1123. checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
  1124. dependencies = [
  1125. "either",
  1126. ]
  1127. [[package]]
  1128. name = "itoa"
  1129. version = "0.4.7"
  1130. source = "registry+https://github.com/rust-lang/crates.io-index"
  1131. checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
  1132. [[package]]
  1133. name = "javascriptcore-rs"
  1134. version = "0.14.0"
  1135. source = "registry+https://github.com/rust-lang/crates.io-index"
  1136. checksum = "5ca9c7d1445bba2889672fbadc16c3d5007bfdcf0a15a18a3a50fe9fab2c7427"
  1137. dependencies = [
  1138. "glib",
  1139. "javascriptcore-rs-sys",
  1140. ]
  1141. [[package]]
  1142. name = "javascriptcore-rs-sys"
  1143. version = "0.2.0"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. checksum = "3f46ada8a08dcd75a10afae872fbfb51275df4a8ae0d46b8cc7c708f08dd2998"
  1146. dependencies = [
  1147. "libc",
  1148. ]
  1149. [[package]]
  1150. name = "jni-sys"
  1151. version = "0.3.0"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  1154. [[package]]
  1155. name = "jobserver"
  1156. version = "0.1.24"
  1157. source = "registry+https://github.com/rust-lang/crates.io-index"
  1158. checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
  1159. dependencies = [
  1160. "libc",
  1161. ]
  1162. [[package]]
  1163. name = "js-sys"
  1164. version = "0.3.53"
  1165. source = "registry+https://github.com/rust-lang/crates.io-index"
  1166. checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
  1167. dependencies = [
  1168. "wasm-bindgen",
  1169. ]
  1170. [[package]]
  1171. name = "kuchiki"
  1172. version = "0.8.1"
  1173. source = "registry+https://github.com/rust-lang/crates.io-index"
  1174. checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
  1175. dependencies = [
  1176. "cssparser",
  1177. "html5ever",
  1178. "matches",
  1179. "selectors",
  1180. ]
  1181. [[package]]
  1182. name = "lazy_static"
  1183. version = "1.4.0"
  1184. source = "registry+https://github.com/rust-lang/crates.io-index"
  1185. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  1186. [[package]]
  1187. name = "libc"
  1188. version = "0.2.99"
  1189. source = "registry+https://github.com/rust-lang/crates.io-index"
  1190. checksum = "a7f823d141fe0a24df1e23b4af4e3c7ba9e5966ec514ea068c93024aa7deb765"
  1191. [[package]]
  1192. name = "lock_api"
  1193. version = "0.4.4"
  1194. source = "registry+https://github.com/rust-lang/crates.io-index"
  1195. checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
  1196. dependencies = [
  1197. "scopeguard",
  1198. ]
  1199. [[package]]
  1200. name = "log"
  1201. version = "0.4.14"
  1202. source = "registry+https://github.com/rust-lang/crates.io-index"
  1203. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  1204. dependencies = [
  1205. "cfg-if 1.0.0",
  1206. ]
  1207. [[package]]
  1208. name = "loom"
  1209. version = "0.5.1"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "2111607c723d7857e0d8299d5ce7a0bf4b844d3e44f8de136b13da513eaf8fc4"
  1212. dependencies = [
  1213. "cfg-if 1.0.0",
  1214. "generator",
  1215. "scoped-tls",
  1216. "serde",
  1217. "serde_json",
  1218. ]
  1219. [[package]]
  1220. name = "mac"
  1221. version = "0.1.1"
  1222. source = "registry+https://github.com/rust-lang/crates.io-index"
  1223. checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
  1224. [[package]]
  1225. name = "malloc_buf"
  1226. version = "0.0.6"
  1227. source = "registry+https://github.com/rust-lang/crates.io-index"
  1228. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  1229. dependencies = [
  1230. "libc",
  1231. ]
  1232. [[package]]
  1233. name = "markup5ever"
  1234. version = "0.10.1"
  1235. source = "registry+https://github.com/rust-lang/crates.io-index"
  1236. checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
  1237. dependencies = [
  1238. "log",
  1239. "phf 0.8.0",
  1240. "phf_codegen",
  1241. "string_cache",
  1242. "string_cache_codegen",
  1243. "tendril",
  1244. ]
  1245. [[package]]
  1246. name = "matches"
  1247. version = "0.1.9"
  1248. source = "registry+https://github.com/rust-lang/crates.io-index"
  1249. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  1250. [[package]]
  1251. name = "maybe-uninit"
  1252. version = "2.0.0"
  1253. source = "registry+https://github.com/rust-lang/crates.io-index"
  1254. checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
  1255. [[package]]
  1256. name = "memchr"
  1257. version = "2.4.1"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
  1260. [[package]]
  1261. name = "memoffset"
  1262. version = "0.6.4"
  1263. source = "registry+https://github.com/rust-lang/crates.io-index"
  1264. checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
  1265. dependencies = [
  1266. "autocfg",
  1267. ]
  1268. [[package]]
  1269. name = "miniz_oxide"
  1270. version = "0.3.7"
  1271. source = "registry+https://github.com/rust-lang/crates.io-index"
  1272. checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
  1273. dependencies = [
  1274. "adler32",
  1275. ]
  1276. [[package]]
  1277. name = "miniz_oxide"
  1278. version = "0.4.4"
  1279. source = "registry+https://github.com/rust-lang/crates.io-index"
  1280. checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
  1281. dependencies = [
  1282. "adler",
  1283. "autocfg",
  1284. ]
  1285. [[package]]
  1286. name = "native-tls"
  1287. version = "0.2.8"
  1288. source = "registry+https://github.com/rust-lang/crates.io-index"
  1289. checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
  1290. dependencies = [
  1291. "lazy_static",
  1292. "libc",
  1293. "log",
  1294. "openssl",
  1295. "openssl-probe",
  1296. "openssl-sys",
  1297. "schannel",
  1298. "security-framework",
  1299. "security-framework-sys",
  1300. "tempfile",
  1301. ]
  1302. [[package]]
  1303. name = "ndk"
  1304. version = "0.4.0"
  1305. source = "registry+https://github.com/rust-lang/crates.io-index"
  1306. checksum = "d64d6af06fde0e527b1ba5c7b79a6cc89cfc46325b0b2887dffe8f70197e0c3c"
  1307. dependencies = [
  1308. "bitflags",
  1309. "jni-sys",
  1310. "ndk-sys",
  1311. "num_enum",
  1312. "thiserror",
  1313. ]
  1314. [[package]]
  1315. name = "ndk-glue"
  1316. version = "0.4.0"
  1317. source = "registry+https://github.com/rust-lang/crates.io-index"
  1318. checksum = "d3e9e94628f24e7a3cb5b96a2dc5683acd9230bf11991c2a1677b87695138420"
  1319. dependencies = [
  1320. "lazy_static",
  1321. "libc",
  1322. "log",
  1323. "ndk",
  1324. "ndk-macro",
  1325. "ndk-sys",
  1326. ]
  1327. [[package]]
  1328. name = "ndk-macro"
  1329. version = "0.2.0"
  1330. source = "registry+https://github.com/rust-lang/crates.io-index"
  1331. checksum = "05d1c6307dc424d0f65b9b06e94f88248e6305726b14729fd67a5e47b2dc481d"
  1332. dependencies = [
  1333. "darling",
  1334. "proc-macro-crate 0.1.5",
  1335. "proc-macro2",
  1336. "quote",
  1337. "syn",
  1338. ]
  1339. [[package]]
  1340. name = "ndk-sys"
  1341. version = "0.2.1"
  1342. source = "registry+https://github.com/rust-lang/crates.io-index"
  1343. checksum = "c44922cb3dbb1c70b5e5f443d63b64363a898564d739ba5198e3a9138442868d"
  1344. [[package]]
  1345. name = "new_debug_unreachable"
  1346. version = "1.0.4"
  1347. source = "registry+https://github.com/rust-lang/crates.io-index"
  1348. checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
  1349. [[package]]
  1350. name = "nodrop"
  1351. version = "0.1.14"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
  1354. [[package]]
  1355. name = "num-integer"
  1356. version = "0.1.44"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  1359. dependencies = [
  1360. "autocfg",
  1361. "num-traits",
  1362. ]
  1363. [[package]]
  1364. name = "num-iter"
  1365. version = "0.1.42"
  1366. source = "registry+https://github.com/rust-lang/crates.io-index"
  1367. checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
  1368. dependencies = [
  1369. "autocfg",
  1370. "num-integer",
  1371. "num-traits",
  1372. ]
  1373. [[package]]
  1374. name = "num-traits"
  1375. version = "0.2.14"
  1376. source = "registry+https://github.com/rust-lang/crates.io-index"
  1377. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  1378. dependencies = [
  1379. "autocfg",
  1380. ]
  1381. [[package]]
  1382. name = "num_cpus"
  1383. version = "1.13.0"
  1384. source = "registry+https://github.com/rust-lang/crates.io-index"
  1385. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  1386. dependencies = [
  1387. "hermit-abi",
  1388. "libc",
  1389. ]
  1390. [[package]]
  1391. name = "num_enum"
  1392. version = "0.5.4"
  1393. source = "registry+https://github.com/rust-lang/crates.io-index"
  1394. checksum = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f"
  1395. dependencies = [
  1396. "derivative",
  1397. "num_enum_derive",
  1398. ]
  1399. [[package]]
  1400. name = "num_enum_derive"
  1401. version = "0.5.4"
  1402. source = "registry+https://github.com/rust-lang/crates.io-index"
  1403. checksum = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9"
  1404. dependencies = [
  1405. "proc-macro-crate 1.0.0",
  1406. "proc-macro2",
  1407. "quote",
  1408. "syn",
  1409. ]
  1410. [[package]]
  1411. name = "objc"
  1412. version = "0.2.7"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  1415. dependencies = [
  1416. "malloc_buf",
  1417. ]
  1418. [[package]]
  1419. name = "objc-foundation"
  1420. version = "0.1.1"
  1421. source = "registry+https://github.com/rust-lang/crates.io-index"
  1422. checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
  1423. dependencies = [
  1424. "block",
  1425. "objc",
  1426. "objc_id",
  1427. ]
  1428. [[package]]
  1429. name = "objc_id"
  1430. version = "0.1.1"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
  1433. dependencies = [
  1434. "objc",
  1435. ]
  1436. [[package]]
  1437. name = "once_cell"
  1438. version = "1.8.0"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
  1441. [[package]]
  1442. name = "openssl"
  1443. version = "0.10.36"
  1444. source = "registry+https://github.com/rust-lang/crates.io-index"
  1445. checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a"
  1446. dependencies = [
  1447. "bitflags",
  1448. "cfg-if 1.0.0",
  1449. "foreign-types",
  1450. "libc",
  1451. "once_cell",
  1452. "openssl-sys",
  1453. ]
  1454. [[package]]
  1455. name = "openssl-probe"
  1456. version = "0.1.4"
  1457. source = "registry+https://github.com/rust-lang/crates.io-index"
  1458. checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
  1459. [[package]]
  1460. name = "openssl-sys"
  1461. version = "0.9.66"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "1996d2d305e561b70d1ee0c53f1542833f4e1ac6ce9a6708b6ff2738ca67dc82"
  1464. dependencies = [
  1465. "autocfg",
  1466. "cc",
  1467. "libc",
  1468. "pkg-config",
  1469. "vcpkg",
  1470. ]
  1471. [[package]]
  1472. name = "pango"
  1473. version = "0.14.0"
  1474. source = "registry+https://github.com/rust-lang/crates.io-index"
  1475. checksum = "415823a4fb9f1789785cd6e2d2413816f2ecff92380382969aaca9c400e13a19"
  1476. dependencies = [
  1477. "bitflags",
  1478. "glib",
  1479. "libc",
  1480. "once_cell",
  1481. "pango-sys",
  1482. ]
  1483. [[package]]
  1484. name = "pango-sys"
  1485. version = "0.14.0"
  1486. source = "registry+https://github.com/rust-lang/crates.io-index"
  1487. checksum = "2367099ca5e761546ba1d501955079f097caa186bb53ce0f718dca99ac1942fe"
  1488. dependencies = [
  1489. "glib-sys 0.14.0",
  1490. "gobject-sys 0.14.0",
  1491. "libc",
  1492. "system-deps 3.2.0",
  1493. ]
  1494. [[package]]
  1495. name = "parking"
  1496. version = "2.0.0"
  1497. source = "registry+https://github.com/rust-lang/crates.io-index"
  1498. checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
  1499. [[package]]
  1500. name = "parking_lot"
  1501. version = "0.11.1"
  1502. source = "registry+https://github.com/rust-lang/crates.io-index"
  1503. checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
  1504. dependencies = [
  1505. "instant",
  1506. "lock_api",
  1507. "parking_lot_core",
  1508. ]
  1509. [[package]]
  1510. name = "parking_lot_core"
  1511. version = "0.8.3"
  1512. source = "registry+https://github.com/rust-lang/crates.io-index"
  1513. checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
  1514. dependencies = [
  1515. "cfg-if 1.0.0",
  1516. "instant",
  1517. "libc",
  1518. "redox_syscall",
  1519. "smallvec",
  1520. "winapi",
  1521. ]
  1522. [[package]]
  1523. name = "percent-encoding"
  1524. version = "2.1.0"
  1525. source = "registry+https://github.com/rust-lang/crates.io-index"
  1526. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  1527. [[package]]
  1528. name = "pest"
  1529. version = "2.1.3"
  1530. source = "registry+https://github.com/rust-lang/crates.io-index"
  1531. checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
  1532. dependencies = [
  1533. "ucd-trie",
  1534. ]
  1535. [[package]]
  1536. name = "phf"
  1537. version = "0.8.0"
  1538. source = "registry+https://github.com/rust-lang/crates.io-index"
  1539. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  1540. dependencies = [
  1541. "phf_macros 0.8.0",
  1542. "phf_shared 0.8.0",
  1543. "proc-macro-hack",
  1544. ]
  1545. [[package]]
  1546. name = "phf"
  1547. version = "0.10.0"
  1548. source = "registry+https://github.com/rust-lang/crates.io-index"
  1549. checksum = "b9fc3db1018c4b59d7d582a739436478b6035138b6aecbce989fc91c3e98409f"
  1550. dependencies = [
  1551. "phf_macros 0.10.0",
  1552. "phf_shared 0.10.0",
  1553. "proc-macro-hack",
  1554. ]
  1555. [[package]]
  1556. name = "phf_codegen"
  1557. version = "0.8.0"
  1558. source = "registry+https://github.com/rust-lang/crates.io-index"
  1559. checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
  1560. dependencies = [
  1561. "phf_generator 0.8.0",
  1562. "phf_shared 0.8.0",
  1563. ]
  1564. [[package]]
  1565. name = "phf_generator"
  1566. version = "0.8.0"
  1567. source = "registry+https://github.com/rust-lang/crates.io-index"
  1568. checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
  1569. dependencies = [
  1570. "phf_shared 0.8.0",
  1571. "rand 0.7.3",
  1572. ]
  1573. [[package]]
  1574. name = "phf_generator"
  1575. version = "0.10.0"
  1576. source = "registry+https://github.com/rust-lang/crates.io-index"
  1577. checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
  1578. dependencies = [
  1579. "phf_shared 0.10.0",
  1580. "rand 0.8.4",
  1581. ]
  1582. [[package]]
  1583. name = "phf_macros"
  1584. version = "0.8.0"
  1585. source = "registry+https://github.com/rust-lang/crates.io-index"
  1586. checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
  1587. dependencies = [
  1588. "phf_generator 0.8.0",
  1589. "phf_shared 0.8.0",
  1590. "proc-macro-hack",
  1591. "proc-macro2",
  1592. "quote",
  1593. "syn",
  1594. ]
  1595. [[package]]
  1596. name = "phf_macros"
  1597. version = "0.10.0"
  1598. source = "registry+https://github.com/rust-lang/crates.io-index"
  1599. checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
  1600. dependencies = [
  1601. "phf_generator 0.10.0",
  1602. "phf_shared 0.10.0",
  1603. "proc-macro-hack",
  1604. "proc-macro2",
  1605. "quote",
  1606. "syn",
  1607. ]
  1608. [[package]]
  1609. name = "phf_shared"
  1610. version = "0.8.0"
  1611. source = "registry+https://github.com/rust-lang/crates.io-index"
  1612. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  1613. dependencies = [
  1614. "siphasher",
  1615. ]
  1616. [[package]]
  1617. name = "phf_shared"
  1618. version = "0.10.0"
  1619. source = "registry+https://github.com/rust-lang/crates.io-index"
  1620. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  1621. dependencies = [
  1622. "siphasher",
  1623. ]
  1624. [[package]]
  1625. name = "pin-project-lite"
  1626. version = "0.2.7"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
  1629. [[package]]
  1630. name = "pin-utils"
  1631. version = "0.1.0"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1634. [[package]]
  1635. name = "pkg-config"
  1636. version = "0.3.19"
  1637. source = "registry+https://github.com/rust-lang/crates.io-index"
  1638. checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
  1639. [[package]]
  1640. name = "png"
  1641. version = "0.11.0"
  1642. source = "registry+https://github.com/rust-lang/crates.io-index"
  1643. checksum = "f0b0cabbbd20c2d7f06dbf015e06aad59b6ca3d9ed14848783e98af9aaf19925"
  1644. dependencies = [
  1645. "bitflags",
  1646. "deflate 0.7.20",
  1647. "inflate",
  1648. "num-iter",
  1649. ]
  1650. [[package]]
  1651. name = "png"
  1652. version = "0.16.8"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
  1655. dependencies = [
  1656. "bitflags",
  1657. "crc32fast",
  1658. "deflate 0.8.6",
  1659. "miniz_oxide 0.3.7",
  1660. ]
  1661. [[package]]
  1662. name = "ppv-lite86"
  1663. version = "0.2.10"
  1664. source = "registry+https://github.com/rust-lang/crates.io-index"
  1665. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  1666. [[package]]
  1667. name = "precomputed-hash"
  1668. version = "0.1.1"
  1669. source = "registry+https://github.com/rust-lang/crates.io-index"
  1670. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  1671. [[package]]
  1672. name = "proc-macro-crate"
  1673. version = "0.1.5"
  1674. source = "registry+https://github.com/rust-lang/crates.io-index"
  1675. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  1676. dependencies = [
  1677. "toml",
  1678. ]
  1679. [[package]]
  1680. name = "proc-macro-crate"
  1681. version = "1.0.0"
  1682. source = "registry+https://github.com/rust-lang/crates.io-index"
  1683. checksum = "41fdbd1df62156fbc5945f4762632564d7d038153091c3fcf1067f6aef7cff92"
  1684. dependencies = [
  1685. "thiserror",
  1686. "toml",
  1687. ]
  1688. [[package]]
  1689. name = "proc-macro-error"
  1690. version = "1.0.4"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  1693. dependencies = [
  1694. "proc-macro-error-attr",
  1695. "proc-macro2",
  1696. "quote",
  1697. "syn",
  1698. "version_check",
  1699. ]
  1700. [[package]]
  1701. name = "proc-macro-error-attr"
  1702. version = "1.0.4"
  1703. source = "registry+https://github.com/rust-lang/crates.io-index"
  1704. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  1705. dependencies = [
  1706. "proc-macro2",
  1707. "quote",
  1708. "version_check",
  1709. ]
  1710. [[package]]
  1711. name = "proc-macro-hack"
  1712. version = "0.5.19"
  1713. source = "registry+https://github.com/rust-lang/crates.io-index"
  1714. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  1715. [[package]]
  1716. name = "proc-macro-nested"
  1717. version = "0.1.7"
  1718. source = "registry+https://github.com/rust-lang/crates.io-index"
  1719. checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
  1720. [[package]]
  1721. name = "proc-macro2"
  1722. version = "1.0.28"
  1723. source = "registry+https://github.com/rust-lang/crates.io-index"
  1724. checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
  1725. dependencies = [
  1726. "unicode-xid",
  1727. ]
  1728. [[package]]
  1729. name = "quote"
  1730. version = "1.0.9"
  1731. source = "registry+https://github.com/rust-lang/crates.io-index"
  1732. checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
  1733. dependencies = [
  1734. "proc-macro2",
  1735. ]
  1736. [[package]]
  1737. name = "rand"
  1738. version = "0.7.3"
  1739. source = "registry+https://github.com/rust-lang/crates.io-index"
  1740. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  1741. dependencies = [
  1742. "getrandom 0.1.16",
  1743. "libc",
  1744. "rand_chacha 0.2.2",
  1745. "rand_core 0.5.1",
  1746. "rand_hc 0.2.0",
  1747. "rand_pcg",
  1748. ]
  1749. [[package]]
  1750. name = "rand"
  1751. version = "0.8.4"
  1752. source = "registry+https://github.com/rust-lang/crates.io-index"
  1753. checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
  1754. dependencies = [
  1755. "libc",
  1756. "rand_chacha 0.3.1",
  1757. "rand_core 0.6.3",
  1758. "rand_hc 0.3.1",
  1759. ]
  1760. [[package]]
  1761. name = "rand_chacha"
  1762. version = "0.2.2"
  1763. source = "registry+https://github.com/rust-lang/crates.io-index"
  1764. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  1765. dependencies = [
  1766. "ppv-lite86",
  1767. "rand_core 0.5.1",
  1768. ]
  1769. [[package]]
  1770. name = "rand_chacha"
  1771. version = "0.3.1"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  1774. dependencies = [
  1775. "ppv-lite86",
  1776. "rand_core 0.6.3",
  1777. ]
  1778. [[package]]
  1779. name = "rand_core"
  1780. version = "0.5.1"
  1781. source = "registry+https://github.com/rust-lang/crates.io-index"
  1782. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  1783. dependencies = [
  1784. "getrandom 0.1.16",
  1785. ]
  1786. [[package]]
  1787. name = "rand_core"
  1788. version = "0.6.3"
  1789. source = "registry+https://github.com/rust-lang/crates.io-index"
  1790. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  1791. dependencies = [
  1792. "getrandom 0.2.3",
  1793. ]
  1794. [[package]]
  1795. name = "rand_hc"
  1796. version = "0.2.0"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  1799. dependencies = [
  1800. "rand_core 0.5.1",
  1801. ]
  1802. [[package]]
  1803. name = "rand_hc"
  1804. version = "0.3.1"
  1805. source = "registry+https://github.com/rust-lang/crates.io-index"
  1806. checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
  1807. dependencies = [
  1808. "rand_core 0.6.3",
  1809. ]
  1810. [[package]]
  1811. name = "rand_pcg"
  1812. version = "0.2.1"
  1813. source = "registry+https://github.com/rust-lang/crates.io-index"
  1814. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  1815. dependencies = [
  1816. "rand_core 0.5.1",
  1817. ]
  1818. [[package]]
  1819. name = "raw-window-handle"
  1820. version = "0.3.3"
  1821. source = "registry+https://github.com/rust-lang/crates.io-index"
  1822. checksum = "0a441a7a6c80ad6473bd4b74ec1c9a4c951794285bf941c2126f607c72e48211"
  1823. dependencies = [
  1824. "libc",
  1825. ]
  1826. [[package]]
  1827. name = "rayon"
  1828. version = "1.5.1"
  1829. source = "registry+https://github.com/rust-lang/crates.io-index"
  1830. checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
  1831. dependencies = [
  1832. "autocfg",
  1833. "crossbeam-deque",
  1834. "either",
  1835. "rayon-core",
  1836. ]
  1837. [[package]]
  1838. name = "rayon-core"
  1839. version = "1.9.1"
  1840. source = "registry+https://github.com/rust-lang/crates.io-index"
  1841. checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
  1842. dependencies = [
  1843. "crossbeam-channel",
  1844. "crossbeam-deque",
  1845. "crossbeam-utils",
  1846. "lazy_static",
  1847. "num_cpus",
  1848. ]
  1849. [[package]]
  1850. name = "redox_syscall"
  1851. version = "0.2.10"
  1852. source = "registry+https://github.com/rust-lang/crates.io-index"
  1853. checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
  1854. dependencies = [
  1855. "bitflags",
  1856. ]
  1857. [[package]]
  1858. name = "redox_users"
  1859. version = "0.4.0"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
  1862. dependencies = [
  1863. "getrandom 0.2.3",
  1864. "redox_syscall",
  1865. ]
  1866. [[package]]
  1867. name = "regex"
  1868. version = "1.5.4"
  1869. source = "registry+https://github.com/rust-lang/crates.io-index"
  1870. checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
  1871. dependencies = [
  1872. "aho-corasick",
  1873. "memchr",
  1874. "regex-syntax",
  1875. ]
  1876. [[package]]
  1877. name = "regex-syntax"
  1878. version = "0.6.25"
  1879. source = "registry+https://github.com/rust-lang/crates.io-index"
  1880. checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
  1881. [[package]]
  1882. name = "remove_dir_all"
  1883. version = "0.5.3"
  1884. source = "registry+https://github.com/rust-lang/crates.io-index"
  1885. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  1886. dependencies = [
  1887. "winapi",
  1888. ]
  1889. [[package]]
  1890. name = "rfd"
  1891. version = "0.4.3"
  1892. source = "registry+https://github.com/rust-lang/crates.io-index"
  1893. checksum = "cede43618603a102f37bb58244534a33de7daa6a3b77f00277675eef5f8174fe"
  1894. dependencies = [
  1895. "block",
  1896. "dispatch",
  1897. "glib-sys 0.14.0",
  1898. "gobject-sys 0.14.0",
  1899. "gtk-sys",
  1900. "js-sys",
  1901. "lazy_static",
  1902. "objc",
  1903. "objc-foundation",
  1904. "objc_id",
  1905. "raw-window-handle",
  1906. "wasm-bindgen",
  1907. "wasm-bindgen-futures",
  1908. "web-sys",
  1909. "winapi",
  1910. ]
  1911. [[package]]
  1912. name = "rustc_version"
  1913. version = "0.3.3"
  1914. source = "registry+https://github.com/rust-lang/crates.io-index"
  1915. checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
  1916. dependencies = [
  1917. "semver 0.11.0",
  1918. ]
  1919. [[package]]
  1920. name = "rustversion"
  1921. version = "1.0.5"
  1922. source = "registry+https://github.com/rust-lang/crates.io-index"
  1923. checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
  1924. [[package]]
  1925. name = "ryu"
  1926. version = "1.0.5"
  1927. source = "registry+https://github.com/rust-lang/crates.io-index"
  1928. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  1929. [[package]]
  1930. name = "same-file"
  1931. version = "1.0.6"
  1932. source = "registry+https://github.com/rust-lang/crates.io-index"
  1933. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1934. dependencies = [
  1935. "winapi-util",
  1936. ]
  1937. [[package]]
  1938. name = "schannel"
  1939. version = "0.1.19"
  1940. source = "registry+https://github.com/rust-lang/crates.io-index"
  1941. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  1942. dependencies = [
  1943. "lazy_static",
  1944. "winapi",
  1945. ]
  1946. [[package]]
  1947. name = "scoped-tls"
  1948. version = "1.0.0"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
  1951. [[package]]
  1952. name = "scopeguard"
  1953. version = "1.1.0"
  1954. source = "registry+https://github.com/rust-lang/crates.io-index"
  1955. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1956. [[package]]
  1957. name = "security-framework"
  1958. version = "2.3.1"
  1959. source = "registry+https://github.com/rust-lang/crates.io-index"
  1960. checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
  1961. dependencies = [
  1962. "bitflags",
  1963. "core-foundation 0.9.1",
  1964. "core-foundation-sys 0.8.2",
  1965. "libc",
  1966. "security-framework-sys",
  1967. ]
  1968. [[package]]
  1969. name = "security-framework-sys"
  1970. version = "2.3.0"
  1971. source = "registry+https://github.com/rust-lang/crates.io-index"
  1972. checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284"
  1973. dependencies = [
  1974. "core-foundation-sys 0.8.2",
  1975. "libc",
  1976. ]
  1977. [[package]]
  1978. name = "selectors"
  1979. version = "0.22.0"
  1980. source = "registry+https://github.com/rust-lang/crates.io-index"
  1981. checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
  1982. dependencies = [
  1983. "bitflags",
  1984. "cssparser",
  1985. "derive_more",
  1986. "fxhash",
  1987. "log",
  1988. "matches",
  1989. "phf 0.8.0",
  1990. "phf_codegen",
  1991. "precomputed-hash",
  1992. "servo_arc",
  1993. "smallvec",
  1994. "thin-slice",
  1995. ]
  1996. [[package]]
  1997. name = "semver"
  1998. version = "0.11.0"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
  2001. dependencies = [
  2002. "semver-parser",
  2003. ]
  2004. [[package]]
  2005. name = "semver"
  2006. version = "1.0.4"
  2007. source = "registry+https://github.com/rust-lang/crates.io-index"
  2008. checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
  2009. [[package]]
  2010. name = "semver-parser"
  2011. version = "0.10.2"
  2012. source = "registry+https://github.com/rust-lang/crates.io-index"
  2013. checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
  2014. dependencies = [
  2015. "pest",
  2016. ]
  2017. [[package]]
  2018. name = "serde"
  2019. version = "1.0.127"
  2020. source = "registry+https://github.com/rust-lang/crates.io-index"
  2021. checksum = "f03b9878abf6d14e6779d3f24f07b2cfa90352cfec4acc5aab8f1ac7f146fae8"
  2022. dependencies = [
  2023. "serde_derive",
  2024. ]
  2025. [[package]]
  2026. name = "serde_derive"
  2027. version = "1.0.127"
  2028. source = "registry+https://github.com/rust-lang/crates.io-index"
  2029. checksum = "a024926d3432516606328597e0f224a51355a493b49fdd67e9209187cbe55ecc"
  2030. dependencies = [
  2031. "proc-macro2",
  2032. "quote",
  2033. "syn",
  2034. ]
  2035. [[package]]
  2036. name = "serde_json"
  2037. version = "1.0.66"
  2038. source = "registry+https://github.com/rust-lang/crates.io-index"
  2039. checksum = "336b10da19a12ad094b59d870ebde26a45402e5b470add4b5fd03c5048a32127"
  2040. dependencies = [
  2041. "itoa",
  2042. "ryu",
  2043. "serde",
  2044. ]
  2045. [[package]]
  2046. name = "serde_repr"
  2047. version = "0.1.7"
  2048. source = "registry+https://github.com/rust-lang/crates.io-index"
  2049. checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5"
  2050. dependencies = [
  2051. "proc-macro2",
  2052. "quote",
  2053. "syn",
  2054. ]
  2055. [[package]]
  2056. name = "serde_urlencoded"
  2057. version = "0.6.1"
  2058. source = "registry+https://github.com/rust-lang/crates.io-index"
  2059. checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
  2060. dependencies = [
  2061. "dtoa",
  2062. "itoa",
  2063. "serde",
  2064. "url",
  2065. ]
  2066. [[package]]
  2067. name = "servo_arc"
  2068. version = "0.1.1"
  2069. source = "registry+https://github.com/rust-lang/crates.io-index"
  2070. checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
  2071. dependencies = [
  2072. "nodrop",
  2073. "stable_deref_trait",
  2074. ]
  2075. [[package]]
  2076. name = "siphasher"
  2077. version = "0.3.6"
  2078. source = "registry+https://github.com/rust-lang/crates.io-index"
  2079. checksum = "729a25c17d72b06c68cb47955d44fda88ad2d3e7d77e025663fdd69b93dd71a1"
  2080. [[package]]
  2081. name = "slab"
  2082. version = "0.4.4"
  2083. source = "registry+https://github.com/rust-lang/crates.io-index"
  2084. checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
  2085. [[package]]
  2086. name = "smallvec"
  2087. version = "1.6.1"
  2088. source = "registry+https://github.com/rust-lang/crates.io-index"
  2089. checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
  2090. [[package]]
  2091. name = "soup-sys"
  2092. version = "0.10.0"
  2093. source = "registry+https://github.com/rust-lang/crates.io-index"
  2094. checksum = "c3c7adf08565630bbb71f955f11f8a68464817ded2703a3549747c235b58a13e"
  2095. dependencies = [
  2096. "bitflags",
  2097. "gio-sys 0.10.1",
  2098. "glib-sys 0.10.1",
  2099. "gobject-sys 0.10.0",
  2100. "libc",
  2101. "pkg-config",
  2102. "system-deps 1.3.2",
  2103. ]
  2104. [[package]]
  2105. name = "stable_deref_trait"
  2106. version = "1.2.0"
  2107. source = "registry+https://github.com/rust-lang/crates.io-index"
  2108. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  2109. [[package]]
  2110. name = "state"
  2111. version = "0.5.2"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "87cf4f5369e6d3044b5e365c9690f451516ac8f0954084622b49ea3fde2f6de5"
  2114. dependencies = [
  2115. "loom",
  2116. ]
  2117. [[package]]
  2118. name = "streaming"
  2119. version = "0.1.0"
  2120. dependencies = [
  2121. "serde",
  2122. "serde_json",
  2123. "tauri",
  2124. "tauri-build",
  2125. ]
  2126. [[package]]
  2127. name = "string_cache"
  2128. version = "0.8.1"
  2129. source = "registry+https://github.com/rust-lang/crates.io-index"
  2130. checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a"
  2131. dependencies = [
  2132. "lazy_static",
  2133. "new_debug_unreachable",
  2134. "phf_shared 0.8.0",
  2135. "precomputed-hash",
  2136. "serde",
  2137. ]
  2138. [[package]]
  2139. name = "string_cache_codegen"
  2140. version = "0.5.1"
  2141. source = "registry+https://github.com/rust-lang/crates.io-index"
  2142. checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
  2143. dependencies = [
  2144. "phf_generator 0.8.0",
  2145. "phf_shared 0.8.0",
  2146. "proc-macro2",
  2147. "quote",
  2148. ]
  2149. [[package]]
  2150. name = "strsim"
  2151. version = "0.9.3"
  2152. source = "registry+https://github.com/rust-lang/crates.io-index"
  2153. checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
  2154. [[package]]
  2155. name = "strum"
  2156. version = "0.18.0"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "57bd81eb48f4c437cadc685403cad539345bf703d78e63707418431cecd4522b"
  2159. [[package]]
  2160. name = "strum"
  2161. version = "0.21.0"
  2162. source = "registry+https://github.com/rust-lang/crates.io-index"
  2163. checksum = "aaf86bbcfd1fa9670b7a129f64fc0c9fcbbfe4f1bc4210e9e98fe71ffc12cde2"
  2164. [[package]]
  2165. name = "strum_macros"
  2166. version = "0.18.0"
  2167. source = "registry+https://github.com/rust-lang/crates.io-index"
  2168. checksum = "87c85aa3f8ea653bfd3ddf25f7ee357ee4d204731f6aa9ad04002306f6e2774c"
  2169. dependencies = [
  2170. "heck",
  2171. "proc-macro2",
  2172. "quote",
  2173. "syn",
  2174. ]
  2175. [[package]]
  2176. name = "strum_macros"
  2177. version = "0.21.1"
  2178. source = "registry+https://github.com/rust-lang/crates.io-index"
  2179. checksum = "d06aaeeee809dbc59eb4556183dd927df67db1540de5be8d3ec0b6636358a5ec"
  2180. dependencies = [
  2181. "heck",
  2182. "proc-macro2",
  2183. "quote",
  2184. "syn",
  2185. ]
  2186. [[package]]
  2187. name = "syn"
  2188. version = "1.0.74"
  2189. source = "registry+https://github.com/rust-lang/crates.io-index"
  2190. checksum = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c"
  2191. dependencies = [
  2192. "proc-macro2",
  2193. "quote",
  2194. "unicode-xid",
  2195. ]
  2196. [[package]]
  2197. name = "system-deps"
  2198. version = "1.3.2"
  2199. source = "registry+https://github.com/rust-lang/crates.io-index"
  2200. checksum = "0f3ecc17269a19353b3558b313bba738b25d82993e30d62a18406a24aba4649b"
  2201. dependencies = [
  2202. "heck",
  2203. "pkg-config",
  2204. "strum 0.18.0",
  2205. "strum_macros 0.18.0",
  2206. "thiserror",
  2207. "toml",
  2208. "version-compare 0.0.10",
  2209. ]
  2210. [[package]]
  2211. name = "system-deps"
  2212. version = "3.2.0"
  2213. source = "registry+https://github.com/rust-lang/crates.io-index"
  2214. checksum = "480c269f870722b3b08d2f13053ce0c2ab722839f472863c3e2d61ff3a1c2fa6"
  2215. dependencies = [
  2216. "anyhow",
  2217. "cfg-expr",
  2218. "heck",
  2219. "itertools",
  2220. "pkg-config",
  2221. "strum 0.21.0",
  2222. "strum_macros 0.21.1",
  2223. "thiserror",
  2224. "toml",
  2225. "version-compare 0.0.11",
  2226. ]
  2227. [[package]]
  2228. name = "tao"
  2229. version = "0.5.2"
  2230. source = "registry+https://github.com/rust-lang/crates.io-index"
  2231. checksum = "1aa57de7c282b68f8906278543a724ed8f5a2568f069dd0cc05fc10d1f07036b"
  2232. dependencies = [
  2233. "bitflags",
  2234. "cairo-rs",
  2235. "cc",
  2236. "cocoa",
  2237. "core-foundation 0.9.1",
  2238. "core-graphics 0.22.2",
  2239. "core-video-sys",
  2240. "crossbeam-channel",
  2241. "dispatch",
  2242. "gdk",
  2243. "gdk-pixbuf",
  2244. "gdk-sys",
  2245. "gio",
  2246. "glib",
  2247. "glib-sys 0.14.0",
  2248. "gtk",
  2249. "instant",
  2250. "lazy_static",
  2251. "libc",
  2252. "log",
  2253. "ndk",
  2254. "ndk-glue",
  2255. "ndk-sys",
  2256. "objc",
  2257. "parking_lot",
  2258. "raw-window-handle",
  2259. "scopeguard",
  2260. "serde",
  2261. "unicode-segmentation",
  2262. "winapi",
  2263. "x11-dl",
  2264. ]
  2265. [[package]]
  2266. name = "tar"
  2267. version = "0.4.37"
  2268. source = "registry+https://github.com/rust-lang/crates.io-index"
  2269. checksum = "d6f5515d3add52e0bbdcad7b83c388bb36ba7b754dda3b5f5bc2d38640cdba5c"
  2270. dependencies = [
  2271. "filetime",
  2272. "libc",
  2273. "xattr",
  2274. ]
  2275. [[package]]
  2276. name = "tauri"
  2277. version = "1.0.0-beta.7"
  2278. dependencies = [
  2279. "attohttpc",
  2280. "bincode",
  2281. "cfg_aliases",
  2282. "dirs-next",
  2283. "either",
  2284. "embed_plist",
  2285. "flate2",
  2286. "futures",
  2287. "futures-lite",
  2288. "glib",
  2289. "gtk",
  2290. "http",
  2291. "http-range",
  2292. "ignore",
  2293. "once_cell",
  2294. "percent-encoding",
  2295. "rand 0.8.4",
  2296. "raw-window-handle",
  2297. "rfd",
  2298. "semver 1.0.4",
  2299. "serde",
  2300. "serde_json",
  2301. "serde_repr",
  2302. "state",
  2303. "tar",
  2304. "tauri-macros",
  2305. "tauri-runtime",
  2306. "tauri-runtime-wry",
  2307. "tauri-utils",
  2308. "tempfile",
  2309. "thiserror",
  2310. "tokio",
  2311. "url",
  2312. "uuid",
  2313. "zip",
  2314. ]
  2315. [[package]]
  2316. name = "tauri-build"
  2317. version = "1.0.0-beta.4"
  2318. dependencies = [
  2319. "anyhow",
  2320. "proc-macro2",
  2321. "quote",
  2322. "serde_json",
  2323. "tauri-codegen",
  2324. "tauri-utils",
  2325. "winres",
  2326. ]
  2327. [[package]]
  2328. name = "tauri-codegen"
  2329. version = "1.0.0-beta.4"
  2330. dependencies = [
  2331. "blake3",
  2332. "kuchiki",
  2333. "proc-macro2",
  2334. "quote",
  2335. "regex",
  2336. "serde",
  2337. "serde_json",
  2338. "tauri-utils",
  2339. "thiserror",
  2340. "walkdir",
  2341. "zstd",
  2342. ]
  2343. [[package]]
  2344. name = "tauri-macros"
  2345. version = "1.0.0-beta.5"
  2346. dependencies = [
  2347. "proc-macro2",
  2348. "quote",
  2349. "syn",
  2350. "tauri-codegen",
  2351. ]
  2352. [[package]]
  2353. name = "tauri-runtime"
  2354. version = "0.2.0"
  2355. dependencies = [
  2356. "gtk",
  2357. "http",
  2358. "infer",
  2359. "serde",
  2360. "serde_json",
  2361. "tauri-utils",
  2362. "thiserror",
  2363. "uuid",
  2364. "winapi",
  2365. ]
  2366. [[package]]
  2367. name = "tauri-runtime-wry"
  2368. version = "0.2.0"
  2369. dependencies = [
  2370. "gtk",
  2371. "ico",
  2372. "infer",
  2373. "png 0.16.8",
  2374. "tauri-runtime",
  2375. "tauri-utils",
  2376. "uuid",
  2377. "winapi",
  2378. "wry",
  2379. ]
  2380. [[package]]
  2381. name = "tauri-utils"
  2382. version = "1.0.0-beta.3"
  2383. dependencies = [
  2384. "html5ever",
  2385. "kuchiki",
  2386. "phf 0.10.0",
  2387. "proc-macro2",
  2388. "quote",
  2389. "serde",
  2390. "serde_json",
  2391. "thiserror",
  2392. "url",
  2393. "zstd",
  2394. ]
  2395. [[package]]
  2396. name = "tempfile"
  2397. version = "3.2.0"
  2398. source = "registry+https://github.com/rust-lang/crates.io-index"
  2399. checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
  2400. dependencies = [
  2401. "cfg-if 1.0.0",
  2402. "libc",
  2403. "rand 0.8.4",
  2404. "redox_syscall",
  2405. "remove_dir_all",
  2406. "winapi",
  2407. ]
  2408. [[package]]
  2409. name = "tendril"
  2410. version = "0.4.2"
  2411. source = "registry+https://github.com/rust-lang/crates.io-index"
  2412. checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
  2413. dependencies = [
  2414. "futf",
  2415. "mac",
  2416. "utf-8",
  2417. ]
  2418. [[package]]
  2419. name = "thin-slice"
  2420. version = "0.1.1"
  2421. source = "registry+https://github.com/rust-lang/crates.io-index"
  2422. checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
  2423. [[package]]
  2424. name = "thiserror"
  2425. version = "1.0.26"
  2426. source = "registry+https://github.com/rust-lang/crates.io-index"
  2427. checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2"
  2428. dependencies = [
  2429. "thiserror-impl",
  2430. ]
  2431. [[package]]
  2432. name = "thiserror-impl"
  2433. version = "1.0.26"
  2434. source = "registry+https://github.com/rust-lang/crates.io-index"
  2435. checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745"
  2436. dependencies = [
  2437. "proc-macro2",
  2438. "quote",
  2439. "syn",
  2440. ]
  2441. [[package]]
  2442. name = "thread_local"
  2443. version = "1.1.3"
  2444. source = "registry+https://github.com/rust-lang/crates.io-index"
  2445. checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
  2446. dependencies = [
  2447. "once_cell",
  2448. ]
  2449. [[package]]
  2450. name = "time"
  2451. version = "0.1.43"
  2452. source = "registry+https://github.com/rust-lang/crates.io-index"
  2453. checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
  2454. dependencies = [
  2455. "libc",
  2456. "winapi",
  2457. ]
  2458. [[package]]
  2459. name = "tinyvec"
  2460. version = "1.3.1"
  2461. source = "registry+https://github.com/rust-lang/crates.io-index"
  2462. checksum = "848a1e1181b9f6753b5e96a092749e29b11d19ede67dfbbd6c7dc7e0f49b5338"
  2463. dependencies = [
  2464. "tinyvec_macros",
  2465. ]
  2466. [[package]]
  2467. name = "tinyvec_macros"
  2468. version = "0.1.0"
  2469. source = "registry+https://github.com/rust-lang/crates.io-index"
  2470. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  2471. [[package]]
  2472. name = "tokio"
  2473. version = "1.10.0"
  2474. source = "registry+https://github.com/rust-lang/crates.io-index"
  2475. checksum = "01cf844b23c6131f624accf65ce0e4e9956a8bb329400ea5bcc26ae3a5c20b0b"
  2476. dependencies = [
  2477. "autocfg",
  2478. "bytes",
  2479. "memchr",
  2480. "num_cpus",
  2481. "pin-project-lite",
  2482. ]
  2483. [[package]]
  2484. name = "toml"
  2485. version = "0.5.8"
  2486. source = "registry+https://github.com/rust-lang/crates.io-index"
  2487. checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
  2488. dependencies = [
  2489. "serde",
  2490. ]
  2491. [[package]]
  2492. name = "typenum"
  2493. version = "1.13.0"
  2494. source = "registry+https://github.com/rust-lang/crates.io-index"
  2495. checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
  2496. [[package]]
  2497. name = "ucd-trie"
  2498. version = "0.1.3"
  2499. source = "registry+https://github.com/rust-lang/crates.io-index"
  2500. checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
  2501. [[package]]
  2502. name = "unicode-bidi"
  2503. version = "0.3.6"
  2504. source = "registry+https://github.com/rust-lang/crates.io-index"
  2505. checksum = "246f4c42e67e7a4e3c6106ff716a5d067d4132a642840b242e357e468a2a0085"
  2506. [[package]]
  2507. name = "unicode-normalization"
  2508. version = "0.1.19"
  2509. source = "registry+https://github.com/rust-lang/crates.io-index"
  2510. checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
  2511. dependencies = [
  2512. "tinyvec",
  2513. ]
  2514. [[package]]
  2515. name = "unicode-segmentation"
  2516. version = "1.8.0"
  2517. source = "registry+https://github.com/rust-lang/crates.io-index"
  2518. checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
  2519. [[package]]
  2520. name = "unicode-xid"
  2521. version = "0.2.2"
  2522. source = "registry+https://github.com/rust-lang/crates.io-index"
  2523. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  2524. [[package]]
  2525. name = "url"
  2526. version = "2.2.2"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
  2529. dependencies = [
  2530. "form_urlencoded",
  2531. "idna",
  2532. "matches",
  2533. "percent-encoding",
  2534. "serde",
  2535. ]
  2536. [[package]]
  2537. name = "utf-8"
  2538. version = "0.7.6"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  2541. [[package]]
  2542. name = "uuid"
  2543. version = "0.8.2"
  2544. source = "registry+https://github.com/rust-lang/crates.io-index"
  2545. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  2546. dependencies = [
  2547. "getrandom 0.2.3",
  2548. ]
  2549. [[package]]
  2550. name = "vcpkg"
  2551. version = "0.2.15"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  2554. [[package]]
  2555. name = "version-compare"
  2556. version = "0.0.10"
  2557. source = "registry+https://github.com/rust-lang/crates.io-index"
  2558. checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1"
  2559. [[package]]
  2560. name = "version-compare"
  2561. version = "0.0.11"
  2562. source = "registry+https://github.com/rust-lang/crates.io-index"
  2563. checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
  2564. [[package]]
  2565. name = "version_check"
  2566. version = "0.9.3"
  2567. source = "registry+https://github.com/rust-lang/crates.io-index"
  2568. checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
  2569. [[package]]
  2570. name = "waker-fn"
  2571. version = "1.1.0"
  2572. source = "registry+https://github.com/rust-lang/crates.io-index"
  2573. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  2574. [[package]]
  2575. name = "walkdir"
  2576. version = "2.3.2"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  2579. dependencies = [
  2580. "same-file",
  2581. "winapi",
  2582. "winapi-util",
  2583. ]
  2584. [[package]]
  2585. name = "wasi"
  2586. version = "0.9.0+wasi-snapshot-preview1"
  2587. source = "registry+https://github.com/rust-lang/crates.io-index"
  2588. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  2589. [[package]]
  2590. name = "wasi"
  2591. version = "0.10.2+wasi-snapshot-preview1"
  2592. source = "registry+https://github.com/rust-lang/crates.io-index"
  2593. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
  2594. [[package]]
  2595. name = "wasm-bindgen"
  2596. version = "0.2.76"
  2597. source = "registry+https://github.com/rust-lang/crates.io-index"
  2598. checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
  2599. dependencies = [
  2600. "cfg-if 1.0.0",
  2601. "wasm-bindgen-macro",
  2602. ]
  2603. [[package]]
  2604. name = "wasm-bindgen-backend"
  2605. version = "0.2.76"
  2606. source = "registry+https://github.com/rust-lang/crates.io-index"
  2607. checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
  2608. dependencies = [
  2609. "bumpalo",
  2610. "lazy_static",
  2611. "log",
  2612. "proc-macro2",
  2613. "quote",
  2614. "syn",
  2615. "wasm-bindgen-shared",
  2616. ]
  2617. [[package]]
  2618. name = "wasm-bindgen-futures"
  2619. version = "0.4.26"
  2620. source = "registry+https://github.com/rust-lang/crates.io-index"
  2621. checksum = "95fded345a6559c2cfee778d562300c581f7d4ff3edb9b0d230d69800d213972"
  2622. dependencies = [
  2623. "cfg-if 1.0.0",
  2624. "js-sys",
  2625. "wasm-bindgen",
  2626. "web-sys",
  2627. ]
  2628. [[package]]
  2629. name = "wasm-bindgen-macro"
  2630. version = "0.2.76"
  2631. source = "registry+https://github.com/rust-lang/crates.io-index"
  2632. checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
  2633. dependencies = [
  2634. "quote",
  2635. "wasm-bindgen-macro-support",
  2636. ]
  2637. [[package]]
  2638. name = "wasm-bindgen-macro-support"
  2639. version = "0.2.76"
  2640. source = "registry+https://github.com/rust-lang/crates.io-index"
  2641. checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
  2642. dependencies = [
  2643. "proc-macro2",
  2644. "quote",
  2645. "syn",
  2646. "wasm-bindgen-backend",
  2647. "wasm-bindgen-shared",
  2648. ]
  2649. [[package]]
  2650. name = "wasm-bindgen-shared"
  2651. version = "0.2.76"
  2652. source = "registry+https://github.com/rust-lang/crates.io-index"
  2653. checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
  2654. [[package]]
  2655. name = "web-sys"
  2656. version = "0.3.53"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "224b2f6b67919060055ef1a67807367c2066ed520c3862cc013d26cf893a783c"
  2659. dependencies = [
  2660. "js-sys",
  2661. "wasm-bindgen",
  2662. ]
  2663. [[package]]
  2664. name = "webkit2gtk"
  2665. version = "0.14.0"
  2666. source = "registry+https://github.com/rust-lang/crates.io-index"
  2667. checksum = "e3e47b7f870883fc21612d2a51b74262f7f2cc5371f1621370817292a35300a9"
  2668. dependencies = [
  2669. "bitflags",
  2670. "cairo-rs",
  2671. "gdk",
  2672. "gdk-sys",
  2673. "gio",
  2674. "gio-sys 0.14.0",
  2675. "glib",
  2676. "glib-sys 0.14.0",
  2677. "gobject-sys 0.14.0",
  2678. "gtk",
  2679. "gtk-sys",
  2680. "javascriptcore-rs",
  2681. "libc",
  2682. "once_cell",
  2683. "webkit2gtk-sys",
  2684. ]
  2685. [[package]]
  2686. name = "webkit2gtk-sys"
  2687. version = "0.14.0"
  2688. source = "registry+https://github.com/rust-lang/crates.io-index"
  2689. checksum = "b66ccc9f0cb4de7c3b92376a5bf64e7ddffb33852f092721731a039ec38dda98"
  2690. dependencies = [
  2691. "atk-sys",
  2692. "bitflags",
  2693. "cairo-sys-rs",
  2694. "gdk-pixbuf-sys",
  2695. "gdk-sys",
  2696. "gio-sys 0.14.0",
  2697. "glib-sys 0.14.0",
  2698. "gobject-sys 0.14.0",
  2699. "gtk-sys",
  2700. "javascriptcore-rs-sys",
  2701. "libc",
  2702. "pango-sys",
  2703. "pkg-config",
  2704. "soup-sys",
  2705. "system-deps 3.2.0",
  2706. ]
  2707. [[package]]
  2708. name = "webview2"
  2709. version = "0.1.1"
  2710. source = "registry+https://github.com/rust-lang/crates.io-index"
  2711. checksum = "6fab1ccfdabb098b047293c8d496c1914d1c654b68fdaa3bb77cfa47c4bca2c7"
  2712. dependencies = [
  2713. "com",
  2714. "once_cell",
  2715. "webview2-sys",
  2716. "widestring",
  2717. "winapi",
  2718. ]
  2719. [[package]]
  2720. name = "webview2-sys"
  2721. version = "0.1.0"
  2722. source = "registry+https://github.com/rust-lang/crates.io-index"
  2723. checksum = "cc5288cef1e0cbcf7a0b961e6271e33589b8989c80b2e11078504e989b5346ff"
  2724. dependencies = [
  2725. "com",
  2726. "winapi",
  2727. ]
  2728. [[package]]
  2729. name = "widestring"
  2730. version = "0.4.3"
  2731. source = "registry+https://github.com/rust-lang/crates.io-index"
  2732. checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
  2733. [[package]]
  2734. name = "wildmatch"
  2735. version = "1.1.0"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a"
  2738. [[package]]
  2739. name = "winapi"
  2740. version = "0.3.9"
  2741. source = "registry+https://github.com/rust-lang/crates.io-index"
  2742. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  2743. dependencies = [
  2744. "winapi-i686-pc-windows-gnu",
  2745. "winapi-x86_64-pc-windows-gnu",
  2746. ]
  2747. [[package]]
  2748. name = "winapi-i686-pc-windows-gnu"
  2749. version = "0.4.0"
  2750. source = "registry+https://github.com/rust-lang/crates.io-index"
  2751. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  2752. [[package]]
  2753. name = "winapi-util"
  2754. version = "0.1.5"
  2755. source = "registry+https://github.com/rust-lang/crates.io-index"
  2756. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  2757. dependencies = [
  2758. "winapi",
  2759. ]
  2760. [[package]]
  2761. name = "winapi-x86_64-pc-windows-gnu"
  2762. version = "0.4.0"
  2763. source = "registry+https://github.com/rust-lang/crates.io-index"
  2764. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  2765. [[package]]
  2766. name = "winres"
  2767. version = "0.1.11"
  2768. source = "registry+https://github.com/rust-lang/crates.io-index"
  2769. checksum = "ff4fb510bbfe5b8992ff15f77a2e6fe6cf062878f0eda00c0f44963a807ca5dc"
  2770. dependencies = [
  2771. "toml",
  2772. ]
  2773. [[package]]
  2774. name = "wry"
  2775. version = "0.12.1"
  2776. source = "git+https://github.com/tauri-apps/wry?branch=feat/refactor-protocol#f1bd52826e3270898d4225f5020d4de9b450d7de"
  2777. dependencies = [
  2778. "cocoa",
  2779. "core-graphics 0.22.2",
  2780. "gdk",
  2781. "gio",
  2782. "glib",
  2783. "gtk",
  2784. "http",
  2785. "libc",
  2786. "log",
  2787. "objc",
  2788. "objc_id",
  2789. "once_cell",
  2790. "serde",
  2791. "serde_json",
  2792. "tao",
  2793. "thiserror",
  2794. "url",
  2795. "webkit2gtk",
  2796. "webkit2gtk-sys",
  2797. "webview2",
  2798. "webview2-sys",
  2799. "winapi",
  2800. ]
  2801. [[package]]
  2802. name = "x11-dl"
  2803. version = "2.18.5"
  2804. source = "registry+https://github.com/rust-lang/crates.io-index"
  2805. checksum = "2bf981e3a5b3301209754218f962052d4d9ee97e478f4d26d4a6eced34c1fef8"
  2806. dependencies = [
  2807. "lazy_static",
  2808. "libc",
  2809. "maybe-uninit",
  2810. "pkg-config",
  2811. ]
  2812. [[package]]
  2813. name = "xattr"
  2814. version = "0.2.2"
  2815. source = "registry+https://github.com/rust-lang/crates.io-index"
  2816. checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
  2817. dependencies = [
  2818. "libc",
  2819. ]
  2820. [[package]]
  2821. name = "zip"
  2822. version = "0.5.13"
  2823. source = "registry+https://github.com/rust-lang/crates.io-index"
  2824. checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
  2825. dependencies = [
  2826. "byteorder",
  2827. "bzip2",
  2828. "crc32fast",
  2829. "flate2",
  2830. "thiserror",
  2831. "time",
  2832. ]
  2833. [[package]]
  2834. name = "zstd"
  2835. version = "0.9.0+zstd.1.5.0"
  2836. source = "registry+https://github.com/rust-lang/crates.io-index"
  2837. checksum = "07749a5dc2cb6b36661290245e350f15ec3bbb304e493db54a1d354480522ccd"
  2838. dependencies = [
  2839. "zstd-safe",
  2840. ]
  2841. [[package]]
  2842. name = "zstd-safe"
  2843. version = "4.1.1+zstd.1.5.0"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "c91c90f2c593b003603e5e0493c837088df4469da25aafff8bce42ba48caf079"
  2846. dependencies = [
  2847. "libc",
  2848. "zstd-sys",
  2849. ]
  2850. [[package]]
  2851. name = "zstd-sys"
  2852. version = "1.6.1+zstd.1.5.0"
  2853. source = "registry+https://github.com/rust-lang/crates.io-index"
  2854. checksum = "615120c7a2431d16cf1cf979e7fc31ba7a5b5e5707b29c8a99e5dbf8a8392a33"
  2855. dependencies = [
  2856. "cc",
  2857. "libc",
  2858. ]