Cargo.lock 139 KB

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