Cargo.lock 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613
  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.28"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "79faae4620f45232f599d9bc7b290f88247a0834162c4495ab2f02d60004adfb"
  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 = "addr2line"
  20. version = "0.22.0"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
  23. dependencies = [
  24. "gimli",
  25. ]
  26. [[package]]
  27. name = "adler"
  28. version = "1.0.2"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  31. [[package]]
  32. name = "ahash"
  33. version = "0.7.8"
  34. source = "registry+https://github.com/rust-lang/crates.io-index"
  35. checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
  36. dependencies = [
  37. "getrandom",
  38. "once_cell",
  39. "version_check",
  40. ]
  41. [[package]]
  42. name = "ahash"
  43. version = "0.8.11"
  44. source = "registry+https://github.com/rust-lang/crates.io-index"
  45. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  46. dependencies = [
  47. "cfg-if",
  48. "getrandom",
  49. "once_cell",
  50. "version_check",
  51. "zerocopy 0.7.35",
  52. ]
  53. [[package]]
  54. name = "aliasable"
  55. version = "0.1.3"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
  58. [[package]]
  59. name = "allocator-api2"
  60. version = "0.2.18"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
  63. [[package]]
  64. name = "android-activity"
  65. version = "0.6.0"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
  68. dependencies = [
  69. "android-properties",
  70. "bitflags 2.6.0",
  71. "cc",
  72. "cesu8",
  73. "jni",
  74. "jni-sys",
  75. "libc",
  76. "log",
  77. "ndk",
  78. "ndk-context",
  79. "ndk-sys 0.6.0+11769913",
  80. "num_enum",
  81. "thiserror",
  82. ]
  83. [[package]]
  84. name = "android-properties"
  85. version = "0.2.2"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
  88. [[package]]
  89. name = "android-tzdata"
  90. version = "0.1.1"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  93. [[package]]
  94. name = "android_system_properties"
  95. version = "0.1.5"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  98. dependencies = [
  99. "libc",
  100. ]
  101. [[package]]
  102. name = "anyhow"
  103. version = "1.0.86"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
  106. [[package]]
  107. name = "approx"
  108. version = "0.5.1"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
  111. dependencies = [
  112. "num-traits",
  113. ]
  114. [[package]]
  115. name = "arrayref"
  116. version = "0.3.8"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a"
  119. [[package]]
  120. name = "arrayvec"
  121. version = "0.7.4"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  124. [[package]]
  125. name = "as-raw-xcb-connection"
  126. version = "1.0.1"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
  129. [[package]]
  130. name = "ash"
  131. version = "0.37.3+1.3.251"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a"
  134. dependencies = [
  135. "libloading 0.7.4",
  136. ]
  137. [[package]]
  138. name = "async-broadcast"
  139. version = "0.7.1"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e"
  142. dependencies = [
  143. "event-listener",
  144. "event-listener-strategy",
  145. "futures-core",
  146. "pin-project-lite",
  147. ]
  148. [[package]]
  149. name = "async-channel"
  150. version = "2.3.1"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
  153. dependencies = [
  154. "concurrent-queue",
  155. "event-listener-strategy",
  156. "futures-core",
  157. "pin-project-lite",
  158. ]
  159. [[package]]
  160. name = "async-executor"
  161. version = "1.13.0"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "d7ebdfa2ebdab6b1760375fa7d6f382b9f486eac35fc994625a00e89280bdbb7"
  164. dependencies = [
  165. "async-task",
  166. "concurrent-queue",
  167. "fastrand",
  168. "futures-lite",
  169. "slab",
  170. ]
  171. [[package]]
  172. name = "async-fs"
  173. version = "2.1.2"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
  176. dependencies = [
  177. "async-lock",
  178. "blocking",
  179. "futures-lite",
  180. ]
  181. [[package]]
  182. name = "async-io"
  183. version = "2.3.3"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "0d6baa8f0178795da0e71bc42c9e5d13261aac7ee549853162e66a241ba17964"
  186. dependencies = [
  187. "async-lock",
  188. "cfg-if",
  189. "concurrent-queue",
  190. "futures-io",
  191. "futures-lite",
  192. "parking",
  193. "polling",
  194. "rustix",
  195. "slab",
  196. "tracing",
  197. "windows-sys 0.52.0",
  198. ]
  199. [[package]]
  200. name = "async-lock"
  201. version = "3.4.0"
  202. source = "registry+https://github.com/rust-lang/crates.io-index"
  203. checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
  204. dependencies = [
  205. "event-listener",
  206. "event-listener-strategy",
  207. "pin-project-lite",
  208. ]
  209. [[package]]
  210. name = "async-process"
  211. version = "2.2.3"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "f7eda79bbd84e29c2b308d1dc099d7de8dcc7035e48f4bf5dc4a531a44ff5e2a"
  214. dependencies = [
  215. "async-channel",
  216. "async-io",
  217. "async-lock",
  218. "async-signal",
  219. "async-task",
  220. "blocking",
  221. "cfg-if",
  222. "event-listener",
  223. "futures-lite",
  224. "rustix",
  225. "tracing",
  226. "windows-sys 0.52.0",
  227. ]
  228. [[package]]
  229. name = "async-recursion"
  230. version = "1.1.1"
  231. source = "registry+https://github.com/rust-lang/crates.io-index"
  232. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  233. dependencies = [
  234. "proc-macro2",
  235. "quote",
  236. "syn 2.0.72",
  237. ]
  238. [[package]]
  239. name = "async-signal"
  240. version = "0.2.9"
  241. source = "registry+https://github.com/rust-lang/crates.io-index"
  242. checksum = "dfb3634b73397aa844481f814fad23bbf07fdb0eabec10f2eb95e58944b1ec32"
  243. dependencies = [
  244. "async-io",
  245. "async-lock",
  246. "atomic-waker",
  247. "cfg-if",
  248. "futures-core",
  249. "futures-io",
  250. "rustix",
  251. "signal-hook-registry",
  252. "slab",
  253. "windows-sys 0.52.0",
  254. ]
  255. [[package]]
  256. name = "async-task"
  257. version = "4.7.1"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  260. [[package]]
  261. name = "async-trait"
  262. version = "0.1.81"
  263. source = "registry+https://github.com/rust-lang/crates.io-index"
  264. checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
  265. dependencies = [
  266. "proc-macro2",
  267. "quote",
  268. "syn 2.0.72",
  269. ]
  270. [[package]]
  271. name = "async-tungstenite"
  272. version = "0.25.1"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "2cca750b12e02c389c1694d35c16539f88b8bbaa5945934fdc1b41a776688589"
  275. dependencies = [
  276. "futures-io",
  277. "futures-util",
  278. "log",
  279. "pin-project-lite",
  280. "rustls-pki-types",
  281. "tokio",
  282. "tokio-rustls 0.25.0",
  283. "tungstenite",
  284. "webpki-roots 0.26.3",
  285. ]
  286. [[package]]
  287. name = "atomic-waker"
  288. version = "1.1.2"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  291. [[package]]
  292. name = "autocfg"
  293. version = "1.3.0"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
  296. [[package]]
  297. name = "backtrace"
  298. version = "0.3.73"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
  301. dependencies = [
  302. "addr2line",
  303. "cc",
  304. "cfg-if",
  305. "libc",
  306. "miniz_oxide",
  307. "object",
  308. "rustc-demangle",
  309. ]
  310. [[package]]
  311. name = "base64"
  312. version = "0.21.7"
  313. source = "registry+https://github.com/rust-lang/crates.io-index"
  314. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  315. [[package]]
  316. name = "base64"
  317. version = "0.22.1"
  318. source = "registry+https://github.com/rust-lang/crates.io-index"
  319. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  320. [[package]]
  321. name = "bit-set"
  322. version = "0.5.3"
  323. source = "registry+https://github.com/rust-lang/crates.io-index"
  324. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  325. dependencies = [
  326. "bit-vec",
  327. ]
  328. [[package]]
  329. name = "bit-vec"
  330. version = "0.6.3"
  331. source = "registry+https://github.com/rust-lang/crates.io-index"
  332. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  333. [[package]]
  334. name = "bit_field"
  335. version = "0.10.2"
  336. source = "registry+https://github.com/rust-lang/crates.io-index"
  337. checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
  338. [[package]]
  339. name = "bitflags"
  340. version = "1.3.2"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  343. [[package]]
  344. name = "bitflags"
  345. version = "2.6.0"
  346. source = "registry+https://github.com/rust-lang/crates.io-index"
  347. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  348. [[package]]
  349. name = "block"
  350. version = "0.1.6"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
  353. [[package]]
  354. name = "block-buffer"
  355. version = "0.10.4"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  358. dependencies = [
  359. "generic-array",
  360. ]
  361. [[package]]
  362. name = "block2"
  363. version = "0.5.1"
  364. source = "registry+https://github.com/rust-lang/crates.io-index"
  365. checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
  366. dependencies = [
  367. "objc2",
  368. ]
  369. [[package]]
  370. name = "blocking"
  371. version = "1.6.1"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
  374. dependencies = [
  375. "async-channel",
  376. "async-task",
  377. "futures-io",
  378. "futures-lite",
  379. "piper",
  380. ]
  381. [[package]]
  382. name = "bumpalo"
  383. version = "3.16.0"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  386. [[package]]
  387. name = "by_address"
  388. version = "1.2.1"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
  391. [[package]]
  392. name = "bytemuck"
  393. version = "1.16.3"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "102087e286b4677862ea56cf8fc58bb2cdfa8725c40ffb80fe3a008eb7f2fc83"
  396. dependencies = [
  397. "bytemuck_derive",
  398. ]
  399. [[package]]
  400. name = "bytemuck_derive"
  401. version = "1.7.0"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "1ee891b04274a59bd38b412188e24b849617b2e45a0fd8d057deb63e7403761b"
  404. dependencies = [
  405. "proc-macro2",
  406. "quote",
  407. "syn 2.0.72",
  408. ]
  409. [[package]]
  410. name = "byteorder"
  411. version = "1.5.0"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  414. [[package]]
  415. name = "bytes"
  416. version = "1.7.1"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
  419. [[package]]
  420. name = "calloop"
  421. version = "0.12.4"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "fba7adb4dd5aa98e5553510223000e7148f621165ec5f9acd7113f6ca4995298"
  424. dependencies = [
  425. "bitflags 2.6.0",
  426. "log",
  427. "polling",
  428. "rustix",
  429. "slab",
  430. "thiserror",
  431. ]
  432. [[package]]
  433. name = "calloop"
  434. version = "0.13.0"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
  437. dependencies = [
  438. "bitflags 2.6.0",
  439. "log",
  440. "polling",
  441. "rustix",
  442. "slab",
  443. "thiserror",
  444. ]
  445. [[package]]
  446. name = "calloop-wayland-source"
  447. version = "0.2.0"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "0f0ea9b9476c7fad82841a8dbb380e2eae480c21910feba80725b46931ed8f02"
  450. dependencies = [
  451. "calloop 0.12.4",
  452. "rustix",
  453. "wayland-backend",
  454. "wayland-client",
  455. ]
  456. [[package]]
  457. name = "calloop-wayland-source"
  458. version = "0.3.0"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
  461. dependencies = [
  462. "calloop 0.13.0",
  463. "rustix",
  464. "wayland-backend",
  465. "wayland-client",
  466. ]
  467. [[package]]
  468. name = "cc"
  469. version = "1.1.7"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc"
  472. dependencies = [
  473. "jobserver",
  474. "libc",
  475. ]
  476. [[package]]
  477. name = "cesu8"
  478. version = "1.1.0"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  481. [[package]]
  482. name = "cfg-if"
  483. version = "1.0.0"
  484. source = "registry+https://github.com/rust-lang/crates.io-index"
  485. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  486. [[package]]
  487. name = "cfg_aliases"
  488. version = "0.1.1"
  489. source = "registry+https://github.com/rust-lang/crates.io-index"
  490. checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
  491. [[package]]
  492. name = "cfg_aliases"
  493. version = "0.2.1"
  494. source = "registry+https://github.com/rust-lang/crates.io-index"
  495. checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
  496. [[package]]
  497. name = "chrono"
  498. version = "0.4.38"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
  501. dependencies = [
  502. "android-tzdata",
  503. "iana-time-zone",
  504. "js-sys",
  505. "num-traits",
  506. "wasm-bindgen",
  507. "windows-targets 0.52.6",
  508. ]
  509. [[package]]
  510. name = "clipboard-win"
  511. version = "5.4.0"
  512. source = "registry+https://github.com/rust-lang/crates.io-index"
  513. checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892"
  514. dependencies = [
  515. "error-code",
  516. ]
  517. [[package]]
  518. name = "clipboard_macos"
  519. version = "0.1.0"
  520. source = "registry+https://github.com/rust-lang/crates.io-index"
  521. checksum = "145a7f9e9b89453bc0a5e32d166456405d389cea5b578f57f1274b1397588a95"
  522. dependencies = [
  523. "objc",
  524. "objc-foundation",
  525. "objc_id",
  526. ]
  527. [[package]]
  528. name = "clipboard_wayland"
  529. version = "0.2.2"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "003f886bc4e2987729d10c1db3424e7f80809f3fc22dbc16c685738887cb37b8"
  532. dependencies = [
  533. "smithay-clipboard",
  534. ]
  535. [[package]]
  536. name = "clipboard_x11"
  537. version = "0.4.2"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "4274ea815e013e0f9f04a2633423e14194e408a0576c943ce3d14ca56c50031c"
  540. dependencies = [
  541. "thiserror",
  542. "x11rb",
  543. ]
  544. [[package]]
  545. name = "codespan-reporting"
  546. version = "0.11.1"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  549. dependencies = [
  550. "termcolor",
  551. "unicode-width",
  552. ]
  553. [[package]]
  554. name = "color_quant"
  555. version = "1.1.0"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  558. [[package]]
  559. name = "com"
  560. version = "0.6.0"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
  563. dependencies = [
  564. "com_macros",
  565. ]
  566. [[package]]
  567. name = "com_macros"
  568. version = "0.6.0"
  569. source = "registry+https://github.com/rust-lang/crates.io-index"
  570. checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
  571. dependencies = [
  572. "com_macros_support",
  573. "proc-macro2",
  574. "syn 1.0.109",
  575. ]
  576. [[package]]
  577. name = "com_macros_support"
  578. version = "0.6.0"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
  581. dependencies = [
  582. "proc-macro2",
  583. "quote",
  584. "syn 1.0.109",
  585. ]
  586. [[package]]
  587. name = "combine"
  588. version = "4.6.7"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  591. dependencies = [
  592. "bytes",
  593. "memchr",
  594. ]
  595. [[package]]
  596. name = "concurrent-queue"
  597. version = "2.5.0"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  600. dependencies = [
  601. "crossbeam-utils",
  602. ]
  603. [[package]]
  604. name = "core-foundation"
  605. version = "0.9.4"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  608. dependencies = [
  609. "core-foundation-sys",
  610. "libc",
  611. ]
  612. [[package]]
  613. name = "core-foundation-sys"
  614. version = "0.8.6"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  617. [[package]]
  618. name = "core-graphics"
  619. version = "0.23.2"
  620. source = "registry+https://github.com/rust-lang/crates.io-index"
  621. checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
  622. dependencies = [
  623. "bitflags 1.3.2",
  624. "core-foundation",
  625. "core-graphics-types",
  626. "foreign-types 0.5.0",
  627. "libc",
  628. ]
  629. [[package]]
  630. name = "core-graphics-types"
  631. version = "0.1.3"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  634. dependencies = [
  635. "bitflags 1.3.2",
  636. "core-foundation",
  637. "libc",
  638. ]
  639. [[package]]
  640. name = "cosmic-text"
  641. version = "0.10.0"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "75acbfb314aeb4f5210d379af45ed1ec2c98c7f1790bf57b8a4c562ac0c51b71"
  644. dependencies = [
  645. "fontdb 0.15.0",
  646. "libm",
  647. "log",
  648. "rangemap",
  649. "rustc-hash 1.1.0",
  650. "rustybuzz 0.11.0",
  651. "self_cell",
  652. "swash",
  653. "sys-locale",
  654. "unicode-bidi",
  655. "unicode-linebreak",
  656. "unicode-script",
  657. "unicode-segmentation",
  658. ]
  659. [[package]]
  660. name = "cosmic-text"
  661. version = "0.12.1"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "59fd57d82eb4bfe7ffa9b1cec0c05e2fd378155b47f255a67983cb4afe0e80c2"
  664. dependencies = [
  665. "bitflags 2.6.0",
  666. "fontdb 0.16.2",
  667. "log",
  668. "rangemap",
  669. "rayon",
  670. "rustc-hash 1.1.0",
  671. "rustybuzz 0.14.1",
  672. "self_cell",
  673. "swash",
  674. "sys-locale",
  675. "ttf-parser 0.21.1",
  676. "unicode-bidi",
  677. "unicode-linebreak",
  678. "unicode-script",
  679. "unicode-segmentation",
  680. ]
  681. [[package]]
  682. name = "cpufeatures"
  683. version = "0.2.12"
  684. source = "registry+https://github.com/rust-lang/crates.io-index"
  685. checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
  686. dependencies = [
  687. "libc",
  688. ]
  689. [[package]]
  690. name = "crc32fast"
  691. version = "1.4.2"
  692. source = "registry+https://github.com/rust-lang/crates.io-index"
  693. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  694. dependencies = [
  695. "cfg-if",
  696. ]
  697. [[package]]
  698. name = "crossbeam-deque"
  699. version = "0.8.5"
  700. source = "registry+https://github.com/rust-lang/crates.io-index"
  701. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  702. dependencies = [
  703. "crossbeam-epoch",
  704. "crossbeam-utils",
  705. ]
  706. [[package]]
  707. name = "crossbeam-epoch"
  708. version = "0.9.18"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  711. dependencies = [
  712. "crossbeam-utils",
  713. ]
  714. [[package]]
  715. name = "crossbeam-utils"
  716. version = "0.8.20"
  717. source = "registry+https://github.com/rust-lang/crates.io-index"
  718. checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
  719. [[package]]
  720. name = "crunchy"
  721. version = "0.2.2"
  722. source = "registry+https://github.com/rust-lang/crates.io-index"
  723. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  724. [[package]]
  725. name = "crypto-common"
  726. version = "0.1.6"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  729. dependencies = [
  730. "generic-array",
  731. "typenum",
  732. ]
  733. [[package]]
  734. name = "ctor-lite"
  735. version = "0.1.0"
  736. source = "registry+https://github.com/rust-lang/crates.io-index"
  737. checksum = "1f791803201ab277ace03903de1594460708d2d54df6053f2d9e82f592b19e3b"
  738. [[package]]
  739. name = "cursor-icon"
  740. version = "1.1.0"
  741. source = "registry+https://github.com/rust-lang/crates.io-index"
  742. checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"
  743. [[package]]
  744. name = "d3d12"
  745. version = "0.19.0"
  746. source = "registry+https://github.com/rust-lang/crates.io-index"
  747. checksum = "3e3d747f100290a1ca24b752186f61f6637e1deffe3bf6320de6fcb29510a307"
  748. dependencies = [
  749. "bitflags 2.6.0",
  750. "libloading 0.8.5",
  751. "winapi",
  752. ]
  753. [[package]]
  754. name = "dark-light"
  755. version = "1.1.1"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "2a76fa97167fa740dcdbfe18e8895601e1bc36525f09b044e00916e717c03a3c"
  758. dependencies = [
  759. "dconf_rs",
  760. "detect-desktop-environment",
  761. "dirs",
  762. "objc",
  763. "rust-ini",
  764. "web-sys",
  765. "winreg 0.10.1",
  766. "zbus",
  767. ]
  768. [[package]]
  769. name = "data-encoding"
  770. version = "2.6.0"
  771. source = "registry+https://github.com/rust-lang/crates.io-index"
  772. checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
  773. [[package]]
  774. name = "dconf_rs"
  775. version = "0.3.0"
  776. source = "registry+https://github.com/rust-lang/crates.io-index"
  777. checksum = "7046468a81e6a002061c01e6a7c83139daf91b11c30e66795b13217c2d885c8b"
  778. [[package]]
  779. name = "detect-desktop-environment"
  780. version = "0.2.0"
  781. source = "registry+https://github.com/rust-lang/crates.io-index"
  782. checksum = "21d8ad60dd5b13a4ee6bd8fa2d5d88965c597c67bce32b5fc49c94f55cb50810"
  783. [[package]]
  784. name = "digest"
  785. version = "0.10.7"
  786. source = "registry+https://github.com/rust-lang/crates.io-index"
  787. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  788. dependencies = [
  789. "block-buffer",
  790. "crypto-common",
  791. "subtle",
  792. ]
  793. [[package]]
  794. name = "dirs"
  795. version = "4.0.0"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
  798. dependencies = [
  799. "dirs-sys",
  800. ]
  801. [[package]]
  802. name = "dirs-sys"
  803. version = "0.3.7"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
  806. dependencies = [
  807. "libc",
  808. "redox_users",
  809. "winapi",
  810. ]
  811. [[package]]
  812. name = "dispatch"
  813. version = "0.2.0"
  814. source = "registry+https://github.com/rust-lang/crates.io-index"
  815. checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
  816. [[package]]
  817. name = "dlib"
  818. version = "0.5.2"
  819. source = "registry+https://github.com/rust-lang/crates.io-index"
  820. checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
  821. dependencies = [
  822. "libloading 0.8.5",
  823. ]
  824. [[package]]
  825. name = "dlv-list"
  826. version = "0.3.0"
  827. source = "registry+https://github.com/rust-lang/crates.io-index"
  828. checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
  829. [[package]]
  830. name = "downcast-rs"
  831. version = "1.2.1"
  832. source = "registry+https://github.com/rust-lang/crates.io-index"
  833. checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
  834. [[package]]
  835. name = "dpi"
  836. version = "0.1.1"
  837. source = "git+https://github.com/iced-rs/winit.git?rev=254d6b3420ce4e674f516f7a2bd440665e05484d#254d6b3420ce4e674f516f7a2bd440665e05484d"
  838. [[package]]
  839. name = "drm"
  840. version = "0.12.0"
  841. source = "registry+https://github.com/rust-lang/crates.io-index"
  842. checksum = "98888c4bbd601524c11a7ed63f814b8825f420514f78e96f752c437ae9cbb5d1"
  843. dependencies = [
  844. "bitflags 2.6.0",
  845. "bytemuck",
  846. "drm-ffi",
  847. "drm-fourcc",
  848. "rustix",
  849. ]
  850. [[package]]
  851. name = "drm-ffi"
  852. version = "0.8.0"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "97c98727e48b7ccb4f4aea8cfe881e5b07f702d17b7875991881b41af7278d53"
  855. dependencies = [
  856. "drm-sys",
  857. "rustix",
  858. ]
  859. [[package]]
  860. name = "drm-fourcc"
  861. version = "2.2.0"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
  864. [[package]]
  865. name = "drm-sys"
  866. version = "0.7.0"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "fd39dde40b6e196c2e8763f23d119ddb1a8714534bf7d77fa97a65b0feda3986"
  869. dependencies = [
  870. "libc",
  871. "linux-raw-sys 0.6.4",
  872. ]
  873. [[package]]
  874. name = "either"
  875. version = "1.13.0"
  876. source = "registry+https://github.com/rust-lang/crates.io-index"
  877. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  878. [[package]]
  879. name = "encoding_rs"
  880. version = "0.8.34"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
  883. dependencies = [
  884. "cfg-if",
  885. ]
  886. [[package]]
  887. name = "endi"
  888. version = "1.1.0"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
  891. [[package]]
  892. name = "enumflags2"
  893. version = "0.7.10"
  894. source = "registry+https://github.com/rust-lang/crates.io-index"
  895. checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d"
  896. dependencies = [
  897. "enumflags2_derive",
  898. "serde",
  899. ]
  900. [[package]]
  901. name = "enumflags2_derive"
  902. version = "0.7.10"
  903. source = "registry+https://github.com/rust-lang/crates.io-index"
  904. checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8"
  905. dependencies = [
  906. "proc-macro2",
  907. "quote",
  908. "syn 2.0.72",
  909. ]
  910. [[package]]
  911. name = "equivalent"
  912. version = "1.0.1"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  915. [[package]]
  916. name = "errno"
  917. version = "0.3.9"
  918. source = "registry+https://github.com/rust-lang/crates.io-index"
  919. checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
  920. dependencies = [
  921. "libc",
  922. "windows-sys 0.52.0",
  923. ]
  924. [[package]]
  925. name = "error-code"
  926. version = "3.2.0"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b"
  929. [[package]]
  930. name = "etagere"
  931. version = "0.2.13"
  932. source = "registry+https://github.com/rust-lang/crates.io-index"
  933. checksum = "0e2f1e3be19fb10f549be8c1bf013e8675b4066c445e36eb76d2ebb2f54ee495"
  934. dependencies = [
  935. "euclid",
  936. "svg_fmt",
  937. ]
  938. [[package]]
  939. name = "euclid"
  940. version = "0.22.10"
  941. source = "registry+https://github.com/rust-lang/crates.io-index"
  942. checksum = "e0f0eb73b934648cd7a4a61f1b15391cd95dab0b4da6e2e66c2a072c144b4a20"
  943. dependencies = [
  944. "num-traits",
  945. ]
  946. [[package]]
  947. name = "event-listener"
  948. version = "5.3.1"
  949. source = "registry+https://github.com/rust-lang/crates.io-index"
  950. checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
  951. dependencies = [
  952. "concurrent-queue",
  953. "parking",
  954. "pin-project-lite",
  955. ]
  956. [[package]]
  957. name = "event-listener-strategy"
  958. version = "0.5.2"
  959. source = "registry+https://github.com/rust-lang/crates.io-index"
  960. checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
  961. dependencies = [
  962. "event-listener",
  963. "pin-project-lite",
  964. ]
  965. [[package]]
  966. name = "exr"
  967. version = "1.72.0"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4"
  970. dependencies = [
  971. "bit_field",
  972. "flume",
  973. "half",
  974. "lebe",
  975. "miniz_oxide",
  976. "rayon-core",
  977. "smallvec",
  978. "zune-inflate",
  979. ]
  980. [[package]]
  981. name = "fast-srgb8"
  982. version = "1.0.0"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
  985. [[package]]
  986. name = "fastrand"
  987. version = "2.1.0"
  988. source = "registry+https://github.com/rust-lang/crates.io-index"
  989. checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
  990. [[package]]
  991. name = "faststr"
  992. version = "0.2.19"
  993. source = "registry+https://github.com/rust-lang/crates.io-index"
  994. checksum = "f375fcf41ec4dac873a8028fba4210dbda5c86bba13d2d741e651b474f7c05a4"
  995. dependencies = [
  996. "bytes",
  997. "serde",
  998. "simdutf8",
  999. ]
  1000. [[package]]
  1001. name = "fastwebsockets"
  1002. version = "0.7.2"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "93da8b19e29f202ef35ddd20ddea8c86166850fce5ba2a3c3f3e3174cdbb0620"
  1005. dependencies = [
  1006. "base64 0.21.7",
  1007. "bytes",
  1008. "http-body-util",
  1009. "hyper",
  1010. "hyper-util",
  1011. "pin-project",
  1012. "rand",
  1013. "sha1",
  1014. "simdutf8",
  1015. "thiserror",
  1016. "tokio",
  1017. "utf-8",
  1018. ]
  1019. [[package]]
  1020. name = "fdeflate"
  1021. version = "0.3.4"
  1022. source = "registry+https://github.com/rust-lang/crates.io-index"
  1023. checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
  1024. dependencies = [
  1025. "simd-adler32",
  1026. ]
  1027. [[package]]
  1028. name = "flate2"
  1029. version = "1.0.30"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
  1032. dependencies = [
  1033. "crc32fast",
  1034. "miniz_oxide",
  1035. ]
  1036. [[package]]
  1037. name = "float_next_after"
  1038. version = "1.0.0"
  1039. source = "registry+https://github.com/rust-lang/crates.io-index"
  1040. checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
  1041. [[package]]
  1042. name = "flume"
  1043. version = "0.11.0"
  1044. source = "registry+https://github.com/rust-lang/crates.io-index"
  1045. checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
  1046. dependencies = [
  1047. "spin 0.9.8",
  1048. ]
  1049. [[package]]
  1050. name = "fnv"
  1051. version = "1.0.7"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1054. [[package]]
  1055. name = "font-types"
  1056. version = "0.6.0"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "8f0189ccb084f77c5523e08288d418cbaa09c451a08515678a0aa265df9a8b60"
  1059. dependencies = [
  1060. "bytemuck",
  1061. ]
  1062. [[package]]
  1063. name = "fontconfig-parser"
  1064. version = "0.5.7"
  1065. source = "registry+https://github.com/rust-lang/crates.io-index"
  1066. checksum = "c1fcfcd44ca6e90c921fee9fa665d530b21ef1327a4c1a6c5250ea44b776ada7"
  1067. dependencies = [
  1068. "roxmltree",
  1069. ]
  1070. [[package]]
  1071. name = "fontdb"
  1072. version = "0.15.0"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38"
  1075. dependencies = [
  1076. "fontconfig-parser",
  1077. "log",
  1078. "memmap2 0.8.0",
  1079. "slotmap",
  1080. "tinyvec",
  1081. "ttf-parser 0.19.2",
  1082. ]
  1083. [[package]]
  1084. name = "fontdb"
  1085. version = "0.16.2"
  1086. source = "registry+https://github.com/rust-lang/crates.io-index"
  1087. checksum = "b0299020c3ef3f60f526a4f64ab4a3d4ce116b1acbf24cdd22da0068e5d81dc3"
  1088. dependencies = [
  1089. "fontconfig-parser",
  1090. "log",
  1091. "memmap2 0.9.4",
  1092. "slotmap",
  1093. "tinyvec",
  1094. "ttf-parser 0.20.0",
  1095. ]
  1096. [[package]]
  1097. name = "foreign-types"
  1098. version = "0.3.2"
  1099. source = "registry+https://github.com/rust-lang/crates.io-index"
  1100. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1101. dependencies = [
  1102. "foreign-types-shared 0.1.1",
  1103. ]
  1104. [[package]]
  1105. name = "foreign-types"
  1106. version = "0.5.0"
  1107. source = "registry+https://github.com/rust-lang/crates.io-index"
  1108. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  1109. dependencies = [
  1110. "foreign-types-macros",
  1111. "foreign-types-shared 0.3.1",
  1112. ]
  1113. [[package]]
  1114. name = "foreign-types-macros"
  1115. version = "0.2.3"
  1116. source = "registry+https://github.com/rust-lang/crates.io-index"
  1117. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  1118. dependencies = [
  1119. "proc-macro2",
  1120. "quote",
  1121. "syn 2.0.72",
  1122. ]
  1123. [[package]]
  1124. name = "foreign-types-shared"
  1125. version = "0.1.1"
  1126. source = "registry+https://github.com/rust-lang/crates.io-index"
  1127. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1128. [[package]]
  1129. name = "foreign-types-shared"
  1130. version = "0.3.1"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  1133. [[package]]
  1134. name = "form_urlencoded"
  1135. version = "1.2.1"
  1136. source = "registry+https://github.com/rust-lang/crates.io-index"
  1137. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1138. dependencies = [
  1139. "percent-encoding",
  1140. ]
  1141. [[package]]
  1142. name = "futures"
  1143. version = "0.3.30"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  1146. dependencies = [
  1147. "futures-channel",
  1148. "futures-core",
  1149. "futures-executor",
  1150. "futures-io",
  1151. "futures-sink",
  1152. "futures-task",
  1153. "futures-util",
  1154. ]
  1155. [[package]]
  1156. name = "futures-channel"
  1157. version = "0.3.30"
  1158. source = "registry+https://github.com/rust-lang/crates.io-index"
  1159. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  1160. dependencies = [
  1161. "futures-core",
  1162. "futures-sink",
  1163. ]
  1164. [[package]]
  1165. name = "futures-core"
  1166. version = "0.3.30"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  1169. [[package]]
  1170. name = "futures-executor"
  1171. version = "0.3.30"
  1172. source = "registry+https://github.com/rust-lang/crates.io-index"
  1173. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  1174. dependencies = [
  1175. "futures-core",
  1176. "futures-task",
  1177. "futures-util",
  1178. "num_cpus",
  1179. ]
  1180. [[package]]
  1181. name = "futures-io"
  1182. version = "0.3.30"
  1183. source = "registry+https://github.com/rust-lang/crates.io-index"
  1184. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  1185. [[package]]
  1186. name = "futures-lite"
  1187. version = "2.3.0"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  1190. dependencies = [
  1191. "fastrand",
  1192. "futures-core",
  1193. "futures-io",
  1194. "parking",
  1195. "pin-project-lite",
  1196. ]
  1197. [[package]]
  1198. name = "futures-macro"
  1199. version = "0.3.30"
  1200. source = "registry+https://github.com/rust-lang/crates.io-index"
  1201. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  1202. dependencies = [
  1203. "proc-macro2",
  1204. "quote",
  1205. "syn 2.0.72",
  1206. ]
  1207. [[package]]
  1208. name = "futures-sink"
  1209. version = "0.3.30"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  1212. [[package]]
  1213. name = "futures-task"
  1214. version = "0.3.30"
  1215. source = "registry+https://github.com/rust-lang/crates.io-index"
  1216. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  1217. [[package]]
  1218. name = "futures-util"
  1219. version = "0.3.30"
  1220. source = "registry+https://github.com/rust-lang/crates.io-index"
  1221. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  1222. dependencies = [
  1223. "futures-channel",
  1224. "futures-core",
  1225. "futures-io",
  1226. "futures-macro",
  1227. "futures-sink",
  1228. "futures-task",
  1229. "memchr",
  1230. "pin-project-lite",
  1231. "pin-utils",
  1232. "slab",
  1233. ]
  1234. [[package]]
  1235. name = "generic-array"
  1236. version = "0.14.7"
  1237. source = "registry+https://github.com/rust-lang/crates.io-index"
  1238. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1239. dependencies = [
  1240. "typenum",
  1241. "version_check",
  1242. ]
  1243. [[package]]
  1244. name = "gethostname"
  1245. version = "0.4.3"
  1246. source = "registry+https://github.com/rust-lang/crates.io-index"
  1247. checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
  1248. dependencies = [
  1249. "libc",
  1250. "windows-targets 0.48.5",
  1251. ]
  1252. [[package]]
  1253. name = "getrandom"
  1254. version = "0.2.15"
  1255. source = "registry+https://github.com/rust-lang/crates.io-index"
  1256. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  1257. dependencies = [
  1258. "cfg-if",
  1259. "libc",
  1260. "wasi",
  1261. ]
  1262. [[package]]
  1263. name = "gif"
  1264. version = "0.13.1"
  1265. source = "registry+https://github.com/rust-lang/crates.io-index"
  1266. checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
  1267. dependencies = [
  1268. "color_quant",
  1269. "weezl",
  1270. ]
  1271. [[package]]
  1272. name = "gimli"
  1273. version = "0.29.0"
  1274. source = "registry+https://github.com/rust-lang/crates.io-index"
  1275. checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
  1276. [[package]]
  1277. name = "gl_generator"
  1278. version = "0.14.0"
  1279. source = "registry+https://github.com/rust-lang/crates.io-index"
  1280. checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
  1281. dependencies = [
  1282. "khronos_api",
  1283. "log",
  1284. "xml-rs",
  1285. ]
  1286. [[package]]
  1287. name = "glam"
  1288. version = "0.25.0"
  1289. source = "registry+https://github.com/rust-lang/crates.io-index"
  1290. checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
  1291. [[package]]
  1292. name = "glow"
  1293. version = "0.13.1"
  1294. source = "registry+https://github.com/rust-lang/crates.io-index"
  1295. checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
  1296. dependencies = [
  1297. "js-sys",
  1298. "slotmap",
  1299. "wasm-bindgen",
  1300. "web-sys",
  1301. ]
  1302. [[package]]
  1303. name = "glutin_wgl_sys"
  1304. version = "0.5.0"
  1305. source = "registry+https://github.com/rust-lang/crates.io-index"
  1306. checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead"
  1307. dependencies = [
  1308. "gl_generator",
  1309. ]
  1310. [[package]]
  1311. name = "glyphon"
  1312. version = "0.5.0"
  1313. source = "git+https://github.com/hecrj/glyphon.git?rev=feef9f5630c2adb3528937e55f7bfad2da561a65#feef9f5630c2adb3528937e55f7bfad2da561a65"
  1314. dependencies = [
  1315. "cosmic-text 0.12.1",
  1316. "etagere",
  1317. "lru",
  1318. "rustc-hash 2.0.0",
  1319. "wgpu",
  1320. ]
  1321. [[package]]
  1322. name = "gpu-alloc"
  1323. version = "0.6.0"
  1324. source = "registry+https://github.com/rust-lang/crates.io-index"
  1325. checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
  1326. dependencies = [
  1327. "bitflags 2.6.0",
  1328. "gpu-alloc-types",
  1329. ]
  1330. [[package]]
  1331. name = "gpu-alloc-types"
  1332. version = "0.3.0"
  1333. source = "registry+https://github.com/rust-lang/crates.io-index"
  1334. checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
  1335. dependencies = [
  1336. "bitflags 2.6.0",
  1337. ]
  1338. [[package]]
  1339. name = "gpu-allocator"
  1340. version = "0.25.0"
  1341. source = "registry+https://github.com/rust-lang/crates.io-index"
  1342. checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884"
  1343. dependencies = [
  1344. "log",
  1345. "presser",
  1346. "thiserror",
  1347. "winapi",
  1348. "windows",
  1349. ]
  1350. [[package]]
  1351. name = "gpu-descriptor"
  1352. version = "0.2.4"
  1353. source = "registry+https://github.com/rust-lang/crates.io-index"
  1354. checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c"
  1355. dependencies = [
  1356. "bitflags 2.6.0",
  1357. "gpu-descriptor-types",
  1358. "hashbrown 0.14.5",
  1359. ]
  1360. [[package]]
  1361. name = "gpu-descriptor-types"
  1362. version = "0.1.2"
  1363. source = "registry+https://github.com/rust-lang/crates.io-index"
  1364. checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c"
  1365. dependencies = [
  1366. "bitflags 2.6.0",
  1367. ]
  1368. [[package]]
  1369. name = "guillotiere"
  1370. version = "0.6.2"
  1371. source = "registry+https://github.com/rust-lang/crates.io-index"
  1372. checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
  1373. dependencies = [
  1374. "euclid",
  1375. "svg_fmt",
  1376. ]
  1377. [[package]]
  1378. name = "h2"
  1379. version = "0.4.5"
  1380. source = "registry+https://github.com/rust-lang/crates.io-index"
  1381. checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
  1382. dependencies = [
  1383. "atomic-waker",
  1384. "bytes",
  1385. "fnv",
  1386. "futures-core",
  1387. "futures-sink",
  1388. "http",
  1389. "indexmap",
  1390. "slab",
  1391. "tokio",
  1392. "tokio-util",
  1393. "tracing",
  1394. ]
  1395. [[package]]
  1396. name = "half"
  1397. version = "2.4.1"
  1398. source = "registry+https://github.com/rust-lang/crates.io-index"
  1399. checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
  1400. dependencies = [
  1401. "cfg-if",
  1402. "crunchy",
  1403. ]
  1404. [[package]]
  1405. name = "hashbrown"
  1406. version = "0.12.3"
  1407. source = "registry+https://github.com/rust-lang/crates.io-index"
  1408. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1409. dependencies = [
  1410. "ahash 0.7.8",
  1411. ]
  1412. [[package]]
  1413. name = "hashbrown"
  1414. version = "0.14.5"
  1415. source = "registry+https://github.com/rust-lang/crates.io-index"
  1416. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  1417. dependencies = [
  1418. "ahash 0.8.11",
  1419. "allocator-api2",
  1420. ]
  1421. [[package]]
  1422. name = "hassle-rs"
  1423. version = "0.11.0"
  1424. source = "registry+https://github.com/rust-lang/crates.io-index"
  1425. checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
  1426. dependencies = [
  1427. "bitflags 2.6.0",
  1428. "com",
  1429. "libc",
  1430. "libloading 0.8.5",
  1431. "thiserror",
  1432. "widestring",
  1433. "winapi",
  1434. ]
  1435. [[package]]
  1436. name = "heck"
  1437. version = "0.4.1"
  1438. source = "registry+https://github.com/rust-lang/crates.io-index"
  1439. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1440. [[package]]
  1441. name = "hermit-abi"
  1442. version = "0.3.9"
  1443. source = "registry+https://github.com/rust-lang/crates.io-index"
  1444. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  1445. [[package]]
  1446. name = "hermit-abi"
  1447. version = "0.4.0"
  1448. source = "registry+https://github.com/rust-lang/crates.io-index"
  1449. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  1450. [[package]]
  1451. name = "hex"
  1452. version = "0.4.3"
  1453. source = "registry+https://github.com/rust-lang/crates.io-index"
  1454. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1455. [[package]]
  1456. name = "hexf-parse"
  1457. version = "0.2.1"
  1458. source = "registry+https://github.com/rust-lang/crates.io-index"
  1459. checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
  1460. [[package]]
  1461. name = "hmac"
  1462. version = "0.12.1"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1465. dependencies = [
  1466. "digest",
  1467. ]
  1468. [[package]]
  1469. name = "http"
  1470. version = "1.1.0"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  1473. dependencies = [
  1474. "bytes",
  1475. "fnv",
  1476. "itoa",
  1477. ]
  1478. [[package]]
  1479. name = "http-body"
  1480. version = "1.0.1"
  1481. source = "registry+https://github.com/rust-lang/crates.io-index"
  1482. checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  1483. dependencies = [
  1484. "bytes",
  1485. "http",
  1486. ]
  1487. [[package]]
  1488. name = "http-body-util"
  1489. version = "0.1.2"
  1490. source = "registry+https://github.com/rust-lang/crates.io-index"
  1491. checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
  1492. dependencies = [
  1493. "bytes",
  1494. "futures-util",
  1495. "http",
  1496. "http-body",
  1497. "pin-project-lite",
  1498. ]
  1499. [[package]]
  1500. name = "httparse"
  1501. version = "1.9.4"
  1502. source = "registry+https://github.com/rust-lang/crates.io-index"
  1503. checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
  1504. [[package]]
  1505. name = "httpdate"
  1506. version = "1.0.3"
  1507. source = "registry+https://github.com/rust-lang/crates.io-index"
  1508. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  1509. [[package]]
  1510. name = "hyper"
  1511. version = "1.4.1"
  1512. source = "registry+https://github.com/rust-lang/crates.io-index"
  1513. checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
  1514. dependencies = [
  1515. "bytes",
  1516. "futures-channel",
  1517. "futures-util",
  1518. "h2",
  1519. "http",
  1520. "http-body",
  1521. "httparse",
  1522. "httpdate",
  1523. "itoa",
  1524. "pin-project-lite",
  1525. "smallvec",
  1526. "tokio",
  1527. "want",
  1528. ]
  1529. [[package]]
  1530. name = "hyper-rustls"
  1531. version = "0.27.2"
  1532. source = "registry+https://github.com/rust-lang/crates.io-index"
  1533. checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
  1534. dependencies = [
  1535. "futures-util",
  1536. "http",
  1537. "hyper",
  1538. "hyper-util",
  1539. "rustls 0.23.12",
  1540. "rustls-pki-types",
  1541. "tokio",
  1542. "tokio-rustls 0.26.0",
  1543. "tower-service",
  1544. ]
  1545. [[package]]
  1546. name = "hyper-tls"
  1547. version = "0.6.0"
  1548. source = "registry+https://github.com/rust-lang/crates.io-index"
  1549. checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
  1550. dependencies = [
  1551. "bytes",
  1552. "http-body-util",
  1553. "hyper",
  1554. "hyper-util",
  1555. "native-tls",
  1556. "tokio",
  1557. "tokio-native-tls",
  1558. "tower-service",
  1559. ]
  1560. [[package]]
  1561. name = "hyper-util"
  1562. version = "0.1.6"
  1563. source = "registry+https://github.com/rust-lang/crates.io-index"
  1564. checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
  1565. dependencies = [
  1566. "bytes",
  1567. "futures-channel",
  1568. "futures-util",
  1569. "http",
  1570. "http-body",
  1571. "hyper",
  1572. "pin-project-lite",
  1573. "socket2",
  1574. "tokio",
  1575. "tower",
  1576. "tower-service",
  1577. "tracing",
  1578. ]
  1579. [[package]]
  1580. name = "iana-time-zone"
  1581. version = "0.1.60"
  1582. source = "registry+https://github.com/rust-lang/crates.io-index"
  1583. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  1584. dependencies = [
  1585. "android_system_properties",
  1586. "core-foundation-sys",
  1587. "iana-time-zone-haiku",
  1588. "js-sys",
  1589. "wasm-bindgen",
  1590. "windows-core",
  1591. ]
  1592. [[package]]
  1593. name = "iana-time-zone-haiku"
  1594. version = "0.1.2"
  1595. source = "registry+https://github.com/rust-lang/crates.io-index"
  1596. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  1597. dependencies = [
  1598. "cc",
  1599. ]
  1600. [[package]]
  1601. name = "iced"
  1602. version = "0.13.0-dev"
  1603. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1604. dependencies = [
  1605. "iced_core 0.13.0-dev",
  1606. "iced_futures 0.13.0-dev",
  1607. "iced_renderer 0.13.0-dev",
  1608. "iced_widget 0.13.0-dev",
  1609. "iced_winit",
  1610. "image",
  1611. "thiserror",
  1612. ]
  1613. [[package]]
  1614. name = "iced-trade"
  1615. version = "0.4.0"
  1616. dependencies = [
  1617. "anyhow",
  1618. "async-tungstenite",
  1619. "base64 0.22.1",
  1620. "bytes",
  1621. "chrono",
  1622. "fastwebsockets",
  1623. "futures",
  1624. "futures-util",
  1625. "hex",
  1626. "hmac",
  1627. "http-body-util",
  1628. "hyper",
  1629. "hyper-util",
  1630. "iced",
  1631. "iced_futures 0.12.0",
  1632. "iced_table",
  1633. "native-tls",
  1634. "reqwest",
  1635. "rustc-hash 2.0.0",
  1636. "serde",
  1637. "serde_json",
  1638. "sha2",
  1639. "sonic-rs",
  1640. "tokio",
  1641. "tokio-native-tls",
  1642. "tokio-rustls 0.24.1",
  1643. "tokio-tungstenite",
  1644. "tungstenite",
  1645. "url",
  1646. "uuid",
  1647. "webpki-roots 0.23.1",
  1648. ]
  1649. [[package]]
  1650. name = "iced_core"
  1651. version = "0.12.3"
  1652. source = "registry+https://github.com/rust-lang/crates.io-index"
  1653. checksum = "7d7e6bbd197f311ed3d8b71651876b0ce01318fde52cda862a9a7a4373c9b930"
  1654. dependencies = [
  1655. "bitflags 2.6.0",
  1656. "glam",
  1657. "log",
  1658. "num-traits",
  1659. "palette",
  1660. "raw-window-handle",
  1661. "smol_str",
  1662. "thiserror",
  1663. "web-time 0.2.4",
  1664. "xxhash-rust",
  1665. ]
  1666. [[package]]
  1667. name = "iced_core"
  1668. version = "0.13.0-dev"
  1669. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1670. dependencies = [
  1671. "bitflags 2.6.0",
  1672. "bytes",
  1673. "dark-light",
  1674. "glam",
  1675. "log",
  1676. "num-traits",
  1677. "once_cell",
  1678. "palette",
  1679. "rustc-hash 2.0.0",
  1680. "smol_str",
  1681. "thiserror",
  1682. "web-time 1.1.0",
  1683. ]
  1684. [[package]]
  1685. name = "iced_futures"
  1686. version = "0.12.0"
  1687. source = "registry+https://github.com/rust-lang/crates.io-index"
  1688. checksum = "370bad88fb3832cbeeb3fa6c486b4701fb7e8da32a753b3101d4ce81fc1d9497"
  1689. dependencies = [
  1690. "futures",
  1691. "iced_core 0.12.3",
  1692. "log",
  1693. "wasm-bindgen-futures",
  1694. "wasm-timer",
  1695. ]
  1696. [[package]]
  1697. name = "iced_futures"
  1698. version = "0.13.0-dev"
  1699. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1700. dependencies = [
  1701. "futures",
  1702. "iced_core 0.13.0-dev",
  1703. "log",
  1704. "rustc-hash 2.0.0",
  1705. "tokio",
  1706. "wasm-bindgen-futures",
  1707. "wasm-timer",
  1708. ]
  1709. [[package]]
  1710. name = "iced_graphics"
  1711. version = "0.12.1"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "6a044c193ef0840eacabfa05424717331d1fc5b3ecb9a89316200c75da2ba9a4"
  1714. dependencies = [
  1715. "bitflags 2.6.0",
  1716. "bytemuck",
  1717. "cosmic-text 0.10.0",
  1718. "half",
  1719. "iced_core 0.12.3",
  1720. "iced_futures 0.12.0",
  1721. "log",
  1722. "once_cell",
  1723. "raw-window-handle",
  1724. "rustc-hash 1.1.0",
  1725. "thiserror",
  1726. "unicode-segmentation",
  1727. "xxhash-rust",
  1728. ]
  1729. [[package]]
  1730. name = "iced_graphics"
  1731. version = "0.13.0-dev"
  1732. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1733. dependencies = [
  1734. "bitflags 2.6.0",
  1735. "bytemuck",
  1736. "cosmic-text 0.12.1",
  1737. "half",
  1738. "iced_core 0.13.0-dev",
  1739. "iced_futures 0.13.0-dev",
  1740. "image",
  1741. "kamadak-exif",
  1742. "log",
  1743. "lyon_path",
  1744. "once_cell",
  1745. "raw-window-handle",
  1746. "rustc-hash 2.0.0",
  1747. "thiserror",
  1748. "unicode-segmentation",
  1749. ]
  1750. [[package]]
  1751. name = "iced_renderer"
  1752. version = "0.12.1"
  1753. source = "registry+https://github.com/rust-lang/crates.io-index"
  1754. checksum = "5c281e03001d566058f53dec9325bbe61c62da715341206d2627f57a3ecc7f69"
  1755. dependencies = [
  1756. "iced_graphics 0.12.1",
  1757. "iced_tiny_skia 0.12.1",
  1758. "log",
  1759. "thiserror",
  1760. ]
  1761. [[package]]
  1762. name = "iced_renderer"
  1763. version = "0.13.0-dev"
  1764. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1765. dependencies = [
  1766. "iced_graphics 0.13.0-dev",
  1767. "iced_tiny_skia 0.13.0-dev",
  1768. "iced_wgpu",
  1769. "log",
  1770. "thiserror",
  1771. ]
  1772. [[package]]
  1773. name = "iced_runtime"
  1774. version = "0.12.1"
  1775. source = "registry+https://github.com/rust-lang/crates.io-index"
  1776. checksum = "a79f852c01cc6d61663c94379cb3974ac3ad315a28c504e847d573e094f46822"
  1777. dependencies = [
  1778. "iced_core 0.12.3",
  1779. "iced_futures 0.12.0",
  1780. "raw-window-handle",
  1781. "thiserror",
  1782. ]
  1783. [[package]]
  1784. name = "iced_runtime"
  1785. version = "0.13.0-dev"
  1786. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1787. dependencies = [
  1788. "bytes",
  1789. "iced_core 0.13.0-dev",
  1790. "iced_futures 0.13.0-dev",
  1791. "raw-window-handle",
  1792. "thiserror",
  1793. ]
  1794. [[package]]
  1795. name = "iced_style"
  1796. version = "0.12.1"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "2ea42a740915d2a5a9ff9c3aa0bca28b16e9fb660bc8f675eed71d186cadb579"
  1799. dependencies = [
  1800. "iced_core 0.12.3",
  1801. "once_cell",
  1802. "palette",
  1803. ]
  1804. [[package]]
  1805. name = "iced_table"
  1806. version = "0.12.0"
  1807. source = "registry+https://github.com/rust-lang/crates.io-index"
  1808. checksum = "4347f00d6cd7e5e3b26a9ac0bedd46f336b5eaa4be9b46256d1c8009562f6b51"
  1809. dependencies = [
  1810. "iced_core 0.12.3",
  1811. "iced_style",
  1812. "iced_widget 0.12.3",
  1813. ]
  1814. [[package]]
  1815. name = "iced_tiny_skia"
  1816. version = "0.12.1"
  1817. source = "registry+https://github.com/rust-lang/crates.io-index"
  1818. checksum = "8c2228781f4d381a1cbbd7905a9f077351aa8d37269094021d5d9e779f130aff"
  1819. dependencies = [
  1820. "bytemuck",
  1821. "cosmic-text 0.10.0",
  1822. "iced_graphics 0.12.1",
  1823. "kurbo",
  1824. "log",
  1825. "rustc-hash 1.1.0",
  1826. "softbuffer",
  1827. "tiny-skia",
  1828. "xxhash-rust",
  1829. ]
  1830. [[package]]
  1831. name = "iced_tiny_skia"
  1832. version = "0.13.0-dev"
  1833. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1834. dependencies = [
  1835. "bytemuck",
  1836. "cosmic-text 0.12.1",
  1837. "iced_graphics 0.13.0-dev",
  1838. "kurbo",
  1839. "log",
  1840. "rustc-hash 2.0.0",
  1841. "softbuffer",
  1842. "tiny-skia",
  1843. ]
  1844. [[package]]
  1845. name = "iced_wgpu"
  1846. version = "0.13.0-dev"
  1847. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1848. dependencies = [
  1849. "bitflags 2.6.0",
  1850. "bytemuck",
  1851. "futures",
  1852. "glam",
  1853. "glyphon",
  1854. "guillotiere",
  1855. "iced_graphics 0.13.0-dev",
  1856. "log",
  1857. "lyon",
  1858. "once_cell",
  1859. "rustc-hash 2.0.0",
  1860. "thiserror",
  1861. "wgpu",
  1862. ]
  1863. [[package]]
  1864. name = "iced_widget"
  1865. version = "0.12.3"
  1866. source = "registry+https://github.com/rust-lang/crates.io-index"
  1867. checksum = "7e01b2212adecf1cb80e2267f302c0e0c263e55f97812056949199ccf9f0b908"
  1868. dependencies = [
  1869. "iced_renderer 0.12.1",
  1870. "iced_runtime 0.12.1",
  1871. "iced_style",
  1872. "num-traits",
  1873. "thiserror",
  1874. "unicode-segmentation",
  1875. ]
  1876. [[package]]
  1877. name = "iced_widget"
  1878. version = "0.13.0-dev"
  1879. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1880. dependencies = [
  1881. "iced_renderer 0.13.0-dev",
  1882. "iced_runtime 0.13.0-dev",
  1883. "num-traits",
  1884. "once_cell",
  1885. "ouroboros",
  1886. "rustc-hash 2.0.0",
  1887. "thiserror",
  1888. "unicode-segmentation",
  1889. ]
  1890. [[package]]
  1891. name = "iced_winit"
  1892. version = "0.13.0-dev"
  1893. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1894. dependencies = [
  1895. "iced_futures 0.13.0-dev",
  1896. "iced_graphics 0.13.0-dev",
  1897. "iced_runtime 0.13.0-dev",
  1898. "log",
  1899. "rustc-hash 2.0.0",
  1900. "thiserror",
  1901. "tracing",
  1902. "wasm-bindgen-futures",
  1903. "web-sys",
  1904. "winapi",
  1905. "window_clipboard",
  1906. "winit",
  1907. ]
  1908. [[package]]
  1909. name = "idna"
  1910. version = "0.5.0"
  1911. source = "registry+https://github.com/rust-lang/crates.io-index"
  1912. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  1913. dependencies = [
  1914. "unicode-bidi",
  1915. "unicode-normalization",
  1916. ]
  1917. [[package]]
  1918. name = "image"
  1919. version = "0.24.9"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
  1922. dependencies = [
  1923. "bytemuck",
  1924. "byteorder",
  1925. "color_quant",
  1926. "exr",
  1927. "gif",
  1928. "jpeg-decoder",
  1929. "num-traits",
  1930. "png",
  1931. "qoi",
  1932. "tiff",
  1933. ]
  1934. [[package]]
  1935. name = "indexmap"
  1936. version = "2.3.0"
  1937. source = "registry+https://github.com/rust-lang/crates.io-index"
  1938. checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
  1939. dependencies = [
  1940. "equivalent",
  1941. "hashbrown 0.14.5",
  1942. ]
  1943. [[package]]
  1944. name = "instant"
  1945. version = "0.1.13"
  1946. source = "registry+https://github.com/rust-lang/crates.io-index"
  1947. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  1948. dependencies = [
  1949. "cfg-if",
  1950. ]
  1951. [[package]]
  1952. name = "ipnet"
  1953. version = "2.9.0"
  1954. source = "registry+https://github.com/rust-lang/crates.io-index"
  1955. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  1956. [[package]]
  1957. name = "itertools"
  1958. version = "0.12.1"
  1959. source = "registry+https://github.com/rust-lang/crates.io-index"
  1960. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  1961. dependencies = [
  1962. "either",
  1963. ]
  1964. [[package]]
  1965. name = "itoa"
  1966. version = "1.0.11"
  1967. source = "registry+https://github.com/rust-lang/crates.io-index"
  1968. checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
  1969. [[package]]
  1970. name = "jni"
  1971. version = "0.21.1"
  1972. source = "registry+https://github.com/rust-lang/crates.io-index"
  1973. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  1974. dependencies = [
  1975. "cesu8",
  1976. "cfg-if",
  1977. "combine",
  1978. "jni-sys",
  1979. "log",
  1980. "thiserror",
  1981. "walkdir",
  1982. "windows-sys 0.45.0",
  1983. ]
  1984. [[package]]
  1985. name = "jni-sys"
  1986. version = "0.3.0"
  1987. source = "registry+https://github.com/rust-lang/crates.io-index"
  1988. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  1989. [[package]]
  1990. name = "jobserver"
  1991. version = "0.1.32"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  1994. dependencies = [
  1995. "libc",
  1996. ]
  1997. [[package]]
  1998. name = "jpeg-decoder"
  1999. version = "0.3.1"
  2000. source = "registry+https://github.com/rust-lang/crates.io-index"
  2001. checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
  2002. dependencies = [
  2003. "rayon",
  2004. ]
  2005. [[package]]
  2006. name = "js-sys"
  2007. version = "0.3.69"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  2010. dependencies = [
  2011. "wasm-bindgen",
  2012. ]
  2013. [[package]]
  2014. name = "kamadak-exif"
  2015. version = "0.5.5"
  2016. source = "registry+https://github.com/rust-lang/crates.io-index"
  2017. checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077"
  2018. dependencies = [
  2019. "mutate_once",
  2020. ]
  2021. [[package]]
  2022. name = "khronos-egl"
  2023. version = "6.0.0"
  2024. source = "registry+https://github.com/rust-lang/crates.io-index"
  2025. checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
  2026. dependencies = [
  2027. "libc",
  2028. "libloading 0.8.5",
  2029. "pkg-config",
  2030. ]
  2031. [[package]]
  2032. name = "khronos_api"
  2033. version = "3.1.0"
  2034. source = "registry+https://github.com/rust-lang/crates.io-index"
  2035. checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
  2036. [[package]]
  2037. name = "kurbo"
  2038. version = "0.10.4"
  2039. source = "registry+https://github.com/rust-lang/crates.io-index"
  2040. checksum = "1618d4ebd923e97d67e7cd363d80aef35fe961005cbbbb3d2dad8bdd1bc63440"
  2041. dependencies = [
  2042. "arrayvec",
  2043. "smallvec",
  2044. ]
  2045. [[package]]
  2046. name = "lebe"
  2047. version = "0.5.2"
  2048. source = "registry+https://github.com/rust-lang/crates.io-index"
  2049. checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
  2050. [[package]]
  2051. name = "libc"
  2052. version = "0.2.155"
  2053. source = "registry+https://github.com/rust-lang/crates.io-index"
  2054. checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
  2055. [[package]]
  2056. name = "libloading"
  2057. version = "0.7.4"
  2058. source = "registry+https://github.com/rust-lang/crates.io-index"
  2059. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2060. dependencies = [
  2061. "cfg-if",
  2062. "winapi",
  2063. ]
  2064. [[package]]
  2065. name = "libloading"
  2066. version = "0.8.5"
  2067. source = "registry+https://github.com/rust-lang/crates.io-index"
  2068. checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
  2069. dependencies = [
  2070. "cfg-if",
  2071. "windows-targets 0.52.6",
  2072. ]
  2073. [[package]]
  2074. name = "libm"
  2075. version = "0.2.8"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  2078. [[package]]
  2079. name = "libredox"
  2080. version = "0.0.2"
  2081. source = "registry+https://github.com/rust-lang/crates.io-index"
  2082. checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
  2083. dependencies = [
  2084. "bitflags 2.6.0",
  2085. "libc",
  2086. "redox_syscall 0.4.1",
  2087. ]
  2088. [[package]]
  2089. name = "libredox"
  2090. version = "0.1.3"
  2091. source = "registry+https://github.com/rust-lang/crates.io-index"
  2092. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2093. dependencies = [
  2094. "bitflags 2.6.0",
  2095. "libc",
  2096. ]
  2097. [[package]]
  2098. name = "linux-raw-sys"
  2099. version = "0.4.14"
  2100. source = "registry+https://github.com/rust-lang/crates.io-index"
  2101. checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
  2102. [[package]]
  2103. name = "linux-raw-sys"
  2104. version = "0.6.4"
  2105. source = "registry+https://github.com/rust-lang/crates.io-index"
  2106. checksum = "f0b5399f6804fbab912acbd8878ed3532d506b7c951b8f9f164ef90fef39e3f4"
  2107. [[package]]
  2108. name = "lock_api"
  2109. version = "0.4.12"
  2110. source = "registry+https://github.com/rust-lang/crates.io-index"
  2111. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2112. dependencies = [
  2113. "autocfg",
  2114. "scopeguard",
  2115. ]
  2116. [[package]]
  2117. name = "log"
  2118. version = "0.4.22"
  2119. source = "registry+https://github.com/rust-lang/crates.io-index"
  2120. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  2121. [[package]]
  2122. name = "lru"
  2123. version = "0.12.4"
  2124. source = "registry+https://github.com/rust-lang/crates.io-index"
  2125. checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
  2126. [[package]]
  2127. name = "lyon"
  2128. version = "1.0.1"
  2129. source = "registry+https://github.com/rust-lang/crates.io-index"
  2130. checksum = "91e7f9cda98b5430809e63ca5197b06c7d191bf7e26dfc467d5a3f0290e2a74f"
  2131. dependencies = [
  2132. "lyon_algorithms",
  2133. "lyon_tessellation",
  2134. ]
  2135. [[package]]
  2136. name = "lyon_algorithms"
  2137. version = "1.0.4"
  2138. source = "registry+https://github.com/rust-lang/crates.io-index"
  2139. checksum = "a3bca95f9a4955b3e4a821fbbcd5edfbd9be2a9a50bb5758173e5358bfb4c623"
  2140. dependencies = [
  2141. "lyon_path",
  2142. "num-traits",
  2143. ]
  2144. [[package]]
  2145. name = "lyon_geom"
  2146. version = "1.0.5"
  2147. source = "registry+https://github.com/rust-lang/crates.io-index"
  2148. checksum = "edecfb8d234a2b0be031ab02ebcdd9f3b9ee418fb35e265f7a540a48d197bff9"
  2149. dependencies = [
  2150. "arrayvec",
  2151. "euclid",
  2152. "num-traits",
  2153. ]
  2154. [[package]]
  2155. name = "lyon_path"
  2156. version = "1.0.5"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "9c08a606c7a59638d6c6aa18ac91a06aa9fb5f765a7efb27e6a4da58700740d7"
  2159. dependencies = [
  2160. "lyon_geom",
  2161. "num-traits",
  2162. ]
  2163. [[package]]
  2164. name = "lyon_tessellation"
  2165. version = "1.0.15"
  2166. source = "registry+https://github.com/rust-lang/crates.io-index"
  2167. checksum = "579d42360a4b09846eff2feef28f538696c7d6c7439bfa65874ff3cbe0951b2c"
  2168. dependencies = [
  2169. "float_next_after",
  2170. "lyon_path",
  2171. "num-traits",
  2172. ]
  2173. [[package]]
  2174. name = "malloc_buf"
  2175. version = "0.0.6"
  2176. source = "registry+https://github.com/rust-lang/crates.io-index"
  2177. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  2178. dependencies = [
  2179. "libc",
  2180. ]
  2181. [[package]]
  2182. name = "memchr"
  2183. version = "2.7.4"
  2184. source = "registry+https://github.com/rust-lang/crates.io-index"
  2185. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2186. [[package]]
  2187. name = "memmap2"
  2188. version = "0.8.0"
  2189. source = "registry+https://github.com/rust-lang/crates.io-index"
  2190. checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
  2191. dependencies = [
  2192. "libc",
  2193. ]
  2194. [[package]]
  2195. name = "memmap2"
  2196. version = "0.9.4"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  2199. dependencies = [
  2200. "libc",
  2201. ]
  2202. [[package]]
  2203. name = "memoffset"
  2204. version = "0.9.1"
  2205. source = "registry+https://github.com/rust-lang/crates.io-index"
  2206. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  2207. dependencies = [
  2208. "autocfg",
  2209. ]
  2210. [[package]]
  2211. name = "metal"
  2212. version = "0.27.0"
  2213. source = "registry+https://github.com/rust-lang/crates.io-index"
  2214. checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
  2215. dependencies = [
  2216. "bitflags 2.6.0",
  2217. "block",
  2218. "core-graphics-types",
  2219. "foreign-types 0.5.0",
  2220. "log",
  2221. "objc",
  2222. "paste",
  2223. ]
  2224. [[package]]
  2225. name = "mime"
  2226. version = "0.3.17"
  2227. source = "registry+https://github.com/rust-lang/crates.io-index"
  2228. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2229. [[package]]
  2230. name = "miniz_oxide"
  2231. version = "0.7.4"
  2232. source = "registry+https://github.com/rust-lang/crates.io-index"
  2233. checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
  2234. dependencies = [
  2235. "adler",
  2236. "simd-adler32",
  2237. ]
  2238. [[package]]
  2239. name = "mio"
  2240. version = "1.0.1"
  2241. source = "registry+https://github.com/rust-lang/crates.io-index"
  2242. checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
  2243. dependencies = [
  2244. "hermit-abi 0.3.9",
  2245. "libc",
  2246. "wasi",
  2247. "windows-sys 0.52.0",
  2248. ]
  2249. [[package]]
  2250. name = "mutate_once"
  2251. version = "0.1.1"
  2252. source = "registry+https://github.com/rust-lang/crates.io-index"
  2253. checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
  2254. [[package]]
  2255. name = "naga"
  2256. version = "0.19.2"
  2257. source = "registry+https://github.com/rust-lang/crates.io-index"
  2258. checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
  2259. dependencies = [
  2260. "bit-set",
  2261. "bitflags 2.6.0",
  2262. "codespan-reporting",
  2263. "hexf-parse",
  2264. "indexmap",
  2265. "log",
  2266. "num-traits",
  2267. "rustc-hash 1.1.0",
  2268. "spirv",
  2269. "termcolor",
  2270. "thiserror",
  2271. "unicode-xid",
  2272. ]
  2273. [[package]]
  2274. name = "native-tls"
  2275. version = "0.2.12"
  2276. source = "registry+https://github.com/rust-lang/crates.io-index"
  2277. checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
  2278. dependencies = [
  2279. "libc",
  2280. "log",
  2281. "openssl",
  2282. "openssl-probe",
  2283. "openssl-sys",
  2284. "schannel",
  2285. "security-framework",
  2286. "security-framework-sys",
  2287. "tempfile",
  2288. ]
  2289. [[package]]
  2290. name = "ndk"
  2291. version = "0.9.0"
  2292. source = "registry+https://github.com/rust-lang/crates.io-index"
  2293. checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
  2294. dependencies = [
  2295. "bitflags 2.6.0",
  2296. "jni-sys",
  2297. "log",
  2298. "ndk-sys 0.6.0+11769913",
  2299. "num_enum",
  2300. "raw-window-handle",
  2301. "thiserror",
  2302. ]
  2303. [[package]]
  2304. name = "ndk-context"
  2305. version = "0.1.1"
  2306. source = "registry+https://github.com/rust-lang/crates.io-index"
  2307. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  2308. [[package]]
  2309. name = "ndk-sys"
  2310. version = "0.5.0+25.2.9519653"
  2311. source = "registry+https://github.com/rust-lang/crates.io-index"
  2312. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  2313. dependencies = [
  2314. "jni-sys",
  2315. ]
  2316. [[package]]
  2317. name = "ndk-sys"
  2318. version = "0.6.0+11769913"
  2319. source = "registry+https://github.com/rust-lang/crates.io-index"
  2320. checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
  2321. dependencies = [
  2322. "jni-sys",
  2323. ]
  2324. [[package]]
  2325. name = "nix"
  2326. version = "0.29.0"
  2327. source = "registry+https://github.com/rust-lang/crates.io-index"
  2328. checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
  2329. dependencies = [
  2330. "bitflags 2.6.0",
  2331. "cfg-if",
  2332. "cfg_aliases 0.2.1",
  2333. "libc",
  2334. "memoffset",
  2335. ]
  2336. [[package]]
  2337. name = "num-traits"
  2338. version = "0.2.19"
  2339. source = "registry+https://github.com/rust-lang/crates.io-index"
  2340. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  2341. dependencies = [
  2342. "autocfg",
  2343. "libm",
  2344. ]
  2345. [[package]]
  2346. name = "num_cpus"
  2347. version = "1.16.0"
  2348. source = "registry+https://github.com/rust-lang/crates.io-index"
  2349. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  2350. dependencies = [
  2351. "hermit-abi 0.3.9",
  2352. "libc",
  2353. ]
  2354. [[package]]
  2355. name = "num_enum"
  2356. version = "0.7.3"
  2357. source = "registry+https://github.com/rust-lang/crates.io-index"
  2358. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  2359. dependencies = [
  2360. "num_enum_derive",
  2361. ]
  2362. [[package]]
  2363. name = "num_enum_derive"
  2364. version = "0.7.3"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  2367. dependencies = [
  2368. "proc-macro-crate",
  2369. "proc-macro2",
  2370. "quote",
  2371. "syn 2.0.72",
  2372. ]
  2373. [[package]]
  2374. name = "objc"
  2375. version = "0.2.7"
  2376. source = "registry+https://github.com/rust-lang/crates.io-index"
  2377. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  2378. dependencies = [
  2379. "malloc_buf",
  2380. "objc_exception",
  2381. ]
  2382. [[package]]
  2383. name = "objc-foundation"
  2384. version = "0.1.1"
  2385. source = "registry+https://github.com/rust-lang/crates.io-index"
  2386. checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
  2387. dependencies = [
  2388. "block",
  2389. "objc",
  2390. "objc_id",
  2391. ]
  2392. [[package]]
  2393. name = "objc-sys"
  2394. version = "0.3.5"
  2395. source = "registry+https://github.com/rust-lang/crates.io-index"
  2396. checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
  2397. [[package]]
  2398. name = "objc2"
  2399. version = "0.5.2"
  2400. source = "registry+https://github.com/rust-lang/crates.io-index"
  2401. checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
  2402. dependencies = [
  2403. "objc-sys",
  2404. "objc2-encode",
  2405. ]
  2406. [[package]]
  2407. name = "objc2-app-kit"
  2408. version = "0.2.2"
  2409. source = "registry+https://github.com/rust-lang/crates.io-index"
  2410. checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
  2411. dependencies = [
  2412. "bitflags 2.6.0",
  2413. "block2",
  2414. "libc",
  2415. "objc2",
  2416. "objc2-core-data",
  2417. "objc2-core-image",
  2418. "objc2-foundation",
  2419. "objc2-quartz-core",
  2420. ]
  2421. [[package]]
  2422. name = "objc2-cloud-kit"
  2423. version = "0.2.2"
  2424. source = "registry+https://github.com/rust-lang/crates.io-index"
  2425. checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
  2426. dependencies = [
  2427. "bitflags 2.6.0",
  2428. "block2",
  2429. "objc2",
  2430. "objc2-core-location",
  2431. "objc2-foundation",
  2432. ]
  2433. [[package]]
  2434. name = "objc2-contacts"
  2435. version = "0.2.2"
  2436. source = "registry+https://github.com/rust-lang/crates.io-index"
  2437. checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
  2438. dependencies = [
  2439. "block2",
  2440. "objc2",
  2441. "objc2-foundation",
  2442. ]
  2443. [[package]]
  2444. name = "objc2-core-data"
  2445. version = "0.2.2"
  2446. source = "registry+https://github.com/rust-lang/crates.io-index"
  2447. checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
  2448. dependencies = [
  2449. "bitflags 2.6.0",
  2450. "block2",
  2451. "objc2",
  2452. "objc2-foundation",
  2453. ]
  2454. [[package]]
  2455. name = "objc2-core-image"
  2456. version = "0.2.2"
  2457. source = "registry+https://github.com/rust-lang/crates.io-index"
  2458. checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
  2459. dependencies = [
  2460. "block2",
  2461. "objc2",
  2462. "objc2-foundation",
  2463. "objc2-metal",
  2464. ]
  2465. [[package]]
  2466. name = "objc2-core-location"
  2467. version = "0.2.2"
  2468. source = "registry+https://github.com/rust-lang/crates.io-index"
  2469. checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
  2470. dependencies = [
  2471. "block2",
  2472. "objc2",
  2473. "objc2-contacts",
  2474. "objc2-foundation",
  2475. ]
  2476. [[package]]
  2477. name = "objc2-encode"
  2478. version = "4.0.3"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8"
  2481. [[package]]
  2482. name = "objc2-foundation"
  2483. version = "0.2.2"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
  2486. dependencies = [
  2487. "bitflags 2.6.0",
  2488. "block2",
  2489. "dispatch",
  2490. "libc",
  2491. "objc2",
  2492. ]
  2493. [[package]]
  2494. name = "objc2-link-presentation"
  2495. version = "0.2.2"
  2496. source = "registry+https://github.com/rust-lang/crates.io-index"
  2497. checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
  2498. dependencies = [
  2499. "block2",
  2500. "objc2",
  2501. "objc2-app-kit",
  2502. "objc2-foundation",
  2503. ]
  2504. [[package]]
  2505. name = "objc2-metal"
  2506. version = "0.2.2"
  2507. source = "registry+https://github.com/rust-lang/crates.io-index"
  2508. checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
  2509. dependencies = [
  2510. "bitflags 2.6.0",
  2511. "block2",
  2512. "objc2",
  2513. "objc2-foundation",
  2514. ]
  2515. [[package]]
  2516. name = "objc2-quartz-core"
  2517. version = "0.2.2"
  2518. source = "registry+https://github.com/rust-lang/crates.io-index"
  2519. checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
  2520. dependencies = [
  2521. "bitflags 2.6.0",
  2522. "block2",
  2523. "objc2",
  2524. "objc2-foundation",
  2525. "objc2-metal",
  2526. ]
  2527. [[package]]
  2528. name = "objc2-symbols"
  2529. version = "0.2.2"
  2530. source = "registry+https://github.com/rust-lang/crates.io-index"
  2531. checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
  2532. dependencies = [
  2533. "objc2",
  2534. "objc2-foundation",
  2535. ]
  2536. [[package]]
  2537. name = "objc2-ui-kit"
  2538. version = "0.2.2"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
  2541. dependencies = [
  2542. "bitflags 2.6.0",
  2543. "block2",
  2544. "objc2",
  2545. "objc2-cloud-kit",
  2546. "objc2-core-data",
  2547. "objc2-core-image",
  2548. "objc2-core-location",
  2549. "objc2-foundation",
  2550. "objc2-link-presentation",
  2551. "objc2-quartz-core",
  2552. "objc2-symbols",
  2553. "objc2-uniform-type-identifiers",
  2554. "objc2-user-notifications",
  2555. ]
  2556. [[package]]
  2557. name = "objc2-uniform-type-identifiers"
  2558. version = "0.2.2"
  2559. source = "registry+https://github.com/rust-lang/crates.io-index"
  2560. checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
  2561. dependencies = [
  2562. "block2",
  2563. "objc2",
  2564. "objc2-foundation",
  2565. ]
  2566. [[package]]
  2567. name = "objc2-user-notifications"
  2568. version = "0.2.2"
  2569. source = "registry+https://github.com/rust-lang/crates.io-index"
  2570. checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
  2571. dependencies = [
  2572. "bitflags 2.6.0",
  2573. "block2",
  2574. "objc2",
  2575. "objc2-core-location",
  2576. "objc2-foundation",
  2577. ]
  2578. [[package]]
  2579. name = "objc_exception"
  2580. version = "0.1.2"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
  2583. dependencies = [
  2584. "cc",
  2585. ]
  2586. [[package]]
  2587. name = "objc_id"
  2588. version = "0.1.1"
  2589. source = "registry+https://github.com/rust-lang/crates.io-index"
  2590. checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
  2591. dependencies = [
  2592. "objc",
  2593. ]
  2594. [[package]]
  2595. name = "object"
  2596. version = "0.36.2"
  2597. source = "registry+https://github.com/rust-lang/crates.io-index"
  2598. checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e"
  2599. dependencies = [
  2600. "memchr",
  2601. ]
  2602. [[package]]
  2603. name = "once_cell"
  2604. version = "1.19.0"
  2605. source = "registry+https://github.com/rust-lang/crates.io-index"
  2606. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  2607. [[package]]
  2608. name = "openssl"
  2609. version = "0.10.66"
  2610. source = "registry+https://github.com/rust-lang/crates.io-index"
  2611. checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
  2612. dependencies = [
  2613. "bitflags 2.6.0",
  2614. "cfg-if",
  2615. "foreign-types 0.3.2",
  2616. "libc",
  2617. "once_cell",
  2618. "openssl-macros",
  2619. "openssl-sys",
  2620. ]
  2621. [[package]]
  2622. name = "openssl-macros"
  2623. version = "0.1.1"
  2624. source = "registry+https://github.com/rust-lang/crates.io-index"
  2625. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  2626. dependencies = [
  2627. "proc-macro2",
  2628. "quote",
  2629. "syn 2.0.72",
  2630. ]
  2631. [[package]]
  2632. name = "openssl-probe"
  2633. version = "0.1.5"
  2634. source = "registry+https://github.com/rust-lang/crates.io-index"
  2635. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2636. [[package]]
  2637. name = "openssl-sys"
  2638. version = "0.9.103"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
  2641. dependencies = [
  2642. "cc",
  2643. "libc",
  2644. "pkg-config",
  2645. "vcpkg",
  2646. ]
  2647. [[package]]
  2648. name = "orbclient"
  2649. version = "0.3.47"
  2650. source = "registry+https://github.com/rust-lang/crates.io-index"
  2651. checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166"
  2652. dependencies = [
  2653. "libredox 0.0.2",
  2654. ]
  2655. [[package]]
  2656. name = "ordered-multimap"
  2657. version = "0.4.3"
  2658. source = "registry+https://github.com/rust-lang/crates.io-index"
  2659. checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
  2660. dependencies = [
  2661. "dlv-list",
  2662. "hashbrown 0.12.3",
  2663. ]
  2664. [[package]]
  2665. name = "ordered-stream"
  2666. version = "0.2.0"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
  2669. dependencies = [
  2670. "futures-core",
  2671. "pin-project-lite",
  2672. ]
  2673. [[package]]
  2674. name = "ouroboros"
  2675. version = "0.18.4"
  2676. source = "registry+https://github.com/rust-lang/crates.io-index"
  2677. checksum = "944fa20996a25aded6b4795c6d63f10014a7a83f8be9828a11860b08c5fc4a67"
  2678. dependencies = [
  2679. "aliasable",
  2680. "ouroboros_macro",
  2681. "static_assertions",
  2682. ]
  2683. [[package]]
  2684. name = "ouroboros_macro"
  2685. version = "0.18.4"
  2686. source = "registry+https://github.com/rust-lang/crates.io-index"
  2687. checksum = "39b0deead1528fd0e5947a8546a9642a9777c25f6e1e26f34c97b204bbb465bd"
  2688. dependencies = [
  2689. "heck",
  2690. "itertools",
  2691. "proc-macro2",
  2692. "proc-macro2-diagnostics",
  2693. "quote",
  2694. "syn 2.0.72",
  2695. ]
  2696. [[package]]
  2697. name = "owned_ttf_parser"
  2698. version = "0.24.0"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "490d3a563d3122bf7c911a59b0add9389e5ec0f5f0c3ac6b91ff235a0e6a7f90"
  2701. dependencies = [
  2702. "ttf-parser 0.24.0",
  2703. ]
  2704. [[package]]
  2705. name = "page_size"
  2706. version = "0.6.0"
  2707. source = "registry+https://github.com/rust-lang/crates.io-index"
  2708. checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
  2709. dependencies = [
  2710. "libc",
  2711. "winapi",
  2712. ]
  2713. [[package]]
  2714. name = "palette"
  2715. version = "0.7.6"
  2716. source = "registry+https://github.com/rust-lang/crates.io-index"
  2717. checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
  2718. dependencies = [
  2719. "approx",
  2720. "fast-srgb8",
  2721. "palette_derive",
  2722. "phf",
  2723. ]
  2724. [[package]]
  2725. name = "palette_derive"
  2726. version = "0.7.6"
  2727. source = "registry+https://github.com/rust-lang/crates.io-index"
  2728. checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
  2729. dependencies = [
  2730. "by_address",
  2731. "proc-macro2",
  2732. "quote",
  2733. "syn 2.0.72",
  2734. ]
  2735. [[package]]
  2736. name = "parking"
  2737. version = "2.2.0"
  2738. source = "registry+https://github.com/rust-lang/crates.io-index"
  2739. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  2740. [[package]]
  2741. name = "parking_lot"
  2742. version = "0.11.2"
  2743. source = "registry+https://github.com/rust-lang/crates.io-index"
  2744. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2745. dependencies = [
  2746. "instant",
  2747. "lock_api",
  2748. "parking_lot_core 0.8.6",
  2749. ]
  2750. [[package]]
  2751. name = "parking_lot"
  2752. version = "0.12.3"
  2753. source = "registry+https://github.com/rust-lang/crates.io-index"
  2754. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  2755. dependencies = [
  2756. "lock_api",
  2757. "parking_lot_core 0.9.10",
  2758. ]
  2759. [[package]]
  2760. name = "parking_lot_core"
  2761. version = "0.8.6"
  2762. source = "registry+https://github.com/rust-lang/crates.io-index"
  2763. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2764. dependencies = [
  2765. "cfg-if",
  2766. "instant",
  2767. "libc",
  2768. "redox_syscall 0.2.16",
  2769. "smallvec",
  2770. "winapi",
  2771. ]
  2772. [[package]]
  2773. name = "parking_lot_core"
  2774. version = "0.9.10"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  2777. dependencies = [
  2778. "cfg-if",
  2779. "libc",
  2780. "redox_syscall 0.5.3",
  2781. "smallvec",
  2782. "windows-targets 0.52.6",
  2783. ]
  2784. [[package]]
  2785. name = "paste"
  2786. version = "1.0.15"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  2789. [[package]]
  2790. name = "percent-encoding"
  2791. version = "2.3.1"
  2792. source = "registry+https://github.com/rust-lang/crates.io-index"
  2793. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  2794. [[package]]
  2795. name = "phf"
  2796. version = "0.11.2"
  2797. source = "registry+https://github.com/rust-lang/crates.io-index"
  2798. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  2799. dependencies = [
  2800. "phf_macros",
  2801. "phf_shared",
  2802. ]
  2803. [[package]]
  2804. name = "phf_generator"
  2805. version = "0.11.2"
  2806. source = "registry+https://github.com/rust-lang/crates.io-index"
  2807. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  2808. dependencies = [
  2809. "phf_shared",
  2810. "rand",
  2811. ]
  2812. [[package]]
  2813. name = "phf_macros"
  2814. version = "0.11.2"
  2815. source = "registry+https://github.com/rust-lang/crates.io-index"
  2816. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  2817. dependencies = [
  2818. "phf_generator",
  2819. "phf_shared",
  2820. "proc-macro2",
  2821. "quote",
  2822. "syn 2.0.72",
  2823. ]
  2824. [[package]]
  2825. name = "phf_shared"
  2826. version = "0.11.2"
  2827. source = "registry+https://github.com/rust-lang/crates.io-index"
  2828. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  2829. dependencies = [
  2830. "siphasher",
  2831. ]
  2832. [[package]]
  2833. name = "pin-project"
  2834. version = "1.1.5"
  2835. source = "registry+https://github.com/rust-lang/crates.io-index"
  2836. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  2837. dependencies = [
  2838. "pin-project-internal",
  2839. ]
  2840. [[package]]
  2841. name = "pin-project-internal"
  2842. version = "1.1.5"
  2843. source = "registry+https://github.com/rust-lang/crates.io-index"
  2844. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  2845. dependencies = [
  2846. "proc-macro2",
  2847. "quote",
  2848. "syn 2.0.72",
  2849. ]
  2850. [[package]]
  2851. name = "pin-project-lite"
  2852. version = "0.2.14"
  2853. source = "registry+https://github.com/rust-lang/crates.io-index"
  2854. checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
  2855. [[package]]
  2856. name = "pin-utils"
  2857. version = "0.1.0"
  2858. source = "registry+https://github.com/rust-lang/crates.io-index"
  2859. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2860. [[package]]
  2861. name = "piper"
  2862. version = "0.2.3"
  2863. source = "registry+https://github.com/rust-lang/crates.io-index"
  2864. checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391"
  2865. dependencies = [
  2866. "atomic-waker",
  2867. "fastrand",
  2868. "futures-io",
  2869. ]
  2870. [[package]]
  2871. name = "pkg-config"
  2872. version = "0.3.30"
  2873. source = "registry+https://github.com/rust-lang/crates.io-index"
  2874. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  2875. [[package]]
  2876. name = "png"
  2877. version = "0.17.13"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
  2880. dependencies = [
  2881. "bitflags 1.3.2",
  2882. "crc32fast",
  2883. "fdeflate",
  2884. "flate2",
  2885. "miniz_oxide",
  2886. ]
  2887. [[package]]
  2888. name = "polling"
  2889. version = "3.7.2"
  2890. source = "registry+https://github.com/rust-lang/crates.io-index"
  2891. checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b"
  2892. dependencies = [
  2893. "cfg-if",
  2894. "concurrent-queue",
  2895. "hermit-abi 0.4.0",
  2896. "pin-project-lite",
  2897. "rustix",
  2898. "tracing",
  2899. "windows-sys 0.52.0",
  2900. ]
  2901. [[package]]
  2902. name = "ppv-lite86"
  2903. version = "0.2.18"
  2904. source = "registry+https://github.com/rust-lang/crates.io-index"
  2905. checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f"
  2906. dependencies = [
  2907. "zerocopy 0.6.6",
  2908. ]
  2909. [[package]]
  2910. name = "presser"
  2911. version = "0.3.1"
  2912. source = "registry+https://github.com/rust-lang/crates.io-index"
  2913. checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
  2914. [[package]]
  2915. name = "proc-macro-crate"
  2916. version = "3.1.0"
  2917. source = "registry+https://github.com/rust-lang/crates.io-index"
  2918. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  2919. dependencies = [
  2920. "toml_edit",
  2921. ]
  2922. [[package]]
  2923. name = "proc-macro2"
  2924. version = "1.0.86"
  2925. source = "registry+https://github.com/rust-lang/crates.io-index"
  2926. checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
  2927. dependencies = [
  2928. "unicode-ident",
  2929. ]
  2930. [[package]]
  2931. name = "proc-macro2-diagnostics"
  2932. version = "0.10.1"
  2933. source = "registry+https://github.com/rust-lang/crates.io-index"
  2934. checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
  2935. dependencies = [
  2936. "proc-macro2",
  2937. "quote",
  2938. "syn 2.0.72",
  2939. "version_check",
  2940. "yansi",
  2941. ]
  2942. [[package]]
  2943. name = "profiling"
  2944. version = "1.0.15"
  2945. source = "registry+https://github.com/rust-lang/crates.io-index"
  2946. checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
  2947. [[package]]
  2948. name = "qoi"
  2949. version = "0.4.1"
  2950. source = "registry+https://github.com/rust-lang/crates.io-index"
  2951. checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
  2952. dependencies = [
  2953. "bytemuck",
  2954. ]
  2955. [[package]]
  2956. name = "quick-xml"
  2957. version = "0.34.0"
  2958. source = "registry+https://github.com/rust-lang/crates.io-index"
  2959. checksum = "6f24d770aeca0eacb81ac29dfbc55ebcc09312fdd1f8bbecdc7e4a84e000e3b4"
  2960. dependencies = [
  2961. "memchr",
  2962. ]
  2963. [[package]]
  2964. name = "quote"
  2965. version = "1.0.36"
  2966. source = "registry+https://github.com/rust-lang/crates.io-index"
  2967. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  2968. dependencies = [
  2969. "proc-macro2",
  2970. ]
  2971. [[package]]
  2972. name = "rand"
  2973. version = "0.8.5"
  2974. source = "registry+https://github.com/rust-lang/crates.io-index"
  2975. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  2976. dependencies = [
  2977. "libc",
  2978. "rand_chacha",
  2979. "rand_core",
  2980. ]
  2981. [[package]]
  2982. name = "rand_chacha"
  2983. version = "0.3.1"
  2984. source = "registry+https://github.com/rust-lang/crates.io-index"
  2985. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  2986. dependencies = [
  2987. "ppv-lite86",
  2988. "rand_core",
  2989. ]
  2990. [[package]]
  2991. name = "rand_core"
  2992. version = "0.6.4"
  2993. source = "registry+https://github.com/rust-lang/crates.io-index"
  2994. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  2995. dependencies = [
  2996. "getrandom",
  2997. ]
  2998. [[package]]
  2999. name = "range-alloc"
  3000. version = "0.1.3"
  3001. source = "registry+https://github.com/rust-lang/crates.io-index"
  3002. checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
  3003. [[package]]
  3004. name = "rangemap"
  3005. version = "1.5.1"
  3006. source = "registry+https://github.com/rust-lang/crates.io-index"
  3007. checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684"
  3008. [[package]]
  3009. name = "raw-window-handle"
  3010. version = "0.6.2"
  3011. source = "registry+https://github.com/rust-lang/crates.io-index"
  3012. checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
  3013. [[package]]
  3014. name = "rayon"
  3015. version = "1.10.0"
  3016. source = "registry+https://github.com/rust-lang/crates.io-index"
  3017. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  3018. dependencies = [
  3019. "either",
  3020. "rayon-core",
  3021. ]
  3022. [[package]]
  3023. name = "rayon-core"
  3024. version = "1.12.1"
  3025. source = "registry+https://github.com/rust-lang/crates.io-index"
  3026. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3027. dependencies = [
  3028. "crossbeam-deque",
  3029. "crossbeam-utils",
  3030. ]
  3031. [[package]]
  3032. name = "read-fonts"
  3033. version = "0.20.0"
  3034. source = "registry+https://github.com/rust-lang/crates.io-index"
  3035. checksum = "8c141b9980e1150201b2a3a32879001c8f975fe313ec3df5471a9b5c79a880cd"
  3036. dependencies = [
  3037. "bytemuck",
  3038. "font-types",
  3039. ]
  3040. [[package]]
  3041. name = "redox_syscall"
  3042. version = "0.2.16"
  3043. source = "registry+https://github.com/rust-lang/crates.io-index"
  3044. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3045. dependencies = [
  3046. "bitflags 1.3.2",
  3047. ]
  3048. [[package]]
  3049. name = "redox_syscall"
  3050. version = "0.4.1"
  3051. source = "registry+https://github.com/rust-lang/crates.io-index"
  3052. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  3053. dependencies = [
  3054. "bitflags 1.3.2",
  3055. ]
  3056. [[package]]
  3057. name = "redox_syscall"
  3058. version = "0.5.3"
  3059. source = "registry+https://github.com/rust-lang/crates.io-index"
  3060. checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
  3061. dependencies = [
  3062. "bitflags 2.6.0",
  3063. ]
  3064. [[package]]
  3065. name = "redox_users"
  3066. version = "0.4.5"
  3067. source = "registry+https://github.com/rust-lang/crates.io-index"
  3068. checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
  3069. dependencies = [
  3070. "getrandom",
  3071. "libredox 0.1.3",
  3072. "thiserror",
  3073. ]
  3074. [[package]]
  3075. name = "renderdoc-sys"
  3076. version = "1.1.0"
  3077. source = "registry+https://github.com/rust-lang/crates.io-index"
  3078. checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
  3079. [[package]]
  3080. name = "reqwest"
  3081. version = "0.12.5"
  3082. source = "registry+https://github.com/rust-lang/crates.io-index"
  3083. checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
  3084. dependencies = [
  3085. "base64 0.22.1",
  3086. "bytes",
  3087. "encoding_rs",
  3088. "futures-core",
  3089. "futures-util",
  3090. "h2",
  3091. "http",
  3092. "http-body",
  3093. "http-body-util",
  3094. "hyper",
  3095. "hyper-rustls",
  3096. "hyper-tls",
  3097. "hyper-util",
  3098. "ipnet",
  3099. "js-sys",
  3100. "log",
  3101. "mime",
  3102. "native-tls",
  3103. "once_cell",
  3104. "percent-encoding",
  3105. "pin-project-lite",
  3106. "rustls-pemfile",
  3107. "serde",
  3108. "serde_json",
  3109. "serde_urlencoded",
  3110. "sync_wrapper",
  3111. "system-configuration",
  3112. "tokio",
  3113. "tokio-native-tls",
  3114. "tower-service",
  3115. "url",
  3116. "wasm-bindgen",
  3117. "wasm-bindgen-futures",
  3118. "web-sys",
  3119. "winreg 0.52.0",
  3120. ]
  3121. [[package]]
  3122. name = "ring"
  3123. version = "0.16.20"
  3124. source = "registry+https://github.com/rust-lang/crates.io-index"
  3125. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3126. dependencies = [
  3127. "cc",
  3128. "libc",
  3129. "once_cell",
  3130. "spin 0.5.2",
  3131. "untrusted 0.7.1",
  3132. "web-sys",
  3133. "winapi",
  3134. ]
  3135. [[package]]
  3136. name = "ring"
  3137. version = "0.17.8"
  3138. source = "registry+https://github.com/rust-lang/crates.io-index"
  3139. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  3140. dependencies = [
  3141. "cc",
  3142. "cfg-if",
  3143. "getrandom",
  3144. "libc",
  3145. "spin 0.9.8",
  3146. "untrusted 0.9.0",
  3147. "windows-sys 0.52.0",
  3148. ]
  3149. [[package]]
  3150. name = "roxmltree"
  3151. version = "0.20.0"
  3152. source = "registry+https://github.com/rust-lang/crates.io-index"
  3153. checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
  3154. [[package]]
  3155. name = "rust-ini"
  3156. version = "0.18.0"
  3157. source = "registry+https://github.com/rust-lang/crates.io-index"
  3158. checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
  3159. dependencies = [
  3160. "cfg-if",
  3161. "ordered-multimap",
  3162. ]
  3163. [[package]]
  3164. name = "rustc-demangle"
  3165. version = "0.1.24"
  3166. source = "registry+https://github.com/rust-lang/crates.io-index"
  3167. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  3168. [[package]]
  3169. name = "rustc-hash"
  3170. version = "1.1.0"
  3171. source = "registry+https://github.com/rust-lang/crates.io-index"
  3172. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3173. [[package]]
  3174. name = "rustc-hash"
  3175. version = "2.0.0"
  3176. source = "registry+https://github.com/rust-lang/crates.io-index"
  3177. checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
  3178. [[package]]
  3179. name = "rustix"
  3180. version = "0.38.34"
  3181. source = "registry+https://github.com/rust-lang/crates.io-index"
  3182. checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
  3183. dependencies = [
  3184. "bitflags 2.6.0",
  3185. "errno",
  3186. "libc",
  3187. "linux-raw-sys 0.4.14",
  3188. "windows-sys 0.52.0",
  3189. ]
  3190. [[package]]
  3191. name = "rustls"
  3192. version = "0.21.12"
  3193. source = "registry+https://github.com/rust-lang/crates.io-index"
  3194. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  3195. dependencies = [
  3196. "log",
  3197. "ring 0.17.8",
  3198. "rustls-webpki 0.101.7",
  3199. "sct",
  3200. ]
  3201. [[package]]
  3202. name = "rustls"
  3203. version = "0.22.4"
  3204. source = "registry+https://github.com/rust-lang/crates.io-index"
  3205. checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
  3206. dependencies = [
  3207. "log",
  3208. "ring 0.17.8",
  3209. "rustls-pki-types",
  3210. "rustls-webpki 0.102.6",
  3211. "subtle",
  3212. "zeroize",
  3213. ]
  3214. [[package]]
  3215. name = "rustls"
  3216. version = "0.23.12"
  3217. source = "registry+https://github.com/rust-lang/crates.io-index"
  3218. checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
  3219. dependencies = [
  3220. "once_cell",
  3221. "rustls-pki-types",
  3222. "rustls-webpki 0.102.6",
  3223. "subtle",
  3224. "zeroize",
  3225. ]
  3226. [[package]]
  3227. name = "rustls-pemfile"
  3228. version = "2.1.2"
  3229. source = "registry+https://github.com/rust-lang/crates.io-index"
  3230. checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
  3231. dependencies = [
  3232. "base64 0.22.1",
  3233. "rustls-pki-types",
  3234. ]
  3235. [[package]]
  3236. name = "rustls-pki-types"
  3237. version = "1.7.0"
  3238. source = "registry+https://github.com/rust-lang/crates.io-index"
  3239. checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
  3240. [[package]]
  3241. name = "rustls-webpki"
  3242. version = "0.100.3"
  3243. source = "registry+https://github.com/rust-lang/crates.io-index"
  3244. checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3"
  3245. dependencies = [
  3246. "ring 0.16.20",
  3247. "untrusted 0.7.1",
  3248. ]
  3249. [[package]]
  3250. name = "rustls-webpki"
  3251. version = "0.101.7"
  3252. source = "registry+https://github.com/rust-lang/crates.io-index"
  3253. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  3254. dependencies = [
  3255. "ring 0.17.8",
  3256. "untrusted 0.9.0",
  3257. ]
  3258. [[package]]
  3259. name = "rustls-webpki"
  3260. version = "0.102.6"
  3261. source = "registry+https://github.com/rust-lang/crates.io-index"
  3262. checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
  3263. dependencies = [
  3264. "ring 0.17.8",
  3265. "rustls-pki-types",
  3266. "untrusted 0.9.0",
  3267. ]
  3268. [[package]]
  3269. name = "rustybuzz"
  3270. version = "0.11.0"
  3271. source = "registry+https://github.com/rust-lang/crates.io-index"
  3272. checksum = "2ee8fe2a8461a0854a37101fe7a1b13998d0cfa987e43248e81d2a5f4570f6fa"
  3273. dependencies = [
  3274. "bitflags 1.3.2",
  3275. "bytemuck",
  3276. "libm",
  3277. "smallvec",
  3278. "ttf-parser 0.20.0",
  3279. "unicode-bidi-mirroring 0.1.0",
  3280. "unicode-ccc 0.1.2",
  3281. "unicode-properties",
  3282. "unicode-script",
  3283. ]
  3284. [[package]]
  3285. name = "rustybuzz"
  3286. version = "0.14.1"
  3287. source = "registry+https://github.com/rust-lang/crates.io-index"
  3288. checksum = "cfb9cf8877777222e4a3bc7eb247e398b56baba500c38c1c46842431adc8b55c"
  3289. dependencies = [
  3290. "bitflags 2.6.0",
  3291. "bytemuck",
  3292. "libm",
  3293. "smallvec",
  3294. "ttf-parser 0.21.1",
  3295. "unicode-bidi-mirroring 0.2.0",
  3296. "unicode-ccc 0.2.0",
  3297. "unicode-properties",
  3298. "unicode-script",
  3299. ]
  3300. [[package]]
  3301. name = "ryu"
  3302. version = "1.0.18"
  3303. source = "registry+https://github.com/rust-lang/crates.io-index"
  3304. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  3305. [[package]]
  3306. name = "same-file"
  3307. version = "1.0.6"
  3308. source = "registry+https://github.com/rust-lang/crates.io-index"
  3309. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3310. dependencies = [
  3311. "winapi-util",
  3312. ]
  3313. [[package]]
  3314. name = "schannel"
  3315. version = "0.1.23"
  3316. source = "registry+https://github.com/rust-lang/crates.io-index"
  3317. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  3318. dependencies = [
  3319. "windows-sys 0.52.0",
  3320. ]
  3321. [[package]]
  3322. name = "scoped-tls"
  3323. version = "1.0.1"
  3324. source = "registry+https://github.com/rust-lang/crates.io-index"
  3325. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  3326. [[package]]
  3327. name = "scopeguard"
  3328. version = "1.2.0"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  3331. [[package]]
  3332. name = "sct"
  3333. version = "0.7.1"
  3334. source = "registry+https://github.com/rust-lang/crates.io-index"
  3335. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  3336. dependencies = [
  3337. "ring 0.17.8",
  3338. "untrusted 0.9.0",
  3339. ]
  3340. [[package]]
  3341. name = "sctk-adwaita"
  3342. version = "0.9.1"
  3343. source = "registry+https://github.com/rust-lang/crates.io-index"
  3344. checksum = "7555fcb4f753d095d734fdefebb0ad8c98478a21db500492d87c55913d3b0086"
  3345. dependencies = [
  3346. "ab_glyph",
  3347. "log",
  3348. "memmap2 0.9.4",
  3349. "smithay-client-toolkit 0.18.1",
  3350. "tiny-skia",
  3351. ]
  3352. [[package]]
  3353. name = "security-framework"
  3354. version = "2.11.1"
  3355. source = "registry+https://github.com/rust-lang/crates.io-index"
  3356. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  3357. dependencies = [
  3358. "bitflags 2.6.0",
  3359. "core-foundation",
  3360. "core-foundation-sys",
  3361. "libc",
  3362. "security-framework-sys",
  3363. ]
  3364. [[package]]
  3365. name = "security-framework-sys"
  3366. version = "2.11.1"
  3367. source = "registry+https://github.com/rust-lang/crates.io-index"
  3368. checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
  3369. dependencies = [
  3370. "core-foundation-sys",
  3371. "libc",
  3372. ]
  3373. [[package]]
  3374. name = "self_cell"
  3375. version = "1.0.4"
  3376. source = "registry+https://github.com/rust-lang/crates.io-index"
  3377. checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a"
  3378. [[package]]
  3379. name = "serde"
  3380. version = "1.0.204"
  3381. source = "registry+https://github.com/rust-lang/crates.io-index"
  3382. checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
  3383. dependencies = [
  3384. "serde_derive",
  3385. ]
  3386. [[package]]
  3387. name = "serde_derive"
  3388. version = "1.0.204"
  3389. source = "registry+https://github.com/rust-lang/crates.io-index"
  3390. checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
  3391. dependencies = [
  3392. "proc-macro2",
  3393. "quote",
  3394. "syn 2.0.72",
  3395. ]
  3396. [[package]]
  3397. name = "serde_json"
  3398. version = "1.0.122"
  3399. source = "registry+https://github.com/rust-lang/crates.io-index"
  3400. checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
  3401. dependencies = [
  3402. "itoa",
  3403. "memchr",
  3404. "ryu",
  3405. "serde",
  3406. ]
  3407. [[package]]
  3408. name = "serde_repr"
  3409. version = "0.1.19"
  3410. source = "registry+https://github.com/rust-lang/crates.io-index"
  3411. checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
  3412. dependencies = [
  3413. "proc-macro2",
  3414. "quote",
  3415. "syn 2.0.72",
  3416. ]
  3417. [[package]]
  3418. name = "serde_urlencoded"
  3419. version = "0.7.1"
  3420. source = "registry+https://github.com/rust-lang/crates.io-index"
  3421. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3422. dependencies = [
  3423. "form_urlencoded",
  3424. "itoa",
  3425. "ryu",
  3426. "serde",
  3427. ]
  3428. [[package]]
  3429. name = "sha1"
  3430. version = "0.10.6"
  3431. source = "registry+https://github.com/rust-lang/crates.io-index"
  3432. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  3433. dependencies = [
  3434. "cfg-if",
  3435. "cpufeatures",
  3436. "digest",
  3437. ]
  3438. [[package]]
  3439. name = "sha2"
  3440. version = "0.10.8"
  3441. source = "registry+https://github.com/rust-lang/crates.io-index"
  3442. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  3443. dependencies = [
  3444. "cfg-if",
  3445. "cpufeatures",
  3446. "digest",
  3447. ]
  3448. [[package]]
  3449. name = "signal-hook-registry"
  3450. version = "1.4.2"
  3451. source = "registry+https://github.com/rust-lang/crates.io-index"
  3452. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  3453. dependencies = [
  3454. "libc",
  3455. ]
  3456. [[package]]
  3457. name = "simd-adler32"
  3458. version = "0.3.7"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  3461. [[package]]
  3462. name = "simdutf8"
  3463. version = "0.1.4"
  3464. source = "registry+https://github.com/rust-lang/crates.io-index"
  3465. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  3466. [[package]]
  3467. name = "siphasher"
  3468. version = "0.3.11"
  3469. source = "registry+https://github.com/rust-lang/crates.io-index"
  3470. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  3471. [[package]]
  3472. name = "skrifa"
  3473. version = "0.20.0"
  3474. source = "registry+https://github.com/rust-lang/crates.io-index"
  3475. checksum = "abea4738067b1e628c6ce28b2c216c19e9ea95715cdb332680e821c3bec2ef23"
  3476. dependencies = [
  3477. "bytemuck",
  3478. "read-fonts",
  3479. ]
  3480. [[package]]
  3481. name = "slab"
  3482. version = "0.4.9"
  3483. source = "registry+https://github.com/rust-lang/crates.io-index"
  3484. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  3485. dependencies = [
  3486. "autocfg",
  3487. ]
  3488. [[package]]
  3489. name = "slotmap"
  3490. version = "1.0.7"
  3491. source = "registry+https://github.com/rust-lang/crates.io-index"
  3492. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  3493. dependencies = [
  3494. "version_check",
  3495. ]
  3496. [[package]]
  3497. name = "smallvec"
  3498. version = "1.13.2"
  3499. source = "registry+https://github.com/rust-lang/crates.io-index"
  3500. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  3501. [[package]]
  3502. name = "smithay-client-toolkit"
  3503. version = "0.18.1"
  3504. source = "registry+https://github.com/rust-lang/crates.io-index"
  3505. checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a"
  3506. dependencies = [
  3507. "bitflags 2.6.0",
  3508. "calloop 0.12.4",
  3509. "calloop-wayland-source 0.2.0",
  3510. "cursor-icon",
  3511. "libc",
  3512. "log",
  3513. "memmap2 0.9.4",
  3514. "rustix",
  3515. "thiserror",
  3516. "wayland-backend",
  3517. "wayland-client",
  3518. "wayland-csd-frame",
  3519. "wayland-cursor",
  3520. "wayland-protocols 0.31.2",
  3521. "wayland-protocols-wlr 0.2.0",
  3522. "wayland-scanner",
  3523. "xkeysym",
  3524. ]
  3525. [[package]]
  3526. name = "smithay-client-toolkit"
  3527. version = "0.19.2"
  3528. source = "registry+https://github.com/rust-lang/crates.io-index"
  3529. checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
  3530. dependencies = [
  3531. "bitflags 2.6.0",
  3532. "calloop 0.13.0",
  3533. "calloop-wayland-source 0.3.0",
  3534. "cursor-icon",
  3535. "libc",
  3536. "log",
  3537. "memmap2 0.9.4",
  3538. "rustix",
  3539. "thiserror",
  3540. "wayland-backend",
  3541. "wayland-client",
  3542. "wayland-csd-frame",
  3543. "wayland-cursor",
  3544. "wayland-protocols 0.32.3",
  3545. "wayland-protocols-wlr 0.3.3",
  3546. "wayland-scanner",
  3547. "xkeysym",
  3548. ]
  3549. [[package]]
  3550. name = "smithay-clipboard"
  3551. version = "0.7.2"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "cc8216eec463674a0e90f29e0ae41a4db573ec5b56b1c6c1c71615d249b6d846"
  3554. dependencies = [
  3555. "libc",
  3556. "smithay-client-toolkit 0.19.2",
  3557. "wayland-backend",
  3558. ]
  3559. [[package]]
  3560. name = "smol_str"
  3561. version = "0.2.2"
  3562. source = "registry+https://github.com/rust-lang/crates.io-index"
  3563. checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
  3564. dependencies = [
  3565. "serde",
  3566. ]
  3567. [[package]]
  3568. name = "socket2"
  3569. version = "0.5.7"
  3570. source = "registry+https://github.com/rust-lang/crates.io-index"
  3571. checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
  3572. dependencies = [
  3573. "libc",
  3574. "windows-sys 0.52.0",
  3575. ]
  3576. [[package]]
  3577. name = "softbuffer"
  3578. version = "0.4.5"
  3579. source = "registry+https://github.com/rust-lang/crates.io-index"
  3580. checksum = "d623bff5d06f60d738990980d782c8c866997d9194cfe79ecad00aa2f76826dd"
  3581. dependencies = [
  3582. "as-raw-xcb-connection",
  3583. "bytemuck",
  3584. "cfg_aliases 0.2.1",
  3585. "core-graphics",
  3586. "drm",
  3587. "fastrand",
  3588. "foreign-types 0.5.0",
  3589. "js-sys",
  3590. "log",
  3591. "memmap2 0.9.4",
  3592. "objc2",
  3593. "objc2-app-kit",
  3594. "objc2-foundation",
  3595. "objc2-quartz-core",
  3596. "raw-window-handle",
  3597. "redox_syscall 0.5.3",
  3598. "rustix",
  3599. "tiny-xlib",
  3600. "wasm-bindgen",
  3601. "wayland-backend",
  3602. "wayland-client",
  3603. "wayland-sys",
  3604. "web-sys",
  3605. "windows-sys 0.52.0",
  3606. "x11rb",
  3607. ]
  3608. [[package]]
  3609. name = "sonic-rs"
  3610. version = "0.3.9"
  3611. source = "registry+https://github.com/rust-lang/crates.io-index"
  3612. checksum = "7058da431abe9e139d5eaa814786c0796cba76a6745b2edb48d9b3991edbd976"
  3613. dependencies = [
  3614. "arrayref",
  3615. "bumpalo",
  3616. "bytes",
  3617. "cfg-if",
  3618. "faststr",
  3619. "itoa",
  3620. "page_size",
  3621. "parking_lot 0.12.3",
  3622. "ryu",
  3623. "serde",
  3624. "simdutf8",
  3625. "smallvec",
  3626. "thiserror",
  3627. ]
  3628. [[package]]
  3629. name = "spin"
  3630. version = "0.5.2"
  3631. source = "registry+https://github.com/rust-lang/crates.io-index"
  3632. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3633. [[package]]
  3634. name = "spin"
  3635. version = "0.9.8"
  3636. source = "registry+https://github.com/rust-lang/crates.io-index"
  3637. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  3638. dependencies = [
  3639. "lock_api",
  3640. ]
  3641. [[package]]
  3642. name = "spirv"
  3643. version = "0.3.0+sdk-1.3.268.0"
  3644. source = "registry+https://github.com/rust-lang/crates.io-index"
  3645. checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
  3646. dependencies = [
  3647. "bitflags 2.6.0",
  3648. ]
  3649. [[package]]
  3650. name = "static_assertions"
  3651. version = "1.1.0"
  3652. source = "registry+https://github.com/rust-lang/crates.io-index"
  3653. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3654. [[package]]
  3655. name = "strict-num"
  3656. version = "0.1.1"
  3657. source = "registry+https://github.com/rust-lang/crates.io-index"
  3658. checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
  3659. [[package]]
  3660. name = "subtle"
  3661. version = "2.6.1"
  3662. source = "registry+https://github.com/rust-lang/crates.io-index"
  3663. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  3664. [[package]]
  3665. name = "svg_fmt"
  3666. version = "0.4.3"
  3667. source = "registry+https://github.com/rust-lang/crates.io-index"
  3668. checksum = "20e16a0f46cf5fd675563ef54f26e83e20f2366bcf027bcb3cc3ed2b98aaf2ca"
  3669. [[package]]
  3670. name = "swash"
  3671. version = "0.1.18"
  3672. source = "registry+https://github.com/rust-lang/crates.io-index"
  3673. checksum = "93cdc334a50fcc2aa3f04761af3b28196280a6aaadb1ef11215c478ae32615ac"
  3674. dependencies = [
  3675. "skrifa",
  3676. "yazi",
  3677. "zeno",
  3678. ]
  3679. [[package]]
  3680. name = "syn"
  3681. version = "1.0.109"
  3682. source = "registry+https://github.com/rust-lang/crates.io-index"
  3683. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  3684. dependencies = [
  3685. "proc-macro2",
  3686. "quote",
  3687. "unicode-ident",
  3688. ]
  3689. [[package]]
  3690. name = "syn"
  3691. version = "2.0.72"
  3692. source = "registry+https://github.com/rust-lang/crates.io-index"
  3693. checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
  3694. dependencies = [
  3695. "proc-macro2",
  3696. "quote",
  3697. "unicode-ident",
  3698. ]
  3699. [[package]]
  3700. name = "sync_wrapper"
  3701. version = "1.0.1"
  3702. source = "registry+https://github.com/rust-lang/crates.io-index"
  3703. checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
  3704. [[package]]
  3705. name = "sys-locale"
  3706. version = "0.3.1"
  3707. source = "registry+https://github.com/rust-lang/crates.io-index"
  3708. checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0"
  3709. dependencies = [
  3710. "libc",
  3711. ]
  3712. [[package]]
  3713. name = "system-configuration"
  3714. version = "0.5.1"
  3715. source = "registry+https://github.com/rust-lang/crates.io-index"
  3716. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  3717. dependencies = [
  3718. "bitflags 1.3.2",
  3719. "core-foundation",
  3720. "system-configuration-sys",
  3721. ]
  3722. [[package]]
  3723. name = "system-configuration-sys"
  3724. version = "0.5.0"
  3725. source = "registry+https://github.com/rust-lang/crates.io-index"
  3726. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  3727. dependencies = [
  3728. "core-foundation-sys",
  3729. "libc",
  3730. ]
  3731. [[package]]
  3732. name = "tempfile"
  3733. version = "3.10.1"
  3734. source = "registry+https://github.com/rust-lang/crates.io-index"
  3735. checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
  3736. dependencies = [
  3737. "cfg-if",
  3738. "fastrand",
  3739. "rustix",
  3740. "windows-sys 0.52.0",
  3741. ]
  3742. [[package]]
  3743. name = "termcolor"
  3744. version = "1.4.1"
  3745. source = "registry+https://github.com/rust-lang/crates.io-index"
  3746. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  3747. dependencies = [
  3748. "winapi-util",
  3749. ]
  3750. [[package]]
  3751. name = "thiserror"
  3752. version = "1.0.63"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
  3755. dependencies = [
  3756. "thiserror-impl",
  3757. ]
  3758. [[package]]
  3759. name = "thiserror-impl"
  3760. version = "1.0.63"
  3761. source = "registry+https://github.com/rust-lang/crates.io-index"
  3762. checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
  3763. dependencies = [
  3764. "proc-macro2",
  3765. "quote",
  3766. "syn 2.0.72",
  3767. ]
  3768. [[package]]
  3769. name = "tiff"
  3770. version = "0.9.1"
  3771. source = "registry+https://github.com/rust-lang/crates.io-index"
  3772. checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
  3773. dependencies = [
  3774. "flate2",
  3775. "jpeg-decoder",
  3776. "weezl",
  3777. ]
  3778. [[package]]
  3779. name = "tiny-skia"
  3780. version = "0.11.4"
  3781. source = "registry+https://github.com/rust-lang/crates.io-index"
  3782. checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
  3783. dependencies = [
  3784. "arrayref",
  3785. "arrayvec",
  3786. "bytemuck",
  3787. "cfg-if",
  3788. "log",
  3789. "png",
  3790. "tiny-skia-path",
  3791. ]
  3792. [[package]]
  3793. name = "tiny-skia-path"
  3794. version = "0.11.4"
  3795. source = "registry+https://github.com/rust-lang/crates.io-index"
  3796. checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
  3797. dependencies = [
  3798. "arrayref",
  3799. "bytemuck",
  3800. "strict-num",
  3801. ]
  3802. [[package]]
  3803. name = "tiny-xlib"
  3804. version = "0.2.3"
  3805. source = "registry+https://github.com/rust-lang/crates.io-index"
  3806. checksum = "1d52f22673960ad13af14ff4025997312def1223bfa7c8e4949d099e6b3d5d1c"
  3807. dependencies = [
  3808. "as-raw-xcb-connection",
  3809. "ctor-lite",
  3810. "libloading 0.8.5",
  3811. "pkg-config",
  3812. "tracing",
  3813. ]
  3814. [[package]]
  3815. name = "tinyvec"
  3816. version = "1.8.0"
  3817. source = "registry+https://github.com/rust-lang/crates.io-index"
  3818. checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
  3819. dependencies = [
  3820. "tinyvec_macros",
  3821. ]
  3822. [[package]]
  3823. name = "tinyvec_macros"
  3824. version = "0.1.1"
  3825. source = "registry+https://github.com/rust-lang/crates.io-index"
  3826. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  3827. [[package]]
  3828. name = "tokio"
  3829. version = "1.39.2"
  3830. source = "registry+https://github.com/rust-lang/crates.io-index"
  3831. checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
  3832. dependencies = [
  3833. "backtrace",
  3834. "bytes",
  3835. "libc",
  3836. "mio",
  3837. "parking_lot 0.12.3",
  3838. "pin-project-lite",
  3839. "signal-hook-registry",
  3840. "socket2",
  3841. "tokio-macros",
  3842. "windows-sys 0.52.0",
  3843. ]
  3844. [[package]]
  3845. name = "tokio-macros"
  3846. version = "2.4.0"
  3847. source = "registry+https://github.com/rust-lang/crates.io-index"
  3848. checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
  3849. dependencies = [
  3850. "proc-macro2",
  3851. "quote",
  3852. "syn 2.0.72",
  3853. ]
  3854. [[package]]
  3855. name = "tokio-native-tls"
  3856. version = "0.3.1"
  3857. source = "registry+https://github.com/rust-lang/crates.io-index"
  3858. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  3859. dependencies = [
  3860. "native-tls",
  3861. "tokio",
  3862. ]
  3863. [[package]]
  3864. name = "tokio-rustls"
  3865. version = "0.24.1"
  3866. source = "registry+https://github.com/rust-lang/crates.io-index"
  3867. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  3868. dependencies = [
  3869. "rustls 0.21.12",
  3870. "tokio",
  3871. ]
  3872. [[package]]
  3873. name = "tokio-rustls"
  3874. version = "0.25.0"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
  3877. dependencies = [
  3878. "rustls 0.22.4",
  3879. "rustls-pki-types",
  3880. "tokio",
  3881. ]
  3882. [[package]]
  3883. name = "tokio-rustls"
  3884. version = "0.26.0"
  3885. source = "registry+https://github.com/rust-lang/crates.io-index"
  3886. checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
  3887. dependencies = [
  3888. "rustls 0.23.12",
  3889. "rustls-pki-types",
  3890. "tokio",
  3891. ]
  3892. [[package]]
  3893. name = "tokio-tungstenite"
  3894. version = "0.21.0"
  3895. source = "registry+https://github.com/rust-lang/crates.io-index"
  3896. checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
  3897. dependencies = [
  3898. "futures-util",
  3899. "log",
  3900. "tokio",
  3901. "tungstenite",
  3902. ]
  3903. [[package]]
  3904. name = "tokio-util"
  3905. version = "0.7.11"
  3906. source = "registry+https://github.com/rust-lang/crates.io-index"
  3907. checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
  3908. dependencies = [
  3909. "bytes",
  3910. "futures-core",
  3911. "futures-sink",
  3912. "pin-project-lite",
  3913. "tokio",
  3914. ]
  3915. [[package]]
  3916. name = "toml_datetime"
  3917. version = "0.6.8"
  3918. source = "registry+https://github.com/rust-lang/crates.io-index"
  3919. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  3920. [[package]]
  3921. name = "toml_edit"
  3922. version = "0.21.1"
  3923. source = "registry+https://github.com/rust-lang/crates.io-index"
  3924. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  3925. dependencies = [
  3926. "indexmap",
  3927. "toml_datetime",
  3928. "winnow",
  3929. ]
  3930. [[package]]
  3931. name = "tower"
  3932. version = "0.4.13"
  3933. source = "registry+https://github.com/rust-lang/crates.io-index"
  3934. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  3935. dependencies = [
  3936. "futures-core",
  3937. "futures-util",
  3938. "pin-project",
  3939. "pin-project-lite",
  3940. "tokio",
  3941. "tower-layer",
  3942. "tower-service",
  3943. ]
  3944. [[package]]
  3945. name = "tower-layer"
  3946. version = "0.3.2"
  3947. source = "registry+https://github.com/rust-lang/crates.io-index"
  3948. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  3949. [[package]]
  3950. name = "tower-service"
  3951. version = "0.3.2"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  3954. [[package]]
  3955. name = "tracing"
  3956. version = "0.1.40"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  3959. dependencies = [
  3960. "pin-project-lite",
  3961. "tracing-attributes",
  3962. "tracing-core",
  3963. ]
  3964. [[package]]
  3965. name = "tracing-attributes"
  3966. version = "0.1.27"
  3967. source = "registry+https://github.com/rust-lang/crates.io-index"
  3968. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  3969. dependencies = [
  3970. "proc-macro2",
  3971. "quote",
  3972. "syn 2.0.72",
  3973. ]
  3974. [[package]]
  3975. name = "tracing-core"
  3976. version = "0.1.32"
  3977. source = "registry+https://github.com/rust-lang/crates.io-index"
  3978. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  3979. dependencies = [
  3980. "once_cell",
  3981. ]
  3982. [[package]]
  3983. name = "try-lock"
  3984. version = "0.2.5"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  3987. [[package]]
  3988. name = "ttf-parser"
  3989. version = "0.19.2"
  3990. source = "registry+https://github.com/rust-lang/crates.io-index"
  3991. checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
  3992. [[package]]
  3993. name = "ttf-parser"
  3994. version = "0.20.0"
  3995. source = "registry+https://github.com/rust-lang/crates.io-index"
  3996. checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
  3997. [[package]]
  3998. name = "ttf-parser"
  3999. version = "0.21.1"
  4000. source = "registry+https://github.com/rust-lang/crates.io-index"
  4001. checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
  4002. [[package]]
  4003. name = "ttf-parser"
  4004. version = "0.24.0"
  4005. source = "registry+https://github.com/rust-lang/crates.io-index"
  4006. checksum = "8686b91785aff82828ed725225925b33b4fde44c4bb15876e5f7c832724c420a"
  4007. [[package]]
  4008. name = "tungstenite"
  4009. version = "0.21.0"
  4010. source = "registry+https://github.com/rust-lang/crates.io-index"
  4011. checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
  4012. dependencies = [
  4013. "byteorder",
  4014. "bytes",
  4015. "data-encoding",
  4016. "http",
  4017. "httparse",
  4018. "log",
  4019. "rand",
  4020. "rustls 0.22.4",
  4021. "rustls-pki-types",
  4022. "sha1",
  4023. "thiserror",
  4024. "url",
  4025. "utf-8",
  4026. ]
  4027. [[package]]
  4028. name = "typenum"
  4029. version = "1.17.0"
  4030. source = "registry+https://github.com/rust-lang/crates.io-index"
  4031. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  4032. [[package]]
  4033. name = "uds_windows"
  4034. version = "1.1.0"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
  4037. dependencies = [
  4038. "memoffset",
  4039. "tempfile",
  4040. "winapi",
  4041. ]
  4042. [[package]]
  4043. name = "unicode-bidi"
  4044. version = "0.3.15"
  4045. source = "registry+https://github.com/rust-lang/crates.io-index"
  4046. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  4047. [[package]]
  4048. name = "unicode-bidi-mirroring"
  4049. version = "0.1.0"
  4050. source = "registry+https://github.com/rust-lang/crates.io-index"
  4051. checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
  4052. [[package]]
  4053. name = "unicode-bidi-mirroring"
  4054. version = "0.2.0"
  4055. source = "registry+https://github.com/rust-lang/crates.io-index"
  4056. checksum = "23cb788ffebc92c5948d0e997106233eeb1d8b9512f93f41651f52b6c5f5af86"
  4057. [[package]]
  4058. name = "unicode-ccc"
  4059. version = "0.1.2"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1"
  4062. [[package]]
  4063. name = "unicode-ccc"
  4064. version = "0.2.0"
  4065. source = "registry+https://github.com/rust-lang/crates.io-index"
  4066. checksum = "1df77b101bcc4ea3d78dafc5ad7e4f58ceffe0b2b16bf446aeb50b6cb4157656"
  4067. [[package]]
  4068. name = "unicode-ident"
  4069. version = "1.0.12"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  4072. [[package]]
  4073. name = "unicode-linebreak"
  4074. version = "0.1.5"
  4075. source = "registry+https://github.com/rust-lang/crates.io-index"
  4076. checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
  4077. [[package]]
  4078. name = "unicode-normalization"
  4079. version = "0.1.23"
  4080. source = "registry+https://github.com/rust-lang/crates.io-index"
  4081. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  4082. dependencies = [
  4083. "tinyvec",
  4084. ]
  4085. [[package]]
  4086. name = "unicode-properties"
  4087. version = "0.1.1"
  4088. source = "registry+https://github.com/rust-lang/crates.io-index"
  4089. checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
  4090. [[package]]
  4091. name = "unicode-script"
  4092. version = "0.5.6"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd"
  4095. [[package]]
  4096. name = "unicode-segmentation"
  4097. version = "1.11.0"
  4098. source = "registry+https://github.com/rust-lang/crates.io-index"
  4099. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  4100. [[package]]
  4101. name = "unicode-width"
  4102. version = "0.1.13"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
  4105. [[package]]
  4106. name = "unicode-xid"
  4107. version = "0.2.4"
  4108. source = "registry+https://github.com/rust-lang/crates.io-index"
  4109. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  4110. [[package]]
  4111. name = "untrusted"
  4112. version = "0.7.1"
  4113. source = "registry+https://github.com/rust-lang/crates.io-index"
  4114. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4115. [[package]]
  4116. name = "untrusted"
  4117. version = "0.9.0"
  4118. source = "registry+https://github.com/rust-lang/crates.io-index"
  4119. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  4120. [[package]]
  4121. name = "url"
  4122. version = "2.5.2"
  4123. source = "registry+https://github.com/rust-lang/crates.io-index"
  4124. checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
  4125. dependencies = [
  4126. "form_urlencoded",
  4127. "idna",
  4128. "percent-encoding",
  4129. ]
  4130. [[package]]
  4131. name = "utf-8"
  4132. version = "0.7.6"
  4133. source = "registry+https://github.com/rust-lang/crates.io-index"
  4134. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4135. [[package]]
  4136. name = "uuid"
  4137. version = "1.10.0"
  4138. source = "registry+https://github.com/rust-lang/crates.io-index"
  4139. checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
  4140. dependencies = [
  4141. "getrandom",
  4142. ]
  4143. [[package]]
  4144. name = "vcpkg"
  4145. version = "0.2.15"
  4146. source = "registry+https://github.com/rust-lang/crates.io-index"
  4147. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4148. [[package]]
  4149. name = "version_check"
  4150. version = "0.9.5"
  4151. source = "registry+https://github.com/rust-lang/crates.io-index"
  4152. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  4153. [[package]]
  4154. name = "walkdir"
  4155. version = "2.5.0"
  4156. source = "registry+https://github.com/rust-lang/crates.io-index"
  4157. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  4158. dependencies = [
  4159. "same-file",
  4160. "winapi-util",
  4161. ]
  4162. [[package]]
  4163. name = "want"
  4164. version = "0.3.1"
  4165. source = "registry+https://github.com/rust-lang/crates.io-index"
  4166. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  4167. dependencies = [
  4168. "try-lock",
  4169. ]
  4170. [[package]]
  4171. name = "wasi"
  4172. version = "0.11.0+wasi-snapshot-preview1"
  4173. source = "registry+https://github.com/rust-lang/crates.io-index"
  4174. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4175. [[package]]
  4176. name = "wasm-bindgen"
  4177. version = "0.2.92"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  4180. dependencies = [
  4181. "cfg-if",
  4182. "wasm-bindgen-macro",
  4183. ]
  4184. [[package]]
  4185. name = "wasm-bindgen-backend"
  4186. version = "0.2.92"
  4187. source = "registry+https://github.com/rust-lang/crates.io-index"
  4188. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  4189. dependencies = [
  4190. "bumpalo",
  4191. "log",
  4192. "once_cell",
  4193. "proc-macro2",
  4194. "quote",
  4195. "syn 2.0.72",
  4196. "wasm-bindgen-shared",
  4197. ]
  4198. [[package]]
  4199. name = "wasm-bindgen-futures"
  4200. version = "0.4.42"
  4201. source = "registry+https://github.com/rust-lang/crates.io-index"
  4202. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  4203. dependencies = [
  4204. "cfg-if",
  4205. "js-sys",
  4206. "wasm-bindgen",
  4207. "web-sys",
  4208. ]
  4209. [[package]]
  4210. name = "wasm-bindgen-macro"
  4211. version = "0.2.92"
  4212. source = "registry+https://github.com/rust-lang/crates.io-index"
  4213. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  4214. dependencies = [
  4215. "quote",
  4216. "wasm-bindgen-macro-support",
  4217. ]
  4218. [[package]]
  4219. name = "wasm-bindgen-macro-support"
  4220. version = "0.2.92"
  4221. source = "registry+https://github.com/rust-lang/crates.io-index"
  4222. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  4223. dependencies = [
  4224. "proc-macro2",
  4225. "quote",
  4226. "syn 2.0.72",
  4227. "wasm-bindgen-backend",
  4228. "wasm-bindgen-shared",
  4229. ]
  4230. [[package]]
  4231. name = "wasm-bindgen-shared"
  4232. version = "0.2.92"
  4233. source = "registry+https://github.com/rust-lang/crates.io-index"
  4234. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  4235. [[package]]
  4236. name = "wasm-timer"
  4237. version = "0.2.5"
  4238. source = "registry+https://github.com/rust-lang/crates.io-index"
  4239. checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
  4240. dependencies = [
  4241. "futures",
  4242. "js-sys",
  4243. "parking_lot 0.11.2",
  4244. "pin-utils",
  4245. "wasm-bindgen",
  4246. "wasm-bindgen-futures",
  4247. "web-sys",
  4248. ]
  4249. [[package]]
  4250. name = "wayland-backend"
  4251. version = "0.3.6"
  4252. source = "registry+https://github.com/rust-lang/crates.io-index"
  4253. checksum = "f90e11ce2ca99c97b940ee83edbae9da2d56a08f9ea8158550fd77fa31722993"
  4254. dependencies = [
  4255. "cc",
  4256. "downcast-rs",
  4257. "rustix",
  4258. "scoped-tls",
  4259. "smallvec",
  4260. "wayland-sys",
  4261. ]
  4262. [[package]]
  4263. name = "wayland-client"
  4264. version = "0.31.5"
  4265. source = "registry+https://github.com/rust-lang/crates.io-index"
  4266. checksum = "7e321577a0a165911bdcfb39cf029302479d7527b517ee58ab0f6ad09edf0943"
  4267. dependencies = [
  4268. "bitflags 2.6.0",
  4269. "rustix",
  4270. "wayland-backend",
  4271. "wayland-scanner",
  4272. ]
  4273. [[package]]
  4274. name = "wayland-csd-frame"
  4275. version = "0.3.0"
  4276. source = "registry+https://github.com/rust-lang/crates.io-index"
  4277. checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
  4278. dependencies = [
  4279. "bitflags 2.6.0",
  4280. "cursor-icon",
  4281. "wayland-backend",
  4282. ]
  4283. [[package]]
  4284. name = "wayland-cursor"
  4285. version = "0.31.5"
  4286. source = "registry+https://github.com/rust-lang/crates.io-index"
  4287. checksum = "6ef9489a8df197ebf3a8ce8a7a7f0a2320035c3743f3c1bd0bdbccf07ce64f95"
  4288. dependencies = [
  4289. "rustix",
  4290. "wayland-client",
  4291. "xcursor",
  4292. ]
  4293. [[package]]
  4294. name = "wayland-protocols"
  4295. version = "0.31.2"
  4296. source = "registry+https://github.com/rust-lang/crates.io-index"
  4297. checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
  4298. dependencies = [
  4299. "bitflags 2.6.0",
  4300. "wayland-backend",
  4301. "wayland-client",
  4302. "wayland-scanner",
  4303. ]
  4304. [[package]]
  4305. name = "wayland-protocols"
  4306. version = "0.32.3"
  4307. source = "registry+https://github.com/rust-lang/crates.io-index"
  4308. checksum = "62989625a776e827cc0f15d41444a3cea5205b963c3a25be48ae1b52d6b4daaa"
  4309. dependencies = [
  4310. "bitflags 2.6.0",
  4311. "wayland-backend",
  4312. "wayland-client",
  4313. "wayland-scanner",
  4314. ]
  4315. [[package]]
  4316. name = "wayland-protocols-plasma"
  4317. version = "0.2.0"
  4318. source = "registry+https://github.com/rust-lang/crates.io-index"
  4319. checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479"
  4320. dependencies = [
  4321. "bitflags 2.6.0",
  4322. "wayland-backend",
  4323. "wayland-client",
  4324. "wayland-protocols 0.31.2",
  4325. "wayland-scanner",
  4326. ]
  4327. [[package]]
  4328. name = "wayland-protocols-wlr"
  4329. version = "0.2.0"
  4330. source = "registry+https://github.com/rust-lang/crates.io-index"
  4331. checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
  4332. dependencies = [
  4333. "bitflags 2.6.0",
  4334. "wayland-backend",
  4335. "wayland-client",
  4336. "wayland-protocols 0.31.2",
  4337. "wayland-scanner",
  4338. ]
  4339. [[package]]
  4340. name = "wayland-protocols-wlr"
  4341. version = "0.3.3"
  4342. source = "registry+https://github.com/rust-lang/crates.io-index"
  4343. checksum = "fd993de54a40a40fbe5601d9f1fbcaef0aebcc5fda447d7dc8f6dcbaae4f8953"
  4344. dependencies = [
  4345. "bitflags 2.6.0",
  4346. "wayland-backend",
  4347. "wayland-client",
  4348. "wayland-protocols 0.32.3",
  4349. "wayland-scanner",
  4350. ]
  4351. [[package]]
  4352. name = "wayland-scanner"
  4353. version = "0.31.4"
  4354. source = "registry+https://github.com/rust-lang/crates.io-index"
  4355. checksum = "d7b56f89937f1cf2ee1f1259cf2936a17a1f45d8f0aa1019fae6d470d304cfa6"
  4356. dependencies = [
  4357. "proc-macro2",
  4358. "quick-xml",
  4359. "quote",
  4360. ]
  4361. [[package]]
  4362. name = "wayland-sys"
  4363. version = "0.31.4"
  4364. source = "registry+https://github.com/rust-lang/crates.io-index"
  4365. checksum = "43676fe2daf68754ecf1d72026e4e6c15483198b5d24e888b74d3f22f887a148"
  4366. dependencies = [
  4367. "dlib",
  4368. "log",
  4369. "once_cell",
  4370. "pkg-config",
  4371. ]
  4372. [[package]]
  4373. name = "web-sys"
  4374. version = "0.3.67"
  4375. source = "registry+https://github.com/rust-lang/crates.io-index"
  4376. checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed"
  4377. dependencies = [
  4378. "js-sys",
  4379. "wasm-bindgen",
  4380. ]
  4381. [[package]]
  4382. name = "web-time"
  4383. version = "0.2.4"
  4384. source = "registry+https://github.com/rust-lang/crates.io-index"
  4385. checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
  4386. dependencies = [
  4387. "js-sys",
  4388. "wasm-bindgen",
  4389. ]
  4390. [[package]]
  4391. name = "web-time"
  4392. version = "1.1.0"
  4393. source = "registry+https://github.com/rust-lang/crates.io-index"
  4394. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  4395. dependencies = [
  4396. "js-sys",
  4397. "wasm-bindgen",
  4398. ]
  4399. [[package]]
  4400. name = "webpki-roots"
  4401. version = "0.23.1"
  4402. source = "registry+https://github.com/rust-lang/crates.io-index"
  4403. checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
  4404. dependencies = [
  4405. "rustls-webpki 0.100.3",
  4406. ]
  4407. [[package]]
  4408. name = "webpki-roots"
  4409. version = "0.26.3"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
  4412. dependencies = [
  4413. "rustls-pki-types",
  4414. ]
  4415. [[package]]
  4416. name = "weezl"
  4417. version = "0.1.8"
  4418. source = "registry+https://github.com/rust-lang/crates.io-index"
  4419. checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
  4420. [[package]]
  4421. name = "wgpu"
  4422. version = "0.19.4"
  4423. source = "registry+https://github.com/rust-lang/crates.io-index"
  4424. checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01"
  4425. dependencies = [
  4426. "arrayvec",
  4427. "cfg-if",
  4428. "cfg_aliases 0.1.1",
  4429. "js-sys",
  4430. "log",
  4431. "naga",
  4432. "parking_lot 0.12.3",
  4433. "profiling",
  4434. "raw-window-handle",
  4435. "smallvec",
  4436. "static_assertions",
  4437. "wasm-bindgen",
  4438. "wasm-bindgen-futures",
  4439. "web-sys",
  4440. "wgpu-core",
  4441. "wgpu-hal",
  4442. "wgpu-types",
  4443. ]
  4444. [[package]]
  4445. name = "wgpu-core"
  4446. version = "0.19.4"
  4447. source = "registry+https://github.com/rust-lang/crates.io-index"
  4448. checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a"
  4449. dependencies = [
  4450. "arrayvec",
  4451. "bit-vec",
  4452. "bitflags 2.6.0",
  4453. "cfg_aliases 0.1.1",
  4454. "codespan-reporting",
  4455. "indexmap",
  4456. "log",
  4457. "naga",
  4458. "once_cell",
  4459. "parking_lot 0.12.3",
  4460. "profiling",
  4461. "raw-window-handle",
  4462. "rustc-hash 1.1.0",
  4463. "smallvec",
  4464. "thiserror",
  4465. "web-sys",
  4466. "wgpu-hal",
  4467. "wgpu-types",
  4468. ]
  4469. [[package]]
  4470. name = "wgpu-hal"
  4471. version = "0.19.5"
  4472. source = "registry+https://github.com/rust-lang/crates.io-index"
  4473. checksum = "bfabcfc55fd86611a855816326b2d54c3b2fd7972c27ce414291562650552703"
  4474. dependencies = [
  4475. "android_system_properties",
  4476. "arrayvec",
  4477. "ash",
  4478. "bit-set",
  4479. "bitflags 2.6.0",
  4480. "block",
  4481. "cfg_aliases 0.1.1",
  4482. "core-graphics-types",
  4483. "d3d12",
  4484. "glow",
  4485. "glutin_wgl_sys",
  4486. "gpu-alloc",
  4487. "gpu-allocator",
  4488. "gpu-descriptor",
  4489. "hassle-rs",
  4490. "js-sys",
  4491. "khronos-egl",
  4492. "libc",
  4493. "libloading 0.8.5",
  4494. "log",
  4495. "metal",
  4496. "naga",
  4497. "ndk-sys 0.5.0+25.2.9519653",
  4498. "objc",
  4499. "once_cell",
  4500. "parking_lot 0.12.3",
  4501. "profiling",
  4502. "range-alloc",
  4503. "raw-window-handle",
  4504. "renderdoc-sys",
  4505. "rustc-hash 1.1.0",
  4506. "smallvec",
  4507. "thiserror",
  4508. "wasm-bindgen",
  4509. "web-sys",
  4510. "wgpu-types",
  4511. "winapi",
  4512. ]
  4513. [[package]]
  4514. name = "wgpu-types"
  4515. version = "0.19.2"
  4516. source = "registry+https://github.com/rust-lang/crates.io-index"
  4517. checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
  4518. dependencies = [
  4519. "bitflags 2.6.0",
  4520. "js-sys",
  4521. "web-sys",
  4522. ]
  4523. [[package]]
  4524. name = "widestring"
  4525. version = "1.1.0"
  4526. source = "registry+https://github.com/rust-lang/crates.io-index"
  4527. checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
  4528. [[package]]
  4529. name = "winapi"
  4530. version = "0.3.9"
  4531. source = "registry+https://github.com/rust-lang/crates.io-index"
  4532. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4533. dependencies = [
  4534. "winapi-i686-pc-windows-gnu",
  4535. "winapi-x86_64-pc-windows-gnu",
  4536. ]
  4537. [[package]]
  4538. name = "winapi-i686-pc-windows-gnu"
  4539. version = "0.4.0"
  4540. source = "registry+https://github.com/rust-lang/crates.io-index"
  4541. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4542. [[package]]
  4543. name = "winapi-util"
  4544. version = "0.1.8"
  4545. source = "registry+https://github.com/rust-lang/crates.io-index"
  4546. checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
  4547. dependencies = [
  4548. "windows-sys 0.52.0",
  4549. ]
  4550. [[package]]
  4551. name = "winapi-x86_64-pc-windows-gnu"
  4552. version = "0.4.0"
  4553. source = "registry+https://github.com/rust-lang/crates.io-index"
  4554. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4555. [[package]]
  4556. name = "window_clipboard"
  4557. version = "0.4.1"
  4558. source = "registry+https://github.com/rust-lang/crates.io-index"
  4559. checksum = "f6d692d46038c433f9daee7ad8757e002a4248c20b0a3fbc991d99521d3bcb6d"
  4560. dependencies = [
  4561. "clipboard-win",
  4562. "clipboard_macos",
  4563. "clipboard_wayland",
  4564. "clipboard_x11",
  4565. "raw-window-handle",
  4566. "thiserror",
  4567. ]
  4568. [[package]]
  4569. name = "windows"
  4570. version = "0.52.0"
  4571. source = "registry+https://github.com/rust-lang/crates.io-index"
  4572. checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
  4573. dependencies = [
  4574. "windows-core",
  4575. "windows-targets 0.52.6",
  4576. ]
  4577. [[package]]
  4578. name = "windows-core"
  4579. version = "0.52.0"
  4580. source = "registry+https://github.com/rust-lang/crates.io-index"
  4581. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  4582. dependencies = [
  4583. "windows-targets 0.52.6",
  4584. ]
  4585. [[package]]
  4586. name = "windows-sys"
  4587. version = "0.45.0"
  4588. source = "registry+https://github.com/rust-lang/crates.io-index"
  4589. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4590. dependencies = [
  4591. "windows-targets 0.42.2",
  4592. ]
  4593. [[package]]
  4594. name = "windows-sys"
  4595. version = "0.48.0"
  4596. source = "registry+https://github.com/rust-lang/crates.io-index"
  4597. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  4598. dependencies = [
  4599. "windows-targets 0.48.5",
  4600. ]
  4601. [[package]]
  4602. name = "windows-sys"
  4603. version = "0.52.0"
  4604. source = "registry+https://github.com/rust-lang/crates.io-index"
  4605. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  4606. dependencies = [
  4607. "windows-targets 0.52.6",
  4608. ]
  4609. [[package]]
  4610. name = "windows-targets"
  4611. version = "0.42.2"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  4614. dependencies = [
  4615. "windows_aarch64_gnullvm 0.42.2",
  4616. "windows_aarch64_msvc 0.42.2",
  4617. "windows_i686_gnu 0.42.2",
  4618. "windows_i686_msvc 0.42.2",
  4619. "windows_x86_64_gnu 0.42.2",
  4620. "windows_x86_64_gnullvm 0.42.2",
  4621. "windows_x86_64_msvc 0.42.2",
  4622. ]
  4623. [[package]]
  4624. name = "windows-targets"
  4625. version = "0.48.5"
  4626. source = "registry+https://github.com/rust-lang/crates.io-index"
  4627. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  4628. dependencies = [
  4629. "windows_aarch64_gnullvm 0.48.5",
  4630. "windows_aarch64_msvc 0.48.5",
  4631. "windows_i686_gnu 0.48.5",
  4632. "windows_i686_msvc 0.48.5",
  4633. "windows_x86_64_gnu 0.48.5",
  4634. "windows_x86_64_gnullvm 0.48.5",
  4635. "windows_x86_64_msvc 0.48.5",
  4636. ]
  4637. [[package]]
  4638. name = "windows-targets"
  4639. version = "0.52.6"
  4640. source = "registry+https://github.com/rust-lang/crates.io-index"
  4641. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  4642. dependencies = [
  4643. "windows_aarch64_gnullvm 0.52.6",
  4644. "windows_aarch64_msvc 0.52.6",
  4645. "windows_i686_gnu 0.52.6",
  4646. "windows_i686_gnullvm",
  4647. "windows_i686_msvc 0.52.6",
  4648. "windows_x86_64_gnu 0.52.6",
  4649. "windows_x86_64_gnullvm 0.52.6",
  4650. "windows_x86_64_msvc 0.52.6",
  4651. ]
  4652. [[package]]
  4653. name = "windows_aarch64_gnullvm"
  4654. version = "0.42.2"
  4655. source = "registry+https://github.com/rust-lang/crates.io-index"
  4656. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  4657. [[package]]
  4658. name = "windows_aarch64_gnullvm"
  4659. version = "0.48.5"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  4662. [[package]]
  4663. name = "windows_aarch64_gnullvm"
  4664. version = "0.52.6"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  4667. [[package]]
  4668. name = "windows_aarch64_msvc"
  4669. version = "0.42.2"
  4670. source = "registry+https://github.com/rust-lang/crates.io-index"
  4671. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  4672. [[package]]
  4673. name = "windows_aarch64_msvc"
  4674. version = "0.48.5"
  4675. source = "registry+https://github.com/rust-lang/crates.io-index"
  4676. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  4677. [[package]]
  4678. name = "windows_aarch64_msvc"
  4679. version = "0.52.6"
  4680. source = "registry+https://github.com/rust-lang/crates.io-index"
  4681. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  4682. [[package]]
  4683. name = "windows_i686_gnu"
  4684. version = "0.42.2"
  4685. source = "registry+https://github.com/rust-lang/crates.io-index"
  4686. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  4687. [[package]]
  4688. name = "windows_i686_gnu"
  4689. version = "0.48.5"
  4690. source = "registry+https://github.com/rust-lang/crates.io-index"
  4691. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  4692. [[package]]
  4693. name = "windows_i686_gnu"
  4694. version = "0.52.6"
  4695. source = "registry+https://github.com/rust-lang/crates.io-index"
  4696. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  4697. [[package]]
  4698. name = "windows_i686_gnullvm"
  4699. version = "0.52.6"
  4700. source = "registry+https://github.com/rust-lang/crates.io-index"
  4701. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  4702. [[package]]
  4703. name = "windows_i686_msvc"
  4704. version = "0.42.2"
  4705. source = "registry+https://github.com/rust-lang/crates.io-index"
  4706. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  4707. [[package]]
  4708. name = "windows_i686_msvc"
  4709. version = "0.48.5"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  4712. [[package]]
  4713. name = "windows_i686_msvc"
  4714. version = "0.52.6"
  4715. source = "registry+https://github.com/rust-lang/crates.io-index"
  4716. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  4717. [[package]]
  4718. name = "windows_x86_64_gnu"
  4719. version = "0.42.2"
  4720. source = "registry+https://github.com/rust-lang/crates.io-index"
  4721. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  4722. [[package]]
  4723. name = "windows_x86_64_gnu"
  4724. version = "0.48.5"
  4725. source = "registry+https://github.com/rust-lang/crates.io-index"
  4726. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  4727. [[package]]
  4728. name = "windows_x86_64_gnu"
  4729. version = "0.52.6"
  4730. source = "registry+https://github.com/rust-lang/crates.io-index"
  4731. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  4732. [[package]]
  4733. name = "windows_x86_64_gnullvm"
  4734. version = "0.42.2"
  4735. source = "registry+https://github.com/rust-lang/crates.io-index"
  4736. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  4737. [[package]]
  4738. name = "windows_x86_64_gnullvm"
  4739. version = "0.48.5"
  4740. source = "registry+https://github.com/rust-lang/crates.io-index"
  4741. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  4742. [[package]]
  4743. name = "windows_x86_64_gnullvm"
  4744. version = "0.52.6"
  4745. source = "registry+https://github.com/rust-lang/crates.io-index"
  4746. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  4747. [[package]]
  4748. name = "windows_x86_64_msvc"
  4749. version = "0.42.2"
  4750. source = "registry+https://github.com/rust-lang/crates.io-index"
  4751. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  4752. [[package]]
  4753. name = "windows_x86_64_msvc"
  4754. version = "0.48.5"
  4755. source = "registry+https://github.com/rust-lang/crates.io-index"
  4756. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  4757. [[package]]
  4758. name = "windows_x86_64_msvc"
  4759. version = "0.52.6"
  4760. source = "registry+https://github.com/rust-lang/crates.io-index"
  4761. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  4762. [[package]]
  4763. name = "winit"
  4764. version = "0.30.1"
  4765. source = "git+https://github.com/iced-rs/winit.git?rev=254d6b3420ce4e674f516f7a2bd440665e05484d#254d6b3420ce4e674f516f7a2bd440665e05484d"
  4766. dependencies = [
  4767. "ahash 0.8.11",
  4768. "android-activity",
  4769. "atomic-waker",
  4770. "bitflags 2.6.0",
  4771. "block2",
  4772. "bytemuck",
  4773. "calloop 0.12.4",
  4774. "cfg_aliases 0.2.1",
  4775. "concurrent-queue",
  4776. "core-foundation",
  4777. "core-graphics",
  4778. "cursor-icon",
  4779. "dpi",
  4780. "js-sys",
  4781. "libc",
  4782. "memmap2 0.9.4",
  4783. "ndk",
  4784. "objc2",
  4785. "objc2-app-kit",
  4786. "objc2-foundation",
  4787. "objc2-ui-kit",
  4788. "orbclient",
  4789. "percent-encoding",
  4790. "pin-project",
  4791. "raw-window-handle",
  4792. "redox_syscall 0.4.1",
  4793. "rustix",
  4794. "sctk-adwaita",
  4795. "smithay-client-toolkit 0.18.1",
  4796. "smol_str",
  4797. "tracing",
  4798. "unicode-segmentation",
  4799. "wasm-bindgen",
  4800. "wasm-bindgen-futures",
  4801. "wayland-backend",
  4802. "wayland-client",
  4803. "wayland-protocols 0.31.2",
  4804. "wayland-protocols-plasma",
  4805. "web-sys",
  4806. "web-time 1.1.0",
  4807. "windows-sys 0.52.0",
  4808. "x11-dl",
  4809. "x11rb",
  4810. "xkbcommon-dl",
  4811. ]
  4812. [[package]]
  4813. name = "winnow"
  4814. version = "0.5.40"
  4815. source = "registry+https://github.com/rust-lang/crates.io-index"
  4816. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  4817. dependencies = [
  4818. "memchr",
  4819. ]
  4820. [[package]]
  4821. name = "winreg"
  4822. version = "0.10.1"
  4823. source = "registry+https://github.com/rust-lang/crates.io-index"
  4824. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  4825. dependencies = [
  4826. "winapi",
  4827. ]
  4828. [[package]]
  4829. name = "winreg"
  4830. version = "0.52.0"
  4831. source = "registry+https://github.com/rust-lang/crates.io-index"
  4832. checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
  4833. dependencies = [
  4834. "cfg-if",
  4835. "windows-sys 0.48.0",
  4836. ]
  4837. [[package]]
  4838. name = "x11-dl"
  4839. version = "2.21.0"
  4840. source = "registry+https://github.com/rust-lang/crates.io-index"
  4841. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  4842. dependencies = [
  4843. "libc",
  4844. "once_cell",
  4845. "pkg-config",
  4846. ]
  4847. [[package]]
  4848. name = "x11rb"
  4849. version = "0.13.1"
  4850. source = "registry+https://github.com/rust-lang/crates.io-index"
  4851. checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
  4852. dependencies = [
  4853. "as-raw-xcb-connection",
  4854. "gethostname",
  4855. "libc",
  4856. "libloading 0.8.5",
  4857. "once_cell",
  4858. "rustix",
  4859. "x11rb-protocol",
  4860. ]
  4861. [[package]]
  4862. name = "x11rb-protocol"
  4863. version = "0.13.1"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
  4866. [[package]]
  4867. name = "xcursor"
  4868. version = "0.3.6"
  4869. source = "registry+https://github.com/rust-lang/crates.io-index"
  4870. checksum = "d491ee231a51ae64a5b762114c3ac2104b967aadba1de45c86ca42cf051513b7"
  4871. [[package]]
  4872. name = "xdg-home"
  4873. version = "1.2.0"
  4874. source = "registry+https://github.com/rust-lang/crates.io-index"
  4875. checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8"
  4876. dependencies = [
  4877. "libc",
  4878. "windows-sys 0.52.0",
  4879. ]
  4880. [[package]]
  4881. name = "xkbcommon-dl"
  4882. version = "0.4.2"
  4883. source = "registry+https://github.com/rust-lang/crates.io-index"
  4884. checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
  4885. dependencies = [
  4886. "bitflags 2.6.0",
  4887. "dlib",
  4888. "log",
  4889. "once_cell",
  4890. "xkeysym",
  4891. ]
  4892. [[package]]
  4893. name = "xkeysym"
  4894. version = "0.2.1"
  4895. source = "registry+https://github.com/rust-lang/crates.io-index"
  4896. checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
  4897. [[package]]
  4898. name = "xml-rs"
  4899. version = "0.8.20"
  4900. source = "registry+https://github.com/rust-lang/crates.io-index"
  4901. checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193"
  4902. [[package]]
  4903. name = "xxhash-rust"
  4904. version = "0.8.12"
  4905. source = "registry+https://github.com/rust-lang/crates.io-index"
  4906. checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
  4907. [[package]]
  4908. name = "yansi"
  4909. version = "1.0.1"
  4910. source = "registry+https://github.com/rust-lang/crates.io-index"
  4911. checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
  4912. [[package]]
  4913. name = "yazi"
  4914. version = "0.1.6"
  4915. source = "registry+https://github.com/rust-lang/crates.io-index"
  4916. checksum = "c94451ac9513335b5e23d7a8a2b61a7102398b8cca5160829d313e84c9d98be1"
  4917. [[package]]
  4918. name = "zbus"
  4919. version = "4.4.0"
  4920. source = "registry+https://github.com/rust-lang/crates.io-index"
  4921. checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
  4922. dependencies = [
  4923. "async-broadcast",
  4924. "async-executor",
  4925. "async-fs",
  4926. "async-io",
  4927. "async-lock",
  4928. "async-process",
  4929. "async-recursion",
  4930. "async-task",
  4931. "async-trait",
  4932. "blocking",
  4933. "enumflags2",
  4934. "event-listener",
  4935. "futures-core",
  4936. "futures-sink",
  4937. "futures-util",
  4938. "hex",
  4939. "nix",
  4940. "ordered-stream",
  4941. "rand",
  4942. "serde",
  4943. "serde_repr",
  4944. "sha1",
  4945. "static_assertions",
  4946. "tracing",
  4947. "uds_windows",
  4948. "windows-sys 0.52.0",
  4949. "xdg-home",
  4950. "zbus_macros",
  4951. "zbus_names",
  4952. "zvariant",
  4953. ]
  4954. [[package]]
  4955. name = "zbus_macros"
  4956. version = "4.4.0"
  4957. source = "registry+https://github.com/rust-lang/crates.io-index"
  4958. checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
  4959. dependencies = [
  4960. "proc-macro-crate",
  4961. "proc-macro2",
  4962. "quote",
  4963. "syn 2.0.72",
  4964. "zvariant_utils",
  4965. ]
  4966. [[package]]
  4967. name = "zbus_names"
  4968. version = "3.0.0"
  4969. source = "registry+https://github.com/rust-lang/crates.io-index"
  4970. checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
  4971. dependencies = [
  4972. "serde",
  4973. "static_assertions",
  4974. "zvariant",
  4975. ]
  4976. [[package]]
  4977. name = "zeno"
  4978. version = "0.2.3"
  4979. source = "registry+https://github.com/rust-lang/crates.io-index"
  4980. checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697"
  4981. [[package]]
  4982. name = "zerocopy"
  4983. version = "0.6.6"
  4984. source = "registry+https://github.com/rust-lang/crates.io-index"
  4985. checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6"
  4986. dependencies = [
  4987. "byteorder",
  4988. "zerocopy-derive 0.6.6",
  4989. ]
  4990. [[package]]
  4991. name = "zerocopy"
  4992. version = "0.7.35"
  4993. source = "registry+https://github.com/rust-lang/crates.io-index"
  4994. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  4995. dependencies = [
  4996. "zerocopy-derive 0.7.35",
  4997. ]
  4998. [[package]]
  4999. name = "zerocopy-derive"
  5000. version = "0.6.6"
  5001. source = "registry+https://github.com/rust-lang/crates.io-index"
  5002. checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91"
  5003. dependencies = [
  5004. "proc-macro2",
  5005. "quote",
  5006. "syn 2.0.72",
  5007. ]
  5008. [[package]]
  5009. name = "zerocopy-derive"
  5010. version = "0.7.35"
  5011. source = "registry+https://github.com/rust-lang/crates.io-index"
  5012. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  5013. dependencies = [
  5014. "proc-macro2",
  5015. "quote",
  5016. "syn 2.0.72",
  5017. ]
  5018. [[package]]
  5019. name = "zeroize"
  5020. version = "1.8.1"
  5021. source = "registry+https://github.com/rust-lang/crates.io-index"
  5022. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  5023. [[package]]
  5024. name = "zune-inflate"
  5025. version = "0.2.54"
  5026. source = "registry+https://github.com/rust-lang/crates.io-index"
  5027. checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
  5028. dependencies = [
  5029. "simd-adler32",
  5030. ]
  5031. [[package]]
  5032. name = "zvariant"
  5033. version = "4.2.0"
  5034. source = "registry+https://github.com/rust-lang/crates.io-index"
  5035. checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
  5036. dependencies = [
  5037. "endi",
  5038. "enumflags2",
  5039. "serde",
  5040. "static_assertions",
  5041. "zvariant_derive",
  5042. ]
  5043. [[package]]
  5044. name = "zvariant_derive"
  5045. version = "4.2.0"
  5046. source = "registry+https://github.com/rust-lang/crates.io-index"
  5047. checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
  5048. dependencies = [
  5049. "proc-macro-crate",
  5050. "proc-macro2",
  5051. "quote",
  5052. "syn 2.0.72",
  5053. "zvariant_utils",
  5054. ]
  5055. [[package]]
  5056. name = "zvariant_utils"
  5057. version = "2.1.0"
  5058. source = "registry+https://github.com/rust-lang/crates.io-index"
  5059. checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
  5060. dependencies = [
  5061. "proc-macro2",
  5062. "quote",
  5063. "syn 2.0.72",
  5064. ]