Cargo.lock 131 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422
  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. "tokio",
  1598. "tokio-native-tls",
  1599. "tokio-rustls 0.24.1",
  1600. "tokio-tungstenite",
  1601. "tungstenite",
  1602. "url",
  1603. "uuid",
  1604. "webpki-roots 0.23.1",
  1605. ]
  1606. [[package]]
  1607. name = "iced_core"
  1608. version = "0.12.3"
  1609. source = "registry+https://github.com/rust-lang/crates.io-index"
  1610. checksum = "7d7e6bbd197f311ed3d8b71651876b0ce01318fde52cda862a9a7a4373c9b930"
  1611. dependencies = [
  1612. "bitflags 2.6.0",
  1613. "glam",
  1614. "log",
  1615. "num-traits",
  1616. "palette",
  1617. "raw-window-handle",
  1618. "smol_str",
  1619. "thiserror",
  1620. "web-time 0.2.4",
  1621. "xxhash-rust",
  1622. ]
  1623. [[package]]
  1624. name = "iced_core"
  1625. version = "0.13.0-dev"
  1626. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1627. dependencies = [
  1628. "bitflags 2.6.0",
  1629. "bytes",
  1630. "dark-light",
  1631. "glam",
  1632. "log",
  1633. "num-traits",
  1634. "once_cell",
  1635. "palette",
  1636. "rustc-hash 2.0.0",
  1637. "smol_str",
  1638. "thiserror",
  1639. "web-time 1.1.0",
  1640. ]
  1641. [[package]]
  1642. name = "iced_futures"
  1643. version = "0.12.0"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "370bad88fb3832cbeeb3fa6c486b4701fb7e8da32a753b3101d4ce81fc1d9497"
  1646. dependencies = [
  1647. "futures",
  1648. "iced_core 0.12.3",
  1649. "log",
  1650. "wasm-bindgen-futures",
  1651. "wasm-timer",
  1652. ]
  1653. [[package]]
  1654. name = "iced_futures"
  1655. version = "0.13.0-dev"
  1656. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1657. dependencies = [
  1658. "futures",
  1659. "iced_core 0.13.0-dev",
  1660. "log",
  1661. "rustc-hash 2.0.0",
  1662. "tokio",
  1663. "wasm-bindgen-futures",
  1664. "wasm-timer",
  1665. ]
  1666. [[package]]
  1667. name = "iced_graphics"
  1668. version = "0.12.1"
  1669. source = "registry+https://github.com/rust-lang/crates.io-index"
  1670. checksum = "6a044c193ef0840eacabfa05424717331d1fc5b3ecb9a89316200c75da2ba9a4"
  1671. dependencies = [
  1672. "bitflags 2.6.0",
  1673. "bytemuck",
  1674. "cosmic-text 0.10.0",
  1675. "half",
  1676. "iced_core 0.12.3",
  1677. "iced_futures 0.12.0",
  1678. "log",
  1679. "once_cell",
  1680. "raw-window-handle",
  1681. "rustc-hash 1.1.0",
  1682. "thiserror",
  1683. "unicode-segmentation",
  1684. "xxhash-rust",
  1685. ]
  1686. [[package]]
  1687. name = "iced_graphics"
  1688. version = "0.13.0-dev"
  1689. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1690. dependencies = [
  1691. "bitflags 2.6.0",
  1692. "bytemuck",
  1693. "cosmic-text 0.12.1",
  1694. "half",
  1695. "iced_core 0.13.0-dev",
  1696. "iced_futures 0.13.0-dev",
  1697. "log",
  1698. "lyon_path",
  1699. "once_cell",
  1700. "raw-window-handle",
  1701. "rustc-hash 2.0.0",
  1702. "thiserror",
  1703. "unicode-segmentation",
  1704. ]
  1705. [[package]]
  1706. name = "iced_renderer"
  1707. version = "0.12.1"
  1708. source = "registry+https://github.com/rust-lang/crates.io-index"
  1709. checksum = "5c281e03001d566058f53dec9325bbe61c62da715341206d2627f57a3ecc7f69"
  1710. dependencies = [
  1711. "iced_graphics 0.12.1",
  1712. "iced_tiny_skia 0.12.1",
  1713. "log",
  1714. "thiserror",
  1715. ]
  1716. [[package]]
  1717. name = "iced_renderer"
  1718. version = "0.13.0-dev"
  1719. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1720. dependencies = [
  1721. "iced_graphics 0.13.0-dev",
  1722. "iced_tiny_skia 0.13.0-dev",
  1723. "iced_wgpu",
  1724. "log",
  1725. "thiserror",
  1726. ]
  1727. [[package]]
  1728. name = "iced_runtime"
  1729. version = "0.12.1"
  1730. source = "registry+https://github.com/rust-lang/crates.io-index"
  1731. checksum = "a79f852c01cc6d61663c94379cb3974ac3ad315a28c504e847d573e094f46822"
  1732. dependencies = [
  1733. "iced_core 0.12.3",
  1734. "iced_futures 0.12.0",
  1735. "raw-window-handle",
  1736. "thiserror",
  1737. ]
  1738. [[package]]
  1739. name = "iced_runtime"
  1740. version = "0.13.0-dev"
  1741. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1742. dependencies = [
  1743. "bytes",
  1744. "iced_core 0.13.0-dev",
  1745. "iced_futures 0.13.0-dev",
  1746. "raw-window-handle",
  1747. "thiserror",
  1748. ]
  1749. [[package]]
  1750. name = "iced_style"
  1751. version = "0.12.1"
  1752. source = "registry+https://github.com/rust-lang/crates.io-index"
  1753. checksum = "2ea42a740915d2a5a9ff9c3aa0bca28b16e9fb660bc8f675eed71d186cadb579"
  1754. dependencies = [
  1755. "iced_core 0.12.3",
  1756. "once_cell",
  1757. "palette",
  1758. ]
  1759. [[package]]
  1760. name = "iced_table"
  1761. version = "0.12.0"
  1762. source = "registry+https://github.com/rust-lang/crates.io-index"
  1763. checksum = "4347f00d6cd7e5e3b26a9ac0bedd46f336b5eaa4be9b46256d1c8009562f6b51"
  1764. dependencies = [
  1765. "iced_core 0.12.3",
  1766. "iced_style",
  1767. "iced_widget 0.12.3",
  1768. ]
  1769. [[package]]
  1770. name = "iced_tiny_skia"
  1771. version = "0.12.1"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "8c2228781f4d381a1cbbd7905a9f077351aa8d37269094021d5d9e779f130aff"
  1774. dependencies = [
  1775. "bytemuck",
  1776. "cosmic-text 0.10.0",
  1777. "iced_graphics 0.12.1",
  1778. "kurbo",
  1779. "log",
  1780. "rustc-hash 1.1.0",
  1781. "softbuffer",
  1782. "tiny-skia",
  1783. "xxhash-rust",
  1784. ]
  1785. [[package]]
  1786. name = "iced_tiny_skia"
  1787. version = "0.13.0-dev"
  1788. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1789. dependencies = [
  1790. "bytemuck",
  1791. "cosmic-text 0.12.1",
  1792. "iced_graphics 0.13.0-dev",
  1793. "kurbo",
  1794. "log",
  1795. "rustc-hash 2.0.0",
  1796. "softbuffer",
  1797. "tiny-skia",
  1798. ]
  1799. [[package]]
  1800. name = "iced_wgpu"
  1801. version = "0.13.0-dev"
  1802. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1803. dependencies = [
  1804. "bitflags 2.6.0",
  1805. "bytemuck",
  1806. "futures",
  1807. "glam",
  1808. "glyphon",
  1809. "guillotiere",
  1810. "iced_graphics 0.13.0-dev",
  1811. "log",
  1812. "lyon",
  1813. "once_cell",
  1814. "rustc-hash 2.0.0",
  1815. "thiserror",
  1816. "wgpu",
  1817. ]
  1818. [[package]]
  1819. name = "iced_widget"
  1820. version = "0.12.3"
  1821. source = "registry+https://github.com/rust-lang/crates.io-index"
  1822. checksum = "7e01b2212adecf1cb80e2267f302c0e0c263e55f97812056949199ccf9f0b908"
  1823. dependencies = [
  1824. "iced_renderer 0.12.1",
  1825. "iced_runtime 0.12.1",
  1826. "iced_style",
  1827. "num-traits",
  1828. "thiserror",
  1829. "unicode-segmentation",
  1830. ]
  1831. [[package]]
  1832. name = "iced_widget"
  1833. version = "0.13.0-dev"
  1834. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1835. dependencies = [
  1836. "iced_renderer 0.13.0-dev",
  1837. "iced_runtime 0.13.0-dev",
  1838. "num-traits",
  1839. "once_cell",
  1840. "rustc-hash 2.0.0",
  1841. "thiserror",
  1842. "unicode-segmentation",
  1843. ]
  1844. [[package]]
  1845. name = "iced_winit"
  1846. version = "0.13.0-dev"
  1847. source = "git+https://github.com/iced-rs/iced.git#169667ef1b4fa754ed1edb5fa0e845aede2638fb"
  1848. dependencies = [
  1849. "iced_futures 0.13.0-dev",
  1850. "iced_graphics 0.13.0-dev",
  1851. "iced_runtime 0.13.0-dev",
  1852. "log",
  1853. "rustc-hash 2.0.0",
  1854. "thiserror",
  1855. "tracing",
  1856. "wasm-bindgen-futures",
  1857. "web-sys",
  1858. "winapi",
  1859. "window_clipboard",
  1860. "winit",
  1861. ]
  1862. [[package]]
  1863. name = "idna"
  1864. version = "0.5.0"
  1865. source = "registry+https://github.com/rust-lang/crates.io-index"
  1866. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  1867. dependencies = [
  1868. "unicode-bidi",
  1869. "unicode-normalization",
  1870. ]
  1871. [[package]]
  1872. name = "indexmap"
  1873. version = "2.3.0"
  1874. source = "registry+https://github.com/rust-lang/crates.io-index"
  1875. checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
  1876. dependencies = [
  1877. "equivalent",
  1878. "hashbrown 0.14.5",
  1879. ]
  1880. [[package]]
  1881. name = "instant"
  1882. version = "0.1.13"
  1883. source = "registry+https://github.com/rust-lang/crates.io-index"
  1884. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  1885. dependencies = [
  1886. "cfg-if",
  1887. ]
  1888. [[package]]
  1889. name = "ipnet"
  1890. version = "2.9.0"
  1891. source = "registry+https://github.com/rust-lang/crates.io-index"
  1892. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  1893. [[package]]
  1894. name = "itoa"
  1895. version = "1.0.11"
  1896. source = "registry+https://github.com/rust-lang/crates.io-index"
  1897. checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
  1898. [[package]]
  1899. name = "jni"
  1900. version = "0.21.1"
  1901. source = "registry+https://github.com/rust-lang/crates.io-index"
  1902. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  1903. dependencies = [
  1904. "cesu8",
  1905. "cfg-if",
  1906. "combine",
  1907. "jni-sys",
  1908. "log",
  1909. "thiserror",
  1910. "walkdir",
  1911. "windows-sys 0.45.0",
  1912. ]
  1913. [[package]]
  1914. name = "jni-sys"
  1915. version = "0.3.0"
  1916. source = "registry+https://github.com/rust-lang/crates.io-index"
  1917. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  1918. [[package]]
  1919. name = "jobserver"
  1920. version = "0.1.32"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  1923. dependencies = [
  1924. "libc",
  1925. ]
  1926. [[package]]
  1927. name = "js-sys"
  1928. version = "0.3.69"
  1929. source = "registry+https://github.com/rust-lang/crates.io-index"
  1930. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  1931. dependencies = [
  1932. "wasm-bindgen",
  1933. ]
  1934. [[package]]
  1935. name = "khronos-egl"
  1936. version = "6.0.0"
  1937. source = "registry+https://github.com/rust-lang/crates.io-index"
  1938. checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
  1939. dependencies = [
  1940. "libc",
  1941. "libloading 0.8.5",
  1942. "pkg-config",
  1943. ]
  1944. [[package]]
  1945. name = "khronos_api"
  1946. version = "3.1.0"
  1947. source = "registry+https://github.com/rust-lang/crates.io-index"
  1948. checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
  1949. [[package]]
  1950. name = "kurbo"
  1951. version = "0.10.4"
  1952. source = "registry+https://github.com/rust-lang/crates.io-index"
  1953. checksum = "1618d4ebd923e97d67e7cd363d80aef35fe961005cbbbb3d2dad8bdd1bc63440"
  1954. dependencies = [
  1955. "arrayvec",
  1956. "smallvec",
  1957. ]
  1958. [[package]]
  1959. name = "libc"
  1960. version = "0.2.155"
  1961. source = "registry+https://github.com/rust-lang/crates.io-index"
  1962. checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
  1963. [[package]]
  1964. name = "libloading"
  1965. version = "0.7.4"
  1966. source = "registry+https://github.com/rust-lang/crates.io-index"
  1967. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  1968. dependencies = [
  1969. "cfg-if",
  1970. "winapi",
  1971. ]
  1972. [[package]]
  1973. name = "libloading"
  1974. version = "0.8.5"
  1975. source = "registry+https://github.com/rust-lang/crates.io-index"
  1976. checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
  1977. dependencies = [
  1978. "cfg-if",
  1979. "windows-targets 0.52.6",
  1980. ]
  1981. [[package]]
  1982. name = "libm"
  1983. version = "0.2.8"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  1986. [[package]]
  1987. name = "libredox"
  1988. version = "0.0.2"
  1989. source = "registry+https://github.com/rust-lang/crates.io-index"
  1990. checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
  1991. dependencies = [
  1992. "bitflags 2.6.0",
  1993. "libc",
  1994. "redox_syscall 0.4.1",
  1995. ]
  1996. [[package]]
  1997. name = "libredox"
  1998. version = "0.1.3"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2001. dependencies = [
  2002. "bitflags 2.6.0",
  2003. "libc",
  2004. ]
  2005. [[package]]
  2006. name = "linux-raw-sys"
  2007. version = "0.4.14"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
  2010. [[package]]
  2011. name = "linux-raw-sys"
  2012. version = "0.6.4"
  2013. source = "registry+https://github.com/rust-lang/crates.io-index"
  2014. checksum = "f0b5399f6804fbab912acbd8878ed3532d506b7c951b8f9f164ef90fef39e3f4"
  2015. [[package]]
  2016. name = "lock_api"
  2017. version = "0.4.12"
  2018. source = "registry+https://github.com/rust-lang/crates.io-index"
  2019. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2020. dependencies = [
  2021. "autocfg",
  2022. "scopeguard",
  2023. ]
  2024. [[package]]
  2025. name = "log"
  2026. version = "0.4.22"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  2029. [[package]]
  2030. name = "lru"
  2031. version = "0.12.4"
  2032. source = "registry+https://github.com/rust-lang/crates.io-index"
  2033. checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
  2034. [[package]]
  2035. name = "lyon"
  2036. version = "1.0.1"
  2037. source = "registry+https://github.com/rust-lang/crates.io-index"
  2038. checksum = "91e7f9cda98b5430809e63ca5197b06c7d191bf7e26dfc467d5a3f0290e2a74f"
  2039. dependencies = [
  2040. "lyon_algorithms",
  2041. "lyon_tessellation",
  2042. ]
  2043. [[package]]
  2044. name = "lyon_algorithms"
  2045. version = "1.0.4"
  2046. source = "registry+https://github.com/rust-lang/crates.io-index"
  2047. checksum = "a3bca95f9a4955b3e4a821fbbcd5edfbd9be2a9a50bb5758173e5358bfb4c623"
  2048. dependencies = [
  2049. "lyon_path",
  2050. "num-traits",
  2051. ]
  2052. [[package]]
  2053. name = "lyon_geom"
  2054. version = "1.0.5"
  2055. source = "registry+https://github.com/rust-lang/crates.io-index"
  2056. checksum = "edecfb8d234a2b0be031ab02ebcdd9f3b9ee418fb35e265f7a540a48d197bff9"
  2057. dependencies = [
  2058. "arrayvec",
  2059. "euclid",
  2060. "num-traits",
  2061. ]
  2062. [[package]]
  2063. name = "lyon_path"
  2064. version = "1.0.5"
  2065. source = "registry+https://github.com/rust-lang/crates.io-index"
  2066. checksum = "9c08a606c7a59638d6c6aa18ac91a06aa9fb5f765a7efb27e6a4da58700740d7"
  2067. dependencies = [
  2068. "lyon_geom",
  2069. "num-traits",
  2070. ]
  2071. [[package]]
  2072. name = "lyon_tessellation"
  2073. version = "1.0.15"
  2074. source = "registry+https://github.com/rust-lang/crates.io-index"
  2075. checksum = "579d42360a4b09846eff2feef28f538696c7d6c7439bfa65874ff3cbe0951b2c"
  2076. dependencies = [
  2077. "float_next_after",
  2078. "lyon_path",
  2079. "num-traits",
  2080. ]
  2081. [[package]]
  2082. name = "malloc_buf"
  2083. version = "0.0.6"
  2084. source = "registry+https://github.com/rust-lang/crates.io-index"
  2085. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  2086. dependencies = [
  2087. "libc",
  2088. ]
  2089. [[package]]
  2090. name = "memchr"
  2091. version = "2.7.4"
  2092. source = "registry+https://github.com/rust-lang/crates.io-index"
  2093. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2094. [[package]]
  2095. name = "memmap2"
  2096. version = "0.8.0"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
  2099. dependencies = [
  2100. "libc",
  2101. ]
  2102. [[package]]
  2103. name = "memmap2"
  2104. version = "0.9.4"
  2105. source = "registry+https://github.com/rust-lang/crates.io-index"
  2106. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  2107. dependencies = [
  2108. "libc",
  2109. ]
  2110. [[package]]
  2111. name = "memoffset"
  2112. version = "0.9.1"
  2113. source = "registry+https://github.com/rust-lang/crates.io-index"
  2114. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  2115. dependencies = [
  2116. "autocfg",
  2117. ]
  2118. [[package]]
  2119. name = "metal"
  2120. version = "0.27.0"
  2121. source = "registry+https://github.com/rust-lang/crates.io-index"
  2122. checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
  2123. dependencies = [
  2124. "bitflags 2.6.0",
  2125. "block",
  2126. "core-graphics-types",
  2127. "foreign-types 0.5.0",
  2128. "log",
  2129. "objc",
  2130. "paste",
  2131. ]
  2132. [[package]]
  2133. name = "mime"
  2134. version = "0.3.17"
  2135. source = "registry+https://github.com/rust-lang/crates.io-index"
  2136. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2137. [[package]]
  2138. name = "miniz_oxide"
  2139. version = "0.7.4"
  2140. source = "registry+https://github.com/rust-lang/crates.io-index"
  2141. checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
  2142. dependencies = [
  2143. "adler",
  2144. "simd-adler32",
  2145. ]
  2146. [[package]]
  2147. name = "mio"
  2148. version = "1.0.1"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
  2151. dependencies = [
  2152. "hermit-abi 0.3.9",
  2153. "libc",
  2154. "wasi",
  2155. "windows-sys 0.52.0",
  2156. ]
  2157. [[package]]
  2158. name = "naga"
  2159. version = "0.19.2"
  2160. source = "registry+https://github.com/rust-lang/crates.io-index"
  2161. checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
  2162. dependencies = [
  2163. "bit-set",
  2164. "bitflags 2.6.0",
  2165. "codespan-reporting",
  2166. "hexf-parse",
  2167. "indexmap",
  2168. "log",
  2169. "num-traits",
  2170. "rustc-hash 1.1.0",
  2171. "spirv",
  2172. "termcolor",
  2173. "thiserror",
  2174. "unicode-xid",
  2175. ]
  2176. [[package]]
  2177. name = "native-tls"
  2178. version = "0.2.12"
  2179. source = "registry+https://github.com/rust-lang/crates.io-index"
  2180. checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
  2181. dependencies = [
  2182. "libc",
  2183. "log",
  2184. "openssl",
  2185. "openssl-probe",
  2186. "openssl-sys",
  2187. "schannel",
  2188. "security-framework",
  2189. "security-framework-sys",
  2190. "tempfile",
  2191. ]
  2192. [[package]]
  2193. name = "ndk"
  2194. version = "0.9.0"
  2195. source = "registry+https://github.com/rust-lang/crates.io-index"
  2196. checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
  2197. dependencies = [
  2198. "bitflags 2.6.0",
  2199. "jni-sys",
  2200. "log",
  2201. "ndk-sys 0.6.0+11769913",
  2202. "num_enum",
  2203. "raw-window-handle",
  2204. "thiserror",
  2205. ]
  2206. [[package]]
  2207. name = "ndk-context"
  2208. version = "0.1.1"
  2209. source = "registry+https://github.com/rust-lang/crates.io-index"
  2210. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  2211. [[package]]
  2212. name = "ndk-sys"
  2213. version = "0.5.0+25.2.9519653"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  2216. dependencies = [
  2217. "jni-sys",
  2218. ]
  2219. [[package]]
  2220. name = "ndk-sys"
  2221. version = "0.6.0+11769913"
  2222. source = "registry+https://github.com/rust-lang/crates.io-index"
  2223. checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
  2224. dependencies = [
  2225. "jni-sys",
  2226. ]
  2227. [[package]]
  2228. name = "nix"
  2229. version = "0.29.0"
  2230. source = "registry+https://github.com/rust-lang/crates.io-index"
  2231. checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
  2232. dependencies = [
  2233. "bitflags 2.6.0",
  2234. "cfg-if",
  2235. "cfg_aliases 0.2.1",
  2236. "libc",
  2237. "memoffset",
  2238. ]
  2239. [[package]]
  2240. name = "num-traits"
  2241. version = "0.2.19"
  2242. source = "registry+https://github.com/rust-lang/crates.io-index"
  2243. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  2244. dependencies = [
  2245. "autocfg",
  2246. "libm",
  2247. ]
  2248. [[package]]
  2249. name = "num_cpus"
  2250. version = "1.16.0"
  2251. source = "registry+https://github.com/rust-lang/crates.io-index"
  2252. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  2253. dependencies = [
  2254. "hermit-abi 0.3.9",
  2255. "libc",
  2256. ]
  2257. [[package]]
  2258. name = "num_enum"
  2259. version = "0.7.3"
  2260. source = "registry+https://github.com/rust-lang/crates.io-index"
  2261. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  2262. dependencies = [
  2263. "num_enum_derive",
  2264. ]
  2265. [[package]]
  2266. name = "num_enum_derive"
  2267. version = "0.7.3"
  2268. source = "registry+https://github.com/rust-lang/crates.io-index"
  2269. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  2270. dependencies = [
  2271. "proc-macro-crate",
  2272. "proc-macro2",
  2273. "quote",
  2274. "syn 2.0.72",
  2275. ]
  2276. [[package]]
  2277. name = "objc"
  2278. version = "0.2.7"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
  2281. dependencies = [
  2282. "malloc_buf",
  2283. "objc_exception",
  2284. ]
  2285. [[package]]
  2286. name = "objc-foundation"
  2287. version = "0.1.1"
  2288. source = "registry+https://github.com/rust-lang/crates.io-index"
  2289. checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
  2290. dependencies = [
  2291. "block",
  2292. "objc",
  2293. "objc_id",
  2294. ]
  2295. [[package]]
  2296. name = "objc-sys"
  2297. version = "0.3.5"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
  2300. [[package]]
  2301. name = "objc2"
  2302. version = "0.5.2"
  2303. source = "registry+https://github.com/rust-lang/crates.io-index"
  2304. checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
  2305. dependencies = [
  2306. "objc-sys",
  2307. "objc2-encode",
  2308. ]
  2309. [[package]]
  2310. name = "objc2-app-kit"
  2311. version = "0.2.2"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
  2314. dependencies = [
  2315. "bitflags 2.6.0",
  2316. "block2",
  2317. "libc",
  2318. "objc2",
  2319. "objc2-core-data",
  2320. "objc2-core-image",
  2321. "objc2-foundation",
  2322. "objc2-quartz-core",
  2323. ]
  2324. [[package]]
  2325. name = "objc2-cloud-kit"
  2326. version = "0.2.2"
  2327. source = "registry+https://github.com/rust-lang/crates.io-index"
  2328. checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
  2329. dependencies = [
  2330. "bitflags 2.6.0",
  2331. "block2",
  2332. "objc2",
  2333. "objc2-core-location",
  2334. "objc2-foundation",
  2335. ]
  2336. [[package]]
  2337. name = "objc2-contacts"
  2338. version = "0.2.2"
  2339. source = "registry+https://github.com/rust-lang/crates.io-index"
  2340. checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
  2341. dependencies = [
  2342. "block2",
  2343. "objc2",
  2344. "objc2-foundation",
  2345. ]
  2346. [[package]]
  2347. name = "objc2-core-data"
  2348. version = "0.2.2"
  2349. source = "registry+https://github.com/rust-lang/crates.io-index"
  2350. checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
  2351. dependencies = [
  2352. "bitflags 2.6.0",
  2353. "block2",
  2354. "objc2",
  2355. "objc2-foundation",
  2356. ]
  2357. [[package]]
  2358. name = "objc2-core-image"
  2359. version = "0.2.2"
  2360. source = "registry+https://github.com/rust-lang/crates.io-index"
  2361. checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
  2362. dependencies = [
  2363. "block2",
  2364. "objc2",
  2365. "objc2-foundation",
  2366. "objc2-metal",
  2367. ]
  2368. [[package]]
  2369. name = "objc2-core-location"
  2370. version = "0.2.2"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
  2373. dependencies = [
  2374. "block2",
  2375. "objc2",
  2376. "objc2-contacts",
  2377. "objc2-foundation",
  2378. ]
  2379. [[package]]
  2380. name = "objc2-encode"
  2381. version = "4.0.3"
  2382. source = "registry+https://github.com/rust-lang/crates.io-index"
  2383. checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8"
  2384. [[package]]
  2385. name = "objc2-foundation"
  2386. version = "0.2.2"
  2387. source = "registry+https://github.com/rust-lang/crates.io-index"
  2388. checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
  2389. dependencies = [
  2390. "bitflags 2.6.0",
  2391. "block2",
  2392. "dispatch",
  2393. "libc",
  2394. "objc2",
  2395. ]
  2396. [[package]]
  2397. name = "objc2-link-presentation"
  2398. version = "0.2.2"
  2399. source = "registry+https://github.com/rust-lang/crates.io-index"
  2400. checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
  2401. dependencies = [
  2402. "block2",
  2403. "objc2",
  2404. "objc2-app-kit",
  2405. "objc2-foundation",
  2406. ]
  2407. [[package]]
  2408. name = "objc2-metal"
  2409. version = "0.2.2"
  2410. source = "registry+https://github.com/rust-lang/crates.io-index"
  2411. checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
  2412. dependencies = [
  2413. "bitflags 2.6.0",
  2414. "block2",
  2415. "objc2",
  2416. "objc2-foundation",
  2417. ]
  2418. [[package]]
  2419. name = "objc2-quartz-core"
  2420. version = "0.2.2"
  2421. source = "registry+https://github.com/rust-lang/crates.io-index"
  2422. checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
  2423. dependencies = [
  2424. "bitflags 2.6.0",
  2425. "block2",
  2426. "objc2",
  2427. "objc2-foundation",
  2428. "objc2-metal",
  2429. ]
  2430. [[package]]
  2431. name = "objc2-symbols"
  2432. version = "0.2.2"
  2433. source = "registry+https://github.com/rust-lang/crates.io-index"
  2434. checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
  2435. dependencies = [
  2436. "objc2",
  2437. "objc2-foundation",
  2438. ]
  2439. [[package]]
  2440. name = "objc2-ui-kit"
  2441. version = "0.2.2"
  2442. source = "registry+https://github.com/rust-lang/crates.io-index"
  2443. checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
  2444. dependencies = [
  2445. "bitflags 2.6.0",
  2446. "block2",
  2447. "objc2",
  2448. "objc2-cloud-kit",
  2449. "objc2-core-data",
  2450. "objc2-core-image",
  2451. "objc2-core-location",
  2452. "objc2-foundation",
  2453. "objc2-link-presentation",
  2454. "objc2-quartz-core",
  2455. "objc2-symbols",
  2456. "objc2-uniform-type-identifiers",
  2457. "objc2-user-notifications",
  2458. ]
  2459. [[package]]
  2460. name = "objc2-uniform-type-identifiers"
  2461. version = "0.2.2"
  2462. source = "registry+https://github.com/rust-lang/crates.io-index"
  2463. checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
  2464. dependencies = [
  2465. "block2",
  2466. "objc2",
  2467. "objc2-foundation",
  2468. ]
  2469. [[package]]
  2470. name = "objc2-user-notifications"
  2471. version = "0.2.2"
  2472. source = "registry+https://github.com/rust-lang/crates.io-index"
  2473. checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
  2474. dependencies = [
  2475. "bitflags 2.6.0",
  2476. "block2",
  2477. "objc2",
  2478. "objc2-core-location",
  2479. "objc2-foundation",
  2480. ]
  2481. [[package]]
  2482. name = "objc_exception"
  2483. version = "0.1.2"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
  2486. dependencies = [
  2487. "cc",
  2488. ]
  2489. [[package]]
  2490. name = "objc_id"
  2491. version = "0.1.1"
  2492. source = "registry+https://github.com/rust-lang/crates.io-index"
  2493. checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
  2494. dependencies = [
  2495. "objc",
  2496. ]
  2497. [[package]]
  2498. name = "object"
  2499. version = "0.36.2"
  2500. source = "registry+https://github.com/rust-lang/crates.io-index"
  2501. checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e"
  2502. dependencies = [
  2503. "memchr",
  2504. ]
  2505. [[package]]
  2506. name = "once_cell"
  2507. version = "1.19.0"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  2510. [[package]]
  2511. name = "openssl"
  2512. version = "0.10.66"
  2513. source = "registry+https://github.com/rust-lang/crates.io-index"
  2514. checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
  2515. dependencies = [
  2516. "bitflags 2.6.0",
  2517. "cfg-if",
  2518. "foreign-types 0.3.2",
  2519. "libc",
  2520. "once_cell",
  2521. "openssl-macros",
  2522. "openssl-sys",
  2523. ]
  2524. [[package]]
  2525. name = "openssl-macros"
  2526. version = "0.1.1"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  2529. dependencies = [
  2530. "proc-macro2",
  2531. "quote",
  2532. "syn 2.0.72",
  2533. ]
  2534. [[package]]
  2535. name = "openssl-probe"
  2536. version = "0.1.5"
  2537. source = "registry+https://github.com/rust-lang/crates.io-index"
  2538. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2539. [[package]]
  2540. name = "openssl-sys"
  2541. version = "0.9.103"
  2542. source = "registry+https://github.com/rust-lang/crates.io-index"
  2543. checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
  2544. dependencies = [
  2545. "cc",
  2546. "libc",
  2547. "pkg-config",
  2548. "vcpkg",
  2549. ]
  2550. [[package]]
  2551. name = "orbclient"
  2552. version = "0.3.47"
  2553. source = "registry+https://github.com/rust-lang/crates.io-index"
  2554. checksum = "52f0d54bde9774d3a51dcf281a5def240c71996bc6ca05d2c847ec8b2b216166"
  2555. dependencies = [
  2556. "libredox 0.0.2",
  2557. ]
  2558. [[package]]
  2559. name = "ordered-multimap"
  2560. version = "0.4.3"
  2561. source = "registry+https://github.com/rust-lang/crates.io-index"
  2562. checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
  2563. dependencies = [
  2564. "dlv-list",
  2565. "hashbrown 0.12.3",
  2566. ]
  2567. [[package]]
  2568. name = "ordered-stream"
  2569. version = "0.2.0"
  2570. source = "registry+https://github.com/rust-lang/crates.io-index"
  2571. checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
  2572. dependencies = [
  2573. "futures-core",
  2574. "pin-project-lite",
  2575. ]
  2576. [[package]]
  2577. name = "owned_ttf_parser"
  2578. version = "0.24.0"
  2579. source = "registry+https://github.com/rust-lang/crates.io-index"
  2580. checksum = "490d3a563d3122bf7c911a59b0add9389e5ec0f5f0c3ac6b91ff235a0e6a7f90"
  2581. dependencies = [
  2582. "ttf-parser 0.24.0",
  2583. ]
  2584. [[package]]
  2585. name = "page_size"
  2586. version = "0.6.0"
  2587. source = "registry+https://github.com/rust-lang/crates.io-index"
  2588. checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
  2589. dependencies = [
  2590. "libc",
  2591. "winapi",
  2592. ]
  2593. [[package]]
  2594. name = "palette"
  2595. version = "0.7.6"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
  2598. dependencies = [
  2599. "approx",
  2600. "fast-srgb8",
  2601. "palette_derive",
  2602. "phf",
  2603. ]
  2604. [[package]]
  2605. name = "palette_derive"
  2606. version = "0.7.6"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
  2609. dependencies = [
  2610. "by_address",
  2611. "proc-macro2",
  2612. "quote",
  2613. "syn 2.0.72",
  2614. ]
  2615. [[package]]
  2616. name = "parking"
  2617. version = "2.2.0"
  2618. source = "registry+https://github.com/rust-lang/crates.io-index"
  2619. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  2620. [[package]]
  2621. name = "parking_lot"
  2622. version = "0.11.2"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2625. dependencies = [
  2626. "instant",
  2627. "lock_api",
  2628. "parking_lot_core 0.8.6",
  2629. ]
  2630. [[package]]
  2631. name = "parking_lot"
  2632. version = "0.12.3"
  2633. source = "registry+https://github.com/rust-lang/crates.io-index"
  2634. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  2635. dependencies = [
  2636. "lock_api",
  2637. "parking_lot_core 0.9.10",
  2638. ]
  2639. [[package]]
  2640. name = "parking_lot_core"
  2641. version = "0.8.6"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2644. dependencies = [
  2645. "cfg-if",
  2646. "instant",
  2647. "libc",
  2648. "redox_syscall 0.2.16",
  2649. "smallvec",
  2650. "winapi",
  2651. ]
  2652. [[package]]
  2653. name = "parking_lot_core"
  2654. version = "0.9.10"
  2655. source = "registry+https://github.com/rust-lang/crates.io-index"
  2656. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  2657. dependencies = [
  2658. "cfg-if",
  2659. "libc",
  2660. "redox_syscall 0.5.3",
  2661. "smallvec",
  2662. "windows-targets 0.52.6",
  2663. ]
  2664. [[package]]
  2665. name = "paste"
  2666. version = "1.0.15"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  2669. [[package]]
  2670. name = "percent-encoding"
  2671. version = "2.3.1"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  2674. [[package]]
  2675. name = "phf"
  2676. version = "0.11.2"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  2679. dependencies = [
  2680. "phf_macros",
  2681. "phf_shared",
  2682. ]
  2683. [[package]]
  2684. name = "phf_generator"
  2685. version = "0.11.2"
  2686. source = "registry+https://github.com/rust-lang/crates.io-index"
  2687. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  2688. dependencies = [
  2689. "phf_shared",
  2690. "rand",
  2691. ]
  2692. [[package]]
  2693. name = "phf_macros"
  2694. version = "0.11.2"
  2695. source = "registry+https://github.com/rust-lang/crates.io-index"
  2696. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  2697. dependencies = [
  2698. "phf_generator",
  2699. "phf_shared",
  2700. "proc-macro2",
  2701. "quote",
  2702. "syn 2.0.72",
  2703. ]
  2704. [[package]]
  2705. name = "phf_shared"
  2706. version = "0.11.2"
  2707. source = "registry+https://github.com/rust-lang/crates.io-index"
  2708. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  2709. dependencies = [
  2710. "siphasher",
  2711. ]
  2712. [[package]]
  2713. name = "pin-project"
  2714. version = "1.1.5"
  2715. source = "registry+https://github.com/rust-lang/crates.io-index"
  2716. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  2717. dependencies = [
  2718. "pin-project-internal",
  2719. ]
  2720. [[package]]
  2721. name = "pin-project-internal"
  2722. version = "1.1.5"
  2723. source = "registry+https://github.com/rust-lang/crates.io-index"
  2724. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  2725. dependencies = [
  2726. "proc-macro2",
  2727. "quote",
  2728. "syn 2.0.72",
  2729. ]
  2730. [[package]]
  2731. name = "pin-project-lite"
  2732. version = "0.2.14"
  2733. source = "registry+https://github.com/rust-lang/crates.io-index"
  2734. checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
  2735. [[package]]
  2736. name = "pin-utils"
  2737. version = "0.1.0"
  2738. source = "registry+https://github.com/rust-lang/crates.io-index"
  2739. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2740. [[package]]
  2741. name = "piper"
  2742. version = "0.2.3"
  2743. source = "registry+https://github.com/rust-lang/crates.io-index"
  2744. checksum = "ae1d5c74c9876f070d3e8fd503d748c7d974c3e48da8f41350fa5222ef9b4391"
  2745. dependencies = [
  2746. "atomic-waker",
  2747. "fastrand",
  2748. "futures-io",
  2749. ]
  2750. [[package]]
  2751. name = "pkg-config"
  2752. version = "0.3.30"
  2753. source = "registry+https://github.com/rust-lang/crates.io-index"
  2754. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  2755. [[package]]
  2756. name = "png"
  2757. version = "0.17.13"
  2758. source = "registry+https://github.com/rust-lang/crates.io-index"
  2759. checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
  2760. dependencies = [
  2761. "bitflags 1.3.2",
  2762. "crc32fast",
  2763. "fdeflate",
  2764. "flate2",
  2765. "miniz_oxide",
  2766. ]
  2767. [[package]]
  2768. name = "polling"
  2769. version = "3.7.2"
  2770. source = "registry+https://github.com/rust-lang/crates.io-index"
  2771. checksum = "a3ed00ed3fbf728b5816498ecd316d1716eecaced9c0c8d2c5a6740ca214985b"
  2772. dependencies = [
  2773. "cfg-if",
  2774. "concurrent-queue",
  2775. "hermit-abi 0.4.0",
  2776. "pin-project-lite",
  2777. "rustix",
  2778. "tracing",
  2779. "windows-sys 0.52.0",
  2780. ]
  2781. [[package]]
  2782. name = "ppv-lite86"
  2783. version = "0.2.18"
  2784. source = "registry+https://github.com/rust-lang/crates.io-index"
  2785. checksum = "dee4364d9f3b902ef14fab8a1ddffb783a1cb6b4bba3bfc1fa3922732c7de97f"
  2786. dependencies = [
  2787. "zerocopy 0.6.6",
  2788. ]
  2789. [[package]]
  2790. name = "presser"
  2791. version = "0.3.1"
  2792. source = "registry+https://github.com/rust-lang/crates.io-index"
  2793. checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
  2794. [[package]]
  2795. name = "proc-macro-crate"
  2796. version = "3.1.0"
  2797. source = "registry+https://github.com/rust-lang/crates.io-index"
  2798. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  2799. dependencies = [
  2800. "toml_edit",
  2801. ]
  2802. [[package]]
  2803. name = "proc-macro2"
  2804. version = "1.0.86"
  2805. source = "registry+https://github.com/rust-lang/crates.io-index"
  2806. checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
  2807. dependencies = [
  2808. "unicode-ident",
  2809. ]
  2810. [[package]]
  2811. name = "profiling"
  2812. version = "1.0.15"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
  2815. [[package]]
  2816. name = "quick-xml"
  2817. version = "0.34.0"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "6f24d770aeca0eacb81ac29dfbc55ebcc09312fdd1f8bbecdc7e4a84e000e3b4"
  2820. dependencies = [
  2821. "memchr",
  2822. ]
  2823. [[package]]
  2824. name = "quote"
  2825. version = "1.0.36"
  2826. source = "registry+https://github.com/rust-lang/crates.io-index"
  2827. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  2828. dependencies = [
  2829. "proc-macro2",
  2830. ]
  2831. [[package]]
  2832. name = "rand"
  2833. version = "0.8.5"
  2834. source = "registry+https://github.com/rust-lang/crates.io-index"
  2835. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  2836. dependencies = [
  2837. "libc",
  2838. "rand_chacha",
  2839. "rand_core",
  2840. ]
  2841. [[package]]
  2842. name = "rand_chacha"
  2843. version = "0.3.1"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  2846. dependencies = [
  2847. "ppv-lite86",
  2848. "rand_core",
  2849. ]
  2850. [[package]]
  2851. name = "rand_core"
  2852. version = "0.6.4"
  2853. source = "registry+https://github.com/rust-lang/crates.io-index"
  2854. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  2855. dependencies = [
  2856. "getrandom",
  2857. ]
  2858. [[package]]
  2859. name = "range-alloc"
  2860. version = "0.1.3"
  2861. source = "registry+https://github.com/rust-lang/crates.io-index"
  2862. checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
  2863. [[package]]
  2864. name = "rangemap"
  2865. version = "1.5.1"
  2866. source = "registry+https://github.com/rust-lang/crates.io-index"
  2867. checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684"
  2868. [[package]]
  2869. name = "raw-window-handle"
  2870. version = "0.6.2"
  2871. source = "registry+https://github.com/rust-lang/crates.io-index"
  2872. checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
  2873. [[package]]
  2874. name = "rayon"
  2875. version = "1.10.0"
  2876. source = "registry+https://github.com/rust-lang/crates.io-index"
  2877. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  2878. dependencies = [
  2879. "either",
  2880. "rayon-core",
  2881. ]
  2882. [[package]]
  2883. name = "rayon-core"
  2884. version = "1.12.1"
  2885. source = "registry+https://github.com/rust-lang/crates.io-index"
  2886. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  2887. dependencies = [
  2888. "crossbeam-deque",
  2889. "crossbeam-utils",
  2890. ]
  2891. [[package]]
  2892. name = "read-fonts"
  2893. version = "0.20.0"
  2894. source = "registry+https://github.com/rust-lang/crates.io-index"
  2895. checksum = "8c141b9980e1150201b2a3a32879001c8f975fe313ec3df5471a9b5c79a880cd"
  2896. dependencies = [
  2897. "bytemuck",
  2898. "font-types",
  2899. ]
  2900. [[package]]
  2901. name = "redox_syscall"
  2902. version = "0.2.16"
  2903. source = "registry+https://github.com/rust-lang/crates.io-index"
  2904. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  2905. dependencies = [
  2906. "bitflags 1.3.2",
  2907. ]
  2908. [[package]]
  2909. name = "redox_syscall"
  2910. version = "0.4.1"
  2911. source = "registry+https://github.com/rust-lang/crates.io-index"
  2912. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  2913. dependencies = [
  2914. "bitflags 1.3.2",
  2915. ]
  2916. [[package]]
  2917. name = "redox_syscall"
  2918. version = "0.5.3"
  2919. source = "registry+https://github.com/rust-lang/crates.io-index"
  2920. checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
  2921. dependencies = [
  2922. "bitflags 2.6.0",
  2923. ]
  2924. [[package]]
  2925. name = "redox_users"
  2926. version = "0.4.5"
  2927. source = "registry+https://github.com/rust-lang/crates.io-index"
  2928. checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
  2929. dependencies = [
  2930. "getrandom",
  2931. "libredox 0.1.3",
  2932. "thiserror",
  2933. ]
  2934. [[package]]
  2935. name = "renderdoc-sys"
  2936. version = "1.1.0"
  2937. source = "registry+https://github.com/rust-lang/crates.io-index"
  2938. checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
  2939. [[package]]
  2940. name = "reqwest"
  2941. version = "0.12.5"
  2942. source = "registry+https://github.com/rust-lang/crates.io-index"
  2943. checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
  2944. dependencies = [
  2945. "base64 0.22.1",
  2946. "bytes",
  2947. "encoding_rs",
  2948. "futures-core",
  2949. "futures-util",
  2950. "h2",
  2951. "http",
  2952. "http-body",
  2953. "http-body-util",
  2954. "hyper",
  2955. "hyper-rustls",
  2956. "hyper-tls",
  2957. "hyper-util",
  2958. "ipnet",
  2959. "js-sys",
  2960. "log",
  2961. "mime",
  2962. "native-tls",
  2963. "once_cell",
  2964. "percent-encoding",
  2965. "pin-project-lite",
  2966. "rustls-pemfile",
  2967. "serde",
  2968. "serde_json",
  2969. "serde_urlencoded",
  2970. "sync_wrapper",
  2971. "system-configuration",
  2972. "tokio",
  2973. "tokio-native-tls",
  2974. "tower-service",
  2975. "url",
  2976. "wasm-bindgen",
  2977. "wasm-bindgen-futures",
  2978. "web-sys",
  2979. "winreg 0.52.0",
  2980. ]
  2981. [[package]]
  2982. name = "ring"
  2983. version = "0.16.20"
  2984. source = "registry+https://github.com/rust-lang/crates.io-index"
  2985. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  2986. dependencies = [
  2987. "cc",
  2988. "libc",
  2989. "once_cell",
  2990. "spin 0.5.2",
  2991. "untrusted 0.7.1",
  2992. "web-sys",
  2993. "winapi",
  2994. ]
  2995. [[package]]
  2996. name = "ring"
  2997. version = "0.17.8"
  2998. source = "registry+https://github.com/rust-lang/crates.io-index"
  2999. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  3000. dependencies = [
  3001. "cc",
  3002. "cfg-if",
  3003. "getrandom",
  3004. "libc",
  3005. "spin 0.9.8",
  3006. "untrusted 0.9.0",
  3007. "windows-sys 0.52.0",
  3008. ]
  3009. [[package]]
  3010. name = "roxmltree"
  3011. version = "0.20.0"
  3012. source = "registry+https://github.com/rust-lang/crates.io-index"
  3013. checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
  3014. [[package]]
  3015. name = "rust-ini"
  3016. version = "0.18.0"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
  3019. dependencies = [
  3020. "cfg-if",
  3021. "ordered-multimap",
  3022. ]
  3023. [[package]]
  3024. name = "rustc-demangle"
  3025. version = "0.1.24"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  3028. [[package]]
  3029. name = "rustc-hash"
  3030. version = "1.1.0"
  3031. source = "registry+https://github.com/rust-lang/crates.io-index"
  3032. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3033. [[package]]
  3034. name = "rustc-hash"
  3035. version = "2.0.0"
  3036. source = "registry+https://github.com/rust-lang/crates.io-index"
  3037. checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
  3038. [[package]]
  3039. name = "rustix"
  3040. version = "0.38.34"
  3041. source = "registry+https://github.com/rust-lang/crates.io-index"
  3042. checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
  3043. dependencies = [
  3044. "bitflags 2.6.0",
  3045. "errno",
  3046. "libc",
  3047. "linux-raw-sys 0.4.14",
  3048. "windows-sys 0.52.0",
  3049. ]
  3050. [[package]]
  3051. name = "rustls"
  3052. version = "0.21.12"
  3053. source = "registry+https://github.com/rust-lang/crates.io-index"
  3054. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  3055. dependencies = [
  3056. "log",
  3057. "ring 0.17.8",
  3058. "rustls-webpki 0.101.7",
  3059. "sct",
  3060. ]
  3061. [[package]]
  3062. name = "rustls"
  3063. version = "0.22.4"
  3064. source = "registry+https://github.com/rust-lang/crates.io-index"
  3065. checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
  3066. dependencies = [
  3067. "log",
  3068. "ring 0.17.8",
  3069. "rustls-pki-types",
  3070. "rustls-webpki 0.102.6",
  3071. "subtle",
  3072. "zeroize",
  3073. ]
  3074. [[package]]
  3075. name = "rustls"
  3076. version = "0.23.12"
  3077. source = "registry+https://github.com/rust-lang/crates.io-index"
  3078. checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
  3079. dependencies = [
  3080. "once_cell",
  3081. "rustls-pki-types",
  3082. "rustls-webpki 0.102.6",
  3083. "subtle",
  3084. "zeroize",
  3085. ]
  3086. [[package]]
  3087. name = "rustls-pemfile"
  3088. version = "2.1.2"
  3089. source = "registry+https://github.com/rust-lang/crates.io-index"
  3090. checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
  3091. dependencies = [
  3092. "base64 0.22.1",
  3093. "rustls-pki-types",
  3094. ]
  3095. [[package]]
  3096. name = "rustls-pki-types"
  3097. version = "1.7.0"
  3098. source = "registry+https://github.com/rust-lang/crates.io-index"
  3099. checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
  3100. [[package]]
  3101. name = "rustls-webpki"
  3102. version = "0.100.3"
  3103. source = "registry+https://github.com/rust-lang/crates.io-index"
  3104. checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3"
  3105. dependencies = [
  3106. "ring 0.16.20",
  3107. "untrusted 0.7.1",
  3108. ]
  3109. [[package]]
  3110. name = "rustls-webpki"
  3111. version = "0.101.7"
  3112. source = "registry+https://github.com/rust-lang/crates.io-index"
  3113. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  3114. dependencies = [
  3115. "ring 0.17.8",
  3116. "untrusted 0.9.0",
  3117. ]
  3118. [[package]]
  3119. name = "rustls-webpki"
  3120. version = "0.102.6"
  3121. source = "registry+https://github.com/rust-lang/crates.io-index"
  3122. checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
  3123. dependencies = [
  3124. "ring 0.17.8",
  3125. "rustls-pki-types",
  3126. "untrusted 0.9.0",
  3127. ]
  3128. [[package]]
  3129. name = "rustybuzz"
  3130. version = "0.11.0"
  3131. source = "registry+https://github.com/rust-lang/crates.io-index"
  3132. checksum = "2ee8fe2a8461a0854a37101fe7a1b13998d0cfa987e43248e81d2a5f4570f6fa"
  3133. dependencies = [
  3134. "bitflags 1.3.2",
  3135. "bytemuck",
  3136. "libm",
  3137. "smallvec",
  3138. "ttf-parser 0.20.0",
  3139. "unicode-bidi-mirroring 0.1.0",
  3140. "unicode-ccc 0.1.2",
  3141. "unicode-properties",
  3142. "unicode-script",
  3143. ]
  3144. [[package]]
  3145. name = "rustybuzz"
  3146. version = "0.14.1"
  3147. source = "registry+https://github.com/rust-lang/crates.io-index"
  3148. checksum = "cfb9cf8877777222e4a3bc7eb247e398b56baba500c38c1c46842431adc8b55c"
  3149. dependencies = [
  3150. "bitflags 2.6.0",
  3151. "bytemuck",
  3152. "libm",
  3153. "smallvec",
  3154. "ttf-parser 0.21.1",
  3155. "unicode-bidi-mirroring 0.2.0",
  3156. "unicode-ccc 0.2.0",
  3157. "unicode-properties",
  3158. "unicode-script",
  3159. ]
  3160. [[package]]
  3161. name = "ryu"
  3162. version = "1.0.18"
  3163. source = "registry+https://github.com/rust-lang/crates.io-index"
  3164. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  3165. [[package]]
  3166. name = "same-file"
  3167. version = "1.0.6"
  3168. source = "registry+https://github.com/rust-lang/crates.io-index"
  3169. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3170. dependencies = [
  3171. "winapi-util",
  3172. ]
  3173. [[package]]
  3174. name = "schannel"
  3175. version = "0.1.23"
  3176. source = "registry+https://github.com/rust-lang/crates.io-index"
  3177. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  3178. dependencies = [
  3179. "windows-sys 0.52.0",
  3180. ]
  3181. [[package]]
  3182. name = "scoped-tls"
  3183. version = "1.0.1"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  3186. [[package]]
  3187. name = "scopeguard"
  3188. version = "1.2.0"
  3189. source = "registry+https://github.com/rust-lang/crates.io-index"
  3190. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  3191. [[package]]
  3192. name = "sct"
  3193. version = "0.7.1"
  3194. source = "registry+https://github.com/rust-lang/crates.io-index"
  3195. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  3196. dependencies = [
  3197. "ring 0.17.8",
  3198. "untrusted 0.9.0",
  3199. ]
  3200. [[package]]
  3201. name = "sctk-adwaita"
  3202. version = "0.9.1"
  3203. source = "registry+https://github.com/rust-lang/crates.io-index"
  3204. checksum = "7555fcb4f753d095d734fdefebb0ad8c98478a21db500492d87c55913d3b0086"
  3205. dependencies = [
  3206. "ab_glyph",
  3207. "log",
  3208. "memmap2 0.9.4",
  3209. "smithay-client-toolkit 0.18.1",
  3210. "tiny-skia",
  3211. ]
  3212. [[package]]
  3213. name = "security-framework"
  3214. version = "2.11.1"
  3215. source = "registry+https://github.com/rust-lang/crates.io-index"
  3216. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  3217. dependencies = [
  3218. "bitflags 2.6.0",
  3219. "core-foundation",
  3220. "core-foundation-sys",
  3221. "libc",
  3222. "security-framework-sys",
  3223. ]
  3224. [[package]]
  3225. name = "security-framework-sys"
  3226. version = "2.11.1"
  3227. source = "registry+https://github.com/rust-lang/crates.io-index"
  3228. checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
  3229. dependencies = [
  3230. "core-foundation-sys",
  3231. "libc",
  3232. ]
  3233. [[package]]
  3234. name = "self_cell"
  3235. version = "1.0.4"
  3236. source = "registry+https://github.com/rust-lang/crates.io-index"
  3237. checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a"
  3238. [[package]]
  3239. name = "serde"
  3240. version = "1.0.204"
  3241. source = "registry+https://github.com/rust-lang/crates.io-index"
  3242. checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
  3243. dependencies = [
  3244. "serde_derive",
  3245. ]
  3246. [[package]]
  3247. name = "serde_derive"
  3248. version = "1.0.204"
  3249. source = "registry+https://github.com/rust-lang/crates.io-index"
  3250. checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
  3251. dependencies = [
  3252. "proc-macro2",
  3253. "quote",
  3254. "syn 2.0.72",
  3255. ]
  3256. [[package]]
  3257. name = "serde_json"
  3258. version = "1.0.122"
  3259. source = "registry+https://github.com/rust-lang/crates.io-index"
  3260. checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da"
  3261. dependencies = [
  3262. "itoa",
  3263. "memchr",
  3264. "ryu",
  3265. "serde",
  3266. ]
  3267. [[package]]
  3268. name = "serde_repr"
  3269. version = "0.1.19"
  3270. source = "registry+https://github.com/rust-lang/crates.io-index"
  3271. checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
  3272. dependencies = [
  3273. "proc-macro2",
  3274. "quote",
  3275. "syn 2.0.72",
  3276. ]
  3277. [[package]]
  3278. name = "serde_urlencoded"
  3279. version = "0.7.1"
  3280. source = "registry+https://github.com/rust-lang/crates.io-index"
  3281. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3282. dependencies = [
  3283. "form_urlencoded",
  3284. "itoa",
  3285. "ryu",
  3286. "serde",
  3287. ]
  3288. [[package]]
  3289. name = "sha1"
  3290. version = "0.10.6"
  3291. source = "registry+https://github.com/rust-lang/crates.io-index"
  3292. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  3293. dependencies = [
  3294. "cfg-if",
  3295. "cpufeatures",
  3296. "digest",
  3297. ]
  3298. [[package]]
  3299. name = "sha2"
  3300. version = "0.10.8"
  3301. source = "registry+https://github.com/rust-lang/crates.io-index"
  3302. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  3303. dependencies = [
  3304. "cfg-if",
  3305. "cpufeatures",
  3306. "digest",
  3307. ]
  3308. [[package]]
  3309. name = "signal-hook-registry"
  3310. version = "1.4.2"
  3311. source = "registry+https://github.com/rust-lang/crates.io-index"
  3312. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  3313. dependencies = [
  3314. "libc",
  3315. ]
  3316. [[package]]
  3317. name = "simd-adler32"
  3318. version = "0.3.7"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  3321. [[package]]
  3322. name = "simdutf8"
  3323. version = "0.1.4"
  3324. source = "registry+https://github.com/rust-lang/crates.io-index"
  3325. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  3326. [[package]]
  3327. name = "siphasher"
  3328. version = "0.3.11"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  3331. [[package]]
  3332. name = "skrifa"
  3333. version = "0.20.0"
  3334. source = "registry+https://github.com/rust-lang/crates.io-index"
  3335. checksum = "abea4738067b1e628c6ce28b2c216c19e9ea95715cdb332680e821c3bec2ef23"
  3336. dependencies = [
  3337. "bytemuck",
  3338. "read-fonts",
  3339. ]
  3340. [[package]]
  3341. name = "slab"
  3342. version = "0.4.9"
  3343. source = "registry+https://github.com/rust-lang/crates.io-index"
  3344. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  3345. dependencies = [
  3346. "autocfg",
  3347. ]
  3348. [[package]]
  3349. name = "slotmap"
  3350. version = "1.0.7"
  3351. source = "registry+https://github.com/rust-lang/crates.io-index"
  3352. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  3353. dependencies = [
  3354. "version_check",
  3355. ]
  3356. [[package]]
  3357. name = "smallvec"
  3358. version = "1.13.2"
  3359. source = "registry+https://github.com/rust-lang/crates.io-index"
  3360. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  3361. [[package]]
  3362. name = "smithay-client-toolkit"
  3363. version = "0.18.1"
  3364. source = "registry+https://github.com/rust-lang/crates.io-index"
  3365. checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a"
  3366. dependencies = [
  3367. "bitflags 2.6.0",
  3368. "calloop 0.12.4",
  3369. "calloop-wayland-source 0.2.0",
  3370. "cursor-icon",
  3371. "libc",
  3372. "log",
  3373. "memmap2 0.9.4",
  3374. "rustix",
  3375. "thiserror",
  3376. "wayland-backend",
  3377. "wayland-client",
  3378. "wayland-csd-frame",
  3379. "wayland-cursor",
  3380. "wayland-protocols 0.31.2",
  3381. "wayland-protocols-wlr 0.2.0",
  3382. "wayland-scanner",
  3383. "xkeysym",
  3384. ]
  3385. [[package]]
  3386. name = "smithay-client-toolkit"
  3387. version = "0.19.2"
  3388. source = "registry+https://github.com/rust-lang/crates.io-index"
  3389. checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
  3390. dependencies = [
  3391. "bitflags 2.6.0",
  3392. "calloop 0.13.0",
  3393. "calloop-wayland-source 0.3.0",
  3394. "cursor-icon",
  3395. "libc",
  3396. "log",
  3397. "memmap2 0.9.4",
  3398. "rustix",
  3399. "thiserror",
  3400. "wayland-backend",
  3401. "wayland-client",
  3402. "wayland-csd-frame",
  3403. "wayland-cursor",
  3404. "wayland-protocols 0.32.3",
  3405. "wayland-protocols-wlr 0.3.3",
  3406. "wayland-scanner",
  3407. "xkeysym",
  3408. ]
  3409. [[package]]
  3410. name = "smithay-clipboard"
  3411. version = "0.7.2"
  3412. source = "registry+https://github.com/rust-lang/crates.io-index"
  3413. checksum = "cc8216eec463674a0e90f29e0ae41a4db573ec5b56b1c6c1c71615d249b6d846"
  3414. dependencies = [
  3415. "libc",
  3416. "smithay-client-toolkit 0.19.2",
  3417. "wayland-backend",
  3418. ]
  3419. [[package]]
  3420. name = "smol_str"
  3421. version = "0.2.2"
  3422. source = "registry+https://github.com/rust-lang/crates.io-index"
  3423. checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
  3424. dependencies = [
  3425. "serde",
  3426. ]
  3427. [[package]]
  3428. name = "socket2"
  3429. version = "0.5.7"
  3430. source = "registry+https://github.com/rust-lang/crates.io-index"
  3431. checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
  3432. dependencies = [
  3433. "libc",
  3434. "windows-sys 0.52.0",
  3435. ]
  3436. [[package]]
  3437. name = "softbuffer"
  3438. version = "0.4.5"
  3439. source = "registry+https://github.com/rust-lang/crates.io-index"
  3440. checksum = "d623bff5d06f60d738990980d782c8c866997d9194cfe79ecad00aa2f76826dd"
  3441. dependencies = [
  3442. "as-raw-xcb-connection",
  3443. "bytemuck",
  3444. "cfg_aliases 0.2.1",
  3445. "core-graphics",
  3446. "drm",
  3447. "fastrand",
  3448. "foreign-types 0.5.0",
  3449. "js-sys",
  3450. "log",
  3451. "memmap2 0.9.4",
  3452. "objc2",
  3453. "objc2-app-kit",
  3454. "objc2-foundation",
  3455. "objc2-quartz-core",
  3456. "raw-window-handle",
  3457. "redox_syscall 0.5.3",
  3458. "rustix",
  3459. "tiny-xlib",
  3460. "wasm-bindgen",
  3461. "wayland-backend",
  3462. "wayland-client",
  3463. "wayland-sys",
  3464. "web-sys",
  3465. "windows-sys 0.52.0",
  3466. "x11rb",
  3467. ]
  3468. [[package]]
  3469. name = "sonic-rs"
  3470. version = "0.3.9"
  3471. source = "registry+https://github.com/rust-lang/crates.io-index"
  3472. checksum = "7058da431abe9e139d5eaa814786c0796cba76a6745b2edb48d9b3991edbd976"
  3473. dependencies = [
  3474. "arrayref",
  3475. "bumpalo",
  3476. "bytes",
  3477. "cfg-if",
  3478. "faststr",
  3479. "itoa",
  3480. "page_size",
  3481. "parking_lot 0.12.3",
  3482. "ryu",
  3483. "serde",
  3484. "simdutf8",
  3485. "smallvec",
  3486. "thiserror",
  3487. ]
  3488. [[package]]
  3489. name = "spin"
  3490. version = "0.5.2"
  3491. source = "registry+https://github.com/rust-lang/crates.io-index"
  3492. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3493. [[package]]
  3494. name = "spin"
  3495. version = "0.9.8"
  3496. source = "registry+https://github.com/rust-lang/crates.io-index"
  3497. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  3498. [[package]]
  3499. name = "spirv"
  3500. version = "0.3.0+sdk-1.3.268.0"
  3501. source = "registry+https://github.com/rust-lang/crates.io-index"
  3502. checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
  3503. dependencies = [
  3504. "bitflags 2.6.0",
  3505. ]
  3506. [[package]]
  3507. name = "static_assertions"
  3508. version = "1.1.0"
  3509. source = "registry+https://github.com/rust-lang/crates.io-index"
  3510. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3511. [[package]]
  3512. name = "strict-num"
  3513. version = "0.1.1"
  3514. source = "registry+https://github.com/rust-lang/crates.io-index"
  3515. checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
  3516. [[package]]
  3517. name = "subtle"
  3518. version = "2.6.1"
  3519. source = "registry+https://github.com/rust-lang/crates.io-index"
  3520. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  3521. [[package]]
  3522. name = "svg_fmt"
  3523. version = "0.4.3"
  3524. source = "registry+https://github.com/rust-lang/crates.io-index"
  3525. checksum = "20e16a0f46cf5fd675563ef54f26e83e20f2366bcf027bcb3cc3ed2b98aaf2ca"
  3526. [[package]]
  3527. name = "swash"
  3528. version = "0.1.18"
  3529. source = "registry+https://github.com/rust-lang/crates.io-index"
  3530. checksum = "93cdc334a50fcc2aa3f04761af3b28196280a6aaadb1ef11215c478ae32615ac"
  3531. dependencies = [
  3532. "skrifa",
  3533. "yazi",
  3534. "zeno",
  3535. ]
  3536. [[package]]
  3537. name = "syn"
  3538. version = "1.0.109"
  3539. source = "registry+https://github.com/rust-lang/crates.io-index"
  3540. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  3541. dependencies = [
  3542. "proc-macro2",
  3543. "quote",
  3544. "unicode-ident",
  3545. ]
  3546. [[package]]
  3547. name = "syn"
  3548. version = "2.0.72"
  3549. source = "registry+https://github.com/rust-lang/crates.io-index"
  3550. checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
  3551. dependencies = [
  3552. "proc-macro2",
  3553. "quote",
  3554. "unicode-ident",
  3555. ]
  3556. [[package]]
  3557. name = "sync_wrapper"
  3558. version = "1.0.1"
  3559. source = "registry+https://github.com/rust-lang/crates.io-index"
  3560. checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
  3561. [[package]]
  3562. name = "sys-locale"
  3563. version = "0.3.1"
  3564. source = "registry+https://github.com/rust-lang/crates.io-index"
  3565. checksum = "e801cf239ecd6ccd71f03d270d67dd53d13e90aab208bf4b8fe4ad957ea949b0"
  3566. dependencies = [
  3567. "libc",
  3568. ]
  3569. [[package]]
  3570. name = "system-configuration"
  3571. version = "0.5.1"
  3572. source = "registry+https://github.com/rust-lang/crates.io-index"
  3573. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  3574. dependencies = [
  3575. "bitflags 1.3.2",
  3576. "core-foundation",
  3577. "system-configuration-sys",
  3578. ]
  3579. [[package]]
  3580. name = "system-configuration-sys"
  3581. version = "0.5.0"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  3584. dependencies = [
  3585. "core-foundation-sys",
  3586. "libc",
  3587. ]
  3588. [[package]]
  3589. name = "tempfile"
  3590. version = "3.10.1"
  3591. source = "registry+https://github.com/rust-lang/crates.io-index"
  3592. checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
  3593. dependencies = [
  3594. "cfg-if",
  3595. "fastrand",
  3596. "rustix",
  3597. "windows-sys 0.52.0",
  3598. ]
  3599. [[package]]
  3600. name = "termcolor"
  3601. version = "1.4.1"
  3602. source = "registry+https://github.com/rust-lang/crates.io-index"
  3603. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  3604. dependencies = [
  3605. "winapi-util",
  3606. ]
  3607. [[package]]
  3608. name = "thiserror"
  3609. version = "1.0.63"
  3610. source = "registry+https://github.com/rust-lang/crates.io-index"
  3611. checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
  3612. dependencies = [
  3613. "thiserror-impl",
  3614. ]
  3615. [[package]]
  3616. name = "thiserror-impl"
  3617. version = "1.0.63"
  3618. source = "registry+https://github.com/rust-lang/crates.io-index"
  3619. checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
  3620. dependencies = [
  3621. "proc-macro2",
  3622. "quote",
  3623. "syn 2.0.72",
  3624. ]
  3625. [[package]]
  3626. name = "tiny-skia"
  3627. version = "0.11.4"
  3628. source = "registry+https://github.com/rust-lang/crates.io-index"
  3629. checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
  3630. dependencies = [
  3631. "arrayref",
  3632. "arrayvec",
  3633. "bytemuck",
  3634. "cfg-if",
  3635. "log",
  3636. "png",
  3637. "tiny-skia-path",
  3638. ]
  3639. [[package]]
  3640. name = "tiny-skia-path"
  3641. version = "0.11.4"
  3642. source = "registry+https://github.com/rust-lang/crates.io-index"
  3643. checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
  3644. dependencies = [
  3645. "arrayref",
  3646. "bytemuck",
  3647. "strict-num",
  3648. ]
  3649. [[package]]
  3650. name = "tiny-xlib"
  3651. version = "0.2.3"
  3652. source = "registry+https://github.com/rust-lang/crates.io-index"
  3653. checksum = "1d52f22673960ad13af14ff4025997312def1223bfa7c8e4949d099e6b3d5d1c"
  3654. dependencies = [
  3655. "as-raw-xcb-connection",
  3656. "ctor-lite",
  3657. "libloading 0.8.5",
  3658. "pkg-config",
  3659. "tracing",
  3660. ]
  3661. [[package]]
  3662. name = "tinyvec"
  3663. version = "1.8.0"
  3664. source = "registry+https://github.com/rust-lang/crates.io-index"
  3665. checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
  3666. dependencies = [
  3667. "tinyvec_macros",
  3668. ]
  3669. [[package]]
  3670. name = "tinyvec_macros"
  3671. version = "0.1.1"
  3672. source = "registry+https://github.com/rust-lang/crates.io-index"
  3673. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  3674. [[package]]
  3675. name = "tokio"
  3676. version = "1.39.2"
  3677. source = "registry+https://github.com/rust-lang/crates.io-index"
  3678. checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
  3679. dependencies = [
  3680. "backtrace",
  3681. "bytes",
  3682. "libc",
  3683. "mio",
  3684. "parking_lot 0.12.3",
  3685. "pin-project-lite",
  3686. "signal-hook-registry",
  3687. "socket2",
  3688. "tokio-macros",
  3689. "windows-sys 0.52.0",
  3690. ]
  3691. [[package]]
  3692. name = "tokio-macros"
  3693. version = "2.4.0"
  3694. source = "registry+https://github.com/rust-lang/crates.io-index"
  3695. checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
  3696. dependencies = [
  3697. "proc-macro2",
  3698. "quote",
  3699. "syn 2.0.72",
  3700. ]
  3701. [[package]]
  3702. name = "tokio-native-tls"
  3703. version = "0.3.1"
  3704. source = "registry+https://github.com/rust-lang/crates.io-index"
  3705. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  3706. dependencies = [
  3707. "native-tls",
  3708. "tokio",
  3709. ]
  3710. [[package]]
  3711. name = "tokio-rustls"
  3712. version = "0.24.1"
  3713. source = "registry+https://github.com/rust-lang/crates.io-index"
  3714. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  3715. dependencies = [
  3716. "rustls 0.21.12",
  3717. "tokio",
  3718. ]
  3719. [[package]]
  3720. name = "tokio-rustls"
  3721. version = "0.25.0"
  3722. source = "registry+https://github.com/rust-lang/crates.io-index"
  3723. checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
  3724. dependencies = [
  3725. "rustls 0.22.4",
  3726. "rustls-pki-types",
  3727. "tokio",
  3728. ]
  3729. [[package]]
  3730. name = "tokio-rustls"
  3731. version = "0.26.0"
  3732. source = "registry+https://github.com/rust-lang/crates.io-index"
  3733. checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
  3734. dependencies = [
  3735. "rustls 0.23.12",
  3736. "rustls-pki-types",
  3737. "tokio",
  3738. ]
  3739. [[package]]
  3740. name = "tokio-tungstenite"
  3741. version = "0.21.0"
  3742. source = "registry+https://github.com/rust-lang/crates.io-index"
  3743. checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
  3744. dependencies = [
  3745. "futures-util",
  3746. "log",
  3747. "tokio",
  3748. "tungstenite",
  3749. ]
  3750. [[package]]
  3751. name = "tokio-util"
  3752. version = "0.7.11"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
  3755. dependencies = [
  3756. "bytes",
  3757. "futures-core",
  3758. "futures-sink",
  3759. "pin-project-lite",
  3760. "tokio",
  3761. ]
  3762. [[package]]
  3763. name = "toml_datetime"
  3764. version = "0.6.8"
  3765. source = "registry+https://github.com/rust-lang/crates.io-index"
  3766. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  3767. [[package]]
  3768. name = "toml_edit"
  3769. version = "0.21.1"
  3770. source = "registry+https://github.com/rust-lang/crates.io-index"
  3771. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  3772. dependencies = [
  3773. "indexmap",
  3774. "toml_datetime",
  3775. "winnow",
  3776. ]
  3777. [[package]]
  3778. name = "tower"
  3779. version = "0.4.13"
  3780. source = "registry+https://github.com/rust-lang/crates.io-index"
  3781. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  3782. dependencies = [
  3783. "futures-core",
  3784. "futures-util",
  3785. "pin-project",
  3786. "pin-project-lite",
  3787. "tokio",
  3788. "tower-layer",
  3789. "tower-service",
  3790. ]
  3791. [[package]]
  3792. name = "tower-layer"
  3793. version = "0.3.2"
  3794. source = "registry+https://github.com/rust-lang/crates.io-index"
  3795. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  3796. [[package]]
  3797. name = "tower-service"
  3798. version = "0.3.2"
  3799. source = "registry+https://github.com/rust-lang/crates.io-index"
  3800. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  3801. [[package]]
  3802. name = "tracing"
  3803. version = "0.1.40"
  3804. source = "registry+https://github.com/rust-lang/crates.io-index"
  3805. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  3806. dependencies = [
  3807. "pin-project-lite",
  3808. "tracing-attributes",
  3809. "tracing-core",
  3810. ]
  3811. [[package]]
  3812. name = "tracing-attributes"
  3813. version = "0.1.27"
  3814. source = "registry+https://github.com/rust-lang/crates.io-index"
  3815. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  3816. dependencies = [
  3817. "proc-macro2",
  3818. "quote",
  3819. "syn 2.0.72",
  3820. ]
  3821. [[package]]
  3822. name = "tracing-core"
  3823. version = "0.1.32"
  3824. source = "registry+https://github.com/rust-lang/crates.io-index"
  3825. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  3826. dependencies = [
  3827. "once_cell",
  3828. ]
  3829. [[package]]
  3830. name = "try-lock"
  3831. version = "0.2.5"
  3832. source = "registry+https://github.com/rust-lang/crates.io-index"
  3833. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  3834. [[package]]
  3835. name = "ttf-parser"
  3836. version = "0.19.2"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
  3839. [[package]]
  3840. name = "ttf-parser"
  3841. version = "0.20.0"
  3842. source = "registry+https://github.com/rust-lang/crates.io-index"
  3843. checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
  3844. [[package]]
  3845. name = "ttf-parser"
  3846. version = "0.21.1"
  3847. source = "registry+https://github.com/rust-lang/crates.io-index"
  3848. checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
  3849. [[package]]
  3850. name = "ttf-parser"
  3851. version = "0.24.0"
  3852. source = "registry+https://github.com/rust-lang/crates.io-index"
  3853. checksum = "8686b91785aff82828ed725225925b33b4fde44c4bb15876e5f7c832724c420a"
  3854. [[package]]
  3855. name = "tungstenite"
  3856. version = "0.21.0"
  3857. source = "registry+https://github.com/rust-lang/crates.io-index"
  3858. checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
  3859. dependencies = [
  3860. "byteorder",
  3861. "bytes",
  3862. "data-encoding",
  3863. "http",
  3864. "httparse",
  3865. "log",
  3866. "rand",
  3867. "rustls 0.22.4",
  3868. "rustls-pki-types",
  3869. "sha1",
  3870. "thiserror",
  3871. "url",
  3872. "utf-8",
  3873. ]
  3874. [[package]]
  3875. name = "typenum"
  3876. version = "1.17.0"
  3877. source = "registry+https://github.com/rust-lang/crates.io-index"
  3878. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  3879. [[package]]
  3880. name = "uds_windows"
  3881. version = "1.1.0"
  3882. source = "registry+https://github.com/rust-lang/crates.io-index"
  3883. checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
  3884. dependencies = [
  3885. "memoffset",
  3886. "tempfile",
  3887. "winapi",
  3888. ]
  3889. [[package]]
  3890. name = "unicode-bidi"
  3891. version = "0.3.15"
  3892. source = "registry+https://github.com/rust-lang/crates.io-index"
  3893. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  3894. [[package]]
  3895. name = "unicode-bidi-mirroring"
  3896. version = "0.1.0"
  3897. source = "registry+https://github.com/rust-lang/crates.io-index"
  3898. checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
  3899. [[package]]
  3900. name = "unicode-bidi-mirroring"
  3901. version = "0.2.0"
  3902. source = "registry+https://github.com/rust-lang/crates.io-index"
  3903. checksum = "23cb788ffebc92c5948d0e997106233eeb1d8b9512f93f41651f52b6c5f5af86"
  3904. [[package]]
  3905. name = "unicode-ccc"
  3906. version = "0.1.2"
  3907. source = "registry+https://github.com/rust-lang/crates.io-index"
  3908. checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1"
  3909. [[package]]
  3910. name = "unicode-ccc"
  3911. version = "0.2.0"
  3912. source = "registry+https://github.com/rust-lang/crates.io-index"
  3913. checksum = "1df77b101bcc4ea3d78dafc5ad7e4f58ceffe0b2b16bf446aeb50b6cb4157656"
  3914. [[package]]
  3915. name = "unicode-ident"
  3916. version = "1.0.12"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  3919. [[package]]
  3920. name = "unicode-linebreak"
  3921. version = "0.1.5"
  3922. source = "registry+https://github.com/rust-lang/crates.io-index"
  3923. checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
  3924. [[package]]
  3925. name = "unicode-normalization"
  3926. version = "0.1.23"
  3927. source = "registry+https://github.com/rust-lang/crates.io-index"
  3928. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  3929. dependencies = [
  3930. "tinyvec",
  3931. ]
  3932. [[package]]
  3933. name = "unicode-properties"
  3934. version = "0.1.1"
  3935. source = "registry+https://github.com/rust-lang/crates.io-index"
  3936. checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
  3937. [[package]]
  3938. name = "unicode-script"
  3939. version = "0.5.6"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "ad8d71f5726e5f285a935e9fe8edfd53f0491eb6e9a5774097fdabee7cd8c9cd"
  3942. [[package]]
  3943. name = "unicode-segmentation"
  3944. version = "1.11.0"
  3945. source = "registry+https://github.com/rust-lang/crates.io-index"
  3946. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  3947. [[package]]
  3948. name = "unicode-width"
  3949. version = "0.1.13"
  3950. source = "registry+https://github.com/rust-lang/crates.io-index"
  3951. checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
  3952. [[package]]
  3953. name = "unicode-xid"
  3954. version = "0.2.4"
  3955. source = "registry+https://github.com/rust-lang/crates.io-index"
  3956. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  3957. [[package]]
  3958. name = "untrusted"
  3959. version = "0.7.1"
  3960. source = "registry+https://github.com/rust-lang/crates.io-index"
  3961. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  3962. [[package]]
  3963. name = "untrusted"
  3964. version = "0.9.0"
  3965. source = "registry+https://github.com/rust-lang/crates.io-index"
  3966. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  3967. [[package]]
  3968. name = "url"
  3969. version = "2.5.2"
  3970. source = "registry+https://github.com/rust-lang/crates.io-index"
  3971. checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
  3972. dependencies = [
  3973. "form_urlencoded",
  3974. "idna",
  3975. "percent-encoding",
  3976. ]
  3977. [[package]]
  3978. name = "utf-8"
  3979. version = "0.7.6"
  3980. source = "registry+https://github.com/rust-lang/crates.io-index"
  3981. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  3982. [[package]]
  3983. name = "uuid"
  3984. version = "1.10.0"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
  3987. dependencies = [
  3988. "getrandom",
  3989. ]
  3990. [[package]]
  3991. name = "vcpkg"
  3992. version = "0.2.15"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  3995. [[package]]
  3996. name = "version_check"
  3997. version = "0.9.5"
  3998. source = "registry+https://github.com/rust-lang/crates.io-index"
  3999. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  4000. [[package]]
  4001. name = "walkdir"
  4002. version = "2.5.0"
  4003. source = "registry+https://github.com/rust-lang/crates.io-index"
  4004. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  4005. dependencies = [
  4006. "same-file",
  4007. "winapi-util",
  4008. ]
  4009. [[package]]
  4010. name = "want"
  4011. version = "0.3.1"
  4012. source = "registry+https://github.com/rust-lang/crates.io-index"
  4013. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  4014. dependencies = [
  4015. "try-lock",
  4016. ]
  4017. [[package]]
  4018. name = "wasi"
  4019. version = "0.11.0+wasi-snapshot-preview1"
  4020. source = "registry+https://github.com/rust-lang/crates.io-index"
  4021. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4022. [[package]]
  4023. name = "wasm-bindgen"
  4024. version = "0.2.92"
  4025. source = "registry+https://github.com/rust-lang/crates.io-index"
  4026. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  4027. dependencies = [
  4028. "cfg-if",
  4029. "wasm-bindgen-macro",
  4030. ]
  4031. [[package]]
  4032. name = "wasm-bindgen-backend"
  4033. version = "0.2.92"
  4034. source = "registry+https://github.com/rust-lang/crates.io-index"
  4035. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  4036. dependencies = [
  4037. "bumpalo",
  4038. "log",
  4039. "once_cell",
  4040. "proc-macro2",
  4041. "quote",
  4042. "syn 2.0.72",
  4043. "wasm-bindgen-shared",
  4044. ]
  4045. [[package]]
  4046. name = "wasm-bindgen-futures"
  4047. version = "0.4.42"
  4048. source = "registry+https://github.com/rust-lang/crates.io-index"
  4049. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  4050. dependencies = [
  4051. "cfg-if",
  4052. "js-sys",
  4053. "wasm-bindgen",
  4054. "web-sys",
  4055. ]
  4056. [[package]]
  4057. name = "wasm-bindgen-macro"
  4058. version = "0.2.92"
  4059. source = "registry+https://github.com/rust-lang/crates.io-index"
  4060. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  4061. dependencies = [
  4062. "quote",
  4063. "wasm-bindgen-macro-support",
  4064. ]
  4065. [[package]]
  4066. name = "wasm-bindgen-macro-support"
  4067. version = "0.2.92"
  4068. source = "registry+https://github.com/rust-lang/crates.io-index"
  4069. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  4070. dependencies = [
  4071. "proc-macro2",
  4072. "quote",
  4073. "syn 2.0.72",
  4074. "wasm-bindgen-backend",
  4075. "wasm-bindgen-shared",
  4076. ]
  4077. [[package]]
  4078. name = "wasm-bindgen-shared"
  4079. version = "0.2.92"
  4080. source = "registry+https://github.com/rust-lang/crates.io-index"
  4081. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  4082. [[package]]
  4083. name = "wasm-timer"
  4084. version = "0.2.5"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
  4087. dependencies = [
  4088. "futures",
  4089. "js-sys",
  4090. "parking_lot 0.11.2",
  4091. "pin-utils",
  4092. "wasm-bindgen",
  4093. "wasm-bindgen-futures",
  4094. "web-sys",
  4095. ]
  4096. [[package]]
  4097. name = "wayland-backend"
  4098. version = "0.3.6"
  4099. source = "registry+https://github.com/rust-lang/crates.io-index"
  4100. checksum = "f90e11ce2ca99c97b940ee83edbae9da2d56a08f9ea8158550fd77fa31722993"
  4101. dependencies = [
  4102. "cc",
  4103. "downcast-rs",
  4104. "rustix",
  4105. "scoped-tls",
  4106. "smallvec",
  4107. "wayland-sys",
  4108. ]
  4109. [[package]]
  4110. name = "wayland-client"
  4111. version = "0.31.5"
  4112. source = "registry+https://github.com/rust-lang/crates.io-index"
  4113. checksum = "7e321577a0a165911bdcfb39cf029302479d7527b517ee58ab0f6ad09edf0943"
  4114. dependencies = [
  4115. "bitflags 2.6.0",
  4116. "rustix",
  4117. "wayland-backend",
  4118. "wayland-scanner",
  4119. ]
  4120. [[package]]
  4121. name = "wayland-csd-frame"
  4122. version = "0.3.0"
  4123. source = "registry+https://github.com/rust-lang/crates.io-index"
  4124. checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
  4125. dependencies = [
  4126. "bitflags 2.6.0",
  4127. "cursor-icon",
  4128. "wayland-backend",
  4129. ]
  4130. [[package]]
  4131. name = "wayland-cursor"
  4132. version = "0.31.5"
  4133. source = "registry+https://github.com/rust-lang/crates.io-index"
  4134. checksum = "6ef9489a8df197ebf3a8ce8a7a7f0a2320035c3743f3c1bd0bdbccf07ce64f95"
  4135. dependencies = [
  4136. "rustix",
  4137. "wayland-client",
  4138. "xcursor",
  4139. ]
  4140. [[package]]
  4141. name = "wayland-protocols"
  4142. version = "0.31.2"
  4143. source = "registry+https://github.com/rust-lang/crates.io-index"
  4144. checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
  4145. dependencies = [
  4146. "bitflags 2.6.0",
  4147. "wayland-backend",
  4148. "wayland-client",
  4149. "wayland-scanner",
  4150. ]
  4151. [[package]]
  4152. name = "wayland-protocols"
  4153. version = "0.32.3"
  4154. source = "registry+https://github.com/rust-lang/crates.io-index"
  4155. checksum = "62989625a776e827cc0f15d41444a3cea5205b963c3a25be48ae1b52d6b4daaa"
  4156. dependencies = [
  4157. "bitflags 2.6.0",
  4158. "wayland-backend",
  4159. "wayland-client",
  4160. "wayland-scanner",
  4161. ]
  4162. [[package]]
  4163. name = "wayland-protocols-plasma"
  4164. version = "0.2.0"
  4165. source = "registry+https://github.com/rust-lang/crates.io-index"
  4166. checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479"
  4167. dependencies = [
  4168. "bitflags 2.6.0",
  4169. "wayland-backend",
  4170. "wayland-client",
  4171. "wayland-protocols 0.31.2",
  4172. "wayland-scanner",
  4173. ]
  4174. [[package]]
  4175. name = "wayland-protocols-wlr"
  4176. version = "0.2.0"
  4177. source = "registry+https://github.com/rust-lang/crates.io-index"
  4178. checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
  4179. dependencies = [
  4180. "bitflags 2.6.0",
  4181. "wayland-backend",
  4182. "wayland-client",
  4183. "wayland-protocols 0.31.2",
  4184. "wayland-scanner",
  4185. ]
  4186. [[package]]
  4187. name = "wayland-protocols-wlr"
  4188. version = "0.3.3"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "fd993de54a40a40fbe5601d9f1fbcaef0aebcc5fda447d7dc8f6dcbaae4f8953"
  4191. dependencies = [
  4192. "bitflags 2.6.0",
  4193. "wayland-backend",
  4194. "wayland-client",
  4195. "wayland-protocols 0.32.3",
  4196. "wayland-scanner",
  4197. ]
  4198. [[package]]
  4199. name = "wayland-scanner"
  4200. version = "0.31.4"
  4201. source = "registry+https://github.com/rust-lang/crates.io-index"
  4202. checksum = "d7b56f89937f1cf2ee1f1259cf2936a17a1f45d8f0aa1019fae6d470d304cfa6"
  4203. dependencies = [
  4204. "proc-macro2",
  4205. "quick-xml",
  4206. "quote",
  4207. ]
  4208. [[package]]
  4209. name = "wayland-sys"
  4210. version = "0.31.4"
  4211. source = "registry+https://github.com/rust-lang/crates.io-index"
  4212. checksum = "43676fe2daf68754ecf1d72026e4e6c15483198b5d24e888b74d3f22f887a148"
  4213. dependencies = [
  4214. "dlib",
  4215. "log",
  4216. "once_cell",
  4217. "pkg-config",
  4218. ]
  4219. [[package]]
  4220. name = "web-sys"
  4221. version = "0.3.67"
  4222. source = "registry+https://github.com/rust-lang/crates.io-index"
  4223. checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed"
  4224. dependencies = [
  4225. "js-sys",
  4226. "wasm-bindgen",
  4227. ]
  4228. [[package]]
  4229. name = "web-time"
  4230. version = "0.2.4"
  4231. source = "registry+https://github.com/rust-lang/crates.io-index"
  4232. checksum = "aa30049b1c872b72c89866d458eae9f20380ab280ffd1b1e18df2d3e2d98cfe0"
  4233. dependencies = [
  4234. "js-sys",
  4235. "wasm-bindgen",
  4236. ]
  4237. [[package]]
  4238. name = "web-time"
  4239. version = "1.1.0"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  4242. dependencies = [
  4243. "js-sys",
  4244. "wasm-bindgen",
  4245. ]
  4246. [[package]]
  4247. name = "webpki-roots"
  4248. version = "0.23.1"
  4249. source = "registry+https://github.com/rust-lang/crates.io-index"
  4250. checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338"
  4251. dependencies = [
  4252. "rustls-webpki 0.100.3",
  4253. ]
  4254. [[package]]
  4255. name = "webpki-roots"
  4256. version = "0.26.3"
  4257. source = "registry+https://github.com/rust-lang/crates.io-index"
  4258. checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
  4259. dependencies = [
  4260. "rustls-pki-types",
  4261. ]
  4262. [[package]]
  4263. name = "wgpu"
  4264. version = "0.19.4"
  4265. source = "registry+https://github.com/rust-lang/crates.io-index"
  4266. checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01"
  4267. dependencies = [
  4268. "arrayvec",
  4269. "cfg-if",
  4270. "cfg_aliases 0.1.1",
  4271. "js-sys",
  4272. "log",
  4273. "naga",
  4274. "parking_lot 0.12.3",
  4275. "profiling",
  4276. "raw-window-handle",
  4277. "smallvec",
  4278. "static_assertions",
  4279. "wasm-bindgen",
  4280. "wasm-bindgen-futures",
  4281. "web-sys",
  4282. "wgpu-core",
  4283. "wgpu-hal",
  4284. "wgpu-types",
  4285. ]
  4286. [[package]]
  4287. name = "wgpu-core"
  4288. version = "0.19.4"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a"
  4291. dependencies = [
  4292. "arrayvec",
  4293. "bit-vec",
  4294. "bitflags 2.6.0",
  4295. "cfg_aliases 0.1.1",
  4296. "codespan-reporting",
  4297. "indexmap",
  4298. "log",
  4299. "naga",
  4300. "once_cell",
  4301. "parking_lot 0.12.3",
  4302. "profiling",
  4303. "raw-window-handle",
  4304. "rustc-hash 1.1.0",
  4305. "smallvec",
  4306. "thiserror",
  4307. "web-sys",
  4308. "wgpu-hal",
  4309. "wgpu-types",
  4310. ]
  4311. [[package]]
  4312. name = "wgpu-hal"
  4313. version = "0.19.5"
  4314. source = "registry+https://github.com/rust-lang/crates.io-index"
  4315. checksum = "bfabcfc55fd86611a855816326b2d54c3b2fd7972c27ce414291562650552703"
  4316. dependencies = [
  4317. "android_system_properties",
  4318. "arrayvec",
  4319. "ash",
  4320. "bit-set",
  4321. "bitflags 2.6.0",
  4322. "block",
  4323. "cfg_aliases 0.1.1",
  4324. "core-graphics-types",
  4325. "d3d12",
  4326. "glow",
  4327. "glutin_wgl_sys",
  4328. "gpu-alloc",
  4329. "gpu-allocator",
  4330. "gpu-descriptor",
  4331. "hassle-rs",
  4332. "js-sys",
  4333. "khronos-egl",
  4334. "libc",
  4335. "libloading 0.8.5",
  4336. "log",
  4337. "metal",
  4338. "naga",
  4339. "ndk-sys 0.5.0+25.2.9519653",
  4340. "objc",
  4341. "once_cell",
  4342. "parking_lot 0.12.3",
  4343. "profiling",
  4344. "range-alloc",
  4345. "raw-window-handle",
  4346. "renderdoc-sys",
  4347. "rustc-hash 1.1.0",
  4348. "smallvec",
  4349. "thiserror",
  4350. "wasm-bindgen",
  4351. "web-sys",
  4352. "wgpu-types",
  4353. "winapi",
  4354. ]
  4355. [[package]]
  4356. name = "wgpu-types"
  4357. version = "0.19.2"
  4358. source = "registry+https://github.com/rust-lang/crates.io-index"
  4359. checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
  4360. dependencies = [
  4361. "bitflags 2.6.0",
  4362. "js-sys",
  4363. "web-sys",
  4364. ]
  4365. [[package]]
  4366. name = "widestring"
  4367. version = "1.1.0"
  4368. source = "registry+https://github.com/rust-lang/crates.io-index"
  4369. checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
  4370. [[package]]
  4371. name = "winapi"
  4372. version = "0.3.9"
  4373. source = "registry+https://github.com/rust-lang/crates.io-index"
  4374. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4375. dependencies = [
  4376. "winapi-i686-pc-windows-gnu",
  4377. "winapi-x86_64-pc-windows-gnu",
  4378. ]
  4379. [[package]]
  4380. name = "winapi-i686-pc-windows-gnu"
  4381. version = "0.4.0"
  4382. source = "registry+https://github.com/rust-lang/crates.io-index"
  4383. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4384. [[package]]
  4385. name = "winapi-util"
  4386. version = "0.1.8"
  4387. source = "registry+https://github.com/rust-lang/crates.io-index"
  4388. checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
  4389. dependencies = [
  4390. "windows-sys 0.52.0",
  4391. ]
  4392. [[package]]
  4393. name = "winapi-x86_64-pc-windows-gnu"
  4394. version = "0.4.0"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4397. [[package]]
  4398. name = "window_clipboard"
  4399. version = "0.4.1"
  4400. source = "registry+https://github.com/rust-lang/crates.io-index"
  4401. checksum = "f6d692d46038c433f9daee7ad8757e002a4248c20b0a3fbc991d99521d3bcb6d"
  4402. dependencies = [
  4403. "clipboard-win",
  4404. "clipboard_macos",
  4405. "clipboard_wayland",
  4406. "clipboard_x11",
  4407. "raw-window-handle",
  4408. "thiserror",
  4409. ]
  4410. [[package]]
  4411. name = "windows"
  4412. version = "0.52.0"
  4413. source = "registry+https://github.com/rust-lang/crates.io-index"
  4414. checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
  4415. dependencies = [
  4416. "windows-core",
  4417. "windows-targets 0.52.6",
  4418. ]
  4419. [[package]]
  4420. name = "windows-core"
  4421. version = "0.52.0"
  4422. source = "registry+https://github.com/rust-lang/crates.io-index"
  4423. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  4424. dependencies = [
  4425. "windows-targets 0.52.6",
  4426. ]
  4427. [[package]]
  4428. name = "windows-sys"
  4429. version = "0.45.0"
  4430. source = "registry+https://github.com/rust-lang/crates.io-index"
  4431. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4432. dependencies = [
  4433. "windows-targets 0.42.2",
  4434. ]
  4435. [[package]]
  4436. name = "windows-sys"
  4437. version = "0.48.0"
  4438. source = "registry+https://github.com/rust-lang/crates.io-index"
  4439. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  4440. dependencies = [
  4441. "windows-targets 0.48.5",
  4442. ]
  4443. [[package]]
  4444. name = "windows-sys"
  4445. version = "0.52.0"
  4446. source = "registry+https://github.com/rust-lang/crates.io-index"
  4447. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  4448. dependencies = [
  4449. "windows-targets 0.52.6",
  4450. ]
  4451. [[package]]
  4452. name = "windows-targets"
  4453. version = "0.42.2"
  4454. source = "registry+https://github.com/rust-lang/crates.io-index"
  4455. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  4456. dependencies = [
  4457. "windows_aarch64_gnullvm 0.42.2",
  4458. "windows_aarch64_msvc 0.42.2",
  4459. "windows_i686_gnu 0.42.2",
  4460. "windows_i686_msvc 0.42.2",
  4461. "windows_x86_64_gnu 0.42.2",
  4462. "windows_x86_64_gnullvm 0.42.2",
  4463. "windows_x86_64_msvc 0.42.2",
  4464. ]
  4465. [[package]]
  4466. name = "windows-targets"
  4467. version = "0.48.5"
  4468. source = "registry+https://github.com/rust-lang/crates.io-index"
  4469. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  4470. dependencies = [
  4471. "windows_aarch64_gnullvm 0.48.5",
  4472. "windows_aarch64_msvc 0.48.5",
  4473. "windows_i686_gnu 0.48.5",
  4474. "windows_i686_msvc 0.48.5",
  4475. "windows_x86_64_gnu 0.48.5",
  4476. "windows_x86_64_gnullvm 0.48.5",
  4477. "windows_x86_64_msvc 0.48.5",
  4478. ]
  4479. [[package]]
  4480. name = "windows-targets"
  4481. version = "0.52.6"
  4482. source = "registry+https://github.com/rust-lang/crates.io-index"
  4483. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  4484. dependencies = [
  4485. "windows_aarch64_gnullvm 0.52.6",
  4486. "windows_aarch64_msvc 0.52.6",
  4487. "windows_i686_gnu 0.52.6",
  4488. "windows_i686_gnullvm",
  4489. "windows_i686_msvc 0.52.6",
  4490. "windows_x86_64_gnu 0.52.6",
  4491. "windows_x86_64_gnullvm 0.52.6",
  4492. "windows_x86_64_msvc 0.52.6",
  4493. ]
  4494. [[package]]
  4495. name = "windows_aarch64_gnullvm"
  4496. version = "0.42.2"
  4497. source = "registry+https://github.com/rust-lang/crates.io-index"
  4498. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  4499. [[package]]
  4500. name = "windows_aarch64_gnullvm"
  4501. version = "0.48.5"
  4502. source = "registry+https://github.com/rust-lang/crates.io-index"
  4503. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  4504. [[package]]
  4505. name = "windows_aarch64_gnullvm"
  4506. version = "0.52.6"
  4507. source = "registry+https://github.com/rust-lang/crates.io-index"
  4508. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  4509. [[package]]
  4510. name = "windows_aarch64_msvc"
  4511. version = "0.42.2"
  4512. source = "registry+https://github.com/rust-lang/crates.io-index"
  4513. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  4514. [[package]]
  4515. name = "windows_aarch64_msvc"
  4516. version = "0.48.5"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  4519. [[package]]
  4520. name = "windows_aarch64_msvc"
  4521. version = "0.52.6"
  4522. source = "registry+https://github.com/rust-lang/crates.io-index"
  4523. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  4524. [[package]]
  4525. name = "windows_i686_gnu"
  4526. version = "0.42.2"
  4527. source = "registry+https://github.com/rust-lang/crates.io-index"
  4528. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  4529. [[package]]
  4530. name = "windows_i686_gnu"
  4531. version = "0.48.5"
  4532. source = "registry+https://github.com/rust-lang/crates.io-index"
  4533. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  4534. [[package]]
  4535. name = "windows_i686_gnu"
  4536. version = "0.52.6"
  4537. source = "registry+https://github.com/rust-lang/crates.io-index"
  4538. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  4539. [[package]]
  4540. name = "windows_i686_gnullvm"
  4541. version = "0.52.6"
  4542. source = "registry+https://github.com/rust-lang/crates.io-index"
  4543. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  4544. [[package]]
  4545. name = "windows_i686_msvc"
  4546. version = "0.42.2"
  4547. source = "registry+https://github.com/rust-lang/crates.io-index"
  4548. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  4549. [[package]]
  4550. name = "windows_i686_msvc"
  4551. version = "0.48.5"
  4552. source = "registry+https://github.com/rust-lang/crates.io-index"
  4553. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  4554. [[package]]
  4555. name = "windows_i686_msvc"
  4556. version = "0.52.6"
  4557. source = "registry+https://github.com/rust-lang/crates.io-index"
  4558. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  4559. [[package]]
  4560. name = "windows_x86_64_gnu"
  4561. version = "0.42.2"
  4562. source = "registry+https://github.com/rust-lang/crates.io-index"
  4563. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  4564. [[package]]
  4565. name = "windows_x86_64_gnu"
  4566. version = "0.48.5"
  4567. source = "registry+https://github.com/rust-lang/crates.io-index"
  4568. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  4569. [[package]]
  4570. name = "windows_x86_64_gnu"
  4571. version = "0.52.6"
  4572. source = "registry+https://github.com/rust-lang/crates.io-index"
  4573. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  4574. [[package]]
  4575. name = "windows_x86_64_gnullvm"
  4576. version = "0.42.2"
  4577. source = "registry+https://github.com/rust-lang/crates.io-index"
  4578. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  4579. [[package]]
  4580. name = "windows_x86_64_gnullvm"
  4581. version = "0.48.5"
  4582. source = "registry+https://github.com/rust-lang/crates.io-index"
  4583. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  4584. [[package]]
  4585. name = "windows_x86_64_gnullvm"
  4586. version = "0.52.6"
  4587. source = "registry+https://github.com/rust-lang/crates.io-index"
  4588. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  4589. [[package]]
  4590. name = "windows_x86_64_msvc"
  4591. version = "0.42.2"
  4592. source = "registry+https://github.com/rust-lang/crates.io-index"
  4593. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  4594. [[package]]
  4595. name = "windows_x86_64_msvc"
  4596. version = "0.48.5"
  4597. source = "registry+https://github.com/rust-lang/crates.io-index"
  4598. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  4599. [[package]]
  4600. name = "windows_x86_64_msvc"
  4601. version = "0.52.6"
  4602. source = "registry+https://github.com/rust-lang/crates.io-index"
  4603. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  4604. [[package]]
  4605. name = "winit"
  4606. version = "0.30.1"
  4607. source = "git+https://github.com/iced-rs/winit.git?rev=254d6b3420ce4e674f516f7a2bd440665e05484d#254d6b3420ce4e674f516f7a2bd440665e05484d"
  4608. dependencies = [
  4609. "ahash 0.8.11",
  4610. "android-activity",
  4611. "atomic-waker",
  4612. "bitflags 2.6.0",
  4613. "block2",
  4614. "bytemuck",
  4615. "calloop 0.12.4",
  4616. "cfg_aliases 0.2.1",
  4617. "concurrent-queue",
  4618. "core-foundation",
  4619. "core-graphics",
  4620. "cursor-icon",
  4621. "dpi",
  4622. "js-sys",
  4623. "libc",
  4624. "memmap2 0.9.4",
  4625. "ndk",
  4626. "objc2",
  4627. "objc2-app-kit",
  4628. "objc2-foundation",
  4629. "objc2-ui-kit",
  4630. "orbclient",
  4631. "percent-encoding",
  4632. "pin-project",
  4633. "raw-window-handle",
  4634. "redox_syscall 0.4.1",
  4635. "rustix",
  4636. "sctk-adwaita",
  4637. "smithay-client-toolkit 0.18.1",
  4638. "smol_str",
  4639. "tracing",
  4640. "unicode-segmentation",
  4641. "wasm-bindgen",
  4642. "wasm-bindgen-futures",
  4643. "wayland-backend",
  4644. "wayland-client",
  4645. "wayland-protocols 0.31.2",
  4646. "wayland-protocols-plasma",
  4647. "web-sys",
  4648. "web-time 1.1.0",
  4649. "windows-sys 0.52.0",
  4650. "x11-dl",
  4651. "x11rb",
  4652. "xkbcommon-dl",
  4653. ]
  4654. [[package]]
  4655. name = "winnow"
  4656. version = "0.5.40"
  4657. source = "registry+https://github.com/rust-lang/crates.io-index"
  4658. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  4659. dependencies = [
  4660. "memchr",
  4661. ]
  4662. [[package]]
  4663. name = "winreg"
  4664. version = "0.10.1"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  4667. dependencies = [
  4668. "winapi",
  4669. ]
  4670. [[package]]
  4671. name = "winreg"
  4672. version = "0.52.0"
  4673. source = "registry+https://github.com/rust-lang/crates.io-index"
  4674. checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
  4675. dependencies = [
  4676. "cfg-if",
  4677. "windows-sys 0.48.0",
  4678. ]
  4679. [[package]]
  4680. name = "x11-dl"
  4681. version = "2.21.0"
  4682. source = "registry+https://github.com/rust-lang/crates.io-index"
  4683. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  4684. dependencies = [
  4685. "libc",
  4686. "once_cell",
  4687. "pkg-config",
  4688. ]
  4689. [[package]]
  4690. name = "x11rb"
  4691. version = "0.13.1"
  4692. source = "registry+https://github.com/rust-lang/crates.io-index"
  4693. checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
  4694. dependencies = [
  4695. "as-raw-xcb-connection",
  4696. "gethostname",
  4697. "libc",
  4698. "libloading 0.8.5",
  4699. "once_cell",
  4700. "rustix",
  4701. "x11rb-protocol",
  4702. ]
  4703. [[package]]
  4704. name = "x11rb-protocol"
  4705. version = "0.13.1"
  4706. source = "registry+https://github.com/rust-lang/crates.io-index"
  4707. checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
  4708. [[package]]
  4709. name = "xcursor"
  4710. version = "0.3.6"
  4711. source = "registry+https://github.com/rust-lang/crates.io-index"
  4712. checksum = "d491ee231a51ae64a5b762114c3ac2104b967aadba1de45c86ca42cf051513b7"
  4713. [[package]]
  4714. name = "xdg-home"
  4715. version = "1.2.0"
  4716. source = "registry+https://github.com/rust-lang/crates.io-index"
  4717. checksum = "ca91dcf8f93db085f3a0a29358cd0b9d670915468f4290e8b85d118a34211ab8"
  4718. dependencies = [
  4719. "libc",
  4720. "windows-sys 0.52.0",
  4721. ]
  4722. [[package]]
  4723. name = "xkbcommon-dl"
  4724. version = "0.4.2"
  4725. source = "registry+https://github.com/rust-lang/crates.io-index"
  4726. checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
  4727. dependencies = [
  4728. "bitflags 2.6.0",
  4729. "dlib",
  4730. "log",
  4731. "once_cell",
  4732. "xkeysym",
  4733. ]
  4734. [[package]]
  4735. name = "xkeysym"
  4736. version = "0.2.1"
  4737. source = "registry+https://github.com/rust-lang/crates.io-index"
  4738. checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
  4739. [[package]]
  4740. name = "xml-rs"
  4741. version = "0.8.20"
  4742. source = "registry+https://github.com/rust-lang/crates.io-index"
  4743. checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193"
  4744. [[package]]
  4745. name = "xxhash-rust"
  4746. version = "0.8.12"
  4747. source = "registry+https://github.com/rust-lang/crates.io-index"
  4748. checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
  4749. [[package]]
  4750. name = "yazi"
  4751. version = "0.1.6"
  4752. source = "registry+https://github.com/rust-lang/crates.io-index"
  4753. checksum = "c94451ac9513335b5e23d7a8a2b61a7102398b8cca5160829d313e84c9d98be1"
  4754. [[package]]
  4755. name = "zbus"
  4756. version = "4.4.0"
  4757. source = "registry+https://github.com/rust-lang/crates.io-index"
  4758. checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
  4759. dependencies = [
  4760. "async-broadcast",
  4761. "async-executor",
  4762. "async-fs",
  4763. "async-io",
  4764. "async-lock",
  4765. "async-process",
  4766. "async-recursion",
  4767. "async-task",
  4768. "async-trait",
  4769. "blocking",
  4770. "enumflags2",
  4771. "event-listener",
  4772. "futures-core",
  4773. "futures-sink",
  4774. "futures-util",
  4775. "hex",
  4776. "nix",
  4777. "ordered-stream",
  4778. "rand",
  4779. "serde",
  4780. "serde_repr",
  4781. "sha1",
  4782. "static_assertions",
  4783. "tracing",
  4784. "uds_windows",
  4785. "windows-sys 0.52.0",
  4786. "xdg-home",
  4787. "zbus_macros",
  4788. "zbus_names",
  4789. "zvariant",
  4790. ]
  4791. [[package]]
  4792. name = "zbus_macros"
  4793. version = "4.4.0"
  4794. source = "registry+https://github.com/rust-lang/crates.io-index"
  4795. checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
  4796. dependencies = [
  4797. "proc-macro-crate",
  4798. "proc-macro2",
  4799. "quote",
  4800. "syn 2.0.72",
  4801. "zvariant_utils",
  4802. ]
  4803. [[package]]
  4804. name = "zbus_names"
  4805. version = "3.0.0"
  4806. source = "registry+https://github.com/rust-lang/crates.io-index"
  4807. checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
  4808. dependencies = [
  4809. "serde",
  4810. "static_assertions",
  4811. "zvariant",
  4812. ]
  4813. [[package]]
  4814. name = "zeno"
  4815. version = "0.2.3"
  4816. source = "registry+https://github.com/rust-lang/crates.io-index"
  4817. checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697"
  4818. [[package]]
  4819. name = "zerocopy"
  4820. version = "0.6.6"
  4821. source = "registry+https://github.com/rust-lang/crates.io-index"
  4822. checksum = "854e949ac82d619ee9a14c66a1b674ac730422372ccb759ce0c39cabcf2bf8e6"
  4823. dependencies = [
  4824. "byteorder",
  4825. "zerocopy-derive 0.6.6",
  4826. ]
  4827. [[package]]
  4828. name = "zerocopy"
  4829. version = "0.7.35"
  4830. source = "registry+https://github.com/rust-lang/crates.io-index"
  4831. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  4832. dependencies = [
  4833. "zerocopy-derive 0.7.35",
  4834. ]
  4835. [[package]]
  4836. name = "zerocopy-derive"
  4837. version = "0.6.6"
  4838. source = "registry+https://github.com/rust-lang/crates.io-index"
  4839. checksum = "125139de3f6b9d625c39e2efdd73d41bdac468ccd556556440e322be0e1bbd91"
  4840. dependencies = [
  4841. "proc-macro2",
  4842. "quote",
  4843. "syn 2.0.72",
  4844. ]
  4845. [[package]]
  4846. name = "zerocopy-derive"
  4847. version = "0.7.35"
  4848. source = "registry+https://github.com/rust-lang/crates.io-index"
  4849. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  4850. dependencies = [
  4851. "proc-macro2",
  4852. "quote",
  4853. "syn 2.0.72",
  4854. ]
  4855. [[package]]
  4856. name = "zeroize"
  4857. version = "1.8.1"
  4858. source = "registry+https://github.com/rust-lang/crates.io-index"
  4859. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  4860. [[package]]
  4861. name = "zvariant"
  4862. version = "4.2.0"
  4863. source = "registry+https://github.com/rust-lang/crates.io-index"
  4864. checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
  4865. dependencies = [
  4866. "endi",
  4867. "enumflags2",
  4868. "serde",
  4869. "static_assertions",
  4870. "zvariant_derive",
  4871. ]
  4872. [[package]]
  4873. name = "zvariant_derive"
  4874. version = "4.2.0"
  4875. source = "registry+https://github.com/rust-lang/crates.io-index"
  4876. checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
  4877. dependencies = [
  4878. "proc-macro-crate",
  4879. "proc-macro2",
  4880. "quote",
  4881. "syn 2.0.72",
  4882. "zvariant_utils",
  4883. ]
  4884. [[package]]
  4885. name = "zvariant_utils"
  4886. version = "2.1.0"
  4887. source = "registry+https://github.com/rust-lang/crates.io-index"
  4888. checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
  4889. dependencies = [
  4890. "proc-macro2",
  4891. "quote",
  4892. "syn 2.0.72",
  4893. ]