Cargo.lock 136 KB

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