Cargo.lock 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  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.26"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "2e53b0a3d5760cd2ba9b787ae0c6440ad18ee294ff71b05e3381c900a7d16cfd"
  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 = "ahash"
  20. version = "0.8.11"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  23. dependencies = [
  24. "cfg-if",
  25. "getrandom",
  26. "once_cell",
  27. "version_check",
  28. "zerocopy",
  29. ]
  30. [[package]]
  31. name = "aho-corasick"
  32. version = "1.1.3"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  35. dependencies = [
  36. "memchr",
  37. ]
  38. [[package]]
  39. name = "allocator-api2"
  40. version = "0.2.18"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
  43. [[package]]
  44. name = "android-activity"
  45. version = "0.5.2"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "ee91c0c2905bae44f84bfa4e044536541df26b7703fd0888deeb9060fcc44289"
  48. dependencies = [
  49. "android-properties",
  50. "bitflags 2.5.0",
  51. "cc",
  52. "cesu8",
  53. "jni",
  54. "jni-sys",
  55. "libc",
  56. "log",
  57. "ndk",
  58. "ndk-context",
  59. "ndk-sys",
  60. "num_enum",
  61. "thiserror",
  62. ]
  63. [[package]]
  64. name = "android-properties"
  65. version = "0.2.2"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
  68. [[package]]
  69. name = "android_system_properties"
  70. version = "0.1.5"
  71. source = "registry+https://github.com/rust-lang/crates.io-index"
  72. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  73. dependencies = [
  74. "libc",
  75. ]
  76. [[package]]
  77. name = "anstream"
  78. version = "0.6.14"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
  81. dependencies = [
  82. "anstyle",
  83. "anstyle-parse",
  84. "anstyle-query",
  85. "anstyle-wincon",
  86. "colorchoice",
  87. "is_terminal_polyfill",
  88. "utf8parse",
  89. ]
  90. [[package]]
  91. name = "anstyle"
  92. version = "1.0.7"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
  95. [[package]]
  96. name = "anstyle-parse"
  97. version = "0.2.4"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
  100. dependencies = [
  101. "utf8parse",
  102. ]
  103. [[package]]
  104. name = "anstyle-query"
  105. version = "1.0.3"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
  108. dependencies = [
  109. "windows-sys 0.52.0",
  110. ]
  111. [[package]]
  112. name = "anstyle-wincon"
  113. version = "3.0.3"
  114. source = "registry+https://github.com/rust-lang/crates.io-index"
  115. checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
  116. dependencies = [
  117. "anstyle",
  118. "windows-sys 0.52.0",
  119. ]
  120. [[package]]
  121. name = "arrayref"
  122. version = "0.3.7"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
  125. [[package]]
  126. name = "arrayvec"
  127. version = "0.7.4"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  130. [[package]]
  131. name = "as-raw-xcb-connection"
  132. version = "1.0.1"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
  135. [[package]]
  136. name = "ash"
  137. version = "0.37.3+1.3.251"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a"
  140. dependencies = [
  141. "libloading 0.7.4",
  142. ]
  143. [[package]]
  144. name = "atomic-waker"
  145. version = "1.1.2"
  146. source = "registry+https://github.com/rust-lang/crates.io-index"
  147. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  148. [[package]]
  149. name = "autocfg"
  150. version = "1.3.0"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
  153. [[package]]
  154. name = "bit-set"
  155. version = "0.5.3"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  158. dependencies = [
  159. "bit-vec",
  160. ]
  161. [[package]]
  162. name = "bit-vec"
  163. version = "0.6.3"
  164. source = "registry+https://github.com/rust-lang/crates.io-index"
  165. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  166. [[package]]
  167. name = "bitflags"
  168. version = "1.3.2"
  169. source = "registry+https://github.com/rust-lang/crates.io-index"
  170. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  171. [[package]]
  172. name = "bitflags"
  173. version = "2.5.0"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
  176. [[package]]
  177. name = "block"
  178. version = "0.1.6"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  181. [[package]]
  182. name = "block-sys"
  183. version = "0.2.1"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7"
  186. dependencies = [
  187. "objc-sys",
  188. ]
  189. [[package]]
  190. name = "block2"
  191. version = "0.3.0"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "15b55663a85f33501257357e6421bb33e769d5c9ffb5ba0921c975a123e35e68"
  194. dependencies = [
  195. "block-sys",
  196. "objc2",
  197. ]
  198. [[package]]
  199. name = "bumpalo"
  200. version = "3.16.0"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  203. [[package]]
  204. name = "bytemuck"
  205. version = "1.16.0"
  206. source = "registry+https://github.com/rust-lang/crates.io-index"
  207. checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
  208. dependencies = [
  209. "bytemuck_derive",
  210. ]
  211. [[package]]
  212. name = "bytemuck_derive"
  213. version = "1.6.0"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "4da9a32f3fed317401fa3c862968128267c3106685286e15d5aaa3d7389c2f60"
  216. dependencies = [
  217. "proc-macro2",
  218. "quote",
  219. "syn 2.0.63",
  220. ]
  221. [[package]]
  222. name = "bytes"
  223. version = "1.6.0"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
  226. [[package]]
  227. name = "calloop"
  228. version = "0.12.4"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298"
  231. dependencies = [
  232. "bitflags 2.5.0",
  233. "log",
  234. "polling",
  235. "rustix",
  236. "slab",
  237. "thiserror",
  238. ]
  239. [[package]]
  240. name = "calloop-wayland-source"
  241. version = "0.2.0"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02"
  244. dependencies = [
  245. "calloop",
  246. "rustix",
  247. "wayland-backend",
  248. "wayland-client",
  249. ]
  250. [[package]]
  251. name = "cc"
  252. version = "1.0.97"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
  255. dependencies = [
  256. "jobserver",
  257. "libc",
  258. "once_cell",
  259. ]
  260. [[package]]
  261. name = "cesu8"
  262. version = "1.1.0"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  265. [[package]]
  266. name = "cfg-if"
  267. version = "1.0.0"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  270. [[package]]
  271. name = "cfg_aliases"
  272. version = "0.1.1"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
  275. [[package]]
  276. name = "codespan-reporting"
  277. version = "0.11.1"
  278. source = "registry+https://github.com/rust-lang/crates.io-index"
  279. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  280. dependencies = [
  281. "termcolor",
  282. "unicode-width",
  283. ]
  284. [[package]]
  285. name = "colorchoice"
  286. version = "1.0.1"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
  289. [[package]]
  290. name = "com"
  291. version = "0.6.0"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
  294. dependencies = [
  295. "com_macros",
  296. ]
  297. [[package]]
  298. name = "com_macros"
  299. version = "0.6.0"
  300. source = "registry+https://github.com/rust-lang/crates.io-index"
  301. checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
  302. dependencies = [
  303. "com_macros_support",
  304. "proc-macro2",
  305. "syn 1.0.109",
  306. ]
  307. [[package]]
  308. name = "com_macros_support"
  309. version = "0.6.0"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
  312. dependencies = [
  313. "proc-macro2",
  314. "quote",
  315. "syn 1.0.109",
  316. ]
  317. [[package]]
  318. name = "combine"
  319. version = "4.6.7"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  322. dependencies = [
  323. "bytes",
  324. "memchr",
  325. ]
  326. [[package]]
  327. name = "concurrent-queue"
  328. version = "2.5.0"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  331. dependencies = [
  332. "crossbeam-utils",
  333. ]
  334. [[package]]
  335. name = "core-foundation"
  336. version = "0.9.4"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  339. dependencies = [
  340. "core-foundation-sys",
  341. "libc",
  342. ]
  343. [[package]]
  344. name = "core-foundation-sys"
  345. version = "0.8.6"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  348. [[package]]
  349. name = "core-graphics"
  350. version = "0.23.2"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
  353. dependencies = [
  354. "bitflags 1.3.2",
  355. "core-foundation",
  356. "core-graphics-types",
  357. "foreign-types",
  358. "libc",
  359. ]
  360. [[package]]
  361. name = "core-graphics-types"
  362. version = "0.1.3"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  365. dependencies = [
  366. "bitflags 1.3.2",
  367. "core-foundation",
  368. "libc",
  369. ]
  370. [[package]]
  371. name = "crossbeam-utils"
  372. version = "0.8.19"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  375. [[package]]
  376. name = "cursor-icon"
  377. version = "1.1.0"
  378. source = "registry+https://github.com/rust-lang/crates.io-index"
  379. checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"
  380. [[package]]
  381. name = "d3d12"
  382. version = "0.19.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "3e3d747f100290a1ca24b752186f61f6637e1deffe3bf6320de6fcb29510a307"
  385. dependencies = [
  386. "bitflags 2.5.0",
  387. "libloading 0.8.3",
  388. "winapi",
  389. ]
  390. [[package]]
  391. name = "dispatch"
  392. version = "0.2.0"
  393. source = "registry+https://github.com/rust-lang/crates.io-index"
  394. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  395. [[package]]
  396. name = "dlib"
  397. version = "0.5.2"
  398. source = "registry+https://github.com/rust-lang/crates.io-index"
  399. checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
  400. dependencies = [
  401. "libloading 0.8.3",
  402. ]
  403. [[package]]
  404. name = "downcast-rs"
  405. version = "1.2.1"
  406. source = "registry+https://github.com/rust-lang/crates.io-index"
  407. checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
  408. [[package]]
  409. name = "env_filter"
  410. version = "0.1.0"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
  413. dependencies = [
  414. "log",
  415. "regex",
  416. ]
  417. [[package]]
  418. name = "env_logger"
  419. version = "0.11.3"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
  422. dependencies = [
  423. "anstream",
  424. "anstyle",
  425. "env_filter",
  426. "humantime",
  427. "log",
  428. ]
  429. [[package]]
  430. name = "equivalent"
  431. version = "1.0.1"
  432. source = "registry+https://github.com/rust-lang/crates.io-index"
  433. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  434. [[package]]
  435. name = "errno"
  436. version = "0.3.9"
  437. source = "registry+https://github.com/rust-lang/crates.io-index"
  438. checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
  439. dependencies = [
  440. "libc",
  441. "windows-sys 0.52.0",
  442. ]
  443. [[package]]
  444. name = "foreign-types"
  445. version = "0.5.0"
  446. source = "registry+https://github.com/rust-lang/crates.io-index"
  447. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  448. dependencies = [
  449. "foreign-types-macros",
  450. "foreign-types-shared",
  451. ]
  452. [[package]]
  453. name = "foreign-types-macros"
  454. version = "0.2.3"
  455. source = "registry+https://github.com/rust-lang/crates.io-index"
  456. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  457. dependencies = [
  458. "proc-macro2",
  459. "quote",
  460. "syn 2.0.63",
  461. ]
  462. [[package]]
  463. name = "foreign-types-shared"
  464. version = "0.3.1"
  465. source = "registry+https://github.com/rust-lang/crates.io-index"
  466. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  467. [[package]]
  468. name = "gethostname"
  469. version = "0.4.3"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
  472. dependencies = [
  473. "libc",
  474. "windows-targets 0.48.5",
  475. ]
  476. [[package]]
  477. name = "getrandom"
  478. version = "0.2.15"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  481. dependencies = [
  482. "cfg-if",
  483. "libc",
  484. "wasi",
  485. ]
  486. [[package]]
  487. name = "gl_generator"
  488. version = "0.14.0"
  489. source = "registry+https://github.com/rust-lang/crates.io-index"
  490. checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
  491. dependencies = [
  492. "khronos_api",
  493. "log",
  494. "xml-rs",
  495. ]
  496. [[package]]
  497. name = "glam"
  498. version = "0.27.0"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
  501. [[package]]
  502. name = "glow"
  503. version = "0.13.1"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
  506. dependencies = [
  507. "js-sys",
  508. "slotmap",
  509. "wasm-bindgen",
  510. "web-sys",
  511. ]
  512. [[package]]
  513. name = "glutin_wgl_sys"
  514. version = "0.5.0"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead"
  517. dependencies = [
  518. "gl_generator",
  519. ]
  520. [[package]]
  521. name = "gpu-alloc"
  522. version = "0.6.0"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
  525. dependencies = [
  526. "bitflags 2.5.0",
  527. "gpu-alloc-types",
  528. ]
  529. [[package]]
  530. name = "gpu-alloc-types"
  531. version = "0.3.0"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
  534. dependencies = [
  535. "bitflags 2.5.0",
  536. ]
  537. [[package]]
  538. name = "gpu-allocator"
  539. version = "0.25.0"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884"
  542. dependencies = [
  543. "log",
  544. "presser",
  545. "thiserror",
  546. "winapi",
  547. "windows",
  548. ]
  549. [[package]]
  550. name = "gpu-descriptor"
  551. version = "0.2.4"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c"
  554. dependencies = [
  555. "bitflags 2.5.0",
  556. "gpu-descriptor-types",
  557. "hashbrown",
  558. ]
  559. [[package]]
  560. name = "gpu-descriptor-types"
  561. version = "0.1.2"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c"
  564. dependencies = [
  565. "bitflags 2.5.0",
  566. ]
  567. [[package]]
  568. name = "hashbrown"
  569. version = "0.14.5"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  572. dependencies = [
  573. "ahash",
  574. "allocator-api2",
  575. ]
  576. [[package]]
  577. name = "hassle-rs"
  578. version = "0.11.0"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
  581. dependencies = [
  582. "bitflags 2.5.0",
  583. "com",
  584. "libc",
  585. "libloading 0.8.3",
  586. "thiserror",
  587. "widestring",
  588. "winapi",
  589. ]
  590. [[package]]
  591. name = "hermit-abi"
  592. version = "0.3.9"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  595. [[package]]
  596. name = "hexf-parse"
  597. version = "0.2.1"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
  600. [[package]]
  601. name = "humantime"
  602. version = "2.1.0"
  603. source = "registry+https://github.com/rust-lang/crates.io-index"
  604. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  605. [[package]]
  606. name = "icrate"
  607. version = "0.0.4"
  608. source = "registry+https://github.com/rust-lang/crates.io-index"
  609. checksum = "99d3aaff8a54577104bafdf686ff18565c3b6903ca5782a2026ef06e2c7aa319"
  610. dependencies = [
  611. "block2",
  612. "dispatch",
  613. "objc2",
  614. ]
  615. [[package]]
  616. name = "indexmap"
  617. version = "2.2.6"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
  620. dependencies = [
  621. "equivalent",
  622. "hashbrown",
  623. ]
  624. [[package]]
  625. name = "is_terminal_polyfill"
  626. version = "1.70.0"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
  629. [[package]]
  630. name = "jni"
  631. version = "0.21.1"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  634. dependencies = [
  635. "cesu8",
  636. "cfg-if",
  637. "combine",
  638. "jni-sys",
  639. "log",
  640. "thiserror",
  641. "walkdir",
  642. "windows-sys 0.45.0",
  643. ]
  644. [[package]]
  645. name = "jni-sys"
  646. version = "0.3.0"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  649. [[package]]
  650. name = "jobserver"
  651. version = "0.1.31"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
  654. dependencies = [
  655. "libc",
  656. ]
  657. [[package]]
  658. name = "js-sys"
  659. version = "0.3.69"
  660. source = "registry+https://github.com/rust-lang/crates.io-index"
  661. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  662. dependencies = [
  663. "wasm-bindgen",
  664. ]
  665. [[package]]
  666. name = "khronos-egl"
  667. version = "6.0.0"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
  670. dependencies = [
  671. "libc",
  672. "libloading 0.8.3",
  673. "pkg-config",
  674. ]
  675. [[package]]
  676. name = "khronos_api"
  677. version = "3.1.0"
  678. source = "registry+https://github.com/rust-lang/crates.io-index"
  679. checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
  680. [[package]]
  681. name = "libc"
  682. version = "0.2.154"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
  685. [[package]]
  686. name = "libloading"
  687. version = "0.7.4"
  688. source = "registry+https://github.com/rust-lang/crates.io-index"
  689. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  690. dependencies = [
  691. "cfg-if",
  692. "winapi",
  693. ]
  694. [[package]]
  695. name = "libloading"
  696. version = "0.8.3"
  697. source = "registry+https://github.com/rust-lang/crates.io-index"
  698. checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
  699. dependencies = [
  700. "cfg-if",
  701. "windows-targets 0.52.5",
  702. ]
  703. [[package]]
  704. name = "libredox"
  705. version = "0.0.2"
  706. source = "registry+https://github.com/rust-lang/crates.io-index"
  707. checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
  708. dependencies = [
  709. "bitflags 2.5.0",
  710. "libc",
  711. "redox_syscall 0.4.1",
  712. ]
  713. [[package]]
  714. name = "linux-raw-sys"
  715. version = "0.4.13"
  716. source = "registry+https://github.com/rust-lang/crates.io-index"
  717. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  718. [[package]]
  719. name = "lock_api"
  720. version = "0.4.12"
  721. source = "registry+https://github.com/rust-lang/crates.io-index"
  722. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  723. dependencies = [
  724. "autocfg",
  725. "scopeguard",
  726. ]
  727. [[package]]
  728. name = "log"
  729. version = "0.4.21"
  730. source = "registry+https://github.com/rust-lang/crates.io-index"
  731. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  732. [[package]]
  733. name = "malloc_buf"
  734. version = "0.0.6"
  735. source = "registry+https://github.com/rust-lang/crates.io-index"
  736. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  737. dependencies = [
  738. "libc",
  739. ]
  740. [[package]]
  741. name = "memchr"
  742. version = "2.7.2"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
  745. [[package]]
  746. name = "memmap2"
  747. version = "0.9.4"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  750. dependencies = [
  751. "libc",
  752. ]
  753. [[package]]
  754. name = "metal"
  755. version = "0.27.0"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
  758. dependencies = [
  759. "bitflags 2.5.0",
  760. "block",
  761. "core-graphics-types",
  762. "foreign-types",
  763. "log",
  764. "objc",
  765. "paste",
  766. ]
  767. [[package]]
  768. name = "naga"
  769. version = "0.19.2"
  770. source = "registry+https://github.com/rust-lang/crates.io-index"
  771. checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
  772. dependencies = [
  773. "bit-set",
  774. "bitflags 2.5.0",
  775. "codespan-reporting",
  776. "hexf-parse",
  777. "indexmap",
  778. "log",
  779. "num-traits",
  780. "rustc-hash",
  781. "spirv",
  782. "termcolor",
  783. "thiserror",
  784. "unicode-xid",
  785. ]
  786. [[package]]
  787. name = "ndk"
  788. version = "0.8.0"
  789. source = "registry+https://github.com/rust-lang/crates.io-index"
  790. checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7"
  791. dependencies = [
  792. "bitflags 2.5.0",
  793. "jni-sys",
  794. "log",
  795. "ndk-sys",
  796. "num_enum",
  797. "raw-window-handle 0.5.2",
  798. "raw-window-handle 0.6.1",
  799. "thiserror",
  800. ]
  801. [[package]]
  802. name = "ndk-context"
  803. version = "0.1.1"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  806. [[package]]
  807. name = "ndk-sys"
  808. version = "0.5.0+25.2.9519653"
  809. source = "registry+https://github.com/rust-lang/crates.io-index"
  810. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  811. dependencies = [
  812. "jni-sys",
  813. ]
  814. [[package]]
  815. name = "num-traits"
  816. version = "0.2.19"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  819. dependencies = [
  820. "autocfg",
  821. ]
  822. [[package]]
  823. name = "num_enum"
  824. version = "0.7.2"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
  827. dependencies = [
  828. "num_enum_derive",
  829. ]
  830. [[package]]
  831. name = "num_enum_derive"
  832. version = "0.7.2"
  833. source = "registry+https://github.com/rust-lang/crates.io-index"
  834. checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
  835. dependencies = [
  836. "proc-macro-crate",
  837. "proc-macro2",
  838. "quote",
  839. "syn 2.0.63",
  840. ]
  841. [[package]]
  842. name = "objc"
  843. version = "0.2.7"
  844. source = "registry+https://github.com/rust-lang/crates.io-index"
  845. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  846. dependencies = [
  847. "malloc_buf",
  848. "objc_exception",
  849. ]
  850. [[package]]
  851. name = "objc-sys"
  852. version = "0.3.3"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "da284c198fb9b7b0603f8635185e85fbd5b64ee154b1ed406d489077de2d6d60"
  855. [[package]]
  856. name = "objc2"
  857. version = "0.4.1"
  858. source = "registry+https://github.com/rust-lang/crates.io-index"
  859. checksum = "559c5a40fdd30eb5e344fbceacf7595a81e242529fb4e21cf5f43fb4f11ff98d"
  860. dependencies = [
  861. "objc-sys",
  862. "objc2-encode",
  863. ]
  864. [[package]]
  865. name = "objc2-encode"
  866. version = "3.0.0"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "d079845b37af429bfe5dfa76e6d087d788031045b25cfc6fd898486fd9847666"
  869. [[package]]
  870. name = "objc_exception"
  871. version = "0.1.2"
  872. source = "registry+https://github.com/rust-lang/crates.io-index"
  873. checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
  874. dependencies = [
  875. "cc",
  876. ]
  877. [[package]]
  878. name = "once_cell"
  879. version = "1.19.0"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  882. [[package]]
  883. name = "orbclient"
  884. version = "0.3.47"
  885. source = "registry+https://github.com/rust-lang/crates.io-index"
  886. checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166"
  887. dependencies = [
  888. "libredox",
  889. ]
  890. [[package]]
  891. name = "owned_ttf_parser"
  892. version = "0.21.0"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "6b41438d2fc63c46c74a2203bf5ccd82c41ba04347b2fcf5754f230b167067d5"
  895. dependencies = [
  896. "ttf-parser",
  897. ]
  898. [[package]]
  899. name = "parking_lot"
  900. version = "0.12.2"
  901. source = "registry+https://github.com/rust-lang/crates.io-index"
  902. checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
  903. dependencies = [
  904. "lock_api",
  905. "parking_lot_core",
  906. ]
  907. [[package]]
  908. name = "parking_lot_core"
  909. version = "0.9.10"
  910. source = "registry+https://github.com/rust-lang/crates.io-index"
  911. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  912. dependencies = [
  913. "cfg-if",
  914. "libc",
  915. "redox_syscall 0.5.1",
  916. "smallvec",
  917. "windows-targets 0.52.5",
  918. ]
  919. [[package]]
  920. name = "paste"
  921. version = "1.0.15"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  924. [[package]]
  925. name = "percent-encoding"
  926. version = "2.3.1"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  929. [[package]]
  930. name = "pin-project-lite"
  931. version = "0.2.14"
  932. source = "registry+https://github.com/rust-lang/crates.io-index"
  933. checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
  934. [[package]]
  935. name = "pkg-config"
  936. version = "0.3.30"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  939. [[package]]
  940. name = "polling"
  941. version = "3.7.0"
  942. source = "registry+https://github.com/rust-lang/crates.io-index"
  943. checksum = "645493cf344456ef24219d02a768cf1fb92ddf8c92161679ae3d91b91a637be3"
  944. dependencies = [
  945. "cfg-if",
  946. "concurrent-queue",
  947. "hermit-abi",
  948. "pin-project-lite",
  949. "rustix",
  950. "tracing",
  951. "windows-sys 0.52.0",
  952. ]
  953. [[package]]
  954. name = "pollster"
  955. version = "0.3.0"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
  958. [[package]]
  959. name = "presser"
  960. version = "0.3.1"
  961. source = "registry+https://github.com/rust-lang/crates.io-index"
  962. checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
  963. [[package]]
  964. name = "proc-macro-crate"
  965. version = "3.1.0"
  966. source = "registry+https://github.com/rust-lang/crates.io-index"
  967. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  968. dependencies = [
  969. "toml_edit",
  970. ]
  971. [[package]]
  972. name = "proc-macro2"
  973. version = "1.0.82"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
  976. dependencies = [
  977. "unicode-ident",
  978. ]
  979. [[package]]
  980. name = "profiling"
  981. version = "1.0.15"
  982. source = "registry+https://github.com/rust-lang/crates.io-index"
  983. checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
  984. [[package]]
  985. name = "quick-xml"
  986. version = "0.31.0"
  987. source = "registry+https://github.com/rust-lang/crates.io-index"
  988. checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
  989. dependencies = [
  990. "memchr",
  991. ]
  992. [[package]]
  993. name = "quote"
  994. version = "1.0.36"
  995. source = "registry+https://github.com/rust-lang/crates.io-index"
  996. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  997. dependencies = [
  998. "proc-macro2",
  999. ]
  1000. [[package]]
  1001. name = "range-alloc"
  1002. version = "0.1.3"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
  1005. [[package]]
  1006. name = "raw-window-handle"
  1007. version = "0.5.2"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
  1010. [[package]]
  1011. name = "raw-window-handle"
  1012. version = "0.6.1"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "8cc3bcbdb1ddfc11e700e62968e6b4cc9c75bb466464ad28fb61c5b2c964418b"
  1015. [[package]]
  1016. name = "redox_syscall"
  1017. version = "0.3.5"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  1020. dependencies = [
  1021. "bitflags 1.3.2",
  1022. ]
  1023. [[package]]
  1024. name = "redox_syscall"
  1025. version = "0.4.1"
  1026. source = "registry+https://github.com/rust-lang/crates.io-index"
  1027. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  1028. dependencies = [
  1029. "bitflags 1.3.2",
  1030. ]
  1031. [[package]]
  1032. name = "redox_syscall"
  1033. version = "0.5.1"
  1034. source = "registry+https://github.com/rust-lang/crates.io-index"
  1035. checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
  1036. dependencies = [
  1037. "bitflags 2.5.0",
  1038. ]
  1039. [[package]]
  1040. name = "regex"
  1041. version = "1.10.4"
  1042. source = "registry+https://github.com/rust-lang/crates.io-index"
  1043. checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
  1044. dependencies = [
  1045. "aho-corasick",
  1046. "memchr",
  1047. "regex-automata",
  1048. "regex-syntax",
  1049. ]
  1050. [[package]]
  1051. name = "regex-automata"
  1052. version = "0.4.6"
  1053. source = "registry+https://github.com/rust-lang/crates.io-index"
  1054. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  1055. dependencies = [
  1056. "aho-corasick",
  1057. "memchr",
  1058. "regex-syntax",
  1059. ]
  1060. [[package]]
  1061. name = "regex-syntax"
  1062. version = "0.8.3"
  1063. source = "registry+https://github.com/rust-lang/crates.io-index"
  1064. checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
  1065. [[package]]
  1066. name = "renderdoc-sys"
  1067. version = "1.1.0"
  1068. source = "registry+https://github.com/rust-lang/crates.io-index"
  1069. checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
  1070. [[package]]
  1071. name = "rustc-hash"
  1072. version = "1.1.0"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  1075. [[package]]
  1076. name = "rustix"
  1077. version = "0.38.34"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
  1080. dependencies = [
  1081. "bitflags 2.5.0",
  1082. "errno",
  1083. "libc",
  1084. "linux-raw-sys",
  1085. "windows-sys 0.52.0",
  1086. ]
  1087. [[package]]
  1088. name = "same-file"
  1089. version = "1.0.6"
  1090. source = "registry+https://github.com/rust-lang/crates.io-index"
  1091. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1092. dependencies = [
  1093. "winapi-util",
  1094. ]
  1095. [[package]]
  1096. name = "scoped-tls"
  1097. version = "1.0.1"
  1098. source = "registry+https://github.com/rust-lang/crates.io-index"
  1099. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  1100. [[package]]
  1101. name = "scopeguard"
  1102. version = "1.2.0"
  1103. source = "registry+https://github.com/rust-lang/crates.io-index"
  1104. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  1105. [[package]]
  1106. name = "sctk-adwaita"
  1107. version = "0.8.1"
  1108. source = "registry+https://github.com/rust-lang/crates.io-index"
  1109. checksum = "82b2eaf3a5b264a521b988b2e73042e742df700c4f962cde845d1541adb46550"
  1110. dependencies = [
  1111. "ab_glyph",
  1112. "log",
  1113. "memmap2",
  1114. "smithay-client-toolkit",
  1115. "tiny-skia",
  1116. ]
  1117. [[package]]
  1118. name = "serde"
  1119. version = "1.0.201"
  1120. source = "registry+https://github.com/rust-lang/crates.io-index"
  1121. checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c"
  1122. dependencies = [
  1123. "serde_derive",
  1124. ]
  1125. [[package]]
  1126. name = "serde_derive"
  1127. version = "1.0.201"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865"
  1130. dependencies = [
  1131. "proc-macro2",
  1132. "quote",
  1133. "syn 2.0.63",
  1134. ]
  1135. [[package]]
  1136. name = "slab"
  1137. version = "0.4.9"
  1138. source = "registry+https://github.com/rust-lang/crates.io-index"
  1139. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  1140. dependencies = [
  1141. "autocfg",
  1142. ]
  1143. [[package]]
  1144. name = "slotmap"
  1145. version = "1.0.7"
  1146. source = "registry+https://github.com/rust-lang/crates.io-index"
  1147. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  1148. dependencies = [
  1149. "version_check",
  1150. ]
  1151. [[package]]
  1152. name = "smallvec"
  1153. version = "1.13.2"
  1154. source = "registry+https://github.com/rust-lang/crates.io-index"
  1155. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  1156. [[package]]
  1157. name = "smithay-client-toolkit"
  1158. version = "0.18.1"
  1159. source = "registry+https://github.com/rust-lang/crates.io-index"
  1160. checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a"
  1161. dependencies = [
  1162. "bitflags 2.5.0",
  1163. "calloop",
  1164. "calloop-wayland-source",
  1165. "cursor-icon",
  1166. "libc",
  1167. "log",
  1168. "memmap2",
  1169. "rustix",
  1170. "thiserror",
  1171. "wayland-backend",
  1172. "wayland-client",
  1173. "wayland-csd-frame",
  1174. "wayland-cursor",
  1175. "wayland-protocols",
  1176. "wayland-protocols-wlr",
  1177. "wayland-scanner",
  1178. "xkeysym",
  1179. ]
  1180. [[package]]
  1181. name = "smol_str"
  1182. version = "0.2.1"
  1183. source = "registry+https://github.com/rust-lang/crates.io-index"
  1184. checksum = "e6845563ada680337a52d43bb0b29f396f2d911616f6573012645b9e3d048a49"
  1185. dependencies = [
  1186. "serde",
  1187. ]
  1188. [[package]]
  1189. name = "spirv"
  1190. version = "0.3.0+sdk-1.3.268.0"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
  1193. dependencies = [
  1194. "bitflags 2.5.0",
  1195. ]
  1196. [[package]]
  1197. name = "static_assertions"
  1198. version = "1.1.0"
  1199. source = "registry+https://github.com/rust-lang/crates.io-index"
  1200. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  1201. [[package]]
  1202. name = "strict-num"
  1203. version = "0.1.1"
  1204. source = "registry+https://github.com/rust-lang/crates.io-index"
  1205. checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
  1206. [[package]]
  1207. name = "syn"
  1208. version = "1.0.109"
  1209. source = "registry+https://github.com/rust-lang/crates.io-index"
  1210. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  1211. dependencies = [
  1212. "proc-macro2",
  1213. "quote",
  1214. "unicode-ident",
  1215. ]
  1216. [[package]]
  1217. name = "syn"
  1218. version = "2.0.63"
  1219. source = "registry+https://github.com/rust-lang/crates.io-index"
  1220. checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
  1221. dependencies = [
  1222. "proc-macro2",
  1223. "quote",
  1224. "unicode-ident",
  1225. ]
  1226. [[package]]
  1227. name = "termcolor"
  1228. version = "1.4.1"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  1231. dependencies = [
  1232. "winapi-util",
  1233. ]
  1234. [[package]]
  1235. name = "thiserror"
  1236. version = "1.0.60"
  1237. source = "registry+https://github.com/rust-lang/crates.io-index"
  1238. checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
  1239. dependencies = [
  1240. "thiserror-impl",
  1241. ]
  1242. [[package]]
  1243. name = "thiserror-impl"
  1244. version = "1.0.60"
  1245. source = "registry+https://github.com/rust-lang/crates.io-index"
  1246. checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
  1247. dependencies = [
  1248. "proc-macro2",
  1249. "quote",
  1250. "syn 2.0.63",
  1251. ]
  1252. [[package]]
  1253. name = "tiny-skia"
  1254. version = "0.11.4"
  1255. source = "registry+https://github.com/rust-lang/crates.io-index"
  1256. checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
  1257. dependencies = [
  1258. "arrayref",
  1259. "arrayvec",
  1260. "bytemuck",
  1261. "cfg-if",
  1262. "log",
  1263. "tiny-skia-path",
  1264. ]
  1265. [[package]]
  1266. name = "tiny-skia-path"
  1267. version = "0.11.4"
  1268. source = "registry+https://github.com/rust-lang/crates.io-index"
  1269. checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
  1270. dependencies = [
  1271. "arrayref",
  1272. "bytemuck",
  1273. "strict-num",
  1274. ]
  1275. [[package]]
  1276. name = "toml_datetime"
  1277. version = "0.6.5"
  1278. source = "registry+https://github.com/rust-lang/crates.io-index"
  1279. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  1280. [[package]]
  1281. name = "toml_edit"
  1282. version = "0.21.1"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  1285. dependencies = [
  1286. "indexmap",
  1287. "toml_datetime",
  1288. "winnow",
  1289. ]
  1290. [[package]]
  1291. name = "tracing"
  1292. version = "0.1.40"
  1293. source = "registry+https://github.com/rust-lang/crates.io-index"
  1294. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  1295. dependencies = [
  1296. "pin-project-lite",
  1297. "tracing-core",
  1298. ]
  1299. [[package]]
  1300. name = "tracing-core"
  1301. version = "0.1.32"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  1304. [[package]]
  1305. name = "ttf-parser"
  1306. version = "0.21.1"
  1307. source = "registry+https://github.com/rust-lang/crates.io-index"
  1308. checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
  1309. [[package]]
  1310. name = "unicode-ident"
  1311. version = "1.0.12"
  1312. source = "registry+https://github.com/rust-lang/crates.io-index"
  1313. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  1314. [[package]]
  1315. name = "unicode-segmentation"
  1316. version = "1.11.0"
  1317. source = "registry+https://github.com/rust-lang/crates.io-index"
  1318. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  1319. [[package]]
  1320. name = "unicode-width"
  1321. version = "0.1.12"
  1322. source = "registry+https://github.com/rust-lang/crates.io-index"
  1323. checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
  1324. [[package]]
  1325. name = "unicode-xid"
  1326. version = "0.2.4"
  1327. source = "registry+https://github.com/rust-lang/crates.io-index"
  1328. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  1329. [[package]]
  1330. name = "utf8parse"
  1331. version = "0.2.1"
  1332. source = "registry+https://github.com/rust-lang/crates.io-index"
  1333. checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
  1334. [[package]]
  1335. name = "version_check"
  1336. version = "0.9.4"
  1337. source = "registry+https://github.com/rust-lang/crates.io-index"
  1338. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1339. [[package]]
  1340. name = "walkdir"
  1341. version = "2.5.0"
  1342. source = "registry+https://github.com/rust-lang/crates.io-index"
  1343. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  1344. dependencies = [
  1345. "same-file",
  1346. "winapi-util",
  1347. ]
  1348. [[package]]
  1349. name = "wasi"
  1350. version = "0.11.0+wasi-snapshot-preview1"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1353. [[package]]
  1354. name = "wasm-bindgen"
  1355. version = "0.2.92"
  1356. source = "registry+https://github.com/rust-lang/crates.io-index"
  1357. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  1358. dependencies = [
  1359. "cfg-if",
  1360. "wasm-bindgen-macro",
  1361. ]
  1362. [[package]]
  1363. name = "wasm-bindgen-backend"
  1364. version = "0.2.92"
  1365. source = "registry+https://github.com/rust-lang/crates.io-index"
  1366. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  1367. dependencies = [
  1368. "bumpalo",
  1369. "log",
  1370. "once_cell",
  1371. "proc-macro2",
  1372. "quote",
  1373. "syn 2.0.63",
  1374. "wasm-bindgen-shared",
  1375. ]
  1376. [[package]]
  1377. name = "wasm-bindgen-futures"
  1378. version = "0.4.42"
  1379. source = "registry+https://github.com/rust-lang/crates.io-index"
  1380. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  1381. dependencies = [
  1382. "cfg-if",
  1383. "js-sys",
  1384. "wasm-bindgen",
  1385. "web-sys",
  1386. ]
  1387. [[package]]
  1388. name = "wasm-bindgen-macro"
  1389. version = "0.2.92"
  1390. source = "registry+https://github.com/rust-lang/crates.io-index"
  1391. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  1392. dependencies = [
  1393. "quote",
  1394. "wasm-bindgen-macro-support",
  1395. ]
  1396. [[package]]
  1397. name = "wasm-bindgen-macro-support"
  1398. version = "0.2.92"
  1399. source = "registry+https://github.com/rust-lang/crates.io-index"
  1400. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  1401. dependencies = [
  1402. "proc-macro2",
  1403. "quote",
  1404. "syn 2.0.63",
  1405. "wasm-bindgen-backend",
  1406. "wasm-bindgen-shared",
  1407. ]
  1408. [[package]]
  1409. name = "wasm-bindgen-shared"
  1410. version = "0.2.92"
  1411. source = "registry+https://github.com/rust-lang/crates.io-index"
  1412. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  1413. [[package]]
  1414. name = "wayland-backend"
  1415. version = "0.3.3"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "9d50fa61ce90d76474c87f5fc002828d81b32677340112b4ef08079a9d459a40"
  1418. dependencies = [
  1419. "cc",
  1420. "downcast-rs",
  1421. "rustix",
  1422. "scoped-tls",
  1423. "smallvec",
  1424. "wayland-sys",
  1425. ]
  1426. [[package]]
  1427. name = "wayland-client"
  1428. version = "0.31.2"
  1429. source = "registry+https://github.com/rust-lang/crates.io-index"
  1430. checksum = "82fb96ee935c2cea6668ccb470fb7771f6215d1691746c2d896b447a00ad3f1f"
  1431. dependencies = [
  1432. "bitflags 2.5.0",
  1433. "rustix",
  1434. "wayland-backend",
  1435. "wayland-scanner",
  1436. ]
  1437. [[package]]
  1438. name = "wayland-csd-frame"
  1439. version = "0.3.0"
  1440. source = "registry+https://github.com/rust-lang/crates.io-index"
  1441. checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
  1442. dependencies = [
  1443. "bitflags 2.5.0",
  1444. "cursor-icon",
  1445. "wayland-backend",
  1446. ]
  1447. [[package]]
  1448. name = "wayland-cursor"
  1449. version = "0.31.1"
  1450. source = "registry+https://github.com/rust-lang/crates.io-index"
  1451. checksum = "71ce5fa868dd13d11a0d04c5e2e65726d0897be8de247c0c5a65886e283231ba"
  1452. dependencies = [
  1453. "rustix",
  1454. "wayland-client",
  1455. "xcursor",
  1456. ]
  1457. [[package]]
  1458. name = "wayland-protocols"
  1459. version = "0.31.2"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
  1462. dependencies = [
  1463. "bitflags 2.5.0",
  1464. "wayland-backend",
  1465. "wayland-client",
  1466. "wayland-scanner",
  1467. ]
  1468. [[package]]
  1469. name = "wayland-protocols-plasma"
  1470. version = "0.2.0"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479"
  1473. dependencies = [
  1474. "bitflags 2.5.0",
  1475. "wayland-backend",
  1476. "wayland-client",
  1477. "wayland-protocols",
  1478. "wayland-scanner",
  1479. ]
  1480. [[package]]
  1481. name = "wayland-protocols-wlr"
  1482. version = "0.2.0"
  1483. source = "registry+https://github.com/rust-lang/crates.io-index"
  1484. checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
  1485. dependencies = [
  1486. "bitflags 2.5.0",
  1487. "wayland-backend",
  1488. "wayland-client",
  1489. "wayland-protocols",
  1490. "wayland-scanner",
  1491. ]
  1492. [[package]]
  1493. name = "wayland-scanner"
  1494. version = "0.31.1"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "63b3a62929287001986fb58c789dce9b67604a397c15c611ad9f747300b6c283"
  1497. dependencies = [
  1498. "proc-macro2",
  1499. "quick-xml",
  1500. "quote",
  1501. ]
  1502. [[package]]
  1503. name = "wayland-sys"
  1504. version = "0.31.1"
  1505. source = "registry+https://github.com/rust-lang/crates.io-index"
  1506. checksum = "15a0c8eaff5216d07f226cb7a549159267f3467b289d9a2e52fd3ef5aae2b7af"
  1507. dependencies = [
  1508. "dlib",
  1509. "log",
  1510. "once_cell",
  1511. "pkg-config",
  1512. ]
  1513. [[package]]
  1514. name = "web-sys"
  1515. version = "0.3.69"
  1516. source = "registry+https://github.com/rust-lang/crates.io-index"
  1517. checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
  1518. dependencies = [
  1519. "js-sys",
  1520. "wasm-bindgen",
  1521. ]
  1522. [[package]]
  1523. name = "web-time"
  1524. version = "0.2.4"
  1525. source = "registry+https://github.com/rust-lang/crates.io-index"
  1526. checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
  1527. dependencies = [
  1528. "js-sys",
  1529. "wasm-bindgen",
  1530. ]
  1531. [[package]]
  1532. name = "wgpu"
  1533. version = "0.19.4"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01"
  1536. dependencies = [
  1537. "arrayvec",
  1538. "cfg-if",
  1539. "cfg_aliases",
  1540. "js-sys",
  1541. "log",
  1542. "naga",
  1543. "parking_lot",
  1544. "profiling",
  1545. "raw-window-handle 0.6.1",
  1546. "smallvec",
  1547. "static_assertions",
  1548. "wasm-bindgen",
  1549. "wasm-bindgen-futures",
  1550. "web-sys",
  1551. "wgpu-core",
  1552. "wgpu-hal",
  1553. "wgpu-types",
  1554. ]
  1555. [[package]]
  1556. name = "wgpu-core"
  1557. version = "0.19.4"
  1558. source = "registry+https://github.com/rust-lang/crates.io-index"
  1559. checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a"
  1560. dependencies = [
  1561. "arrayvec",
  1562. "bit-vec",
  1563. "bitflags 2.5.0",
  1564. "cfg_aliases",
  1565. "codespan-reporting",
  1566. "indexmap",
  1567. "log",
  1568. "naga",
  1569. "once_cell",
  1570. "parking_lot",
  1571. "profiling",
  1572. "raw-window-handle 0.6.1",
  1573. "rustc-hash",
  1574. "smallvec",
  1575. "thiserror",
  1576. "web-sys",
  1577. "wgpu-hal",
  1578. "wgpu-types",
  1579. ]
  1580. [[package]]
  1581. name = "wgpu-hal"
  1582. version = "0.19.4"
  1583. source = "registry+https://github.com/rust-lang/crates.io-index"
  1584. checksum = "fc1a4924366df7ab41a5d8546d6534f1f33231aa5b3f72b9930e300f254e39c3"
  1585. dependencies = [
  1586. "android_system_properties",
  1587. "arrayvec",
  1588. "ash",
  1589. "bit-set",
  1590. "bitflags 2.5.0",
  1591. "block",
  1592. "cfg_aliases",
  1593. "core-graphics-types",
  1594. "d3d12",
  1595. "glow",
  1596. "glutin_wgl_sys",
  1597. "gpu-alloc",
  1598. "gpu-allocator",
  1599. "gpu-descriptor",
  1600. "hassle-rs",
  1601. "js-sys",
  1602. "khronos-egl",
  1603. "libc",
  1604. "libloading 0.8.3",
  1605. "log",
  1606. "metal",
  1607. "naga",
  1608. "ndk-sys",
  1609. "objc",
  1610. "once_cell",
  1611. "parking_lot",
  1612. "profiling",
  1613. "range-alloc",
  1614. "raw-window-handle 0.6.1",
  1615. "renderdoc-sys",
  1616. "rustc-hash",
  1617. "smallvec",
  1618. "thiserror",
  1619. "wasm-bindgen",
  1620. "web-sys",
  1621. "wgpu-types",
  1622. "winapi",
  1623. ]
  1624. [[package]]
  1625. name = "wgpu-types"
  1626. version = "0.19.2"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
  1629. dependencies = [
  1630. "bitflags 2.5.0",
  1631. "js-sys",
  1632. "web-sys",
  1633. ]
  1634. [[package]]
  1635. name = "wgpu5"
  1636. version = "0.1.0"
  1637. dependencies = [
  1638. "bytemuck",
  1639. "cfg-if",
  1640. "env_logger",
  1641. "glam",
  1642. "log",
  1643. "pollster",
  1644. "wgpu",
  1645. "winit",
  1646. ]
  1647. [[package]]
  1648. name = "widestring"
  1649. version = "1.1.0"
  1650. source = "registry+https://github.com/rust-lang/crates.io-index"
  1651. checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
  1652. [[package]]
  1653. name = "winapi"
  1654. version = "0.3.9"
  1655. source = "registry+https://github.com/rust-lang/crates.io-index"
  1656. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1657. dependencies = [
  1658. "winapi-i686-pc-windows-gnu",
  1659. "winapi-x86_64-pc-windows-gnu",
  1660. ]
  1661. [[package]]
  1662. name = "winapi-i686-pc-windows-gnu"
  1663. version = "0.4.0"
  1664. source = "registry+https://github.com/rust-lang/crates.io-index"
  1665. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1666. [[package]]
  1667. name = "winapi-util"
  1668. version = "0.1.8"
  1669. source = "registry+https://github.com/rust-lang/crates.io-index"
  1670. checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
  1671. dependencies = [
  1672. "windows-sys 0.52.0",
  1673. ]
  1674. [[package]]
  1675. name = "winapi-x86_64-pc-windows-gnu"
  1676. version = "0.4.0"
  1677. source = "registry+https://github.com/rust-lang/crates.io-index"
  1678. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1679. [[package]]
  1680. name = "windows"
  1681. version = "0.52.0"
  1682. source = "registry+https://github.com/rust-lang/crates.io-index"
  1683. checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
  1684. dependencies = [
  1685. "windows-core",
  1686. "windows-targets 0.52.5",
  1687. ]
  1688. [[package]]
  1689. name = "windows-core"
  1690. version = "0.52.0"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  1693. dependencies = [
  1694. "windows-targets 0.52.5",
  1695. ]
  1696. [[package]]
  1697. name = "windows-sys"
  1698. version = "0.45.0"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  1701. dependencies = [
  1702. "windows-targets 0.42.2",
  1703. ]
  1704. [[package]]
  1705. name = "windows-sys"
  1706. version = "0.48.0"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  1709. dependencies = [
  1710. "windows-targets 0.48.5",
  1711. ]
  1712. [[package]]
  1713. name = "windows-sys"
  1714. version = "0.52.0"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  1717. dependencies = [
  1718. "windows-targets 0.52.5",
  1719. ]
  1720. [[package]]
  1721. name = "windows-targets"
  1722. version = "0.42.2"
  1723. source = "registry+https://github.com/rust-lang/crates.io-index"
  1724. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  1725. dependencies = [
  1726. "windows_aarch64_gnullvm 0.42.2",
  1727. "windows_aarch64_msvc 0.42.2",
  1728. "windows_i686_gnu 0.42.2",
  1729. "windows_i686_msvc 0.42.2",
  1730. "windows_x86_64_gnu 0.42.2",
  1731. "windows_x86_64_gnullvm 0.42.2",
  1732. "windows_x86_64_msvc 0.42.2",
  1733. ]
  1734. [[package]]
  1735. name = "windows-targets"
  1736. version = "0.48.5"
  1737. source = "registry+https://github.com/rust-lang/crates.io-index"
  1738. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  1739. dependencies = [
  1740. "windows_aarch64_gnullvm 0.48.5",
  1741. "windows_aarch64_msvc 0.48.5",
  1742. "windows_i686_gnu 0.48.5",
  1743. "windows_i686_msvc 0.48.5",
  1744. "windows_x86_64_gnu 0.48.5",
  1745. "windows_x86_64_gnullvm 0.48.5",
  1746. "windows_x86_64_msvc 0.48.5",
  1747. ]
  1748. [[package]]
  1749. name = "windows-targets"
  1750. version = "0.52.5"
  1751. source = "registry+https://github.com/rust-lang/crates.io-index"
  1752. checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
  1753. dependencies = [
  1754. "windows_aarch64_gnullvm 0.52.5",
  1755. "windows_aarch64_msvc 0.52.5",
  1756. "windows_i686_gnu 0.52.5",
  1757. "windows_i686_gnullvm",
  1758. "windows_i686_msvc 0.52.5",
  1759. "windows_x86_64_gnu 0.52.5",
  1760. "windows_x86_64_gnullvm 0.52.5",
  1761. "windows_x86_64_msvc 0.52.5",
  1762. ]
  1763. [[package]]
  1764. name = "windows_aarch64_gnullvm"
  1765. version = "0.42.2"
  1766. source = "registry+https://github.com/rust-lang/crates.io-index"
  1767. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  1768. [[package]]
  1769. name = "windows_aarch64_gnullvm"
  1770. version = "0.48.5"
  1771. source = "registry+https://github.com/rust-lang/crates.io-index"
  1772. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  1773. [[package]]
  1774. name = "windows_aarch64_gnullvm"
  1775. version = "0.52.5"
  1776. source = "registry+https://github.com/rust-lang/crates.io-index"
  1777. checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
  1778. [[package]]
  1779. name = "windows_aarch64_msvc"
  1780. version = "0.42.2"
  1781. source = "registry+https://github.com/rust-lang/crates.io-index"
  1782. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  1783. [[package]]
  1784. name = "windows_aarch64_msvc"
  1785. version = "0.48.5"
  1786. source = "registry+https://github.com/rust-lang/crates.io-index"
  1787. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  1788. [[package]]
  1789. name = "windows_aarch64_msvc"
  1790. version = "0.52.5"
  1791. source = "registry+https://github.com/rust-lang/crates.io-index"
  1792. checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
  1793. [[package]]
  1794. name = "windows_i686_gnu"
  1795. version = "0.42.2"
  1796. source = "registry+https://github.com/rust-lang/crates.io-index"
  1797. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  1798. [[package]]
  1799. name = "windows_i686_gnu"
  1800. version = "0.48.5"
  1801. source = "registry+https://github.com/rust-lang/crates.io-index"
  1802. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  1803. [[package]]
  1804. name = "windows_i686_gnu"
  1805. version = "0.52.5"
  1806. source = "registry+https://github.com/rust-lang/crates.io-index"
  1807. checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
  1808. [[package]]
  1809. name = "windows_i686_gnullvm"
  1810. version = "0.52.5"
  1811. source = "registry+https://github.com/rust-lang/crates.io-index"
  1812. checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
  1813. [[package]]
  1814. name = "windows_i686_msvc"
  1815. version = "0.42.2"
  1816. source = "registry+https://github.com/rust-lang/crates.io-index"
  1817. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  1818. [[package]]
  1819. name = "windows_i686_msvc"
  1820. version = "0.48.5"
  1821. source = "registry+https://github.com/rust-lang/crates.io-index"
  1822. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  1823. [[package]]
  1824. name = "windows_i686_msvc"
  1825. version = "0.52.5"
  1826. source = "registry+https://github.com/rust-lang/crates.io-index"
  1827. checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
  1828. [[package]]
  1829. name = "windows_x86_64_gnu"
  1830. version = "0.42.2"
  1831. source = "registry+https://github.com/rust-lang/crates.io-index"
  1832. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  1833. [[package]]
  1834. name = "windows_x86_64_gnu"
  1835. version = "0.48.5"
  1836. source = "registry+https://github.com/rust-lang/crates.io-index"
  1837. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  1838. [[package]]
  1839. name = "windows_x86_64_gnu"
  1840. version = "0.52.5"
  1841. source = "registry+https://github.com/rust-lang/crates.io-index"
  1842. checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
  1843. [[package]]
  1844. name = "windows_x86_64_gnullvm"
  1845. version = "0.42.2"
  1846. source = "registry+https://github.com/rust-lang/crates.io-index"
  1847. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  1848. [[package]]
  1849. name = "windows_x86_64_gnullvm"
  1850. version = "0.48.5"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  1853. [[package]]
  1854. name = "windows_x86_64_gnullvm"
  1855. version = "0.52.5"
  1856. source = "registry+https://github.com/rust-lang/crates.io-index"
  1857. checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
  1858. [[package]]
  1859. name = "windows_x86_64_msvc"
  1860. version = "0.42.2"
  1861. source = "registry+https://github.com/rust-lang/crates.io-index"
  1862. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  1863. [[package]]
  1864. name = "windows_x86_64_msvc"
  1865. version = "0.48.5"
  1866. source = "registry+https://github.com/rust-lang/crates.io-index"
  1867. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  1868. [[package]]
  1869. name = "windows_x86_64_msvc"
  1870. version = "0.52.5"
  1871. source = "registry+https://github.com/rust-lang/crates.io-index"
  1872. checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
  1873. [[package]]
  1874. name = "winit"
  1875. version = "0.29.15"
  1876. source = "registry+https://github.com/rust-lang/crates.io-index"
  1877. checksum = "0d59ad965a635657faf09c8f062badd885748428933dad8e8bdd64064d92e5ca"
  1878. dependencies = [
  1879. "ahash",
  1880. "android-activity",
  1881. "atomic-waker",
  1882. "bitflags 2.5.0",
  1883. "bytemuck",
  1884. "calloop",
  1885. "cfg_aliases",
  1886. "core-foundation",
  1887. "core-graphics",
  1888. "cursor-icon",
  1889. "icrate",
  1890. "js-sys",
  1891. "libc",
  1892. "log",
  1893. "memmap2",
  1894. "ndk",
  1895. "ndk-sys",
  1896. "objc2",
  1897. "once_cell",
  1898. "orbclient",
  1899. "percent-encoding",
  1900. "raw-window-handle 0.5.2",
  1901. "raw-window-handle 0.6.1",
  1902. "redox_syscall 0.3.5",
  1903. "rustix",
  1904. "sctk-adwaita",
  1905. "smithay-client-toolkit",
  1906. "smol_str",
  1907. "unicode-segmentation",
  1908. "wasm-bindgen",
  1909. "wasm-bindgen-futures",
  1910. "wayland-backend",
  1911. "wayland-client",
  1912. "wayland-protocols",
  1913. "wayland-protocols-plasma",
  1914. "web-sys",
  1915. "web-time",
  1916. "windows-sys 0.48.0",
  1917. "x11-dl",
  1918. "x11rb",
  1919. "xkbcommon-dl",
  1920. ]
  1921. [[package]]
  1922. name = "winnow"
  1923. version = "0.5.40"
  1924. source = "registry+https://github.com/rust-lang/crates.io-index"
  1925. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  1926. dependencies = [
  1927. "memchr",
  1928. ]
  1929. [[package]]
  1930. name = "x11-dl"
  1931. version = "2.21.0"
  1932. source = "registry+https://github.com/rust-lang/crates.io-index"
  1933. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  1934. dependencies = [
  1935. "libc",
  1936. "once_cell",
  1937. "pkg-config",
  1938. ]
  1939. [[package]]
  1940. name = "x11rb"
  1941. version = "0.13.1"
  1942. source = "registry+https://github.com/rust-lang/crates.io-index"
  1943. checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
  1944. dependencies = [
  1945. "as-raw-xcb-connection",
  1946. "gethostname",
  1947. "libc",
  1948. "libloading 0.8.3",
  1949. "once_cell",
  1950. "rustix",
  1951. "x11rb-protocol",
  1952. ]
  1953. [[package]]
  1954. name = "x11rb-protocol"
  1955. version = "0.13.1"
  1956. source = "registry+https://github.com/rust-lang/crates.io-index"
  1957. checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
  1958. [[package]]
  1959. name = "xcursor"
  1960. version = "0.3.5"
  1961. source = "registry+https://github.com/rust-lang/crates.io-index"
  1962. checksum = "6a0ccd7b4a5345edfcd0c3535718a4e9ff7798ffc536bb5b5a0e26ff84732911"
  1963. [[package]]
  1964. name = "xkbcommon-dl"
  1965. version = "0.4.2"
  1966. source = "registry+https://github.com/rust-lang/crates.io-index"
  1967. checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
  1968. dependencies = [
  1969. "bitflags 2.5.0",
  1970. "dlib",
  1971. "log",
  1972. "once_cell",
  1973. "xkeysym",
  1974. ]
  1975. [[package]]
  1976. name = "xkeysym"
  1977. version = "0.2.0"
  1978. source = "registry+https://github.com/rust-lang/crates.io-index"
  1979. checksum = "054a8e68b76250b253f671d1268cb7f1ae089ec35e195b2efb2a4e9a836d0621"
  1980. [[package]]
  1981. name = "xml-rs"
  1982. version = "0.8.20"
  1983. source = "registry+https://github.com/rust-lang/crates.io-index"
  1984. checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193"
  1985. [[package]]
  1986. name = "zerocopy"
  1987. version = "0.7.34"
  1988. source = "registry+https://github.com/rust-lang/crates.io-index"
  1989. checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
  1990. dependencies = [
  1991. "zerocopy-derive",
  1992. ]
  1993. [[package]]
  1994. name = "zerocopy-derive"
  1995. version = "0.7.34"
  1996. source = "registry+https://github.com/rust-lang/crates.io-index"
  1997. checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
  1998. dependencies = [
  1999. "proc-macro2",
  2000. "quote",
  2001. "syn 2.0.63",
  2002. ]