Cargo.lock 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "ab_glyph"
  6. version = "0.2.23"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "80179d7dd5d7e8c285d67c4a1e652972a92de7475beddfb92028c76463b13225"
  9. dependencies = [
  10. "ab_glyph_rasterizer",
  11. "owned_ttf_parser",
  12. ]
  13. [[package]]
  14. name = "ab_glyph_rasterizer"
  15. version = "0.1.8"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046"
  18. [[package]]
  19. name = "adler"
  20. version = "1.0.2"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  23. [[package]]
  24. name = "ahash"
  25. version = "0.8.11"
  26. source = "registry+https://github.com/rust-lang/crates.io-index"
  27. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  28. dependencies = [
  29. "cfg-if",
  30. "getrandom",
  31. "once_cell",
  32. "version_check",
  33. "zerocopy",
  34. ]
  35. [[package]]
  36. name = "aho-corasick"
  37. version = "1.1.3"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  40. dependencies = [
  41. "memchr",
  42. ]
  43. [[package]]
  44. name = "aligned-vec"
  45. version = "0.5.0"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
  48. [[package]]
  49. name = "allocator-api2"
  50. version = "0.2.16"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
  53. [[package]]
  54. name = "android-activity"
  55. version = "0.5.2"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "ee91c0c2905bae44f84bfa4e044536541df26b7703fd0888deeb9060fcc44289"
  58. dependencies = [
  59. "android-properties",
  60. "bitflags 2.5.0",
  61. "cc",
  62. "cesu8",
  63. "jni",
  64. "jni-sys",
  65. "libc",
  66. "log",
  67. "ndk",
  68. "ndk-context",
  69. "ndk-sys",
  70. "num_enum",
  71. "thiserror",
  72. ]
  73. [[package]]
  74. name = "android-properties"
  75. version = "0.2.2"
  76. source = "registry+https://github.com/rust-lang/crates.io-index"
  77. checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
  78. [[package]]
  79. name = "android-tzdata"
  80. version = "0.1.1"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  83. [[package]]
  84. name = "android_system_properties"
  85. version = "0.1.5"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  88. dependencies = [
  89. "libc",
  90. ]
  91. [[package]]
  92. name = "anstream"
  93. version = "0.6.13"
  94. source = "registry+https://github.com/rust-lang/crates.io-index"
  95. checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
  96. dependencies = [
  97. "anstyle",
  98. "anstyle-parse",
  99. "anstyle-query",
  100. "anstyle-wincon",
  101. "colorchoice",
  102. "utf8parse",
  103. ]
  104. [[package]]
  105. name = "anstyle"
  106. version = "1.0.6"
  107. source = "registry+https://github.com/rust-lang/crates.io-index"
  108. checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
  109. [[package]]
  110. name = "anstyle-parse"
  111. version = "0.2.3"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
  114. dependencies = [
  115. "utf8parse",
  116. ]
  117. [[package]]
  118. name = "anstyle-query"
  119. version = "1.0.2"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
  122. dependencies = [
  123. "windows-sys 0.52.0",
  124. ]
  125. [[package]]
  126. name = "anstyle-wincon"
  127. version = "3.0.2"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
  130. dependencies = [
  131. "anstyle",
  132. "windows-sys 0.52.0",
  133. ]
  134. [[package]]
  135. name = "anyhow"
  136. version = "1.0.81"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
  139. [[package]]
  140. name = "arbitrary"
  141. version = "1.3.2"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
  144. [[package]]
  145. name = "arg_enum_proc_macro"
  146. version = "0.3.4"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
  149. dependencies = [
  150. "proc-macro2",
  151. "quote",
  152. "syn 2.0.55",
  153. ]
  154. [[package]]
  155. name = "arrayref"
  156. version = "0.3.7"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
  159. [[package]]
  160. name = "arrayvec"
  161. version = "0.7.4"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  164. [[package]]
  165. name = "as-raw-xcb-connection"
  166. version = "1.0.1"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
  169. [[package]]
  170. name = "ash"
  171. version = "0.37.3+1.3.251"
  172. source = "registry+https://github.com/rust-lang/crates.io-index"
  173. checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a"
  174. dependencies = [
  175. "libloading 0.7.4",
  176. ]
  177. [[package]]
  178. name = "atomic-waker"
  179. version = "1.1.2"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  182. [[package]]
  183. name = "autocfg"
  184. version = "1.2.0"
  185. source = "registry+https://github.com/rust-lang/crates.io-index"
  186. checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
  187. [[package]]
  188. name = "av1-grain"
  189. version = "0.2.3"
  190. source = "registry+https://github.com/rust-lang/crates.io-index"
  191. checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf"
  192. dependencies = [
  193. "anyhow",
  194. "arrayvec",
  195. "log",
  196. "nom",
  197. "num-rational",
  198. "v_frame",
  199. ]
  200. [[package]]
  201. name = "avif-serialize"
  202. version = "0.8.1"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2"
  205. dependencies = [
  206. "arrayvec",
  207. ]
  208. [[package]]
  209. name = "bit-set"
  210. version = "0.5.3"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  213. dependencies = [
  214. "bit-vec",
  215. ]
  216. [[package]]
  217. name = "bit-vec"
  218. version = "0.6.3"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  221. [[package]]
  222. name = "bit_field"
  223. version = "0.10.2"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
  226. [[package]]
  227. name = "bitflags"
  228. version = "1.3.2"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  231. [[package]]
  232. name = "bitflags"
  233. version = "2.5.0"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
  236. [[package]]
  237. name = "bitstream-io"
  238. version = "2.2.0"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. checksum = "06c9989a51171e2e81038ab168b6ae22886fe9ded214430dbb4f41c28cf176da"
  241. [[package]]
  242. name = "block"
  243. version = "0.1.6"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  246. [[package]]
  247. name = "block-sys"
  248. version = "0.2.1"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7"
  251. dependencies = [
  252. "objc-sys",
  253. ]
  254. [[package]]
  255. name = "block2"
  256. version = "0.3.0"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "15b55663a85f33501257357e6421bb33e769d5c9ffb5ba0921c975a123e35e68"
  259. dependencies = [
  260. "block-sys",
  261. "objc2",
  262. ]
  263. [[package]]
  264. name = "built"
  265. version = "0.7.1"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "38d17f4d6e4dc36d1a02fbedc2753a096848e7c1b0772f7654eab8e2c927dd53"
  268. [[package]]
  269. name = "bumpalo"
  270. version = "3.15.4"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
  273. [[package]]
  274. name = "bytemuck"
  275. version = "1.15.0"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15"
  278. dependencies = [
  279. "bytemuck_derive",
  280. ]
  281. [[package]]
  282. name = "bytemuck_derive"
  283. version = "1.6.0"
  284. source = "registry+https://github.com/rust-lang/crates.io-index"
  285. checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60"
  286. dependencies = [
  287. "proc-macro2",
  288. "quote",
  289. "syn 2.0.55",
  290. ]
  291. [[package]]
  292. name = "byteorder"
  293. version = "1.5.0"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  296. [[package]]
  297. name = "bytes"
  298. version = "1.6.0"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
  301. [[package]]
  302. name = "calloop"
  303. version = "0.12.4"
  304. source = "registry+https://github.com/rust-lang/crates.io-index"
  305. checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298"
  306. dependencies = [
  307. "bitflags 2.5.0",
  308. "log",
  309. "polling",
  310. "rustix",
  311. "slab",
  312. "thiserror",
  313. ]
  314. [[package]]
  315. name = "calloop-wayland-source"
  316. version = "0.2.0"
  317. source = "registry+https://github.com/rust-lang/crates.io-index"
  318. checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02"
  319. dependencies = [
  320. "calloop",
  321. "rustix",
  322. "wayland-backend",
  323. "wayland-client",
  324. ]
  325. [[package]]
  326. name = "cc"
  327. version = "1.0.90"
  328. source = "registry+https://github.com/rust-lang/crates.io-index"
  329. checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
  330. dependencies = [
  331. "jobserver",
  332. "libc",
  333. ]
  334. [[package]]
  335. name = "cesu8"
  336. version = "1.1.0"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  339. [[package]]
  340. name = "cfg-expr"
  341. version = "0.15.7"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d"
  344. dependencies = [
  345. "smallvec",
  346. "target-lexicon",
  347. ]
  348. [[package]]
  349. name = "cfg-if"
  350. version = "1.0.0"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  353. [[package]]
  354. name = "cfg_aliases"
  355. version = "0.1.1"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
  358. [[package]]
  359. name = "chrono"
  360. version = "0.4.37"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e"
  363. dependencies = [
  364. "android-tzdata",
  365. "iana-time-zone",
  366. "js-sys",
  367. "num-traits",
  368. "wasm-bindgen",
  369. "windows-targets 0.52.4",
  370. ]
  371. [[package]]
  372. name = "codespan-reporting"
  373. version = "0.11.1"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  376. dependencies = [
  377. "termcolor",
  378. "unicode-width",
  379. ]
  380. [[package]]
  381. name = "color_quant"
  382. version = "1.1.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  385. [[package]]
  386. name = "colorchoice"
  387. version = "1.0.0"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
  390. [[package]]
  391. name = "com"
  392. version = "0.6.0"
  393. source = "registry+https://github.com/rust-lang/crates.io-index"
  394. checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
  395. dependencies = [
  396. "com_macros",
  397. ]
  398. [[package]]
  399. name = "com_macros"
  400. version = "0.6.0"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
  403. dependencies = [
  404. "com_macros_support",
  405. "proc-macro2",
  406. "syn 1.0.109",
  407. ]
  408. [[package]]
  409. name = "com_macros_support"
  410. version = "0.6.0"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
  413. dependencies = [
  414. "proc-macro2",
  415. "quote",
  416. "syn 1.0.109",
  417. ]
  418. [[package]]
  419. name = "combine"
  420. version = "4.6.6"
  421. source = "registry+https://github.com/rust-lang/crates.io-index"
  422. checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
  423. dependencies = [
  424. "bytes",
  425. "memchr",
  426. ]
  427. [[package]]
  428. name = "concurrent-queue"
  429. version = "2.4.0"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
  432. dependencies = [
  433. "crossbeam-utils",
  434. ]
  435. [[package]]
  436. name = "core-foundation"
  437. version = "0.9.4"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  440. dependencies = [
  441. "core-foundation-sys",
  442. "libc",
  443. ]
  444. [[package]]
  445. name = "core-foundation-sys"
  446. version = "0.8.6"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  449. [[package]]
  450. name = "core-graphics"
  451. version = "0.23.1"
  452. source = "registry+https://github.com/rust-lang/crates.io-index"
  453. checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212"
  454. dependencies = [
  455. "bitflags 1.3.2",
  456. "core-foundation",
  457. "core-graphics-types",
  458. "foreign-types",
  459. "libc",
  460. ]
  461. [[package]]
  462. name = "core-graphics-types"
  463. version = "0.1.3"
  464. source = "registry+https://github.com/rust-lang/crates.io-index"
  465. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  466. dependencies = [
  467. "bitflags 1.3.2",
  468. "core-foundation",
  469. "libc",
  470. ]
  471. [[package]]
  472. name = "crc32fast"
  473. version = "1.4.0"
  474. source = "registry+https://github.com/rust-lang/crates.io-index"
  475. checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
  476. dependencies = [
  477. "cfg-if",
  478. ]
  479. [[package]]
  480. name = "crossbeam-deque"
  481. version = "0.8.5"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  484. dependencies = [
  485. "crossbeam-epoch",
  486. "crossbeam-utils",
  487. ]
  488. [[package]]
  489. name = "crossbeam-epoch"
  490. version = "0.9.18"
  491. source = "registry+https://github.com/rust-lang/crates.io-index"
  492. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  493. dependencies = [
  494. "crossbeam-utils",
  495. ]
  496. [[package]]
  497. name = "crossbeam-utils"
  498. version = "0.8.19"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  501. [[package]]
  502. name = "crunchy"
  503. version = "0.2.2"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  506. [[package]]
  507. name = "cursor-icon"
  508. version = "1.1.0"
  509. source = "registry+https://github.com/rust-lang/crates.io-index"
  510. checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"
  511. [[package]]
  512. name = "d3d12"
  513. version = "0.19.0"
  514. source = "registry+https://github.com/rust-lang/crates.io-index"
  515. checksum = "3e3d747f100290a1ca24b752186f61f6637e1deffe3bf6320de6fcb29510a307"
  516. dependencies = [
  517. "bitflags 2.5.0",
  518. "libloading 0.8.3",
  519. "winapi",
  520. ]
  521. [[package]]
  522. name = "dispatch"
  523. version = "0.2.0"
  524. source = "registry+https://github.com/rust-lang/crates.io-index"
  525. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  526. [[package]]
  527. name = "dlib"
  528. version = "0.5.2"
  529. source = "registry+https://github.com/rust-lang/crates.io-index"
  530. checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
  531. dependencies = [
  532. "libloading 0.8.3",
  533. ]
  534. [[package]]
  535. name = "downcast-rs"
  536. version = "1.2.0"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
  539. [[package]]
  540. name = "ecolor"
  541. version = "0.27.2"
  542. source = "registry+https://github.com/rust-lang/crates.io-index"
  543. checksum = "20930a432bbd57a6d55e07976089708d4893f3d556cf42a0d79e9e321fa73b10"
  544. [[package]]
  545. name = "egui"
  546. version = "0.27.2"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "584c5d1bf9a67b25778a3323af222dbe1a1feb532190e103901187f92c7fe29a"
  549. dependencies = [
  550. "ahash",
  551. "epaint",
  552. "nohash-hasher",
  553. ]
  554. [[package]]
  555. name = "either"
  556. version = "1.10.0"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
  559. [[package]]
  560. name = "emath"
  561. version = "0.27.2"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "e4c3a552cfca14630702449d35f41c84a0d15963273771c6059175a803620f3f"
  564. [[package]]
  565. name = "env_filter"
  566. version = "0.1.0"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
  569. dependencies = [
  570. "log",
  571. "regex",
  572. ]
  573. [[package]]
  574. name = "env_logger"
  575. version = "0.11.3"
  576. source = "registry+https://github.com/rust-lang/crates.io-index"
  577. checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
  578. dependencies = [
  579. "anstream",
  580. "anstyle",
  581. "env_filter",
  582. "humantime",
  583. "log",
  584. ]
  585. [[package]]
  586. name = "epaint"
  587. version = "0.27.2"
  588. source = "registry+https://github.com/rust-lang/crates.io-index"
  589. checksum = "b381f8b149657a4acf837095351839f32cd5c4aec1817fc4df84e18d76334176"
  590. dependencies = [
  591. "ab_glyph",
  592. "ahash",
  593. "ecolor",
  594. "emath",
  595. "nohash-hasher",
  596. "parking_lot",
  597. ]
  598. [[package]]
  599. name = "equivalent"
  600. version = "1.0.1"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  603. [[package]]
  604. name = "errno"
  605. version = "0.3.8"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  608. dependencies = [
  609. "libc",
  610. "windows-sys 0.52.0",
  611. ]
  612. [[package]]
  613. name = "exr"
  614. version = "1.72.0"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4"
  617. dependencies = [
  618. "bit_field",
  619. "flume",
  620. "half",
  621. "lebe",
  622. "miniz_oxide",
  623. "rayon-core",
  624. "smallvec",
  625. "zune-inflate",
  626. ]
  627. [[package]]
  628. name = "fdeflate"
  629. version = "0.3.4"
  630. source = "registry+https://github.com/rust-lang/crates.io-index"
  631. checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
  632. dependencies = [
  633. "simd-adler32",
  634. ]
  635. [[package]]
  636. name = "flate2"
  637. version = "1.0.28"
  638. source = "registry+https://github.com/rust-lang/crates.io-index"
  639. checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
  640. dependencies = [
  641. "crc32fast",
  642. "miniz_oxide",
  643. ]
  644. [[package]]
  645. name = "flume"
  646. version = "0.11.0"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
  649. dependencies = [
  650. "spin",
  651. ]
  652. [[package]]
  653. name = "foreign-types"
  654. version = "0.5.0"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  657. dependencies = [
  658. "foreign-types-macros",
  659. "foreign-types-shared",
  660. ]
  661. [[package]]
  662. name = "foreign-types-macros"
  663. version = "0.2.3"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  666. dependencies = [
  667. "proc-macro2",
  668. "quote",
  669. "syn 2.0.55",
  670. ]
  671. [[package]]
  672. name = "foreign-types-shared"
  673. version = "0.3.1"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  676. [[package]]
  677. name = "gethostname"
  678. version = "0.4.3"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
  681. dependencies = [
  682. "libc",
  683. "windows-targets 0.48.5",
  684. ]
  685. [[package]]
  686. name = "getrandom"
  687. version = "0.2.12"
  688. source = "registry+https://github.com/rust-lang/crates.io-index"
  689. checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
  690. dependencies = [
  691. "cfg-if",
  692. "libc",
  693. "wasi",
  694. ]
  695. [[package]]
  696. name = "gif"
  697. version = "0.13.1"
  698. source = "registry+https://github.com/rust-lang/crates.io-index"
  699. checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
  700. dependencies = [
  701. "color_quant",
  702. "weezl",
  703. ]
  704. [[package]]
  705. name = "gl_generator"
  706. version = "0.14.0"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
  709. dependencies = [
  710. "khronos_api",
  711. "log",
  712. "xml-rs",
  713. ]
  714. [[package]]
  715. name = "glam"
  716. version = "0.27.0"
  717. source = "registry+https://github.com/rust-lang/crates.io-index"
  718. checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
  719. [[package]]
  720. name = "glow"
  721. version = "0.13.1"
  722. source = "registry+https://github.com/rust-lang/crates.io-index"
  723. checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
  724. dependencies = [
  725. "js-sys",
  726. "slotmap",
  727. "wasm-bindgen",
  728. "web-sys",
  729. ]
  730. [[package]]
  731. name = "glutin_wgl_sys"
  732. version = "0.5.0"
  733. source = "registry+https://github.com/rust-lang/crates.io-index"
  734. checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead"
  735. dependencies = [
  736. "gl_generator",
  737. ]
  738. [[package]]
  739. name = "gpu-alloc"
  740. version = "0.6.0"
  741. source = "registry+https://github.com/rust-lang/crates.io-index"
  742. checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
  743. dependencies = [
  744. "bitflags 2.5.0",
  745. "gpu-alloc-types",
  746. ]
  747. [[package]]
  748. name = "gpu-alloc-types"
  749. version = "0.3.0"
  750. source = "registry+https://github.com/rust-lang/crates.io-index"
  751. checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
  752. dependencies = [
  753. "bitflags 2.5.0",
  754. ]
  755. [[package]]
  756. name = "gpu-allocator"
  757. version = "0.25.0"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884"
  760. dependencies = [
  761. "log",
  762. "presser",
  763. "thiserror",
  764. "winapi",
  765. "windows",
  766. ]
  767. [[package]]
  768. name = "gpu-descriptor"
  769. version = "0.2.4"
  770. source = "registry+https://github.com/rust-lang/crates.io-index"
  771. checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c"
  772. dependencies = [
  773. "bitflags 2.5.0",
  774. "gpu-descriptor-types",
  775. "hashbrown",
  776. ]
  777. [[package]]
  778. name = "gpu-descriptor-types"
  779. version = "0.1.2"
  780. source = "registry+https://github.com/rust-lang/crates.io-index"
  781. checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c"
  782. dependencies = [
  783. "bitflags 2.5.0",
  784. ]
  785. [[package]]
  786. name = "half"
  787. version = "2.4.0"
  788. source = "registry+https://github.com/rust-lang/crates.io-index"
  789. checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e"
  790. dependencies = [
  791. "cfg-if",
  792. "crunchy",
  793. ]
  794. [[package]]
  795. name = "hashbrown"
  796. version = "0.14.3"
  797. source = "registry+https://github.com/rust-lang/crates.io-index"
  798. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  799. dependencies = [
  800. "ahash",
  801. "allocator-api2",
  802. ]
  803. [[package]]
  804. name = "hassle-rs"
  805. version = "0.11.0"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
  808. dependencies = [
  809. "bitflags 2.5.0",
  810. "com",
  811. "libc",
  812. "libloading 0.8.3",
  813. "thiserror",
  814. "widestring",
  815. "winapi",
  816. ]
  817. [[package]]
  818. name = "heck"
  819. version = "0.5.0"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  822. [[package]]
  823. name = "hermit-abi"
  824. version = "0.3.9"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  827. [[package]]
  828. name = "hexf-parse"
  829. version = "0.2.1"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
  832. [[package]]
  833. name = "humantime"
  834. version = "2.1.0"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  837. [[package]]
  838. name = "iana-time-zone"
  839. version = "0.1.60"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  842. dependencies = [
  843. "android_system_properties",
  844. "core-foundation-sys",
  845. "iana-time-zone-haiku",
  846. "js-sys",
  847. "wasm-bindgen",
  848. "windows-core",
  849. ]
  850. [[package]]
  851. name = "iana-time-zone-haiku"
  852. version = "0.1.2"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  855. dependencies = [
  856. "cc",
  857. ]
  858. [[package]]
  859. name = "icrate"
  860. version = "0.0.4"
  861. source = "registry+https://github.com/rust-lang/crates.io-index"
  862. checksum = "99d3aaff8a54577104bafdf686ff18565c3b6903ca5782a2026ef06e2c7aa319"
  863. dependencies = [
  864. "block2",
  865. "dispatch",
  866. "objc2",
  867. ]
  868. [[package]]
  869. name = "image"
  870. version = "0.25.1"
  871. source = "registry+https://github.com/rust-lang/crates.io-index"
  872. checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
  873. dependencies = [
  874. "bytemuck",
  875. "byteorder",
  876. "color_quant",
  877. "exr",
  878. "gif",
  879. "image-webp",
  880. "num-traits",
  881. "png",
  882. "qoi",
  883. "ravif",
  884. "rayon",
  885. "rgb",
  886. "tiff",
  887. "zune-core",
  888. "zune-jpeg",
  889. ]
  890. [[package]]
  891. name = "image-webp"
  892. version = "0.1.1"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "7a84a25dcae3ac487bc24ef280f9e20c79c9b1a3e5e32cbed3041d1c514aa87c"
  895. dependencies = [
  896. "byteorder",
  897. "thiserror",
  898. ]
  899. [[package]]
  900. name = "imgref"
  901. version = "1.10.1"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126"
  904. [[package]]
  905. name = "indexmap"
  906. version = "2.2.6"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
  909. dependencies = [
  910. "equivalent",
  911. "hashbrown",
  912. ]
  913. [[package]]
  914. name = "interpolate_name"
  915. version = "0.2.4"
  916. source = "registry+https://github.com/rust-lang/crates.io-index"
  917. checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
  918. dependencies = [
  919. "proc-macro2",
  920. "quote",
  921. "syn 2.0.55",
  922. ]
  923. [[package]]
  924. name = "itertools"
  925. version = "0.12.1"
  926. source = "registry+https://github.com/rust-lang/crates.io-index"
  927. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  928. dependencies = [
  929. "either",
  930. ]
  931. [[package]]
  932. name = "jni"
  933. version = "0.21.1"
  934. source = "registry+https://github.com/rust-lang/crates.io-index"
  935. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  936. dependencies = [
  937. "cesu8",
  938. "cfg-if",
  939. "combine",
  940. "jni-sys",
  941. "log",
  942. "thiserror",
  943. "walkdir",
  944. "windows-sys 0.45.0",
  945. ]
  946. [[package]]
  947. name = "jni-sys"
  948. version = "0.3.0"
  949. source = "registry+https://github.com/rust-lang/crates.io-index"
  950. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  951. [[package]]
  952. name = "jobserver"
  953. version = "0.1.28"
  954. source = "registry+https://github.com/rust-lang/crates.io-index"
  955. checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
  956. dependencies = [
  957. "libc",
  958. ]
  959. [[package]]
  960. name = "jpeg-decoder"
  961. version = "0.3.1"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
  964. [[package]]
  965. name = "js-sys"
  966. version = "0.3.69"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  969. dependencies = [
  970. "wasm-bindgen",
  971. ]
  972. [[package]]
  973. name = "khronos-egl"
  974. version = "6.0.0"
  975. source = "registry+https://github.com/rust-lang/crates.io-index"
  976. checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
  977. dependencies = [
  978. "libc",
  979. "libloading 0.8.3",
  980. "pkg-config",
  981. ]
  982. [[package]]
  983. name = "khronos_api"
  984. version = "3.1.0"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
  987. [[package]]
  988. name = "lebe"
  989. version = "0.5.2"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
  992. [[package]]
  993. name = "libc"
  994. version = "0.2.153"
  995. source = "registry+https://github.com/rust-lang/crates.io-index"
  996. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  997. [[package]]
  998. name = "libfuzzer-sys"
  999. version = "0.4.7"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
  1002. dependencies = [
  1003. "arbitrary",
  1004. "cc",
  1005. "once_cell",
  1006. ]
  1007. [[package]]
  1008. name = "libloading"
  1009. version = "0.7.4"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  1012. dependencies = [
  1013. "cfg-if",
  1014. "winapi",
  1015. ]
  1016. [[package]]
  1017. name = "libloading"
  1018. version = "0.8.3"
  1019. source = "registry+https://github.com/rust-lang/crates.io-index"
  1020. checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
  1021. dependencies = [
  1022. "cfg-if",
  1023. "windows-targets 0.52.4",
  1024. ]
  1025. [[package]]
  1026. name = "libredox"
  1027. version = "0.0.2"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
  1030. dependencies = [
  1031. "bitflags 2.5.0",
  1032. "libc",
  1033. "redox_syscall 0.4.1",
  1034. ]
  1035. [[package]]
  1036. name = "linux-raw-sys"
  1037. version = "0.4.13"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  1040. [[package]]
  1041. name = "lock_api"
  1042. version = "0.4.11"
  1043. source = "registry+https://github.com/rust-lang/crates.io-index"
  1044. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  1045. dependencies = [
  1046. "autocfg",
  1047. "scopeguard",
  1048. ]
  1049. [[package]]
  1050. name = "log"
  1051. version = "0.4.21"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  1054. [[package]]
  1055. name = "loop9"
  1056. version = "0.1.5"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
  1059. dependencies = [
  1060. "imgref",
  1061. ]
  1062. [[package]]
  1063. name = "malloc_buf"
  1064. version = "0.0.6"
  1065. source = "registry+https://github.com/rust-lang/crates.io-index"
  1066. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  1067. dependencies = [
  1068. "libc",
  1069. ]
  1070. [[package]]
  1071. name = "maybe-rayon"
  1072. version = "0.1.1"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  1075. dependencies = [
  1076. "cfg-if",
  1077. "rayon",
  1078. ]
  1079. [[package]]
  1080. name = "memchr"
  1081. version = "2.7.2"
  1082. source = "registry+https://github.com/rust-lang/crates.io-index"
  1083. checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
  1084. [[package]]
  1085. name = "memmap2"
  1086. version = "0.9.4"
  1087. source = "registry+https://github.com/rust-lang/crates.io-index"
  1088. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  1089. dependencies = [
  1090. "libc",
  1091. ]
  1092. [[package]]
  1093. name = "metal"
  1094. version = "0.27.0"
  1095. source = "registry+https://github.com/rust-lang/crates.io-index"
  1096. checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
  1097. dependencies = [
  1098. "bitflags 2.5.0",
  1099. "block",
  1100. "core-graphics-types",
  1101. "foreign-types",
  1102. "log",
  1103. "objc",
  1104. "paste",
  1105. ]
  1106. [[package]]
  1107. name = "minimal-lexical"
  1108. version = "0.2.1"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  1111. [[package]]
  1112. name = "miniz_oxide"
  1113. version = "0.7.2"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
  1116. dependencies = [
  1117. "adler",
  1118. "simd-adler32",
  1119. ]
  1120. [[package]]
  1121. name = "naga"
  1122. version = "0.19.2"
  1123. source = "registry+https://github.com/rust-lang/crates.io-index"
  1124. checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
  1125. dependencies = [
  1126. "bit-set",
  1127. "bitflags 2.5.0",
  1128. "codespan-reporting",
  1129. "hexf-parse",
  1130. "indexmap",
  1131. "log",
  1132. "num-traits",
  1133. "rustc-hash",
  1134. "spirv",
  1135. "termcolor",
  1136. "thiserror",
  1137. "unicode-xid",
  1138. ]
  1139. [[package]]
  1140. name = "ndk"
  1141. version = "0.8.0"
  1142. source = "registry+https://github.com/rust-lang/crates.io-index"
  1143. checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7"
  1144. dependencies = [
  1145. "bitflags 2.5.0",
  1146. "jni-sys",
  1147. "log",
  1148. "ndk-sys",
  1149. "num_enum",
  1150. "raw-window-handle",
  1151. "thiserror",
  1152. ]
  1153. [[package]]
  1154. name = "ndk-context"
  1155. version = "0.1.1"
  1156. source = "registry+https://github.com/rust-lang/crates.io-index"
  1157. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  1158. [[package]]
  1159. name = "ndk-sys"
  1160. version = "0.5.0+25.2.9519653"
  1161. source = "registry+https://github.com/rust-lang/crates.io-index"
  1162. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  1163. dependencies = [
  1164. "jni-sys",
  1165. ]
  1166. [[package]]
  1167. name = "new_debug_unreachable"
  1168. version = "1.0.6"
  1169. source = "registry+https://github.com/rust-lang/crates.io-index"
  1170. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  1171. [[package]]
  1172. name = "nohash-hasher"
  1173. version = "0.2.0"
  1174. source = "registry+https://github.com/rust-lang/crates.io-index"
  1175. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  1176. [[package]]
  1177. name = "nom"
  1178. version = "7.1.3"
  1179. source = "registry+https://github.com/rust-lang/crates.io-index"
  1180. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  1181. dependencies = [
  1182. "memchr",
  1183. "minimal-lexical",
  1184. ]
  1185. [[package]]
  1186. name = "noop_proc_macro"
  1187. version = "0.3.0"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
  1190. [[package]]
  1191. name = "num-bigint"
  1192. version = "0.4.4"
  1193. source = "registry+https://github.com/rust-lang/crates.io-index"
  1194. checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
  1195. dependencies = [
  1196. "autocfg",
  1197. "num-integer",
  1198. "num-traits",
  1199. ]
  1200. [[package]]
  1201. name = "num-derive"
  1202. version = "0.4.2"
  1203. source = "registry+https://github.com/rust-lang/crates.io-index"
  1204. checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
  1205. dependencies = [
  1206. "proc-macro2",
  1207. "quote",
  1208. "syn 2.0.55",
  1209. ]
  1210. [[package]]
  1211. name = "num-integer"
  1212. version = "0.1.46"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  1215. dependencies = [
  1216. "num-traits",
  1217. ]
  1218. [[package]]
  1219. name = "num-rational"
  1220. version = "0.4.1"
  1221. source = "registry+https://github.com/rust-lang/crates.io-index"
  1222. checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
  1223. dependencies = [
  1224. "autocfg",
  1225. "num-bigint",
  1226. "num-integer",
  1227. "num-traits",
  1228. ]
  1229. [[package]]
  1230. name = "num-traits"
  1231. version = "0.2.18"
  1232. source = "registry+https://github.com/rust-lang/crates.io-index"
  1233. checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
  1234. dependencies = [
  1235. "autocfg",
  1236. ]
  1237. [[package]]
  1238. name = "num_enum"
  1239. version = "0.7.2"
  1240. source = "registry+https://github.com/rust-lang/crates.io-index"
  1241. checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
  1242. dependencies = [
  1243. "num_enum_derive",
  1244. ]
  1245. [[package]]
  1246. name = "num_enum_derive"
  1247. version = "0.7.2"
  1248. source = "registry+https://github.com/rust-lang/crates.io-index"
  1249. checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
  1250. dependencies = [
  1251. "proc-macro-crate",
  1252. "proc-macro2",
  1253. "quote",
  1254. "syn 2.0.55",
  1255. ]
  1256. [[package]]
  1257. name = "objc"
  1258. version = "0.2.7"
  1259. source = "registry+https://github.com/rust-lang/crates.io-index"
  1260. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  1261. dependencies = [
  1262. "malloc_buf",
  1263. "objc_exception",
  1264. ]
  1265. [[package]]
  1266. name = "objc-sys"
  1267. version = "0.3.2"
  1268. source = "registry+https://github.com/rust-lang/crates.io-index"
  1269. checksum = "c7c71324e4180d0899963fc83d9d241ac39e699609fc1025a850aadac8257459"
  1270. [[package]]
  1271. name = "objc2"
  1272. version = "0.4.1"
  1273. source = "registry+https://github.com/rust-lang/crates.io-index"
  1274. checksum = "559c5a40fdd30eb5e344fbceacf7595a81e242529fb4e21cf5f43fb4f11ff98d"
  1275. dependencies = [
  1276. "objc-sys",
  1277. "objc2-encode",
  1278. ]
  1279. [[package]]
  1280. name = "objc2-encode"
  1281. version = "3.0.0"
  1282. source = "registry+https://github.com/rust-lang/crates.io-index"
  1283. checksum = "d079845b37af429bfe5dfa76e6d087d788031045b25cfc6fd898486fd9847666"
  1284. [[package]]
  1285. name = "objc_exception"
  1286. version = "0.1.2"
  1287. source = "registry+https://github.com/rust-lang/crates.io-index"
  1288. checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
  1289. dependencies = [
  1290. "cc",
  1291. ]
  1292. [[package]]
  1293. name = "once_cell"
  1294. version = "1.19.0"
  1295. source = "registry+https://github.com/rust-lang/crates.io-index"
  1296. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  1297. [[package]]
  1298. name = "orbclient"
  1299. version = "0.3.47"
  1300. source = "registry+https://github.com/rust-lang/crates.io-index"
  1301. checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166"
  1302. dependencies = [
  1303. "libredox",
  1304. ]
  1305. [[package]]
  1306. name = "owned_ttf_parser"
  1307. version = "0.20.0"
  1308. source = "registry+https://github.com/rust-lang/crates.io-index"
  1309. checksum = "d4586edfe4c648c71797a74c84bacb32b52b212eff5dfe2bb9f2c599844023e7"
  1310. dependencies = [
  1311. "ttf-parser",
  1312. ]
  1313. [[package]]
  1314. name = "parking_lot"
  1315. version = "0.12.1"
  1316. source = "registry+https://github.com/rust-lang/crates.io-index"
  1317. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  1318. dependencies = [
  1319. "lock_api",
  1320. "parking_lot_core",
  1321. ]
  1322. [[package]]
  1323. name = "parking_lot_core"
  1324. version = "0.9.9"
  1325. source = "registry+https://github.com/rust-lang/crates.io-index"
  1326. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  1327. dependencies = [
  1328. "cfg-if",
  1329. "libc",
  1330. "redox_syscall 0.4.1",
  1331. "smallvec",
  1332. "windows-targets 0.48.5",
  1333. ]
  1334. [[package]]
  1335. name = "paste"
  1336. version = "1.0.14"
  1337. source = "registry+https://github.com/rust-lang/crates.io-index"
  1338. checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
  1339. [[package]]
  1340. name = "percent-encoding"
  1341. version = "2.3.1"
  1342. source = "registry+https://github.com/rust-lang/crates.io-index"
  1343. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  1344. [[package]]
  1345. name = "pin-project-lite"
  1346. version = "0.2.13"
  1347. source = "registry+https://github.com/rust-lang/crates.io-index"
  1348. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  1349. [[package]]
  1350. name = "pkg-config"
  1351. version = "0.3.30"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  1354. [[package]]
  1355. name = "png"
  1356. version = "0.17.13"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
  1359. dependencies = [
  1360. "bitflags 1.3.2",
  1361. "crc32fast",
  1362. "fdeflate",
  1363. "flate2",
  1364. "miniz_oxide",
  1365. ]
  1366. [[package]]
  1367. name = "polling"
  1368. version = "3.6.0"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "e0c976a60b2d7e99d6f229e414670a9b85d13ac305cc6d1e9c134de58c5aaaf6"
  1371. dependencies = [
  1372. "cfg-if",
  1373. "concurrent-queue",
  1374. "hermit-abi",
  1375. "pin-project-lite",
  1376. "rustix",
  1377. "tracing",
  1378. "windows-sys 0.52.0",
  1379. ]
  1380. [[package]]
  1381. name = "pollster"
  1382. version = "0.3.0"
  1383. source = "registry+https://github.com/rust-lang/crates.io-index"
  1384. checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
  1385. [[package]]
  1386. name = "ppv-lite86"
  1387. version = "0.2.17"
  1388. source = "registry+https://github.com/rust-lang/crates.io-index"
  1389. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  1390. [[package]]
  1391. name = "presser"
  1392. version = "0.3.1"
  1393. source = "registry+https://github.com/rust-lang/crates.io-index"
  1394. checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
  1395. [[package]]
  1396. name = "proc-macro-crate"
  1397. version = "3.1.0"
  1398. source = "registry+https://github.com/rust-lang/crates.io-index"
  1399. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  1400. dependencies = [
  1401. "toml_edit 0.21.1",
  1402. ]
  1403. [[package]]
  1404. name = "proc-macro2"
  1405. version = "1.0.79"
  1406. source = "registry+https://github.com/rust-lang/crates.io-index"
  1407. checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
  1408. dependencies = [
  1409. "unicode-ident",
  1410. ]
  1411. [[package]]
  1412. name = "profiling"
  1413. version = "1.0.15"
  1414. source = "registry+https://github.com/rust-lang/crates.io-index"
  1415. checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
  1416. dependencies = [
  1417. "profiling-procmacros",
  1418. ]
  1419. [[package]]
  1420. name = "profiling-procmacros"
  1421. version = "1.0.15"
  1422. source = "registry+https://github.com/rust-lang/crates.io-index"
  1423. checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd"
  1424. dependencies = [
  1425. "quote",
  1426. "syn 2.0.55",
  1427. ]
  1428. [[package]]
  1429. name = "qoi"
  1430. version = "0.4.1"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
  1433. dependencies = [
  1434. "bytemuck",
  1435. ]
  1436. [[package]]
  1437. name = "quick-error"
  1438. version = "2.0.1"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  1441. [[package]]
  1442. name = "quick-xml"
  1443. version = "0.31.0"
  1444. source = "registry+https://github.com/rust-lang/crates.io-index"
  1445. checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
  1446. dependencies = [
  1447. "memchr",
  1448. ]
  1449. [[package]]
  1450. name = "quote"
  1451. version = "1.0.35"
  1452. source = "registry+https://github.com/rust-lang/crates.io-index"
  1453. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  1454. dependencies = [
  1455. "proc-macro2",
  1456. ]
  1457. [[package]]
  1458. name = "rand"
  1459. version = "0.8.5"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  1462. dependencies = [
  1463. "libc",
  1464. "rand_chacha",
  1465. "rand_core",
  1466. ]
  1467. [[package]]
  1468. name = "rand_chacha"
  1469. version = "0.3.1"
  1470. source = "registry+https://github.com/rust-lang/crates.io-index"
  1471. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  1472. dependencies = [
  1473. "ppv-lite86",
  1474. "rand_core",
  1475. ]
  1476. [[package]]
  1477. name = "rand_core"
  1478. version = "0.6.4"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  1481. dependencies = [
  1482. "getrandom",
  1483. ]
  1484. [[package]]
  1485. name = "range-alloc"
  1486. version = "0.1.3"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
  1489. [[package]]
  1490. name = "rav1e"
  1491. version = "0.7.1"
  1492. source = "registry+https://github.com/rust-lang/crates.io-index"
  1493. checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
  1494. dependencies = [
  1495. "arbitrary",
  1496. "arg_enum_proc_macro",
  1497. "arrayvec",
  1498. "av1-grain",
  1499. "bitstream-io",
  1500. "built",
  1501. "cfg-if",
  1502. "interpolate_name",
  1503. "itertools",
  1504. "libc",
  1505. "libfuzzer-sys",
  1506. "log",
  1507. "maybe-rayon",
  1508. "new_debug_unreachable",
  1509. "noop_proc_macro",
  1510. "num-derive",
  1511. "num-traits",
  1512. "once_cell",
  1513. "paste",
  1514. "profiling",
  1515. "rand",
  1516. "rand_chacha",
  1517. "simd_helpers",
  1518. "system-deps",
  1519. "thiserror",
  1520. "v_frame",
  1521. "wasm-bindgen",
  1522. ]
  1523. [[package]]
  1524. name = "ravif"
  1525. version = "0.11.5"
  1526. source = "registry+https://github.com/rust-lang/crates.io-index"
  1527. checksum = "bc13288f5ab39e6d7c9d501759712e6969fcc9734220846fc9ed26cae2cc4234"
  1528. dependencies = [
  1529. "avif-serialize",
  1530. "imgref",
  1531. "loop9",
  1532. "quick-error",
  1533. "rav1e",
  1534. "rayon",
  1535. "rgb",
  1536. ]
  1537. [[package]]
  1538. name = "raw-window-handle"
  1539. version = "0.6.0"
  1540. source = "registry+https://github.com/rust-lang/crates.io-index"
  1541. checksum = "42a9830a0e1b9fb145ebb365b8bc4ccd75f290f98c0247deafbbe2c75cefb544"
  1542. [[package]]
  1543. name = "rayon"
  1544. version = "1.10.0"
  1545. source = "registry+https://github.com/rust-lang/crates.io-index"
  1546. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  1547. dependencies = [
  1548. "either",
  1549. "rayon-core",
  1550. ]
  1551. [[package]]
  1552. name = "rayon-core"
  1553. version = "1.12.1"
  1554. source = "registry+https://github.com/rust-lang/crates.io-index"
  1555. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  1556. dependencies = [
  1557. "crossbeam-deque",
  1558. "crossbeam-utils",
  1559. ]
  1560. [[package]]
  1561. name = "redox_syscall"
  1562. version = "0.3.5"
  1563. source = "registry+https://github.com/rust-lang/crates.io-index"
  1564. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  1565. dependencies = [
  1566. "bitflags 1.3.2",
  1567. ]
  1568. [[package]]
  1569. name = "redox_syscall"
  1570. version = "0.4.1"
  1571. source = "registry+https://github.com/rust-lang/crates.io-index"
  1572. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  1573. dependencies = [
  1574. "bitflags 1.3.2",
  1575. ]
  1576. [[package]]
  1577. name = "regex"
  1578. version = "1.10.4"
  1579. source = "registry+https://github.com/rust-lang/crates.io-index"
  1580. checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
  1581. dependencies = [
  1582. "aho-corasick",
  1583. "memchr",
  1584. "regex-automata",
  1585. "regex-syntax",
  1586. ]
  1587. [[package]]
  1588. name = "regex-automata"
  1589. version = "0.4.6"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  1592. dependencies = [
  1593. "aho-corasick",
  1594. "memchr",
  1595. "regex-syntax",
  1596. ]
  1597. [[package]]
  1598. name = "regex-syntax"
  1599. version = "0.8.3"
  1600. source = "registry+https://github.com/rust-lang/crates.io-index"
  1601. checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
  1602. [[package]]
  1603. name = "renderdoc-sys"
  1604. version = "1.1.0"
  1605. source = "registry+https://github.com/rust-lang/crates.io-index"
  1606. checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
  1607. [[package]]
  1608. name = "rgb"
  1609. version = "0.8.37"
  1610. source = "registry+https://github.com/rust-lang/crates.io-index"
  1611. checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
  1612. dependencies = [
  1613. "bytemuck",
  1614. ]
  1615. [[package]]
  1616. name = "rustc-hash"
  1617. version = "1.1.0"
  1618. source = "registry+https://github.com/rust-lang/crates.io-index"
  1619. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  1620. [[package]]
  1621. name = "rustix"
  1622. version = "0.38.32"
  1623. source = "registry+https://github.com/rust-lang/crates.io-index"
  1624. checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
  1625. dependencies = [
  1626. "bitflags 2.5.0",
  1627. "errno",
  1628. "libc",
  1629. "linux-raw-sys",
  1630. "windows-sys 0.52.0",
  1631. ]
  1632. [[package]]
  1633. name = "same-file"
  1634. version = "1.0.6"
  1635. source = "registry+https://github.com/rust-lang/crates.io-index"
  1636. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1637. dependencies = [
  1638. "winapi-util",
  1639. ]
  1640. [[package]]
  1641. name = "scoped-tls"
  1642. version = "1.0.1"
  1643. source = "registry+https://github.com/rust-lang/crates.io-index"
  1644. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  1645. [[package]]
  1646. name = "scopeguard"
  1647. version = "1.2.0"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  1650. [[package]]
  1651. name = "sctk-adwaita"
  1652. version = "0.8.1"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "82b2eaf3a5b264a521b988b2e73042e742df700c4f962cde845d1541adb46550"
  1655. dependencies = [
  1656. "ab_glyph",
  1657. "log",
  1658. "memmap2",
  1659. "smithay-client-toolkit",
  1660. "tiny-skia",
  1661. ]
  1662. [[package]]
  1663. name = "serde"
  1664. version = "1.0.197"
  1665. source = "registry+https://github.com/rust-lang/crates.io-index"
  1666. checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
  1667. dependencies = [
  1668. "serde_derive",
  1669. ]
  1670. [[package]]
  1671. name = "serde_derive"
  1672. version = "1.0.197"
  1673. source = "registry+https://github.com/rust-lang/crates.io-index"
  1674. checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
  1675. dependencies = [
  1676. "proc-macro2",
  1677. "quote",
  1678. "syn 2.0.55",
  1679. ]
  1680. [[package]]
  1681. name = "serde_spanned"
  1682. version = "0.6.5"
  1683. source = "registry+https://github.com/rust-lang/crates.io-index"
  1684. checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
  1685. dependencies = [
  1686. "serde",
  1687. ]
  1688. [[package]]
  1689. name = "simd-adler32"
  1690. version = "0.3.7"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  1693. [[package]]
  1694. name = "simd_helpers"
  1695. version = "0.1.0"
  1696. source = "registry+https://github.com/rust-lang/crates.io-index"
  1697. checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
  1698. dependencies = [
  1699. "quote",
  1700. ]
  1701. [[package]]
  1702. name = "slab"
  1703. version = "0.4.9"
  1704. source = "registry+https://github.com/rust-lang/crates.io-index"
  1705. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  1706. dependencies = [
  1707. "autocfg",
  1708. ]
  1709. [[package]]
  1710. name = "slotmap"
  1711. version = "1.0.7"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  1714. dependencies = [
  1715. "version_check",
  1716. ]
  1717. [[package]]
  1718. name = "smallvec"
  1719. version = "1.13.2"
  1720. source = "registry+https://github.com/rust-lang/crates.io-index"
  1721. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  1722. [[package]]
  1723. name = "smithay-client-toolkit"
  1724. version = "0.18.1"
  1725. source = "registry+https://github.com/rust-lang/crates.io-index"
  1726. checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a"
  1727. dependencies = [
  1728. "bitflags 2.5.0",
  1729. "calloop",
  1730. "calloop-wayland-source",
  1731. "cursor-icon",
  1732. "libc",
  1733. "log",
  1734. "memmap2",
  1735. "rustix",
  1736. "thiserror",
  1737. "wayland-backend",
  1738. "wayland-client",
  1739. "wayland-csd-frame",
  1740. "wayland-cursor",
  1741. "wayland-protocols",
  1742. "wayland-protocols-wlr",
  1743. "wayland-scanner",
  1744. "xkeysym",
  1745. ]
  1746. [[package]]
  1747. name = "smol_str"
  1748. version = "0.2.1"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "e6845563ada680337a52d43bb0b29f396f2d911616f6573012645b9e3d048a49"
  1751. dependencies = [
  1752. "serde",
  1753. ]
  1754. [[package]]
  1755. name = "spin"
  1756. version = "0.9.8"
  1757. source = "registry+https://github.com/rust-lang/crates.io-index"
  1758. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  1759. dependencies = [
  1760. "lock_api",
  1761. ]
  1762. [[package]]
  1763. name = "spirv"
  1764. version = "0.3.0+sdk-1.3.268.0"
  1765. source = "registry+https://github.com/rust-lang/crates.io-index"
  1766. checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
  1767. dependencies = [
  1768. "bitflags 2.5.0",
  1769. ]
  1770. [[package]]
  1771. name = "static_assertions"
  1772. version = "1.1.0"
  1773. source = "registry+https://github.com/rust-lang/crates.io-index"
  1774. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  1775. [[package]]
  1776. name = "strict-num"
  1777. version = "0.1.1"
  1778. source = "registry+https://github.com/rust-lang/crates.io-index"
  1779. checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
  1780. [[package]]
  1781. name = "syn"
  1782. version = "1.0.109"
  1783. source = "registry+https://github.com/rust-lang/crates.io-index"
  1784. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  1785. dependencies = [
  1786. "proc-macro2",
  1787. "quote",
  1788. "unicode-ident",
  1789. ]
  1790. [[package]]
  1791. name = "syn"
  1792. version = "2.0.55"
  1793. source = "registry+https://github.com/rust-lang/crates.io-index"
  1794. checksum = "002a1b3dbf967edfafc32655d0f377ab0bb7b994aa1d32c8cc7e9b8bf3ebb8f0"
  1795. dependencies = [
  1796. "proc-macro2",
  1797. "quote",
  1798. "unicode-ident",
  1799. ]
  1800. [[package]]
  1801. name = "system-deps"
  1802. version = "6.2.2"
  1803. source = "registry+https://github.com/rust-lang/crates.io-index"
  1804. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  1805. dependencies = [
  1806. "cfg-expr",
  1807. "heck",
  1808. "pkg-config",
  1809. "toml",
  1810. "version-compare",
  1811. ]
  1812. [[package]]
  1813. name = "target-lexicon"
  1814. version = "0.12.14"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
  1817. [[package]]
  1818. name = "termcolor"
  1819. version = "1.4.1"
  1820. source = "registry+https://github.com/rust-lang/crates.io-index"
  1821. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  1822. dependencies = [
  1823. "winapi-util",
  1824. ]
  1825. [[package]]
  1826. name = "thiserror"
  1827. version = "1.0.58"
  1828. source = "registry+https://github.com/rust-lang/crates.io-index"
  1829. checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
  1830. dependencies = [
  1831. "thiserror-impl",
  1832. ]
  1833. [[package]]
  1834. name = "thiserror-impl"
  1835. version = "1.0.58"
  1836. source = "registry+https://github.com/rust-lang/crates.io-index"
  1837. checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
  1838. dependencies = [
  1839. "proc-macro2",
  1840. "quote",
  1841. "syn 2.0.55",
  1842. ]
  1843. [[package]]
  1844. name = "tiff"
  1845. version = "0.9.1"
  1846. source = "registry+https://github.com/rust-lang/crates.io-index"
  1847. checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
  1848. dependencies = [
  1849. "flate2",
  1850. "jpeg-decoder",
  1851. "weezl",
  1852. ]
  1853. [[package]]
  1854. name = "tiny-skia"
  1855. version = "0.11.4"
  1856. source = "registry+https://github.com/rust-lang/crates.io-index"
  1857. checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
  1858. dependencies = [
  1859. "arrayref",
  1860. "arrayvec",
  1861. "bytemuck",
  1862. "cfg-if",
  1863. "log",
  1864. "tiny-skia-path",
  1865. ]
  1866. [[package]]
  1867. name = "tiny-skia-path"
  1868. version = "0.11.4"
  1869. source = "registry+https://github.com/rust-lang/crates.io-index"
  1870. checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
  1871. dependencies = [
  1872. "arrayref",
  1873. "bytemuck",
  1874. "strict-num",
  1875. ]
  1876. [[package]]
  1877. name = "toml"
  1878. version = "0.8.12"
  1879. source = "registry+https://github.com/rust-lang/crates.io-index"
  1880. checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
  1881. dependencies = [
  1882. "serde",
  1883. "serde_spanned",
  1884. "toml_datetime",
  1885. "toml_edit 0.22.9",
  1886. ]
  1887. [[package]]
  1888. name = "toml_datetime"
  1889. version = "0.6.5"
  1890. source = "registry+https://github.com/rust-lang/crates.io-index"
  1891. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  1892. dependencies = [
  1893. "serde",
  1894. ]
  1895. [[package]]
  1896. name = "toml_edit"
  1897. version = "0.21.1"
  1898. source = "registry+https://github.com/rust-lang/crates.io-index"
  1899. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  1900. dependencies = [
  1901. "indexmap",
  1902. "toml_datetime",
  1903. "winnow 0.5.40",
  1904. ]
  1905. [[package]]
  1906. name = "toml_edit"
  1907. version = "0.22.9"
  1908. source = "registry+https://github.com/rust-lang/crates.io-index"
  1909. checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
  1910. dependencies = [
  1911. "indexmap",
  1912. "serde",
  1913. "serde_spanned",
  1914. "toml_datetime",
  1915. "winnow 0.6.5",
  1916. ]
  1917. [[package]]
  1918. name = "tracing"
  1919. version = "0.1.40"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  1922. dependencies = [
  1923. "pin-project-lite",
  1924. "tracing-core",
  1925. ]
  1926. [[package]]
  1927. name = "tracing-core"
  1928. version = "0.1.32"
  1929. source = "registry+https://github.com/rust-lang/crates.io-index"
  1930. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  1931. [[package]]
  1932. name = "ttf-parser"
  1933. version = "0.20.0"
  1934. source = "registry+https://github.com/rust-lang/crates.io-index"
  1935. checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
  1936. [[package]]
  1937. name = "unicode-ident"
  1938. version = "1.0.12"
  1939. source = "registry+https://github.com/rust-lang/crates.io-index"
  1940. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  1941. [[package]]
  1942. name = "unicode-segmentation"
  1943. version = "1.11.0"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  1946. [[package]]
  1947. name = "unicode-width"
  1948. version = "0.1.11"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
  1951. [[package]]
  1952. name = "unicode-xid"
  1953. version = "0.2.4"
  1954. source = "registry+https://github.com/rust-lang/crates.io-index"
  1955. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  1956. [[package]]
  1957. name = "utf8parse"
  1958. version = "0.2.1"
  1959. source = "registry+https://github.com/rust-lang/crates.io-index"
  1960. checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
  1961. [[package]]
  1962. name = "v_frame"
  1963. version = "0.3.8"
  1964. source = "registry+https://github.com/rust-lang/crates.io-index"
  1965. checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
  1966. dependencies = [
  1967. "aligned-vec",
  1968. "num-traits",
  1969. "wasm-bindgen",
  1970. ]
  1971. [[package]]
  1972. name = "version-compare"
  1973. version = "0.2.0"
  1974. source = "registry+https://github.com/rust-lang/crates.io-index"
  1975. checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
  1976. [[package]]
  1977. name = "version_check"
  1978. version = "0.9.4"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1981. [[package]]
  1982. name = "walkdir"
  1983. version = "2.5.0"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  1986. dependencies = [
  1987. "same-file",
  1988. "winapi-util",
  1989. ]
  1990. [[package]]
  1991. name = "wasi"
  1992. version = "0.11.0+wasi-snapshot-preview1"
  1993. source = "registry+https://github.com/rust-lang/crates.io-index"
  1994. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1995. [[package]]
  1996. name = "wasm-bindgen"
  1997. version = "0.2.92"
  1998. source = "registry+https://github.com/rust-lang/crates.io-index"
  1999. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  2000. dependencies = [
  2001. "cfg-if",
  2002. "wasm-bindgen-macro",
  2003. ]
  2004. [[package]]
  2005. name = "wasm-bindgen-backend"
  2006. version = "0.2.92"
  2007. source = "registry+https://github.com/rust-lang/crates.io-index"
  2008. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  2009. dependencies = [
  2010. "bumpalo",
  2011. "log",
  2012. "once_cell",
  2013. "proc-macro2",
  2014. "quote",
  2015. "syn 2.0.55",
  2016. "wasm-bindgen-shared",
  2017. ]
  2018. [[package]]
  2019. name = "wasm-bindgen-futures"
  2020. version = "0.4.42"
  2021. source = "registry+https://github.com/rust-lang/crates.io-index"
  2022. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  2023. dependencies = [
  2024. "cfg-if",
  2025. "js-sys",
  2026. "wasm-bindgen",
  2027. "web-sys",
  2028. ]
  2029. [[package]]
  2030. name = "wasm-bindgen-macro"
  2031. version = "0.2.92"
  2032. source = "registry+https://github.com/rust-lang/crates.io-index"
  2033. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  2034. dependencies = [
  2035. "quote",
  2036. "wasm-bindgen-macro-support",
  2037. ]
  2038. [[package]]
  2039. name = "wasm-bindgen-macro-support"
  2040. version = "0.2.92"
  2041. source = "registry+https://github.com/rust-lang/crates.io-index"
  2042. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  2043. dependencies = [
  2044. "proc-macro2",
  2045. "quote",
  2046. "syn 2.0.55",
  2047. "wasm-bindgen-backend",
  2048. "wasm-bindgen-shared",
  2049. ]
  2050. [[package]]
  2051. name = "wasm-bindgen-shared"
  2052. version = "0.2.92"
  2053. source = "registry+https://github.com/rust-lang/crates.io-index"
  2054. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  2055. [[package]]
  2056. name = "wayland-backend"
  2057. version = "0.3.3"
  2058. source = "registry+https://github.com/rust-lang/crates.io-index"
  2059. checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40"
  2060. dependencies = [
  2061. "cc",
  2062. "downcast-rs",
  2063. "rustix",
  2064. "scoped-tls",
  2065. "smallvec",
  2066. "wayland-sys",
  2067. ]
  2068. [[package]]
  2069. name = "wayland-client"
  2070. version = "0.31.2"
  2071. source = "registry+https://github.com/rust-lang/crates.io-index"
  2072. checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f"
  2073. dependencies = [
  2074. "bitflags 2.5.0",
  2075. "rustix",
  2076. "wayland-backend",
  2077. "wayland-scanner",
  2078. ]
  2079. [[package]]
  2080. name = "wayland-csd-frame"
  2081. version = "0.3.0"
  2082. source = "registry+https://github.com/rust-lang/crates.io-index"
  2083. checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
  2084. dependencies = [
  2085. "bitflags 2.5.0",
  2086. "cursor-icon",
  2087. "wayland-backend",
  2088. ]
  2089. [[package]]
  2090. name = "wayland-cursor"
  2091. version = "0.31.1"
  2092. source = "registry+https://github.com/rust-lang/crates.io-index"
  2093. checksum = "71ce5fa868dd13d11a0d04c5e2e65726d0897be8de247c0c5a65886e283231ba"
  2094. dependencies = [
  2095. "rustix",
  2096. "wayland-client",
  2097. "xcursor",
  2098. ]
  2099. [[package]]
  2100. name = "wayland-protocols"
  2101. version = "0.31.2"
  2102. source = "registry+https://github.com/rust-lang/crates.io-index"
  2103. checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
  2104. dependencies = [
  2105. "bitflags 2.5.0",
  2106. "wayland-backend",
  2107. "wayland-client",
  2108. "wayland-scanner",
  2109. ]
  2110. [[package]]
  2111. name = "wayland-protocols-plasma"
  2112. version = "0.2.0"
  2113. source = "registry+https://github.com/rust-lang/crates.io-index"
  2114. checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479"
  2115. dependencies = [
  2116. "bitflags 2.5.0",
  2117. "wayland-backend",
  2118. "wayland-client",
  2119. "wayland-protocols",
  2120. "wayland-scanner",
  2121. ]
  2122. [[package]]
  2123. name = "wayland-protocols-wlr"
  2124. version = "0.2.0"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
  2127. dependencies = [
  2128. "bitflags 2.5.0",
  2129. "wayland-backend",
  2130. "wayland-client",
  2131. "wayland-protocols",
  2132. "wayland-scanner",
  2133. ]
  2134. [[package]]
  2135. name = "wayland-scanner"
  2136. version = "0.31.1"
  2137. source = "registry+https://github.com/rust-lang/crates.io-index"
  2138. checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283"
  2139. dependencies = [
  2140. "proc-macro2",
  2141. "quick-xml",
  2142. "quote",
  2143. ]
  2144. [[package]]
  2145. name = "wayland-sys"
  2146. version = "0.31.1"
  2147. source = "registry+https://github.com/rust-lang/crates.io-index"
  2148. checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af"
  2149. dependencies = [
  2150. "dlib",
  2151. "log",
  2152. "once_cell",
  2153. "pkg-config",
  2154. ]
  2155. [[package]]
  2156. name = "web-sys"
  2157. version = "0.3.69"
  2158. source = "registry+https://github.com/rust-lang/crates.io-index"
  2159. checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
  2160. dependencies = [
  2161. "js-sys",
  2162. "wasm-bindgen",
  2163. ]
  2164. [[package]]
  2165. name = "web-time"
  2166. version = "0.2.4"
  2167. source = "registry+https://github.com/rust-lang/crates.io-index"
  2168. checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
  2169. dependencies = [
  2170. "js-sys",
  2171. "wasm-bindgen",
  2172. ]
  2173. [[package]]
  2174. name = "weezl"
  2175. version = "0.1.8"
  2176. source = "registry+https://github.com/rust-lang/crates.io-index"
  2177. checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
  2178. [[package]]
  2179. name = "wgpu"
  2180. version = "0.19.3"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "a4b1213b52478a7631d6e387543ed8f642bc02c578ef4e3b49aca2a29a7df0cb"
  2183. dependencies = [
  2184. "arrayvec",
  2185. "cfg-if",
  2186. "cfg_aliases",
  2187. "js-sys",
  2188. "log",
  2189. "naga",
  2190. "parking_lot",
  2191. "profiling",
  2192. "raw-window-handle",
  2193. "smallvec",
  2194. "static_assertions",
  2195. "wasm-bindgen",
  2196. "wasm-bindgen-futures",
  2197. "web-sys",
  2198. "wgpu-core",
  2199. "wgpu-hal",
  2200. "wgpu-types",
  2201. ]
  2202. [[package]]
  2203. name = "wgpu-core"
  2204. version = "0.19.3"
  2205. source = "registry+https://github.com/rust-lang/crates.io-index"
  2206. checksum = "f9f6b033c2f00ae0bc8ea872c5989777c60bc241aac4e58b24774faa8b391f78"
  2207. dependencies = [
  2208. "arrayvec",
  2209. "bit-vec",
  2210. "bitflags 2.5.0",
  2211. "cfg_aliases",
  2212. "codespan-reporting",
  2213. "indexmap",
  2214. "log",
  2215. "naga",
  2216. "once_cell",
  2217. "parking_lot",
  2218. "profiling",
  2219. "raw-window-handle",
  2220. "rustc-hash",
  2221. "smallvec",
  2222. "thiserror",
  2223. "web-sys",
  2224. "wgpu-hal",
  2225. "wgpu-types",
  2226. ]
  2227. [[package]]
  2228. name = "wgpu-hal"
  2229. version = "0.19.3"
  2230. source = "registry+https://github.com/rust-lang/crates.io-index"
  2231. checksum = "49f972c280505ab52ffe17e94a7413d9d54b58af0114ab226b9fc4999a47082e"
  2232. dependencies = [
  2233. "android_system_properties",
  2234. "arrayvec",
  2235. "ash",
  2236. "bit-set",
  2237. "bitflags 2.5.0",
  2238. "block",
  2239. "cfg_aliases",
  2240. "core-graphics-types",
  2241. "d3d12",
  2242. "glow",
  2243. "glutin_wgl_sys",
  2244. "gpu-alloc",
  2245. "gpu-allocator",
  2246. "gpu-descriptor",
  2247. "hassle-rs",
  2248. "js-sys",
  2249. "khronos-egl",
  2250. "libc",
  2251. "libloading 0.8.3",
  2252. "log",
  2253. "metal",
  2254. "naga",
  2255. "ndk-sys",
  2256. "objc",
  2257. "once_cell",
  2258. "parking_lot",
  2259. "profiling",
  2260. "range-alloc",
  2261. "raw-window-handle",
  2262. "renderdoc-sys",
  2263. "rustc-hash",
  2264. "smallvec",
  2265. "thiserror",
  2266. "wasm-bindgen",
  2267. "web-sys",
  2268. "wgpu-types",
  2269. "winapi",
  2270. ]
  2271. [[package]]
  2272. name = "wgpu-types"
  2273. version = "0.19.2"
  2274. source = "registry+https://github.com/rust-lang/crates.io-index"
  2275. checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
  2276. dependencies = [
  2277. "bitflags 2.5.0",
  2278. "js-sys",
  2279. "web-sys",
  2280. ]
  2281. [[package]]
  2282. name = "wgpu2"
  2283. version = "0.1.0"
  2284. dependencies = [
  2285. "anyhow",
  2286. "bytemuck",
  2287. "chrono",
  2288. "egui",
  2289. "env_logger",
  2290. "glam",
  2291. "image",
  2292. "log",
  2293. "pollster",
  2294. "wgpu",
  2295. "winit",
  2296. ]
  2297. [[package]]
  2298. name = "widestring"
  2299. version = "1.0.2"
  2300. source = "registry+https://github.com/rust-lang/crates.io-index"
  2301. checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
  2302. [[package]]
  2303. name = "winapi"
  2304. version = "0.3.9"
  2305. source = "registry+https://github.com/rust-lang/crates.io-index"
  2306. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  2307. dependencies = [
  2308. "winapi-i686-pc-windows-gnu",
  2309. "winapi-x86_64-pc-windows-gnu",
  2310. ]
  2311. [[package]]
  2312. name = "winapi-i686-pc-windows-gnu"
  2313. version = "0.4.0"
  2314. source = "registry+https://github.com/rust-lang/crates.io-index"
  2315. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  2316. [[package]]
  2317. name = "winapi-util"
  2318. version = "0.1.6"
  2319. source = "registry+https://github.com/rust-lang/crates.io-index"
  2320. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  2321. dependencies = [
  2322. "winapi",
  2323. ]
  2324. [[package]]
  2325. name = "winapi-x86_64-pc-windows-gnu"
  2326. version = "0.4.0"
  2327. source = "registry+https://github.com/rust-lang/crates.io-index"
  2328. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  2329. [[package]]
  2330. name = "windows"
  2331. version = "0.52.0"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
  2334. dependencies = [
  2335. "windows-core",
  2336. "windows-targets 0.52.4",
  2337. ]
  2338. [[package]]
  2339. name = "windows-core"
  2340. version = "0.52.0"
  2341. source = "registry+https://github.com/rust-lang/crates.io-index"
  2342. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  2343. dependencies = [
  2344. "windows-targets 0.52.4",
  2345. ]
  2346. [[package]]
  2347. name = "windows-sys"
  2348. version = "0.45.0"
  2349. source = "registry+https://github.com/rust-lang/crates.io-index"
  2350. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  2351. dependencies = [
  2352. "windows-targets 0.42.2",
  2353. ]
  2354. [[package]]
  2355. name = "windows-sys"
  2356. version = "0.48.0"
  2357. source = "registry+https://github.com/rust-lang/crates.io-index"
  2358. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  2359. dependencies = [
  2360. "windows-targets 0.48.5",
  2361. ]
  2362. [[package]]
  2363. name = "windows-sys"
  2364. version = "0.52.0"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  2367. dependencies = [
  2368. "windows-targets 0.52.4",
  2369. ]
  2370. [[package]]
  2371. name = "windows-targets"
  2372. version = "0.42.2"
  2373. source = "registry+https://github.com/rust-lang/crates.io-index"
  2374. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  2375. dependencies = [
  2376. "windows_aarch64_gnullvm 0.42.2",
  2377. "windows_aarch64_msvc 0.42.2",
  2378. "windows_i686_gnu 0.42.2",
  2379. "windows_i686_msvc 0.42.2",
  2380. "windows_x86_64_gnu 0.42.2",
  2381. "windows_x86_64_gnullvm 0.42.2",
  2382. "windows_x86_64_msvc 0.42.2",
  2383. ]
  2384. [[package]]
  2385. name = "windows-targets"
  2386. version = "0.48.5"
  2387. source = "registry+https://github.com/rust-lang/crates.io-index"
  2388. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  2389. dependencies = [
  2390. "windows_aarch64_gnullvm 0.48.5",
  2391. "windows_aarch64_msvc 0.48.5",
  2392. "windows_i686_gnu 0.48.5",
  2393. "windows_i686_msvc 0.48.5",
  2394. "windows_x86_64_gnu 0.48.5",
  2395. "windows_x86_64_gnullvm 0.48.5",
  2396. "windows_x86_64_msvc 0.48.5",
  2397. ]
  2398. [[package]]
  2399. name = "windows-targets"
  2400. version = "0.52.4"
  2401. source = "registry+https://github.com/rust-lang/crates.io-index"
  2402. checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
  2403. dependencies = [
  2404. "windows_aarch64_gnullvm 0.52.4",
  2405. "windows_aarch64_msvc 0.52.4",
  2406. "windows_i686_gnu 0.52.4",
  2407. "windows_i686_msvc 0.52.4",
  2408. "windows_x86_64_gnu 0.52.4",
  2409. "windows_x86_64_gnullvm 0.52.4",
  2410. "windows_x86_64_msvc 0.52.4",
  2411. ]
  2412. [[package]]
  2413. name = "windows_aarch64_gnullvm"
  2414. version = "0.42.2"
  2415. source = "registry+https://github.com/rust-lang/crates.io-index"
  2416. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  2417. [[package]]
  2418. name = "windows_aarch64_gnullvm"
  2419. version = "0.48.5"
  2420. source = "registry+https://github.com/rust-lang/crates.io-index"
  2421. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  2422. [[package]]
  2423. name = "windows_aarch64_gnullvm"
  2424. version = "0.52.4"
  2425. source = "registry+https://github.com/rust-lang/crates.io-index"
  2426. checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
  2427. [[package]]
  2428. name = "windows_aarch64_msvc"
  2429. version = "0.42.2"
  2430. source = "registry+https://github.com/rust-lang/crates.io-index"
  2431. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  2432. [[package]]
  2433. name = "windows_aarch64_msvc"
  2434. version = "0.48.5"
  2435. source = "registry+https://github.com/rust-lang/crates.io-index"
  2436. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  2437. [[package]]
  2438. name = "windows_aarch64_msvc"
  2439. version = "0.52.4"
  2440. source = "registry+https://github.com/rust-lang/crates.io-index"
  2441. checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
  2442. [[package]]
  2443. name = "windows_i686_gnu"
  2444. version = "0.42.2"
  2445. source = "registry+https://github.com/rust-lang/crates.io-index"
  2446. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  2447. [[package]]
  2448. name = "windows_i686_gnu"
  2449. version = "0.48.5"
  2450. source = "registry+https://github.com/rust-lang/crates.io-index"
  2451. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  2452. [[package]]
  2453. name = "windows_i686_gnu"
  2454. version = "0.52.4"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
  2457. [[package]]
  2458. name = "windows_i686_msvc"
  2459. version = "0.42.2"
  2460. source = "registry+https://github.com/rust-lang/crates.io-index"
  2461. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  2462. [[package]]
  2463. name = "windows_i686_msvc"
  2464. version = "0.48.5"
  2465. source = "registry+https://github.com/rust-lang/crates.io-index"
  2466. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  2467. [[package]]
  2468. name = "windows_i686_msvc"
  2469. version = "0.52.4"
  2470. source = "registry+https://github.com/rust-lang/crates.io-index"
  2471. checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
  2472. [[package]]
  2473. name = "windows_x86_64_gnu"
  2474. version = "0.42.2"
  2475. source = "registry+https://github.com/rust-lang/crates.io-index"
  2476. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  2477. [[package]]
  2478. name = "windows_x86_64_gnu"
  2479. version = "0.48.5"
  2480. source = "registry+https://github.com/rust-lang/crates.io-index"
  2481. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  2482. [[package]]
  2483. name = "windows_x86_64_gnu"
  2484. version = "0.52.4"
  2485. source = "registry+https://github.com/rust-lang/crates.io-index"
  2486. checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
  2487. [[package]]
  2488. name = "windows_x86_64_gnullvm"
  2489. version = "0.42.2"
  2490. source = "registry+https://github.com/rust-lang/crates.io-index"
  2491. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  2492. [[package]]
  2493. name = "windows_x86_64_gnullvm"
  2494. version = "0.48.5"
  2495. source = "registry+https://github.com/rust-lang/crates.io-index"
  2496. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  2497. [[package]]
  2498. name = "windows_x86_64_gnullvm"
  2499. version = "0.52.4"
  2500. source = "registry+https://github.com/rust-lang/crates.io-index"
  2501. checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
  2502. [[package]]
  2503. name = "windows_x86_64_msvc"
  2504. version = "0.42.2"
  2505. source = "registry+https://github.com/rust-lang/crates.io-index"
  2506. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  2507. [[package]]
  2508. name = "windows_x86_64_msvc"
  2509. version = "0.48.5"
  2510. source = "registry+https://github.com/rust-lang/crates.io-index"
  2511. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  2512. [[package]]
  2513. name = "windows_x86_64_msvc"
  2514. version = "0.52.4"
  2515. source = "registry+https://github.com/rust-lang/crates.io-index"
  2516. checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
  2517. [[package]]
  2518. name = "winit"
  2519. version = "0.29.15"
  2520. source = "registry+https://github.com/rust-lang/crates.io-index"
  2521. checksum = "0d59ad965a635657faf09c8f062badd885748428933dad8e8bdd64064d92e5ca"
  2522. dependencies = [
  2523. "ahash",
  2524. "android-activity",
  2525. "atomic-waker",
  2526. "bitflags 2.5.0",
  2527. "bytemuck",
  2528. "calloop",
  2529. "cfg_aliases",
  2530. "core-foundation",
  2531. "core-graphics",
  2532. "cursor-icon",
  2533. "icrate",
  2534. "js-sys",
  2535. "libc",
  2536. "log",
  2537. "memmap2",
  2538. "ndk",
  2539. "ndk-sys",
  2540. "objc2",
  2541. "once_cell",
  2542. "orbclient",
  2543. "percent-encoding",
  2544. "raw-window-handle",
  2545. "redox_syscall 0.3.5",
  2546. "rustix",
  2547. "sctk-adwaita",
  2548. "smithay-client-toolkit",
  2549. "smol_str",
  2550. "unicode-segmentation",
  2551. "wasm-bindgen",
  2552. "wasm-bindgen-futures",
  2553. "wayland-backend",
  2554. "wayland-client",
  2555. "wayland-protocols",
  2556. "wayland-protocols-plasma",
  2557. "web-sys",
  2558. "web-time",
  2559. "windows-sys 0.48.0",
  2560. "x11-dl",
  2561. "x11rb",
  2562. "xkbcommon-dl",
  2563. ]
  2564. [[package]]
  2565. name = "winnow"
  2566. version = "0.5.40"
  2567. source = "registry+https://github.com/rust-lang/crates.io-index"
  2568. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  2569. dependencies = [
  2570. "memchr",
  2571. ]
  2572. [[package]]
  2573. name = "winnow"
  2574. version = "0.6.5"
  2575. source = "registry+https://github.com/rust-lang/crates.io-index"
  2576. checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
  2577. dependencies = [
  2578. "memchr",
  2579. ]
  2580. [[package]]
  2581. name = "x11-dl"
  2582. version = "2.21.0"
  2583. source = "registry+https://github.com/rust-lang/crates.io-index"
  2584. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  2585. dependencies = [
  2586. "libc",
  2587. "once_cell",
  2588. "pkg-config",
  2589. ]
  2590. [[package]]
  2591. name = "x11rb"
  2592. version = "0.13.0"
  2593. source = "registry+https://github.com/rust-lang/crates.io-index"
  2594. checksum = "f8f25ead8c7e4cba123243a6367da5d3990e0d3affa708ea19dce96356bd9f1a"
  2595. dependencies = [
  2596. "as-raw-xcb-connection",
  2597. "gethostname",
  2598. "libc",
  2599. "libloading 0.8.3",
  2600. "once_cell",
  2601. "rustix",
  2602. "x11rb-protocol",
  2603. ]
  2604. [[package]]
  2605. name = "x11rb-protocol"
  2606. version = "0.13.0"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34"
  2609. [[package]]
  2610. name = "xcursor"
  2611. version = "0.3.5"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911"
  2614. [[package]]
  2615. name = "xkbcommon-dl"
  2616. version = "0.4.2"
  2617. source = "registry+https://github.com/rust-lang/crates.io-index"
  2618. checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
  2619. dependencies = [
  2620. "bitflags 2.5.0",
  2621. "dlib",
  2622. "log",
  2623. "once_cell",
  2624. "xkeysym",
  2625. ]
  2626. [[package]]
  2627. name = "xkeysym"
  2628. version = "0.2.0"
  2629. source = "registry+https://github.com/rust-lang/crates.io-index"
  2630. checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621"
  2631. [[package]]
  2632. name = "xml-rs"
  2633. version = "0.8.19"
  2634. source = "registry+https://github.com/rust-lang/crates.io-index"
  2635. checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a"
  2636. [[package]]
  2637. name = "zerocopy"
  2638. version = "0.7.32"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
  2641. dependencies = [
  2642. "zerocopy-derive",
  2643. ]
  2644. [[package]]
  2645. name = "zerocopy-derive"
  2646. version = "0.7.32"
  2647. source = "registry+https://github.com/rust-lang/crates.io-index"
  2648. checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
  2649. dependencies = [
  2650. "proc-macro2",
  2651. "quote",
  2652. "syn 2.0.55",
  2653. ]
  2654. [[package]]
  2655. name = "zune-core"
  2656. version = "0.4.12"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
  2659. [[package]]
  2660. name = "zune-inflate"
  2661. version = "0.2.54"
  2662. source = "registry+https://github.com/rust-lang/crates.io-index"
  2663. checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
  2664. dependencies = [
  2665. "simd-adler32",
  2666. ]
  2667. [[package]]
  2668. name = "zune-jpeg"
  2669. version = "0.4.11"
  2670. source = "registry+https://github.com/rust-lang/crates.io-index"
  2671. checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448"
  2672. dependencies = [
  2673. "zune-core",
  2674. ]