Cargo.lock 131 KB

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