Cargo.lock 138 KB

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