Cargo.lock 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "adler2"
  6. version = "2.0.1"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
  9. [[package]]
  10. name = "aho-corasick"
  11. version = "1.1.4"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
  14. dependencies = [
  15. "memchr",
  16. ]
  17. [[package]]
  18. name = "alloc-no-stdlib"
  19. version = "2.0.4"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  22. [[package]]
  23. name = "alloc-stdlib"
  24. version = "0.2.2"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  27. dependencies = [
  28. "alloc-no-stdlib",
  29. ]
  30. [[package]]
  31. name = "android_system_properties"
  32. version = "0.1.5"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  35. dependencies = [
  36. "libc",
  37. ]
  38. [[package]]
  39. name = "anyhow"
  40. version = "1.0.102"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
  43. [[package]]
  44. name = "async-broadcast"
  45. version = "0.7.2"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
  48. dependencies = [
  49. "event-listener",
  50. "event-listener-strategy",
  51. "futures-core",
  52. "pin-project-lite",
  53. ]
  54. [[package]]
  55. name = "async-channel"
  56. version = "2.5.0"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
  59. dependencies = [
  60. "concurrent-queue",
  61. "event-listener-strategy",
  62. "futures-core",
  63. "pin-project-lite",
  64. ]
  65. [[package]]
  66. name = "async-executor"
  67. version = "1.14.0"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
  70. dependencies = [
  71. "async-task",
  72. "concurrent-queue",
  73. "fastrand",
  74. "futures-lite",
  75. "pin-project-lite",
  76. "slab",
  77. ]
  78. [[package]]
  79. name = "async-io"
  80. version = "2.6.0"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
  83. dependencies = [
  84. "autocfg",
  85. "cfg-if",
  86. "concurrent-queue",
  87. "futures-io",
  88. "futures-lite",
  89. "parking",
  90. "polling",
  91. "rustix",
  92. "slab",
  93. "windows-sys 0.61.2",
  94. ]
  95. [[package]]
  96. name = "async-lock"
  97. version = "3.4.2"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
  100. dependencies = [
  101. "event-listener",
  102. "event-listener-strategy",
  103. "pin-project-lite",
  104. ]
  105. [[package]]
  106. name = "async-process"
  107. version = "2.5.0"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
  110. dependencies = [
  111. "async-channel",
  112. "async-io",
  113. "async-lock",
  114. "async-signal",
  115. "async-task",
  116. "blocking",
  117. "cfg-if",
  118. "event-listener",
  119. "futures-lite",
  120. "rustix",
  121. ]
  122. [[package]]
  123. name = "async-recursion"
  124. version = "1.1.1"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  127. dependencies = [
  128. "proc-macro2",
  129. "quote",
  130. "syn 2.0.117",
  131. ]
  132. [[package]]
  133. name = "async-signal"
  134. version = "0.2.14"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
  137. dependencies = [
  138. "async-io",
  139. "async-lock",
  140. "atomic-waker",
  141. "cfg-if",
  142. "futures-core",
  143. "futures-io",
  144. "rustix",
  145. "signal-hook-registry",
  146. "slab",
  147. "windows-sys 0.61.2",
  148. ]
  149. [[package]]
  150. name = "async-task"
  151. version = "4.7.1"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  154. [[package]]
  155. name = "async-trait"
  156. version = "0.1.89"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
  159. dependencies = [
  160. "proc-macro2",
  161. "quote",
  162. "syn 2.0.117",
  163. ]
  164. [[package]]
  165. name = "atk"
  166. version = "0.18.2"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
  169. dependencies = [
  170. "atk-sys",
  171. "glib",
  172. "libc",
  173. ]
  174. [[package]]
  175. name = "atk-sys"
  176. version = "0.18.2"
  177. source = "registry+https://github.com/rust-lang/crates.io-index"
  178. checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
  179. dependencies = [
  180. "glib-sys",
  181. "gobject-sys",
  182. "libc",
  183. "system-deps",
  184. ]
  185. [[package]]
  186. name = "atomic-waker"
  187. version = "1.1.2"
  188. source = "registry+https://github.com/rust-lang/crates.io-index"
  189. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  190. [[package]]
  191. name = "auto-record"
  192. version = "0.1.0"
  193. dependencies = [
  194. "anyhow",
  195. "base64 0.22.1",
  196. "serde",
  197. "serde_json",
  198. "tauri",
  199. "tauri-build",
  200. "tauri-plugin-global-shortcut",
  201. "tauri-plugin-opener",
  202. "tokio",
  203. "url",
  204. "uuid",
  205. "webview2-com 0.34.0",
  206. "windows 0.58.0",
  207. ]
  208. [[package]]
  209. name = "autocfg"
  210. version = "1.5.0"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
  213. [[package]]
  214. name = "base64"
  215. version = "0.21.7"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  218. [[package]]
  219. name = "base64"
  220. version = "0.22.1"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  223. [[package]]
  224. name = "bit-set"
  225. version = "0.8.0"
  226. source = "registry+https://github.com/rust-lang/crates.io-index"
  227. checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
  228. dependencies = [
  229. "bit-vec",
  230. ]
  231. [[package]]
  232. name = "bit-vec"
  233. version = "0.8.0"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
  236. [[package]]
  237. name = "bitflags"
  238. version = "1.3.2"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  241. [[package]]
  242. name = "bitflags"
  243. version = "2.11.1"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
  246. dependencies = [
  247. "serde_core",
  248. ]
  249. [[package]]
  250. name = "block-buffer"
  251. version = "0.10.4"
  252. source = "registry+https://github.com/rust-lang/crates.io-index"
  253. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  254. dependencies = [
  255. "generic-array",
  256. ]
  257. [[package]]
  258. name = "block2"
  259. version = "0.6.2"
  260. source = "registry+https://github.com/rust-lang/crates.io-index"
  261. checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
  262. dependencies = [
  263. "objc2",
  264. ]
  265. [[package]]
  266. name = "blocking"
  267. version = "1.6.2"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
  270. dependencies = [
  271. "async-channel",
  272. "async-task",
  273. "futures-io",
  274. "futures-lite",
  275. "piper",
  276. ]
  277. [[package]]
  278. name = "brotli"
  279. version = "8.0.2"
  280. source = "registry+https://github.com/rust-lang/crates.io-index"
  281. checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
  282. dependencies = [
  283. "alloc-no-stdlib",
  284. "alloc-stdlib",
  285. "brotli-decompressor",
  286. ]
  287. [[package]]
  288. name = "brotli-decompressor"
  289. version = "5.0.0"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
  292. dependencies = [
  293. "alloc-no-stdlib",
  294. "alloc-stdlib",
  295. ]
  296. [[package]]
  297. name = "bs58"
  298. version = "0.5.1"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  301. dependencies = [
  302. "tinyvec",
  303. ]
  304. [[package]]
  305. name = "bumpalo"
  306. version = "3.20.2"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
  309. [[package]]
  310. name = "bytemuck"
  311. version = "1.25.0"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
  314. [[package]]
  315. name = "byteorder"
  316. version = "1.5.0"
  317. source = "registry+https://github.com/rust-lang/crates.io-index"
  318. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  319. [[package]]
  320. name = "bytes"
  321. version = "1.11.1"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
  324. dependencies = [
  325. "serde",
  326. ]
  327. [[package]]
  328. name = "cairo-rs"
  329. version = "0.18.5"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
  332. dependencies = [
  333. "bitflags 2.11.1",
  334. "cairo-sys-rs",
  335. "glib",
  336. "libc",
  337. "once_cell",
  338. "thiserror 1.0.69",
  339. ]
  340. [[package]]
  341. name = "cairo-sys-rs"
  342. version = "0.18.2"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
  345. dependencies = [
  346. "glib-sys",
  347. "libc",
  348. "system-deps",
  349. ]
  350. [[package]]
  351. name = "camino"
  352. version = "1.2.2"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
  355. dependencies = [
  356. "serde_core",
  357. ]
  358. [[package]]
  359. name = "cargo-platform"
  360. version = "0.1.9"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  363. dependencies = [
  364. "serde",
  365. ]
  366. [[package]]
  367. name = "cargo_metadata"
  368. version = "0.19.2"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
  371. dependencies = [
  372. "camino",
  373. "cargo-platform",
  374. "semver",
  375. "serde",
  376. "serde_json",
  377. "thiserror 2.0.18",
  378. ]
  379. [[package]]
  380. name = "cargo_toml"
  381. version = "0.22.3"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
  384. dependencies = [
  385. "serde",
  386. "toml 0.9.12+spec-1.1.0",
  387. ]
  388. [[package]]
  389. name = "cc"
  390. version = "1.2.62"
  391. source = "registry+https://github.com/rust-lang/crates.io-index"
  392. checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
  393. dependencies = [
  394. "find-msvc-tools",
  395. "shlex",
  396. ]
  397. [[package]]
  398. name = "cesu8"
  399. version = "1.1.0"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  402. [[package]]
  403. name = "cfb"
  404. version = "0.7.3"
  405. source = "registry+https://github.com/rust-lang/crates.io-index"
  406. checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
  407. dependencies = [
  408. "byteorder",
  409. "fnv",
  410. "uuid",
  411. ]
  412. [[package]]
  413. name = "cfg-expr"
  414. version = "0.15.8"
  415. source = "registry+https://github.com/rust-lang/crates.io-index"
  416. checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
  417. dependencies = [
  418. "smallvec",
  419. "target-lexicon",
  420. ]
  421. [[package]]
  422. name = "cfg-if"
  423. version = "1.0.4"
  424. source = "registry+https://github.com/rust-lang/crates.io-index"
  425. checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
  426. [[package]]
  427. name = "chrono"
  428. version = "0.4.44"
  429. source = "registry+https://github.com/rust-lang/crates.io-index"
  430. checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
  431. dependencies = [
  432. "iana-time-zone",
  433. "num-traits",
  434. "serde",
  435. "windows-link 0.2.1",
  436. ]
  437. [[package]]
  438. name = "combine"
  439. version = "4.6.7"
  440. source = "registry+https://github.com/rust-lang/crates.io-index"
  441. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  442. dependencies = [
  443. "bytes",
  444. "memchr",
  445. ]
  446. [[package]]
  447. name = "concurrent-queue"
  448. version = "2.5.0"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  451. dependencies = [
  452. "crossbeam-utils",
  453. ]
  454. [[package]]
  455. name = "cookie"
  456. version = "0.18.1"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
  459. dependencies = [
  460. "time",
  461. "version_check",
  462. ]
  463. [[package]]
  464. name = "core-foundation"
  465. version = "0.10.1"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
  468. dependencies = [
  469. "core-foundation-sys",
  470. "libc",
  471. ]
  472. [[package]]
  473. name = "core-foundation-sys"
  474. version = "0.8.7"
  475. source = "registry+https://github.com/rust-lang/crates.io-index"
  476. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  477. [[package]]
  478. name = "core-graphics"
  479. version = "0.25.0"
  480. source = "registry+https://github.com/rust-lang/crates.io-index"
  481. checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
  482. dependencies = [
  483. "bitflags 2.11.1",
  484. "core-foundation",
  485. "core-graphics-types",
  486. "foreign-types",
  487. "libc",
  488. ]
  489. [[package]]
  490. name = "core-graphics-types"
  491. version = "0.2.0"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
  494. dependencies = [
  495. "bitflags 2.11.1",
  496. "core-foundation",
  497. "libc",
  498. ]
  499. [[package]]
  500. name = "cpufeatures"
  501. version = "0.2.17"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  504. dependencies = [
  505. "libc",
  506. ]
  507. [[package]]
  508. name = "crc32fast"
  509. version = "1.5.0"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
  512. dependencies = [
  513. "cfg-if",
  514. ]
  515. [[package]]
  516. name = "crossbeam-channel"
  517. version = "0.5.15"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
  520. dependencies = [
  521. "crossbeam-utils",
  522. ]
  523. [[package]]
  524. name = "crossbeam-utils"
  525. version = "0.8.21"
  526. source = "registry+https://github.com/rust-lang/crates.io-index"
  527. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  528. [[package]]
  529. name = "crypto-common"
  530. version = "0.1.7"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
  533. dependencies = [
  534. "generic-array",
  535. "typenum",
  536. ]
  537. [[package]]
  538. name = "cssparser"
  539. version = "0.36.0"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
  542. dependencies = [
  543. "cssparser-macros",
  544. "dtoa-short",
  545. "itoa",
  546. "phf",
  547. "smallvec",
  548. ]
  549. [[package]]
  550. name = "cssparser-macros"
  551. version = "0.6.1"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
  554. dependencies = [
  555. "quote",
  556. "syn 2.0.117",
  557. ]
  558. [[package]]
  559. name = "ctor"
  560. version = "0.8.0"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
  563. dependencies = [
  564. "ctor-proc-macro",
  565. "dtor",
  566. ]
  567. [[package]]
  568. name = "ctor-proc-macro"
  569. version = "0.0.7"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
  572. [[package]]
  573. name = "darling"
  574. version = "0.23.0"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
  577. dependencies = [
  578. "darling_core",
  579. "darling_macro",
  580. ]
  581. [[package]]
  582. name = "darling_core"
  583. version = "0.23.0"
  584. source = "registry+https://github.com/rust-lang/crates.io-index"
  585. checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
  586. dependencies = [
  587. "ident_case",
  588. "proc-macro2",
  589. "quote",
  590. "strsim",
  591. "syn 2.0.117",
  592. ]
  593. [[package]]
  594. name = "darling_macro"
  595. version = "0.23.0"
  596. source = "registry+https://github.com/rust-lang/crates.io-index"
  597. checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
  598. dependencies = [
  599. "darling_core",
  600. "quote",
  601. "syn 2.0.117",
  602. ]
  603. [[package]]
  604. name = "dbus"
  605. version = "0.9.11"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "b942602992bb7acfd1f51c49811c58a610ef9181b6e66f3e519d79b540a3bf73"
  608. dependencies = [
  609. "libc",
  610. "libdbus-sys",
  611. "windows-sys 0.61.2",
  612. ]
  613. [[package]]
  614. name = "deranged"
  615. version = "0.5.8"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
  618. dependencies = [
  619. "powerfmt",
  620. "serde_core",
  621. ]
  622. [[package]]
  623. name = "derive_more"
  624. version = "2.1.1"
  625. source = "registry+https://github.com/rust-lang/crates.io-index"
  626. checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
  627. dependencies = [
  628. "derive_more-impl",
  629. ]
  630. [[package]]
  631. name = "derive_more-impl"
  632. version = "2.1.1"
  633. source = "registry+https://github.com/rust-lang/crates.io-index"
  634. checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
  635. dependencies = [
  636. "proc-macro2",
  637. "quote",
  638. "rustc_version",
  639. "syn 2.0.117",
  640. ]
  641. [[package]]
  642. name = "digest"
  643. version = "0.10.7"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  646. dependencies = [
  647. "block-buffer",
  648. "crypto-common",
  649. ]
  650. [[package]]
  651. name = "dirs"
  652. version = "6.0.0"
  653. source = "registry+https://github.com/rust-lang/crates.io-index"
  654. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  655. dependencies = [
  656. "dirs-sys",
  657. ]
  658. [[package]]
  659. name = "dirs-sys"
  660. version = "0.5.0"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  663. dependencies = [
  664. "libc",
  665. "option-ext",
  666. "redox_users",
  667. "windows-sys 0.61.2",
  668. ]
  669. [[package]]
  670. name = "dispatch2"
  671. version = "0.3.1"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
  674. dependencies = [
  675. "bitflags 2.11.1",
  676. "block2",
  677. "libc",
  678. "objc2",
  679. ]
  680. [[package]]
  681. name = "displaydoc"
  682. version = "0.2.5"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  685. dependencies = [
  686. "proc-macro2",
  687. "quote",
  688. "syn 2.0.117",
  689. ]
  690. [[package]]
  691. name = "dlopen2"
  692. version = "0.8.2"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
  695. dependencies = [
  696. "dlopen2_derive",
  697. "libc",
  698. "once_cell",
  699. "winapi",
  700. ]
  701. [[package]]
  702. name = "dlopen2_derive"
  703. version = "0.4.3"
  704. source = "registry+https://github.com/rust-lang/crates.io-index"
  705. checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
  706. dependencies = [
  707. "proc-macro2",
  708. "quote",
  709. "syn 2.0.117",
  710. ]
  711. [[package]]
  712. name = "dom_query"
  713. version = "0.27.0"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
  716. dependencies = [
  717. "bit-set",
  718. "cssparser",
  719. "foldhash 0.2.0",
  720. "html5ever",
  721. "precomputed-hash",
  722. "selectors",
  723. "tendril",
  724. ]
  725. [[package]]
  726. name = "dpi"
  727. version = "0.1.2"
  728. source = "registry+https://github.com/rust-lang/crates.io-index"
  729. checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
  730. dependencies = [
  731. "serde",
  732. ]
  733. [[package]]
  734. name = "dtoa"
  735. version = "1.0.11"
  736. source = "registry+https://github.com/rust-lang/crates.io-index"
  737. checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
  738. [[package]]
  739. name = "dtoa-short"
  740. version = "0.3.5"
  741. source = "registry+https://github.com/rust-lang/crates.io-index"
  742. checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
  743. dependencies = [
  744. "dtoa",
  745. ]
  746. [[package]]
  747. name = "dtor"
  748. version = "0.3.0"
  749. source = "registry+https://github.com/rust-lang/crates.io-index"
  750. checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
  751. dependencies = [
  752. "dtor-proc-macro",
  753. ]
  754. [[package]]
  755. name = "dtor-proc-macro"
  756. version = "0.0.6"
  757. source = "registry+https://github.com/rust-lang/crates.io-index"
  758. checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
  759. [[package]]
  760. name = "dunce"
  761. version = "1.0.5"
  762. source = "registry+https://github.com/rust-lang/crates.io-index"
  763. checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
  764. [[package]]
  765. name = "dyn-clone"
  766. version = "1.0.20"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
  769. [[package]]
  770. name = "embed-resource"
  771. version = "3.0.9"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "c31a88c8d26de40ed18fe748c547845aa39de1db3afd958f8cb91579f3644bcb"
  774. dependencies = [
  775. "cc",
  776. "memchr",
  777. "rustc_version",
  778. "toml 1.1.2+spec-1.1.0",
  779. "vswhom",
  780. "winreg",
  781. ]
  782. [[package]]
  783. name = "embed_plist"
  784. version = "1.2.2"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
  787. [[package]]
  788. name = "endi"
  789. version = "1.1.1"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
  792. [[package]]
  793. name = "enumflags2"
  794. version = "0.7.12"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
  797. dependencies = [
  798. "enumflags2_derive",
  799. "serde",
  800. ]
  801. [[package]]
  802. name = "enumflags2_derive"
  803. version = "0.7.12"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
  806. dependencies = [
  807. "proc-macro2",
  808. "quote",
  809. "syn 2.0.117",
  810. ]
  811. [[package]]
  812. name = "equivalent"
  813. version = "1.0.2"
  814. source = "registry+https://github.com/rust-lang/crates.io-index"
  815. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  816. [[package]]
  817. name = "erased-serde"
  818. version = "0.4.10"
  819. source = "registry+https://github.com/rust-lang/crates.io-index"
  820. checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
  821. dependencies = [
  822. "serde",
  823. "serde_core",
  824. "typeid",
  825. ]
  826. [[package]]
  827. name = "errno"
  828. version = "0.3.14"
  829. source = "registry+https://github.com/rust-lang/crates.io-index"
  830. checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
  831. dependencies = [
  832. "libc",
  833. "windows-sys 0.61.2",
  834. ]
  835. [[package]]
  836. name = "event-listener"
  837. version = "5.4.1"
  838. source = "registry+https://github.com/rust-lang/crates.io-index"
  839. checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
  840. dependencies = [
  841. "concurrent-queue",
  842. "parking",
  843. "pin-project-lite",
  844. ]
  845. [[package]]
  846. name = "event-listener-strategy"
  847. version = "0.5.4"
  848. source = "registry+https://github.com/rust-lang/crates.io-index"
  849. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  850. dependencies = [
  851. "event-listener",
  852. "pin-project-lite",
  853. ]
  854. [[package]]
  855. name = "fastrand"
  856. version = "2.4.1"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
  859. [[package]]
  860. name = "fdeflate"
  861. version = "0.3.7"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
  864. dependencies = [
  865. "simd-adler32",
  866. ]
  867. [[package]]
  868. name = "field-offset"
  869. version = "0.3.6"
  870. source = "registry+https://github.com/rust-lang/crates.io-index"
  871. checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
  872. dependencies = [
  873. "memoffset",
  874. "rustc_version",
  875. ]
  876. [[package]]
  877. name = "find-msvc-tools"
  878. version = "0.1.9"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
  881. [[package]]
  882. name = "flate2"
  883. version = "1.1.9"
  884. source = "registry+https://github.com/rust-lang/crates.io-index"
  885. checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
  886. dependencies = [
  887. "crc32fast",
  888. "miniz_oxide",
  889. ]
  890. [[package]]
  891. name = "fnv"
  892. version = "1.0.7"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  895. [[package]]
  896. name = "foldhash"
  897. version = "0.1.5"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  900. [[package]]
  901. name = "foldhash"
  902. version = "0.2.0"
  903. source = "registry+https://github.com/rust-lang/crates.io-index"
  904. checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
  905. [[package]]
  906. name = "foreign-types"
  907. version = "0.5.0"
  908. source = "registry+https://github.com/rust-lang/crates.io-index"
  909. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  910. dependencies = [
  911. "foreign-types-macros",
  912. "foreign-types-shared",
  913. ]
  914. [[package]]
  915. name = "foreign-types-macros"
  916. version = "0.2.3"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  919. dependencies = [
  920. "proc-macro2",
  921. "quote",
  922. "syn 2.0.117",
  923. ]
  924. [[package]]
  925. name = "foreign-types-shared"
  926. version = "0.3.1"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  929. [[package]]
  930. name = "form_urlencoded"
  931. version = "1.2.2"
  932. source = "registry+https://github.com/rust-lang/crates.io-index"
  933. checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
  934. dependencies = [
  935. "percent-encoding",
  936. ]
  937. [[package]]
  938. name = "futures-channel"
  939. version = "0.3.32"
  940. source = "registry+https://github.com/rust-lang/crates.io-index"
  941. checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
  942. dependencies = [
  943. "futures-core",
  944. ]
  945. [[package]]
  946. name = "futures-core"
  947. version = "0.3.32"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
  950. [[package]]
  951. name = "futures-executor"
  952. version = "0.3.32"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
  955. dependencies = [
  956. "futures-core",
  957. "futures-task",
  958. "futures-util",
  959. ]
  960. [[package]]
  961. name = "futures-io"
  962. version = "0.3.32"
  963. source = "registry+https://github.com/rust-lang/crates.io-index"
  964. checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
  965. [[package]]
  966. name = "futures-lite"
  967. version = "2.6.1"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
  970. dependencies = [
  971. "fastrand",
  972. "futures-core",
  973. "futures-io",
  974. "parking",
  975. "pin-project-lite",
  976. ]
  977. [[package]]
  978. name = "futures-macro"
  979. version = "0.3.32"
  980. source = "registry+https://github.com/rust-lang/crates.io-index"
  981. checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
  982. dependencies = [
  983. "proc-macro2",
  984. "quote",
  985. "syn 2.0.117",
  986. ]
  987. [[package]]
  988. name = "futures-sink"
  989. version = "0.3.32"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
  992. [[package]]
  993. name = "futures-task"
  994. version = "0.3.32"
  995. source = "registry+https://github.com/rust-lang/crates.io-index"
  996. checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
  997. [[package]]
  998. name = "futures-util"
  999. version = "0.3.32"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
  1002. dependencies = [
  1003. "futures-core",
  1004. "futures-io",
  1005. "futures-macro",
  1006. "futures-sink",
  1007. "futures-task",
  1008. "memchr",
  1009. "pin-project-lite",
  1010. "slab",
  1011. ]
  1012. [[package]]
  1013. name = "gdk"
  1014. version = "0.18.2"
  1015. source = "registry+https://github.com/rust-lang/crates.io-index"
  1016. checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
  1017. dependencies = [
  1018. "cairo-rs",
  1019. "gdk-pixbuf",
  1020. "gdk-sys",
  1021. "gio",
  1022. "glib",
  1023. "libc",
  1024. "pango",
  1025. ]
  1026. [[package]]
  1027. name = "gdk-pixbuf"
  1028. version = "0.18.5"
  1029. source = "registry+https://github.com/rust-lang/crates.io-index"
  1030. checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
  1031. dependencies = [
  1032. "gdk-pixbuf-sys",
  1033. "gio",
  1034. "glib",
  1035. "libc",
  1036. "once_cell",
  1037. ]
  1038. [[package]]
  1039. name = "gdk-pixbuf-sys"
  1040. version = "0.18.0"
  1041. source = "registry+https://github.com/rust-lang/crates.io-index"
  1042. checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
  1043. dependencies = [
  1044. "gio-sys",
  1045. "glib-sys",
  1046. "gobject-sys",
  1047. "libc",
  1048. "system-deps",
  1049. ]
  1050. [[package]]
  1051. name = "gdk-sys"
  1052. version = "0.18.2"
  1053. source = "registry+https://github.com/rust-lang/crates.io-index"
  1054. checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
  1055. dependencies = [
  1056. "cairo-sys-rs",
  1057. "gdk-pixbuf-sys",
  1058. "gio-sys",
  1059. "glib-sys",
  1060. "gobject-sys",
  1061. "libc",
  1062. "pango-sys",
  1063. "pkg-config",
  1064. "system-deps",
  1065. ]
  1066. [[package]]
  1067. name = "gdkwayland-sys"
  1068. version = "0.18.2"
  1069. source = "registry+https://github.com/rust-lang/crates.io-index"
  1070. checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
  1071. dependencies = [
  1072. "gdk-sys",
  1073. "glib-sys",
  1074. "gobject-sys",
  1075. "libc",
  1076. "pkg-config",
  1077. "system-deps",
  1078. ]
  1079. [[package]]
  1080. name = "gdkx11"
  1081. version = "0.18.2"
  1082. source = "registry+https://github.com/rust-lang/crates.io-index"
  1083. checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
  1084. dependencies = [
  1085. "gdk",
  1086. "gdkx11-sys",
  1087. "gio",
  1088. "glib",
  1089. "libc",
  1090. "x11",
  1091. ]
  1092. [[package]]
  1093. name = "gdkx11-sys"
  1094. version = "0.18.2"
  1095. source = "registry+https://github.com/rust-lang/crates.io-index"
  1096. checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
  1097. dependencies = [
  1098. "gdk-sys",
  1099. "glib-sys",
  1100. "libc",
  1101. "system-deps",
  1102. "x11",
  1103. ]
  1104. [[package]]
  1105. name = "generic-array"
  1106. version = "0.14.7"
  1107. source = "registry+https://github.com/rust-lang/crates.io-index"
  1108. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1109. dependencies = [
  1110. "typenum",
  1111. "version_check",
  1112. ]
  1113. [[package]]
  1114. name = "gethostname"
  1115. version = "1.1.0"
  1116. source = "registry+https://github.com/rust-lang/crates.io-index"
  1117. checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
  1118. dependencies = [
  1119. "rustix",
  1120. "windows-link 0.2.1",
  1121. ]
  1122. [[package]]
  1123. name = "getrandom"
  1124. version = "0.2.17"
  1125. source = "registry+https://github.com/rust-lang/crates.io-index"
  1126. checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
  1127. dependencies = [
  1128. "cfg-if",
  1129. "libc",
  1130. "wasi",
  1131. ]
  1132. [[package]]
  1133. name = "getrandom"
  1134. version = "0.3.4"
  1135. source = "registry+https://github.com/rust-lang/crates.io-index"
  1136. checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
  1137. dependencies = [
  1138. "cfg-if",
  1139. "libc",
  1140. "r-efi 5.3.0",
  1141. "wasip2",
  1142. ]
  1143. [[package]]
  1144. name = "getrandom"
  1145. version = "0.4.2"
  1146. source = "registry+https://github.com/rust-lang/crates.io-index"
  1147. checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
  1148. dependencies = [
  1149. "cfg-if",
  1150. "libc",
  1151. "r-efi 6.0.0",
  1152. "wasip2",
  1153. "wasip3",
  1154. ]
  1155. [[package]]
  1156. name = "gio"
  1157. version = "0.18.4"
  1158. source = "registry+https://github.com/rust-lang/crates.io-index"
  1159. checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
  1160. dependencies = [
  1161. "futures-channel",
  1162. "futures-core",
  1163. "futures-io",
  1164. "futures-util",
  1165. "gio-sys",
  1166. "glib",
  1167. "libc",
  1168. "once_cell",
  1169. "pin-project-lite",
  1170. "smallvec",
  1171. "thiserror 1.0.69",
  1172. ]
  1173. [[package]]
  1174. name = "gio-sys"
  1175. version = "0.18.1"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
  1178. dependencies = [
  1179. "glib-sys",
  1180. "gobject-sys",
  1181. "libc",
  1182. "system-deps",
  1183. "winapi",
  1184. ]
  1185. [[package]]
  1186. name = "glib"
  1187. version = "0.18.5"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
  1190. dependencies = [
  1191. "bitflags 2.11.1",
  1192. "futures-channel",
  1193. "futures-core",
  1194. "futures-executor",
  1195. "futures-task",
  1196. "futures-util",
  1197. "gio-sys",
  1198. "glib-macros",
  1199. "glib-sys",
  1200. "gobject-sys",
  1201. "libc",
  1202. "memchr",
  1203. "once_cell",
  1204. "smallvec",
  1205. "thiserror 1.0.69",
  1206. ]
  1207. [[package]]
  1208. name = "glib-macros"
  1209. version = "0.18.5"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
  1212. dependencies = [
  1213. "heck 0.4.1",
  1214. "proc-macro-crate 2.0.2",
  1215. "proc-macro-error",
  1216. "proc-macro2",
  1217. "quote",
  1218. "syn 2.0.117",
  1219. ]
  1220. [[package]]
  1221. name = "glib-sys"
  1222. version = "0.18.1"
  1223. source = "registry+https://github.com/rust-lang/crates.io-index"
  1224. checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
  1225. dependencies = [
  1226. "libc",
  1227. "system-deps",
  1228. ]
  1229. [[package]]
  1230. name = "glob"
  1231. version = "0.3.3"
  1232. source = "registry+https://github.com/rust-lang/crates.io-index"
  1233. checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
  1234. [[package]]
  1235. name = "global-hotkey"
  1236. version = "0.7.0"
  1237. source = "registry+https://github.com/rust-lang/crates.io-index"
  1238. checksum = "b9247516746aa8e53411a0db9b62b0e24efbcf6a76e0ba73e5a91b512ddabed7"
  1239. dependencies = [
  1240. "crossbeam-channel",
  1241. "keyboard-types",
  1242. "objc2",
  1243. "objc2-app-kit",
  1244. "once_cell",
  1245. "serde",
  1246. "thiserror 2.0.18",
  1247. "windows-sys 0.59.0",
  1248. "x11rb",
  1249. "xkeysym",
  1250. ]
  1251. [[package]]
  1252. name = "gobject-sys"
  1253. version = "0.18.0"
  1254. source = "registry+https://github.com/rust-lang/crates.io-index"
  1255. checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
  1256. dependencies = [
  1257. "glib-sys",
  1258. "libc",
  1259. "system-deps",
  1260. ]
  1261. [[package]]
  1262. name = "gtk"
  1263. version = "0.18.2"
  1264. source = "registry+https://github.com/rust-lang/crates.io-index"
  1265. checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
  1266. dependencies = [
  1267. "atk",
  1268. "cairo-rs",
  1269. "field-offset",
  1270. "futures-channel",
  1271. "gdk",
  1272. "gdk-pixbuf",
  1273. "gio",
  1274. "glib",
  1275. "gtk-sys",
  1276. "gtk3-macros",
  1277. "libc",
  1278. "pango",
  1279. "pkg-config",
  1280. ]
  1281. [[package]]
  1282. name = "gtk-sys"
  1283. version = "0.18.2"
  1284. source = "registry+https://github.com/rust-lang/crates.io-index"
  1285. checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
  1286. dependencies = [
  1287. "atk-sys",
  1288. "cairo-sys-rs",
  1289. "gdk-pixbuf-sys",
  1290. "gdk-sys",
  1291. "gio-sys",
  1292. "glib-sys",
  1293. "gobject-sys",
  1294. "libc",
  1295. "pango-sys",
  1296. "system-deps",
  1297. ]
  1298. [[package]]
  1299. name = "gtk3-macros"
  1300. version = "0.18.2"
  1301. source = "registry+https://github.com/rust-lang/crates.io-index"
  1302. checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
  1303. dependencies = [
  1304. "proc-macro-crate 1.3.1",
  1305. "proc-macro-error",
  1306. "proc-macro2",
  1307. "quote",
  1308. "syn 2.0.117",
  1309. ]
  1310. [[package]]
  1311. name = "hashbrown"
  1312. version = "0.12.3"
  1313. source = "registry+https://github.com/rust-lang/crates.io-index"
  1314. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1315. [[package]]
  1316. name = "hashbrown"
  1317. version = "0.15.5"
  1318. source = "registry+https://github.com/rust-lang/crates.io-index"
  1319. checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
  1320. dependencies = [
  1321. "foldhash 0.1.5",
  1322. ]
  1323. [[package]]
  1324. name = "hashbrown"
  1325. version = "0.17.1"
  1326. source = "registry+https://github.com/rust-lang/crates.io-index"
  1327. checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
  1328. [[package]]
  1329. name = "heck"
  1330. version = "0.4.1"
  1331. source = "registry+https://github.com/rust-lang/crates.io-index"
  1332. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1333. [[package]]
  1334. name = "heck"
  1335. version = "0.5.0"
  1336. source = "registry+https://github.com/rust-lang/crates.io-index"
  1337. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  1338. [[package]]
  1339. name = "hermit-abi"
  1340. version = "0.5.2"
  1341. source = "registry+https://github.com/rust-lang/crates.io-index"
  1342. checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
  1343. [[package]]
  1344. name = "hex"
  1345. version = "0.4.3"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1348. [[package]]
  1349. name = "html5ever"
  1350. version = "0.38.0"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
  1353. dependencies = [
  1354. "log",
  1355. "markup5ever",
  1356. ]
  1357. [[package]]
  1358. name = "http"
  1359. version = "1.4.0"
  1360. source = "registry+https://github.com/rust-lang/crates.io-index"
  1361. checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
  1362. dependencies = [
  1363. "bytes",
  1364. "itoa",
  1365. ]
  1366. [[package]]
  1367. name = "http-body"
  1368. version = "1.0.1"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  1371. dependencies = [
  1372. "bytes",
  1373. "http",
  1374. ]
  1375. [[package]]
  1376. name = "http-body-util"
  1377. version = "0.1.3"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
  1380. dependencies = [
  1381. "bytes",
  1382. "futures-core",
  1383. "http",
  1384. "http-body",
  1385. "pin-project-lite",
  1386. ]
  1387. [[package]]
  1388. name = "http-range"
  1389. version = "0.1.5"
  1390. source = "registry+https://github.com/rust-lang/crates.io-index"
  1391. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  1392. [[package]]
  1393. name = "httparse"
  1394. version = "1.10.1"
  1395. source = "registry+https://github.com/rust-lang/crates.io-index"
  1396. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  1397. [[package]]
  1398. name = "hyper"
  1399. version = "1.9.0"
  1400. source = "registry+https://github.com/rust-lang/crates.io-index"
  1401. checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
  1402. dependencies = [
  1403. "atomic-waker",
  1404. "bytes",
  1405. "futures-channel",
  1406. "futures-core",
  1407. "http",
  1408. "http-body",
  1409. "httparse",
  1410. "itoa",
  1411. "pin-project-lite",
  1412. "smallvec",
  1413. "tokio",
  1414. "want",
  1415. ]
  1416. [[package]]
  1417. name = "hyper-util"
  1418. version = "0.1.20"
  1419. source = "registry+https://github.com/rust-lang/crates.io-index"
  1420. checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
  1421. dependencies = [
  1422. "base64 0.22.1",
  1423. "bytes",
  1424. "futures-channel",
  1425. "futures-util",
  1426. "http",
  1427. "http-body",
  1428. "hyper",
  1429. "ipnet",
  1430. "libc",
  1431. "percent-encoding",
  1432. "pin-project-lite",
  1433. "socket2",
  1434. "tokio",
  1435. "tower-service",
  1436. "tracing",
  1437. ]
  1438. [[package]]
  1439. name = "iana-time-zone"
  1440. version = "0.1.65"
  1441. source = "registry+https://github.com/rust-lang/crates.io-index"
  1442. checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
  1443. dependencies = [
  1444. "android_system_properties",
  1445. "core-foundation-sys",
  1446. "iana-time-zone-haiku",
  1447. "js-sys",
  1448. "log",
  1449. "wasm-bindgen",
  1450. "windows-core 0.62.2",
  1451. ]
  1452. [[package]]
  1453. name = "iana-time-zone-haiku"
  1454. version = "0.1.2"
  1455. source = "registry+https://github.com/rust-lang/crates.io-index"
  1456. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  1457. dependencies = [
  1458. "cc",
  1459. ]
  1460. [[package]]
  1461. name = "ico"
  1462. version = "0.5.0"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
  1465. dependencies = [
  1466. "byteorder",
  1467. "png 0.17.16",
  1468. ]
  1469. [[package]]
  1470. name = "icu_collections"
  1471. version = "2.2.0"
  1472. source = "registry+https://github.com/rust-lang/crates.io-index"
  1473. checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
  1474. dependencies = [
  1475. "displaydoc",
  1476. "potential_utf",
  1477. "utf8_iter",
  1478. "yoke",
  1479. "zerofrom",
  1480. "zerovec",
  1481. ]
  1482. [[package]]
  1483. name = "icu_locale_core"
  1484. version = "2.2.0"
  1485. source = "registry+https://github.com/rust-lang/crates.io-index"
  1486. checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
  1487. dependencies = [
  1488. "displaydoc",
  1489. "litemap",
  1490. "tinystr",
  1491. "writeable",
  1492. "zerovec",
  1493. ]
  1494. [[package]]
  1495. name = "icu_normalizer"
  1496. version = "2.2.0"
  1497. source = "registry+https://github.com/rust-lang/crates.io-index"
  1498. checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
  1499. dependencies = [
  1500. "icu_collections",
  1501. "icu_normalizer_data",
  1502. "icu_properties",
  1503. "icu_provider",
  1504. "smallvec",
  1505. "zerovec",
  1506. ]
  1507. [[package]]
  1508. name = "icu_normalizer_data"
  1509. version = "2.2.0"
  1510. source = "registry+https://github.com/rust-lang/crates.io-index"
  1511. checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
  1512. [[package]]
  1513. name = "icu_properties"
  1514. version = "2.2.0"
  1515. source = "registry+https://github.com/rust-lang/crates.io-index"
  1516. checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
  1517. dependencies = [
  1518. "icu_collections",
  1519. "icu_locale_core",
  1520. "icu_properties_data",
  1521. "icu_provider",
  1522. "zerotrie",
  1523. "zerovec",
  1524. ]
  1525. [[package]]
  1526. name = "icu_properties_data"
  1527. version = "2.2.0"
  1528. source = "registry+https://github.com/rust-lang/crates.io-index"
  1529. checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
  1530. [[package]]
  1531. name = "icu_provider"
  1532. version = "2.2.0"
  1533. source = "registry+https://github.com/rust-lang/crates.io-index"
  1534. checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
  1535. dependencies = [
  1536. "displaydoc",
  1537. "icu_locale_core",
  1538. "writeable",
  1539. "yoke",
  1540. "zerofrom",
  1541. "zerotrie",
  1542. "zerovec",
  1543. ]
  1544. [[package]]
  1545. name = "id-arena"
  1546. version = "2.3.0"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
  1549. [[package]]
  1550. name = "ident_case"
  1551. version = "1.0.1"
  1552. source = "registry+https://github.com/rust-lang/crates.io-index"
  1553. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  1554. [[package]]
  1555. name = "idna"
  1556. version = "1.1.0"
  1557. source = "registry+https://github.com/rust-lang/crates.io-index"
  1558. checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
  1559. dependencies = [
  1560. "idna_adapter",
  1561. "smallvec",
  1562. "utf8_iter",
  1563. ]
  1564. [[package]]
  1565. name = "idna_adapter"
  1566. version = "1.2.2"
  1567. source = "registry+https://github.com/rust-lang/crates.io-index"
  1568. checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
  1569. dependencies = [
  1570. "icu_normalizer",
  1571. "icu_properties",
  1572. ]
  1573. [[package]]
  1574. name = "indexmap"
  1575. version = "1.9.3"
  1576. source = "registry+https://github.com/rust-lang/crates.io-index"
  1577. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  1578. dependencies = [
  1579. "autocfg",
  1580. "hashbrown 0.12.3",
  1581. "serde",
  1582. ]
  1583. [[package]]
  1584. name = "indexmap"
  1585. version = "2.14.0"
  1586. source = "registry+https://github.com/rust-lang/crates.io-index"
  1587. checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
  1588. dependencies = [
  1589. "equivalent",
  1590. "hashbrown 0.17.1",
  1591. "serde",
  1592. "serde_core",
  1593. ]
  1594. [[package]]
  1595. name = "infer"
  1596. version = "0.19.0"
  1597. source = "registry+https://github.com/rust-lang/crates.io-index"
  1598. checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
  1599. dependencies = [
  1600. "cfb",
  1601. ]
  1602. [[package]]
  1603. name = "ipnet"
  1604. version = "2.12.0"
  1605. source = "registry+https://github.com/rust-lang/crates.io-index"
  1606. checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
  1607. [[package]]
  1608. name = "is-docker"
  1609. version = "0.2.0"
  1610. source = "registry+https://github.com/rust-lang/crates.io-index"
  1611. checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
  1612. dependencies = [
  1613. "once_cell",
  1614. ]
  1615. [[package]]
  1616. name = "is-wsl"
  1617. version = "0.4.0"
  1618. source = "registry+https://github.com/rust-lang/crates.io-index"
  1619. checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
  1620. dependencies = [
  1621. "is-docker",
  1622. "once_cell",
  1623. ]
  1624. [[package]]
  1625. name = "itoa"
  1626. version = "1.0.18"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
  1629. [[package]]
  1630. name = "javascriptcore-rs"
  1631. version = "1.1.2"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
  1634. dependencies = [
  1635. "bitflags 1.3.2",
  1636. "glib",
  1637. "javascriptcore-rs-sys",
  1638. ]
  1639. [[package]]
  1640. name = "javascriptcore-rs-sys"
  1641. version = "1.1.1"
  1642. source = "registry+https://github.com/rust-lang/crates.io-index"
  1643. checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
  1644. dependencies = [
  1645. "glib-sys",
  1646. "gobject-sys",
  1647. "libc",
  1648. "system-deps",
  1649. ]
  1650. [[package]]
  1651. name = "jni"
  1652. version = "0.21.1"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  1655. dependencies = [
  1656. "cesu8",
  1657. "cfg-if",
  1658. "combine",
  1659. "jni-sys 0.3.1",
  1660. "log",
  1661. "thiserror 1.0.69",
  1662. "walkdir",
  1663. "windows-sys 0.45.0",
  1664. ]
  1665. [[package]]
  1666. name = "jni-sys"
  1667. version = "0.3.1"
  1668. source = "registry+https://github.com/rust-lang/crates.io-index"
  1669. checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
  1670. dependencies = [
  1671. "jni-sys 0.4.1",
  1672. ]
  1673. [[package]]
  1674. name = "jni-sys"
  1675. version = "0.4.1"
  1676. source = "registry+https://github.com/rust-lang/crates.io-index"
  1677. checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
  1678. dependencies = [
  1679. "jni-sys-macros",
  1680. ]
  1681. [[package]]
  1682. name = "jni-sys-macros"
  1683. version = "0.4.1"
  1684. source = "registry+https://github.com/rust-lang/crates.io-index"
  1685. checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
  1686. dependencies = [
  1687. "quote",
  1688. "syn 2.0.117",
  1689. ]
  1690. [[package]]
  1691. name = "js-sys"
  1692. version = "0.3.98"
  1693. source = "registry+https://github.com/rust-lang/crates.io-index"
  1694. checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
  1695. dependencies = [
  1696. "cfg-if",
  1697. "futures-util",
  1698. "once_cell",
  1699. "wasm-bindgen",
  1700. ]
  1701. [[package]]
  1702. name = "json-patch"
  1703. version = "3.0.1"
  1704. source = "registry+https://github.com/rust-lang/crates.io-index"
  1705. checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
  1706. dependencies = [
  1707. "jsonptr",
  1708. "serde",
  1709. "serde_json",
  1710. "thiserror 1.0.69",
  1711. ]
  1712. [[package]]
  1713. name = "jsonptr"
  1714. version = "0.6.3"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
  1717. dependencies = [
  1718. "serde",
  1719. "serde_json",
  1720. ]
  1721. [[package]]
  1722. name = "keyboard-types"
  1723. version = "0.7.0"
  1724. source = "registry+https://github.com/rust-lang/crates.io-index"
  1725. checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
  1726. dependencies = [
  1727. "bitflags 2.11.1",
  1728. "serde",
  1729. "unicode-segmentation",
  1730. ]
  1731. [[package]]
  1732. name = "leb128fmt"
  1733. version = "0.1.0"
  1734. source = "registry+https://github.com/rust-lang/crates.io-index"
  1735. checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
  1736. [[package]]
  1737. name = "libappindicator"
  1738. version = "0.9.0"
  1739. source = "registry+https://github.com/rust-lang/crates.io-index"
  1740. checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
  1741. dependencies = [
  1742. "glib",
  1743. "gtk",
  1744. "gtk-sys",
  1745. "libappindicator-sys",
  1746. "log",
  1747. ]
  1748. [[package]]
  1749. name = "libappindicator-sys"
  1750. version = "0.9.0"
  1751. source = "registry+https://github.com/rust-lang/crates.io-index"
  1752. checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
  1753. dependencies = [
  1754. "gtk-sys",
  1755. "libloading",
  1756. "once_cell",
  1757. ]
  1758. [[package]]
  1759. name = "libc"
  1760. version = "0.2.186"
  1761. source = "registry+https://github.com/rust-lang/crates.io-index"
  1762. checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
  1763. [[package]]
  1764. name = "libdbus-sys"
  1765. version = "0.2.7"
  1766. source = "registry+https://github.com/rust-lang/crates.io-index"
  1767. checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
  1768. dependencies = [
  1769. "pkg-config",
  1770. ]
  1771. [[package]]
  1772. name = "libloading"
  1773. version = "0.7.4"
  1774. source = "registry+https://github.com/rust-lang/crates.io-index"
  1775. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  1776. dependencies = [
  1777. "cfg-if",
  1778. "winapi",
  1779. ]
  1780. [[package]]
  1781. name = "libredox"
  1782. version = "0.1.16"
  1783. source = "registry+https://github.com/rust-lang/crates.io-index"
  1784. checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
  1785. dependencies = [
  1786. "libc",
  1787. ]
  1788. [[package]]
  1789. name = "linux-raw-sys"
  1790. version = "0.12.1"
  1791. source = "registry+https://github.com/rust-lang/crates.io-index"
  1792. checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
  1793. [[package]]
  1794. name = "litemap"
  1795. version = "0.8.2"
  1796. source = "registry+https://github.com/rust-lang/crates.io-index"
  1797. checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
  1798. [[package]]
  1799. name = "lock_api"
  1800. version = "0.4.14"
  1801. source = "registry+https://github.com/rust-lang/crates.io-index"
  1802. checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
  1803. dependencies = [
  1804. "scopeguard",
  1805. ]
  1806. [[package]]
  1807. name = "log"
  1808. version = "0.4.29"
  1809. source = "registry+https://github.com/rust-lang/crates.io-index"
  1810. checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
  1811. [[package]]
  1812. name = "markup5ever"
  1813. version = "0.38.0"
  1814. source = "registry+https://github.com/rust-lang/crates.io-index"
  1815. checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
  1816. dependencies = [
  1817. "log",
  1818. "tendril",
  1819. "web_atoms",
  1820. ]
  1821. [[package]]
  1822. name = "memchr"
  1823. version = "2.8.0"
  1824. source = "registry+https://github.com/rust-lang/crates.io-index"
  1825. checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
  1826. [[package]]
  1827. name = "memoffset"
  1828. version = "0.9.1"
  1829. source = "registry+https://github.com/rust-lang/crates.io-index"
  1830. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  1831. dependencies = [
  1832. "autocfg",
  1833. ]
  1834. [[package]]
  1835. name = "mime"
  1836. version = "0.3.17"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  1839. [[package]]
  1840. name = "miniz_oxide"
  1841. version = "0.8.9"
  1842. source = "registry+https://github.com/rust-lang/crates.io-index"
  1843. checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
  1844. dependencies = [
  1845. "adler2",
  1846. "simd-adler32",
  1847. ]
  1848. [[package]]
  1849. name = "mio"
  1850. version = "1.2.0"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
  1853. dependencies = [
  1854. "libc",
  1855. "wasi",
  1856. "windows-sys 0.61.2",
  1857. ]
  1858. [[package]]
  1859. name = "muda"
  1860. version = "0.19.1"
  1861. source = "registry+https://github.com/rust-lang/crates.io-index"
  1862. checksum = "0ae8844f63b5b118e334e205585b8c5c17b984121dbdb179d44aeb087ffad3cb"
  1863. dependencies = [
  1864. "crossbeam-channel",
  1865. "dpi",
  1866. "gtk",
  1867. "keyboard-types",
  1868. "objc2",
  1869. "objc2-app-kit",
  1870. "objc2-core-foundation",
  1871. "objc2-foundation",
  1872. "once_cell",
  1873. "png 0.18.1",
  1874. "serde",
  1875. "thiserror 2.0.18",
  1876. "windows-sys 0.61.2",
  1877. ]
  1878. [[package]]
  1879. name = "ndk"
  1880. version = "0.9.0"
  1881. source = "registry+https://github.com/rust-lang/crates.io-index"
  1882. checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
  1883. dependencies = [
  1884. "bitflags 2.11.1",
  1885. "jni-sys 0.3.1",
  1886. "log",
  1887. "ndk-sys",
  1888. "num_enum",
  1889. "raw-window-handle",
  1890. "thiserror 1.0.69",
  1891. ]
  1892. [[package]]
  1893. name = "ndk-sys"
  1894. version = "0.6.0+11769913"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
  1897. dependencies = [
  1898. "jni-sys 0.3.1",
  1899. ]
  1900. [[package]]
  1901. name = "new_debug_unreachable"
  1902. version = "1.0.6"
  1903. source = "registry+https://github.com/rust-lang/crates.io-index"
  1904. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  1905. [[package]]
  1906. name = "num-conv"
  1907. version = "0.2.1"
  1908. source = "registry+https://github.com/rust-lang/crates.io-index"
  1909. checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
  1910. [[package]]
  1911. name = "num-traits"
  1912. version = "0.2.19"
  1913. source = "registry+https://github.com/rust-lang/crates.io-index"
  1914. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  1915. dependencies = [
  1916. "autocfg",
  1917. ]
  1918. [[package]]
  1919. name = "num_enum"
  1920. version = "0.7.6"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
  1923. dependencies = [
  1924. "num_enum_derive",
  1925. "rustversion",
  1926. ]
  1927. [[package]]
  1928. name = "num_enum_derive"
  1929. version = "0.7.6"
  1930. source = "registry+https://github.com/rust-lang/crates.io-index"
  1931. checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
  1932. dependencies = [
  1933. "proc-macro-crate 3.5.0",
  1934. "proc-macro2",
  1935. "quote",
  1936. "syn 2.0.117",
  1937. ]
  1938. [[package]]
  1939. name = "objc2"
  1940. version = "0.6.4"
  1941. source = "registry+https://github.com/rust-lang/crates.io-index"
  1942. checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
  1943. dependencies = [
  1944. "objc2-encode",
  1945. "objc2-exception-helper",
  1946. ]
  1947. [[package]]
  1948. name = "objc2-app-kit"
  1949. version = "0.3.2"
  1950. source = "registry+https://github.com/rust-lang/crates.io-index"
  1951. checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
  1952. dependencies = [
  1953. "bitflags 2.11.1",
  1954. "block2",
  1955. "objc2",
  1956. "objc2-core-foundation",
  1957. "objc2-foundation",
  1958. ]
  1959. [[package]]
  1960. name = "objc2-cloud-kit"
  1961. version = "0.3.2"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
  1964. dependencies = [
  1965. "bitflags 2.11.1",
  1966. "objc2",
  1967. "objc2-foundation",
  1968. ]
  1969. [[package]]
  1970. name = "objc2-core-data"
  1971. version = "0.3.2"
  1972. source = "registry+https://github.com/rust-lang/crates.io-index"
  1973. checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
  1974. dependencies = [
  1975. "objc2",
  1976. "objc2-foundation",
  1977. ]
  1978. [[package]]
  1979. name = "objc2-core-foundation"
  1980. version = "0.3.2"
  1981. source = "registry+https://github.com/rust-lang/crates.io-index"
  1982. checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
  1983. dependencies = [
  1984. "bitflags 2.11.1",
  1985. "dispatch2",
  1986. "objc2",
  1987. ]
  1988. [[package]]
  1989. name = "objc2-core-graphics"
  1990. version = "0.3.2"
  1991. source = "registry+https://github.com/rust-lang/crates.io-index"
  1992. checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
  1993. dependencies = [
  1994. "bitflags 2.11.1",
  1995. "dispatch2",
  1996. "objc2",
  1997. "objc2-core-foundation",
  1998. "objc2-io-surface",
  1999. ]
  2000. [[package]]
  2001. name = "objc2-core-image"
  2002. version = "0.3.2"
  2003. source = "registry+https://github.com/rust-lang/crates.io-index"
  2004. checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
  2005. dependencies = [
  2006. "objc2",
  2007. "objc2-foundation",
  2008. ]
  2009. [[package]]
  2010. name = "objc2-core-location"
  2011. version = "0.3.2"
  2012. source = "registry+https://github.com/rust-lang/crates.io-index"
  2013. checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
  2014. dependencies = [
  2015. "objc2",
  2016. "objc2-foundation",
  2017. ]
  2018. [[package]]
  2019. name = "objc2-core-text"
  2020. version = "0.3.2"
  2021. source = "registry+https://github.com/rust-lang/crates.io-index"
  2022. checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
  2023. dependencies = [
  2024. "bitflags 2.11.1",
  2025. "objc2",
  2026. "objc2-core-foundation",
  2027. "objc2-core-graphics",
  2028. ]
  2029. [[package]]
  2030. name = "objc2-encode"
  2031. version = "4.1.0"
  2032. source = "registry+https://github.com/rust-lang/crates.io-index"
  2033. checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
  2034. [[package]]
  2035. name = "objc2-exception-helper"
  2036. version = "0.1.1"
  2037. source = "registry+https://github.com/rust-lang/crates.io-index"
  2038. checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
  2039. dependencies = [
  2040. "cc",
  2041. ]
  2042. [[package]]
  2043. name = "objc2-foundation"
  2044. version = "0.3.2"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
  2047. dependencies = [
  2048. "bitflags 2.11.1",
  2049. "block2",
  2050. "objc2",
  2051. "objc2-core-foundation",
  2052. ]
  2053. [[package]]
  2054. name = "objc2-io-surface"
  2055. version = "0.3.2"
  2056. source = "registry+https://github.com/rust-lang/crates.io-index"
  2057. checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
  2058. dependencies = [
  2059. "bitflags 2.11.1",
  2060. "objc2",
  2061. "objc2-core-foundation",
  2062. ]
  2063. [[package]]
  2064. name = "objc2-quartz-core"
  2065. version = "0.3.2"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
  2068. dependencies = [
  2069. "bitflags 2.11.1",
  2070. "objc2",
  2071. "objc2-core-foundation",
  2072. "objc2-foundation",
  2073. ]
  2074. [[package]]
  2075. name = "objc2-ui-kit"
  2076. version = "0.3.2"
  2077. source = "registry+https://github.com/rust-lang/crates.io-index"
  2078. checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
  2079. dependencies = [
  2080. "bitflags 2.11.1",
  2081. "block2",
  2082. "objc2",
  2083. "objc2-cloud-kit",
  2084. "objc2-core-data",
  2085. "objc2-core-foundation",
  2086. "objc2-core-graphics",
  2087. "objc2-core-image",
  2088. "objc2-core-location",
  2089. "objc2-core-text",
  2090. "objc2-foundation",
  2091. "objc2-quartz-core",
  2092. "objc2-user-notifications",
  2093. ]
  2094. [[package]]
  2095. name = "objc2-user-notifications"
  2096. version = "0.3.2"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
  2099. dependencies = [
  2100. "objc2",
  2101. "objc2-foundation",
  2102. ]
  2103. [[package]]
  2104. name = "objc2-web-kit"
  2105. version = "0.3.2"
  2106. source = "registry+https://github.com/rust-lang/crates.io-index"
  2107. checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
  2108. dependencies = [
  2109. "bitflags 2.11.1",
  2110. "block2",
  2111. "objc2",
  2112. "objc2-app-kit",
  2113. "objc2-core-foundation",
  2114. "objc2-foundation",
  2115. ]
  2116. [[package]]
  2117. name = "once_cell"
  2118. version = "1.21.4"
  2119. source = "registry+https://github.com/rust-lang/crates.io-index"
  2120. checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
  2121. [[package]]
  2122. name = "open"
  2123. version = "5.3.5"
  2124. source = "registry+https://github.com/rust-lang/crates.io-index"
  2125. checksum = "2fbaa89d2ddc8473c78a3adf69eea8cffa28c483b8e02a971ef31527cd0fc92c"
  2126. dependencies = [
  2127. "dunce",
  2128. "is-wsl",
  2129. "libc",
  2130. "pathdiff",
  2131. ]
  2132. [[package]]
  2133. name = "option-ext"
  2134. version = "0.2.0"
  2135. source = "registry+https://github.com/rust-lang/crates.io-index"
  2136. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  2137. [[package]]
  2138. name = "ordered-stream"
  2139. version = "0.2.0"
  2140. source = "registry+https://github.com/rust-lang/crates.io-index"
  2141. checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
  2142. dependencies = [
  2143. "futures-core",
  2144. "pin-project-lite",
  2145. ]
  2146. [[package]]
  2147. name = "pango"
  2148. version = "0.18.3"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
  2151. dependencies = [
  2152. "gio",
  2153. "glib",
  2154. "libc",
  2155. "once_cell",
  2156. "pango-sys",
  2157. ]
  2158. [[package]]
  2159. name = "pango-sys"
  2160. version = "0.18.0"
  2161. source = "registry+https://github.com/rust-lang/crates.io-index"
  2162. checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
  2163. dependencies = [
  2164. "glib-sys",
  2165. "gobject-sys",
  2166. "libc",
  2167. "system-deps",
  2168. ]
  2169. [[package]]
  2170. name = "parking"
  2171. version = "2.2.1"
  2172. source = "registry+https://github.com/rust-lang/crates.io-index"
  2173. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  2174. [[package]]
  2175. name = "parking_lot"
  2176. version = "0.12.5"
  2177. source = "registry+https://github.com/rust-lang/crates.io-index"
  2178. checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
  2179. dependencies = [
  2180. "lock_api",
  2181. "parking_lot_core",
  2182. ]
  2183. [[package]]
  2184. name = "parking_lot_core"
  2185. version = "0.9.12"
  2186. source = "registry+https://github.com/rust-lang/crates.io-index"
  2187. checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
  2188. dependencies = [
  2189. "cfg-if",
  2190. "libc",
  2191. "redox_syscall",
  2192. "smallvec",
  2193. "windows-link 0.2.1",
  2194. ]
  2195. [[package]]
  2196. name = "pathdiff"
  2197. version = "0.2.3"
  2198. source = "registry+https://github.com/rust-lang/crates.io-index"
  2199. checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
  2200. [[package]]
  2201. name = "percent-encoding"
  2202. version = "2.3.2"
  2203. source = "registry+https://github.com/rust-lang/crates.io-index"
  2204. checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
  2205. [[package]]
  2206. name = "phf"
  2207. version = "0.13.1"
  2208. source = "registry+https://github.com/rust-lang/crates.io-index"
  2209. checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
  2210. dependencies = [
  2211. "phf_macros",
  2212. "phf_shared",
  2213. "serde",
  2214. ]
  2215. [[package]]
  2216. name = "phf_codegen"
  2217. version = "0.13.1"
  2218. source = "registry+https://github.com/rust-lang/crates.io-index"
  2219. checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
  2220. dependencies = [
  2221. "phf_generator",
  2222. "phf_shared",
  2223. ]
  2224. [[package]]
  2225. name = "phf_generator"
  2226. version = "0.13.1"
  2227. source = "registry+https://github.com/rust-lang/crates.io-index"
  2228. checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
  2229. dependencies = [
  2230. "fastrand",
  2231. "phf_shared",
  2232. ]
  2233. [[package]]
  2234. name = "phf_macros"
  2235. version = "0.13.1"
  2236. source = "registry+https://github.com/rust-lang/crates.io-index"
  2237. checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
  2238. dependencies = [
  2239. "phf_generator",
  2240. "phf_shared",
  2241. "proc-macro2",
  2242. "quote",
  2243. "syn 2.0.117",
  2244. ]
  2245. [[package]]
  2246. name = "phf_shared"
  2247. version = "0.13.1"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
  2250. dependencies = [
  2251. "siphasher",
  2252. ]
  2253. [[package]]
  2254. name = "pin-project-lite"
  2255. version = "0.2.17"
  2256. source = "registry+https://github.com/rust-lang/crates.io-index"
  2257. checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
  2258. [[package]]
  2259. name = "piper"
  2260. version = "0.2.5"
  2261. source = "registry+https://github.com/rust-lang/crates.io-index"
  2262. checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
  2263. dependencies = [
  2264. "atomic-waker",
  2265. "fastrand",
  2266. "futures-io",
  2267. ]
  2268. [[package]]
  2269. name = "pkg-config"
  2270. version = "0.3.33"
  2271. source = "registry+https://github.com/rust-lang/crates.io-index"
  2272. checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
  2273. [[package]]
  2274. name = "plist"
  2275. version = "1.9.0"
  2276. source = "registry+https://github.com/rust-lang/crates.io-index"
  2277. checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1"
  2278. dependencies = [
  2279. "base64 0.22.1",
  2280. "indexmap 2.14.0",
  2281. "quick-xml",
  2282. "serde",
  2283. "time",
  2284. ]
  2285. [[package]]
  2286. name = "png"
  2287. version = "0.17.16"
  2288. source = "registry+https://github.com/rust-lang/crates.io-index"
  2289. checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
  2290. dependencies = [
  2291. "bitflags 1.3.2",
  2292. "crc32fast",
  2293. "fdeflate",
  2294. "flate2",
  2295. "miniz_oxide",
  2296. ]
  2297. [[package]]
  2298. name = "png"
  2299. version = "0.18.1"
  2300. source = "registry+https://github.com/rust-lang/crates.io-index"
  2301. checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
  2302. dependencies = [
  2303. "bitflags 2.11.1",
  2304. "crc32fast",
  2305. "fdeflate",
  2306. "flate2",
  2307. "miniz_oxide",
  2308. ]
  2309. [[package]]
  2310. name = "polling"
  2311. version = "3.11.0"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
  2314. dependencies = [
  2315. "cfg-if",
  2316. "concurrent-queue",
  2317. "hermit-abi",
  2318. "pin-project-lite",
  2319. "rustix",
  2320. "windows-sys 0.61.2",
  2321. ]
  2322. [[package]]
  2323. name = "potential_utf"
  2324. version = "0.1.5"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
  2327. dependencies = [
  2328. "zerovec",
  2329. ]
  2330. [[package]]
  2331. name = "powerfmt"
  2332. version = "0.2.0"
  2333. source = "registry+https://github.com/rust-lang/crates.io-index"
  2334. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  2335. [[package]]
  2336. name = "precomputed-hash"
  2337. version = "0.1.1"
  2338. source = "registry+https://github.com/rust-lang/crates.io-index"
  2339. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  2340. [[package]]
  2341. name = "prettyplease"
  2342. version = "0.2.37"
  2343. source = "registry+https://github.com/rust-lang/crates.io-index"
  2344. checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
  2345. dependencies = [
  2346. "proc-macro2",
  2347. "syn 2.0.117",
  2348. ]
  2349. [[package]]
  2350. name = "proc-macro-crate"
  2351. version = "1.3.1"
  2352. source = "registry+https://github.com/rust-lang/crates.io-index"
  2353. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  2354. dependencies = [
  2355. "once_cell",
  2356. "toml_edit 0.19.15",
  2357. ]
  2358. [[package]]
  2359. name = "proc-macro-crate"
  2360. version = "2.0.2"
  2361. source = "registry+https://github.com/rust-lang/crates.io-index"
  2362. checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
  2363. dependencies = [
  2364. "toml_datetime 0.6.3",
  2365. "toml_edit 0.20.2",
  2366. ]
  2367. [[package]]
  2368. name = "proc-macro-crate"
  2369. version = "3.5.0"
  2370. source = "registry+https://github.com/rust-lang/crates.io-index"
  2371. checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
  2372. dependencies = [
  2373. "toml_edit 0.25.11+spec-1.1.0",
  2374. ]
  2375. [[package]]
  2376. name = "proc-macro-error"
  2377. version = "1.0.4"
  2378. source = "registry+https://github.com/rust-lang/crates.io-index"
  2379. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2380. dependencies = [
  2381. "proc-macro-error-attr",
  2382. "proc-macro2",
  2383. "quote",
  2384. "syn 1.0.109",
  2385. "version_check",
  2386. ]
  2387. [[package]]
  2388. name = "proc-macro-error-attr"
  2389. version = "1.0.4"
  2390. source = "registry+https://github.com/rust-lang/crates.io-index"
  2391. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2392. dependencies = [
  2393. "proc-macro2",
  2394. "quote",
  2395. "version_check",
  2396. ]
  2397. [[package]]
  2398. name = "proc-macro2"
  2399. version = "1.0.106"
  2400. source = "registry+https://github.com/rust-lang/crates.io-index"
  2401. checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
  2402. dependencies = [
  2403. "unicode-ident",
  2404. ]
  2405. [[package]]
  2406. name = "quick-xml"
  2407. version = "0.39.4"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
  2410. dependencies = [
  2411. "memchr",
  2412. ]
  2413. [[package]]
  2414. name = "quote"
  2415. version = "1.0.45"
  2416. source = "registry+https://github.com/rust-lang/crates.io-index"
  2417. checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
  2418. dependencies = [
  2419. "proc-macro2",
  2420. ]
  2421. [[package]]
  2422. name = "r-efi"
  2423. version = "5.3.0"
  2424. source = "registry+https://github.com/rust-lang/crates.io-index"
  2425. checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
  2426. [[package]]
  2427. name = "r-efi"
  2428. version = "6.0.0"
  2429. source = "registry+https://github.com/rust-lang/crates.io-index"
  2430. checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
  2431. [[package]]
  2432. name = "raw-window-handle"
  2433. version = "0.6.2"
  2434. source = "registry+https://github.com/rust-lang/crates.io-index"
  2435. checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
  2436. [[package]]
  2437. name = "redox_syscall"
  2438. version = "0.5.18"
  2439. source = "registry+https://github.com/rust-lang/crates.io-index"
  2440. checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
  2441. dependencies = [
  2442. "bitflags 2.11.1",
  2443. ]
  2444. [[package]]
  2445. name = "redox_users"
  2446. version = "0.5.2"
  2447. source = "registry+https://github.com/rust-lang/crates.io-index"
  2448. checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
  2449. dependencies = [
  2450. "getrandom 0.2.17",
  2451. "libredox",
  2452. "thiserror 2.0.18",
  2453. ]
  2454. [[package]]
  2455. name = "ref-cast"
  2456. version = "1.0.25"
  2457. source = "registry+https://github.com/rust-lang/crates.io-index"
  2458. checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
  2459. dependencies = [
  2460. "ref-cast-impl",
  2461. ]
  2462. [[package]]
  2463. name = "ref-cast-impl"
  2464. version = "1.0.25"
  2465. source = "registry+https://github.com/rust-lang/crates.io-index"
  2466. checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
  2467. dependencies = [
  2468. "proc-macro2",
  2469. "quote",
  2470. "syn 2.0.117",
  2471. ]
  2472. [[package]]
  2473. name = "regex"
  2474. version = "1.12.3"
  2475. source = "registry+https://github.com/rust-lang/crates.io-index"
  2476. checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
  2477. dependencies = [
  2478. "aho-corasick",
  2479. "memchr",
  2480. "regex-automata",
  2481. "regex-syntax",
  2482. ]
  2483. [[package]]
  2484. name = "regex-automata"
  2485. version = "0.4.14"
  2486. source = "registry+https://github.com/rust-lang/crates.io-index"
  2487. checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
  2488. dependencies = [
  2489. "aho-corasick",
  2490. "memchr",
  2491. "regex-syntax",
  2492. ]
  2493. [[package]]
  2494. name = "regex-syntax"
  2495. version = "0.8.10"
  2496. source = "registry+https://github.com/rust-lang/crates.io-index"
  2497. checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
  2498. [[package]]
  2499. name = "reqwest"
  2500. version = "0.13.3"
  2501. source = "registry+https://github.com/rust-lang/crates.io-index"
  2502. checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
  2503. dependencies = [
  2504. "base64 0.22.1",
  2505. "bytes",
  2506. "futures-core",
  2507. "futures-util",
  2508. "http",
  2509. "http-body",
  2510. "http-body-util",
  2511. "hyper",
  2512. "hyper-util",
  2513. "js-sys",
  2514. "log",
  2515. "percent-encoding",
  2516. "pin-project-lite",
  2517. "serde",
  2518. "serde_json",
  2519. "sync_wrapper",
  2520. "tokio",
  2521. "tokio-util",
  2522. "tower",
  2523. "tower-http",
  2524. "tower-service",
  2525. "url",
  2526. "wasm-bindgen",
  2527. "wasm-bindgen-futures",
  2528. "wasm-streams",
  2529. "web-sys",
  2530. ]
  2531. [[package]]
  2532. name = "rustc-hash"
  2533. version = "2.1.2"
  2534. source = "registry+https://github.com/rust-lang/crates.io-index"
  2535. checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
  2536. [[package]]
  2537. name = "rustc_version"
  2538. version = "0.4.1"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  2541. dependencies = [
  2542. "semver",
  2543. ]
  2544. [[package]]
  2545. name = "rustix"
  2546. version = "1.1.4"
  2547. source = "registry+https://github.com/rust-lang/crates.io-index"
  2548. checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
  2549. dependencies = [
  2550. "bitflags 2.11.1",
  2551. "errno",
  2552. "libc",
  2553. "linux-raw-sys",
  2554. "windows-sys 0.61.2",
  2555. ]
  2556. [[package]]
  2557. name = "rustversion"
  2558. version = "1.0.22"
  2559. source = "registry+https://github.com/rust-lang/crates.io-index"
  2560. checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
  2561. [[package]]
  2562. name = "same-file"
  2563. version = "1.0.6"
  2564. source = "registry+https://github.com/rust-lang/crates.io-index"
  2565. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  2566. dependencies = [
  2567. "winapi-util",
  2568. ]
  2569. [[package]]
  2570. name = "schemars"
  2571. version = "0.8.22"
  2572. source = "registry+https://github.com/rust-lang/crates.io-index"
  2573. checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
  2574. dependencies = [
  2575. "dyn-clone",
  2576. "indexmap 1.9.3",
  2577. "schemars_derive",
  2578. "serde",
  2579. "serde_json",
  2580. "url",
  2581. "uuid",
  2582. ]
  2583. [[package]]
  2584. name = "schemars"
  2585. version = "0.9.0"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
  2588. dependencies = [
  2589. "dyn-clone",
  2590. "ref-cast",
  2591. "serde",
  2592. "serde_json",
  2593. ]
  2594. [[package]]
  2595. name = "schemars"
  2596. version = "1.2.1"
  2597. source = "registry+https://github.com/rust-lang/crates.io-index"
  2598. checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
  2599. dependencies = [
  2600. "dyn-clone",
  2601. "ref-cast",
  2602. "serde",
  2603. "serde_json",
  2604. ]
  2605. [[package]]
  2606. name = "schemars_derive"
  2607. version = "0.8.22"
  2608. source = "registry+https://github.com/rust-lang/crates.io-index"
  2609. checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
  2610. dependencies = [
  2611. "proc-macro2",
  2612. "quote",
  2613. "serde_derive_internals",
  2614. "syn 2.0.117",
  2615. ]
  2616. [[package]]
  2617. name = "scopeguard"
  2618. version = "1.2.0"
  2619. source = "registry+https://github.com/rust-lang/crates.io-index"
  2620. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  2621. [[package]]
  2622. name = "selectors"
  2623. version = "0.36.1"
  2624. source = "registry+https://github.com/rust-lang/crates.io-index"
  2625. checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
  2626. dependencies = [
  2627. "bitflags 2.11.1",
  2628. "cssparser",
  2629. "derive_more",
  2630. "log",
  2631. "new_debug_unreachable",
  2632. "phf",
  2633. "phf_codegen",
  2634. "precomputed-hash",
  2635. "rustc-hash",
  2636. "servo_arc",
  2637. "smallvec",
  2638. ]
  2639. [[package]]
  2640. name = "semver"
  2641. version = "1.0.28"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
  2644. dependencies = [
  2645. "serde",
  2646. "serde_core",
  2647. ]
  2648. [[package]]
  2649. name = "serde"
  2650. version = "1.0.228"
  2651. source = "registry+https://github.com/rust-lang/crates.io-index"
  2652. checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
  2653. dependencies = [
  2654. "serde_core",
  2655. "serde_derive",
  2656. ]
  2657. [[package]]
  2658. name = "serde-untagged"
  2659. version = "0.1.9"
  2660. source = "registry+https://github.com/rust-lang/crates.io-index"
  2661. checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
  2662. dependencies = [
  2663. "erased-serde",
  2664. "serde",
  2665. "serde_core",
  2666. "typeid",
  2667. ]
  2668. [[package]]
  2669. name = "serde_core"
  2670. version = "1.0.228"
  2671. source = "registry+https://github.com/rust-lang/crates.io-index"
  2672. checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
  2673. dependencies = [
  2674. "serde_derive",
  2675. ]
  2676. [[package]]
  2677. name = "serde_derive"
  2678. version = "1.0.228"
  2679. source = "registry+https://github.com/rust-lang/crates.io-index"
  2680. checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
  2681. dependencies = [
  2682. "proc-macro2",
  2683. "quote",
  2684. "syn 2.0.117",
  2685. ]
  2686. [[package]]
  2687. name = "serde_derive_internals"
  2688. version = "0.29.1"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
  2691. dependencies = [
  2692. "proc-macro2",
  2693. "quote",
  2694. "syn 2.0.117",
  2695. ]
  2696. [[package]]
  2697. name = "serde_json"
  2698. version = "1.0.149"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
  2701. dependencies = [
  2702. "itoa",
  2703. "memchr",
  2704. "serde",
  2705. "serde_core",
  2706. "zmij",
  2707. ]
  2708. [[package]]
  2709. name = "serde_repr"
  2710. version = "0.1.20"
  2711. source = "registry+https://github.com/rust-lang/crates.io-index"
  2712. checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
  2713. dependencies = [
  2714. "proc-macro2",
  2715. "quote",
  2716. "syn 2.0.117",
  2717. ]
  2718. [[package]]
  2719. name = "serde_spanned"
  2720. version = "0.6.9"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
  2723. dependencies = [
  2724. "serde",
  2725. ]
  2726. [[package]]
  2727. name = "serde_spanned"
  2728. version = "1.1.1"
  2729. source = "registry+https://github.com/rust-lang/crates.io-index"
  2730. checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
  2731. dependencies = [
  2732. "serde_core",
  2733. ]
  2734. [[package]]
  2735. name = "serde_with"
  2736. version = "3.20.0"
  2737. source = "registry+https://github.com/rust-lang/crates.io-index"
  2738. checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2"
  2739. dependencies = [
  2740. "base64 0.22.1",
  2741. "bs58",
  2742. "chrono",
  2743. "hex",
  2744. "indexmap 1.9.3",
  2745. "indexmap 2.14.0",
  2746. "schemars 0.9.0",
  2747. "schemars 1.2.1",
  2748. "serde_core",
  2749. "serde_json",
  2750. "serde_with_macros",
  2751. "time",
  2752. ]
  2753. [[package]]
  2754. name = "serde_with_macros"
  2755. version = "3.20.0"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac"
  2758. dependencies = [
  2759. "darling",
  2760. "proc-macro2",
  2761. "quote",
  2762. "syn 2.0.117",
  2763. ]
  2764. [[package]]
  2765. name = "serialize-to-javascript"
  2766. version = "0.1.2"
  2767. source = "registry+https://github.com/rust-lang/crates.io-index"
  2768. checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
  2769. dependencies = [
  2770. "serde",
  2771. "serde_json",
  2772. "serialize-to-javascript-impl",
  2773. ]
  2774. [[package]]
  2775. name = "serialize-to-javascript-impl"
  2776. version = "0.1.2"
  2777. source = "registry+https://github.com/rust-lang/crates.io-index"
  2778. checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
  2779. dependencies = [
  2780. "proc-macro2",
  2781. "quote",
  2782. "syn 2.0.117",
  2783. ]
  2784. [[package]]
  2785. name = "servo_arc"
  2786. version = "0.4.3"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
  2789. dependencies = [
  2790. "stable_deref_trait",
  2791. ]
  2792. [[package]]
  2793. name = "sha2"
  2794. version = "0.10.9"
  2795. source = "registry+https://github.com/rust-lang/crates.io-index"
  2796. checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
  2797. dependencies = [
  2798. "cfg-if",
  2799. "cpufeatures",
  2800. "digest",
  2801. ]
  2802. [[package]]
  2803. name = "shlex"
  2804. version = "1.3.0"
  2805. source = "registry+https://github.com/rust-lang/crates.io-index"
  2806. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  2807. [[package]]
  2808. name = "signal-hook-registry"
  2809. version = "1.4.8"
  2810. source = "registry+https://github.com/rust-lang/crates.io-index"
  2811. checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
  2812. dependencies = [
  2813. "errno",
  2814. "libc",
  2815. ]
  2816. [[package]]
  2817. name = "simd-adler32"
  2818. version = "0.3.9"
  2819. source = "registry+https://github.com/rust-lang/crates.io-index"
  2820. checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
  2821. [[package]]
  2822. name = "siphasher"
  2823. version = "1.0.3"
  2824. source = "registry+https://github.com/rust-lang/crates.io-index"
  2825. checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
  2826. [[package]]
  2827. name = "slab"
  2828. version = "0.4.12"
  2829. source = "registry+https://github.com/rust-lang/crates.io-index"
  2830. checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
  2831. [[package]]
  2832. name = "smallvec"
  2833. version = "1.15.1"
  2834. source = "registry+https://github.com/rust-lang/crates.io-index"
  2835. checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
  2836. [[package]]
  2837. name = "socket2"
  2838. version = "0.6.3"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
  2841. dependencies = [
  2842. "libc",
  2843. "windows-sys 0.61.2",
  2844. ]
  2845. [[package]]
  2846. name = "softbuffer"
  2847. version = "0.4.8"
  2848. source = "registry+https://github.com/rust-lang/crates.io-index"
  2849. checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
  2850. dependencies = [
  2851. "bytemuck",
  2852. "js-sys",
  2853. "ndk",
  2854. "objc2",
  2855. "objc2-core-foundation",
  2856. "objc2-core-graphics",
  2857. "objc2-foundation",
  2858. "objc2-quartz-core",
  2859. "raw-window-handle",
  2860. "redox_syscall",
  2861. "tracing",
  2862. "wasm-bindgen",
  2863. "web-sys",
  2864. "windows-sys 0.61.2",
  2865. ]
  2866. [[package]]
  2867. name = "soup3"
  2868. version = "0.5.0"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
  2871. dependencies = [
  2872. "futures-channel",
  2873. "gio",
  2874. "glib",
  2875. "libc",
  2876. "soup3-sys",
  2877. ]
  2878. [[package]]
  2879. name = "soup3-sys"
  2880. version = "0.5.0"
  2881. source = "registry+https://github.com/rust-lang/crates.io-index"
  2882. checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
  2883. dependencies = [
  2884. "gio-sys",
  2885. "glib-sys",
  2886. "gobject-sys",
  2887. "libc",
  2888. "system-deps",
  2889. ]
  2890. [[package]]
  2891. name = "stable_deref_trait"
  2892. version = "1.2.1"
  2893. source = "registry+https://github.com/rust-lang/crates.io-index"
  2894. checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
  2895. [[package]]
  2896. name = "string_cache"
  2897. version = "0.9.0"
  2898. source = "registry+https://github.com/rust-lang/crates.io-index"
  2899. checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
  2900. dependencies = [
  2901. "new_debug_unreachable",
  2902. "parking_lot",
  2903. "phf_shared",
  2904. "precomputed-hash",
  2905. ]
  2906. [[package]]
  2907. name = "string_cache_codegen"
  2908. version = "0.6.1"
  2909. source = "registry+https://github.com/rust-lang/crates.io-index"
  2910. checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
  2911. dependencies = [
  2912. "phf_generator",
  2913. "phf_shared",
  2914. "proc-macro2",
  2915. "quote",
  2916. ]
  2917. [[package]]
  2918. name = "strsim"
  2919. version = "0.11.1"
  2920. source = "registry+https://github.com/rust-lang/crates.io-index"
  2921. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  2922. [[package]]
  2923. name = "swift-rs"
  2924. version = "1.0.7"
  2925. source = "registry+https://github.com/rust-lang/crates.io-index"
  2926. checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
  2927. dependencies = [
  2928. "base64 0.21.7",
  2929. "serde",
  2930. "serde_json",
  2931. ]
  2932. [[package]]
  2933. name = "syn"
  2934. version = "1.0.109"
  2935. source = "registry+https://github.com/rust-lang/crates.io-index"
  2936. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  2937. dependencies = [
  2938. "proc-macro2",
  2939. "unicode-ident",
  2940. ]
  2941. [[package]]
  2942. name = "syn"
  2943. version = "2.0.117"
  2944. source = "registry+https://github.com/rust-lang/crates.io-index"
  2945. checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
  2946. dependencies = [
  2947. "proc-macro2",
  2948. "quote",
  2949. "unicode-ident",
  2950. ]
  2951. [[package]]
  2952. name = "sync_wrapper"
  2953. version = "1.0.2"
  2954. source = "registry+https://github.com/rust-lang/crates.io-index"
  2955. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  2956. dependencies = [
  2957. "futures-core",
  2958. ]
  2959. [[package]]
  2960. name = "synstructure"
  2961. version = "0.13.2"
  2962. source = "registry+https://github.com/rust-lang/crates.io-index"
  2963. checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  2964. dependencies = [
  2965. "proc-macro2",
  2966. "quote",
  2967. "syn 2.0.117",
  2968. ]
  2969. [[package]]
  2970. name = "system-deps"
  2971. version = "6.2.2"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  2974. dependencies = [
  2975. "cfg-expr",
  2976. "heck 0.5.0",
  2977. "pkg-config",
  2978. "toml 0.8.2",
  2979. "version-compare",
  2980. ]
  2981. [[package]]
  2982. name = "tao"
  2983. version = "0.35.2"
  2984. source = "registry+https://github.com/rust-lang/crates.io-index"
  2985. checksum = "a33f7f9e486ade65fcf1e45c440f9236c904f5c1002cdc7fc6ae582777345ce4"
  2986. dependencies = [
  2987. "bitflags 2.11.1",
  2988. "block2",
  2989. "core-foundation",
  2990. "core-graphics",
  2991. "crossbeam-channel",
  2992. "dbus",
  2993. "dispatch2",
  2994. "dlopen2",
  2995. "dpi",
  2996. "gdkwayland-sys",
  2997. "gdkx11-sys",
  2998. "gtk",
  2999. "jni",
  3000. "libc",
  3001. "log",
  3002. "ndk",
  3003. "ndk-sys",
  3004. "objc2",
  3005. "objc2-app-kit",
  3006. "objc2-foundation",
  3007. "objc2-ui-kit",
  3008. "once_cell",
  3009. "parking_lot",
  3010. "percent-encoding",
  3011. "raw-window-handle",
  3012. "tao-macros",
  3013. "unicode-segmentation",
  3014. "url",
  3015. "windows 0.61.3",
  3016. "windows-core 0.61.2",
  3017. "windows-version",
  3018. "x11-dl",
  3019. ]
  3020. [[package]]
  3021. name = "tao-macros"
  3022. version = "0.1.3"
  3023. source = "registry+https://github.com/rust-lang/crates.io-index"
  3024. checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
  3025. dependencies = [
  3026. "proc-macro2",
  3027. "quote",
  3028. "syn 2.0.117",
  3029. ]
  3030. [[package]]
  3031. name = "target-lexicon"
  3032. version = "0.12.16"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  3035. [[package]]
  3036. name = "tauri"
  3037. version = "2.11.1"
  3038. source = "registry+https://github.com/rust-lang/crates.io-index"
  3039. checksum = "b93bd86d231f0a8138f11a02a584769fe4b703dc36ae133d783228dbc4801405"
  3040. dependencies = [
  3041. "anyhow",
  3042. "bytes",
  3043. "cookie",
  3044. "dirs",
  3045. "dunce",
  3046. "embed_plist",
  3047. "getrandom 0.3.4",
  3048. "glob",
  3049. "gtk",
  3050. "heck 0.5.0",
  3051. "http",
  3052. "http-range",
  3053. "jni",
  3054. "libc",
  3055. "log",
  3056. "mime",
  3057. "muda",
  3058. "objc2",
  3059. "objc2-app-kit",
  3060. "objc2-foundation",
  3061. "objc2-ui-kit",
  3062. "objc2-web-kit",
  3063. "percent-encoding",
  3064. "plist",
  3065. "raw-window-handle",
  3066. "reqwest",
  3067. "serde",
  3068. "serde_json",
  3069. "serde_repr",
  3070. "serialize-to-javascript",
  3071. "swift-rs",
  3072. "tauri-build",
  3073. "tauri-macros",
  3074. "tauri-runtime",
  3075. "tauri-runtime-wry",
  3076. "tauri-utils",
  3077. "thiserror 2.0.18",
  3078. "tokio",
  3079. "tray-icon",
  3080. "url",
  3081. "webkit2gtk",
  3082. "webview2-com 0.38.2",
  3083. "window-vibrancy",
  3084. "windows 0.61.3",
  3085. ]
  3086. [[package]]
  3087. name = "tauri-build"
  3088. version = "2.6.1"
  3089. source = "registry+https://github.com/rust-lang/crates.io-index"
  3090. checksum = "3a318b234cc2dea65f575467bafcfb76286bce228ebc3778e337d61d03213007"
  3091. dependencies = [
  3092. "anyhow",
  3093. "cargo_toml",
  3094. "dirs",
  3095. "glob",
  3096. "heck 0.5.0",
  3097. "json-patch",
  3098. "schemars 0.8.22",
  3099. "semver",
  3100. "serde",
  3101. "serde_json",
  3102. "tauri-utils",
  3103. "tauri-winres",
  3104. "walkdir",
  3105. ]
  3106. [[package]]
  3107. name = "tauri-codegen"
  3108. version = "2.6.1"
  3109. source = "registry+https://github.com/rust-lang/crates.io-index"
  3110. checksum = "6bd11644962add2549a60b7e7c6800f17d7020156e02f516021d8103e80cc528"
  3111. dependencies = [
  3112. "base64 0.22.1",
  3113. "brotli",
  3114. "ico",
  3115. "json-patch",
  3116. "plist",
  3117. "png 0.17.16",
  3118. "proc-macro2",
  3119. "quote",
  3120. "semver",
  3121. "serde",
  3122. "serde_json",
  3123. "sha2",
  3124. "syn 2.0.117",
  3125. "tauri-utils",
  3126. "thiserror 2.0.18",
  3127. "time",
  3128. "url",
  3129. "uuid",
  3130. "walkdir",
  3131. ]
  3132. [[package]]
  3133. name = "tauri-macros"
  3134. version = "2.6.1"
  3135. source = "registry+https://github.com/rust-lang/crates.io-index"
  3136. checksum = "fed9d3742a37a355d2e47c9af924e9fbc112abb76f9835d35d4780e318419502"
  3137. dependencies = [
  3138. "heck 0.5.0",
  3139. "proc-macro2",
  3140. "quote",
  3141. "syn 2.0.117",
  3142. "tauri-codegen",
  3143. "tauri-utils",
  3144. ]
  3145. [[package]]
  3146. name = "tauri-plugin"
  3147. version = "2.6.1"
  3148. source = "registry+https://github.com/rust-lang/crates.io-index"
  3149. checksum = "eefb2c18e8a605c23edb48fc56bb77381199e1a1e7f6ff0c9b970afe7b3cb8ee"
  3150. dependencies = [
  3151. "anyhow",
  3152. "glob",
  3153. "plist",
  3154. "schemars 0.8.22",
  3155. "serde",
  3156. "serde_json",
  3157. "tauri-utils",
  3158. "walkdir",
  3159. ]
  3160. [[package]]
  3161. name = "tauri-plugin-global-shortcut"
  3162. version = "2.3.1"
  3163. source = "registry+https://github.com/rust-lang/crates.io-index"
  3164. checksum = "424af23c7e88d05e4a1a6fc2c7be077912f8c76bd7900fd50aa2b7cbf5a2c405"
  3165. dependencies = [
  3166. "global-hotkey",
  3167. "log",
  3168. "serde",
  3169. "serde_json",
  3170. "tauri",
  3171. "tauri-plugin",
  3172. "thiserror 2.0.18",
  3173. ]
  3174. [[package]]
  3175. name = "tauri-plugin-opener"
  3176. version = "2.5.4"
  3177. source = "registry+https://github.com/rust-lang/crates.io-index"
  3178. checksum = "17e1bea14edce6b793a04e2417e3fd924b9bc4faae83cdee7d714156cceeed29"
  3179. dependencies = [
  3180. "dunce",
  3181. "glob",
  3182. "objc2-app-kit",
  3183. "objc2-foundation",
  3184. "open",
  3185. "schemars 0.8.22",
  3186. "serde",
  3187. "serde_json",
  3188. "tauri",
  3189. "tauri-plugin",
  3190. "thiserror 2.0.18",
  3191. "url",
  3192. "windows 0.61.3",
  3193. "zbus",
  3194. ]
  3195. [[package]]
  3196. name = "tauri-runtime"
  3197. version = "2.11.1"
  3198. source = "registry+https://github.com/rust-lang/crates.io-index"
  3199. checksum = "8fef478ba1d2ac21c2d528740b24d0cb315e1e8b1111aae53fafac34804371fc"
  3200. dependencies = [
  3201. "cookie",
  3202. "dpi",
  3203. "gtk",
  3204. "http",
  3205. "jni",
  3206. "objc2",
  3207. "objc2-ui-kit",
  3208. "objc2-web-kit",
  3209. "raw-window-handle",
  3210. "serde",
  3211. "serde_json",
  3212. "tauri-utils",
  3213. "thiserror 2.0.18",
  3214. "url",
  3215. "webkit2gtk",
  3216. "webview2-com 0.38.2",
  3217. "windows 0.61.3",
  3218. ]
  3219. [[package]]
  3220. name = "tauri-runtime-wry"
  3221. version = "2.11.1"
  3222. source = "registry+https://github.com/rust-lang/crates.io-index"
  3223. checksum = "a3989df2ae1c476404fe0a2e8ffc4cfbde97e51efd613c2bb5355fbc9ab52cf0"
  3224. dependencies = [
  3225. "gtk",
  3226. "http",
  3227. "jni",
  3228. "log",
  3229. "objc2",
  3230. "objc2-app-kit",
  3231. "once_cell",
  3232. "percent-encoding",
  3233. "raw-window-handle",
  3234. "softbuffer",
  3235. "tao",
  3236. "tauri-runtime",
  3237. "tauri-utils",
  3238. "url",
  3239. "webkit2gtk",
  3240. "webview2-com 0.38.2",
  3241. "windows 0.61.3",
  3242. "wry",
  3243. ]
  3244. [[package]]
  3245. name = "tauri-utils"
  3246. version = "2.9.1"
  3247. source = "registry+https://github.com/rust-lang/crates.io-index"
  3248. checksum = "d57200389a2f82b4b0a40ae29ca19b6978116e8f4d4e974c3234ce40c0ffbdec"
  3249. dependencies = [
  3250. "anyhow",
  3251. "brotli",
  3252. "cargo_metadata",
  3253. "ctor",
  3254. "dom_query",
  3255. "dunce",
  3256. "glob",
  3257. "http",
  3258. "infer",
  3259. "json-patch",
  3260. "log",
  3261. "memchr",
  3262. "phf",
  3263. "plist",
  3264. "proc-macro2",
  3265. "quote",
  3266. "regex",
  3267. "schemars 0.8.22",
  3268. "semver",
  3269. "serde",
  3270. "serde-untagged",
  3271. "serde_json",
  3272. "serde_with",
  3273. "swift-rs",
  3274. "thiserror 2.0.18",
  3275. "toml 1.1.2+spec-1.1.0",
  3276. "url",
  3277. "urlpattern",
  3278. "uuid",
  3279. "walkdir",
  3280. ]
  3281. [[package]]
  3282. name = "tauri-winres"
  3283. version = "0.3.6"
  3284. source = "registry+https://github.com/rust-lang/crates.io-index"
  3285. checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6"
  3286. dependencies = [
  3287. "dunce",
  3288. "embed-resource",
  3289. "toml 1.1.2+spec-1.1.0",
  3290. ]
  3291. [[package]]
  3292. name = "tempfile"
  3293. version = "3.27.0"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
  3296. dependencies = [
  3297. "fastrand",
  3298. "getrandom 0.4.2",
  3299. "once_cell",
  3300. "rustix",
  3301. "windows-sys 0.61.2",
  3302. ]
  3303. [[package]]
  3304. name = "tendril"
  3305. version = "0.5.0"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
  3308. dependencies = [
  3309. "new_debug_unreachable",
  3310. "utf-8",
  3311. ]
  3312. [[package]]
  3313. name = "thiserror"
  3314. version = "1.0.69"
  3315. source = "registry+https://github.com/rust-lang/crates.io-index"
  3316. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  3317. dependencies = [
  3318. "thiserror-impl 1.0.69",
  3319. ]
  3320. [[package]]
  3321. name = "thiserror"
  3322. version = "2.0.18"
  3323. source = "registry+https://github.com/rust-lang/crates.io-index"
  3324. checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
  3325. dependencies = [
  3326. "thiserror-impl 2.0.18",
  3327. ]
  3328. [[package]]
  3329. name = "thiserror-impl"
  3330. version = "1.0.69"
  3331. source = "registry+https://github.com/rust-lang/crates.io-index"
  3332. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  3333. dependencies = [
  3334. "proc-macro2",
  3335. "quote",
  3336. "syn 2.0.117",
  3337. ]
  3338. [[package]]
  3339. name = "thiserror-impl"
  3340. version = "2.0.18"
  3341. source = "registry+https://github.com/rust-lang/crates.io-index"
  3342. checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
  3343. dependencies = [
  3344. "proc-macro2",
  3345. "quote",
  3346. "syn 2.0.117",
  3347. ]
  3348. [[package]]
  3349. name = "time"
  3350. version = "0.3.47"
  3351. source = "registry+https://github.com/rust-lang/crates.io-index"
  3352. checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
  3353. dependencies = [
  3354. "deranged",
  3355. "itoa",
  3356. "num-conv",
  3357. "powerfmt",
  3358. "serde_core",
  3359. "time-core",
  3360. "time-macros",
  3361. ]
  3362. [[package]]
  3363. name = "time-core"
  3364. version = "0.1.8"
  3365. source = "registry+https://github.com/rust-lang/crates.io-index"
  3366. checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
  3367. [[package]]
  3368. name = "time-macros"
  3369. version = "0.2.27"
  3370. source = "registry+https://github.com/rust-lang/crates.io-index"
  3371. checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
  3372. dependencies = [
  3373. "num-conv",
  3374. "time-core",
  3375. ]
  3376. [[package]]
  3377. name = "tinystr"
  3378. version = "0.8.3"
  3379. source = "registry+https://github.com/rust-lang/crates.io-index"
  3380. checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
  3381. dependencies = [
  3382. "displaydoc",
  3383. "zerovec",
  3384. ]
  3385. [[package]]
  3386. name = "tinyvec"
  3387. version = "1.11.0"
  3388. source = "registry+https://github.com/rust-lang/crates.io-index"
  3389. checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
  3390. dependencies = [
  3391. "tinyvec_macros",
  3392. ]
  3393. [[package]]
  3394. name = "tinyvec_macros"
  3395. version = "0.1.1"
  3396. source = "registry+https://github.com/rust-lang/crates.io-index"
  3397. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  3398. [[package]]
  3399. name = "tokio"
  3400. version = "1.52.3"
  3401. source = "registry+https://github.com/rust-lang/crates.io-index"
  3402. checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
  3403. dependencies = [
  3404. "bytes",
  3405. "libc",
  3406. "mio",
  3407. "pin-project-lite",
  3408. "signal-hook-registry",
  3409. "socket2",
  3410. "windows-sys 0.61.2",
  3411. ]
  3412. [[package]]
  3413. name = "tokio-util"
  3414. version = "0.7.18"
  3415. source = "registry+https://github.com/rust-lang/crates.io-index"
  3416. checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
  3417. dependencies = [
  3418. "bytes",
  3419. "futures-core",
  3420. "futures-sink",
  3421. "pin-project-lite",
  3422. "tokio",
  3423. ]
  3424. [[package]]
  3425. name = "toml"
  3426. version = "0.8.2"
  3427. source = "registry+https://github.com/rust-lang/crates.io-index"
  3428. checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
  3429. dependencies = [
  3430. "serde",
  3431. "serde_spanned 0.6.9",
  3432. "toml_datetime 0.6.3",
  3433. "toml_edit 0.20.2",
  3434. ]
  3435. [[package]]
  3436. name = "toml"
  3437. version = "0.9.12+spec-1.1.0"
  3438. source = "registry+https://github.com/rust-lang/crates.io-index"
  3439. checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
  3440. dependencies = [
  3441. "indexmap 2.14.0",
  3442. "serde_core",
  3443. "serde_spanned 1.1.1",
  3444. "toml_datetime 0.7.5+spec-1.1.0",
  3445. "toml_parser",
  3446. "toml_writer",
  3447. "winnow 0.7.15",
  3448. ]
  3449. [[package]]
  3450. name = "toml"
  3451. version = "1.1.2+spec-1.1.0"
  3452. source = "registry+https://github.com/rust-lang/crates.io-index"
  3453. checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
  3454. dependencies = [
  3455. "indexmap 2.14.0",
  3456. "serde_core",
  3457. "serde_spanned 1.1.1",
  3458. "toml_datetime 1.1.1+spec-1.1.0",
  3459. "toml_parser",
  3460. "toml_writer",
  3461. "winnow 1.0.2",
  3462. ]
  3463. [[package]]
  3464. name = "toml_datetime"
  3465. version = "0.6.3"
  3466. source = "registry+https://github.com/rust-lang/crates.io-index"
  3467. checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
  3468. dependencies = [
  3469. "serde",
  3470. ]
  3471. [[package]]
  3472. name = "toml_datetime"
  3473. version = "0.7.5+spec-1.1.0"
  3474. source = "registry+https://github.com/rust-lang/crates.io-index"
  3475. checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
  3476. dependencies = [
  3477. "serde_core",
  3478. ]
  3479. [[package]]
  3480. name = "toml_datetime"
  3481. version = "1.1.1+spec-1.1.0"
  3482. source = "registry+https://github.com/rust-lang/crates.io-index"
  3483. checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
  3484. dependencies = [
  3485. "serde_core",
  3486. ]
  3487. [[package]]
  3488. name = "toml_edit"
  3489. version = "0.19.15"
  3490. source = "registry+https://github.com/rust-lang/crates.io-index"
  3491. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  3492. dependencies = [
  3493. "indexmap 2.14.0",
  3494. "toml_datetime 0.6.3",
  3495. "winnow 0.5.40",
  3496. ]
  3497. [[package]]
  3498. name = "toml_edit"
  3499. version = "0.20.2"
  3500. source = "registry+https://github.com/rust-lang/crates.io-index"
  3501. checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
  3502. dependencies = [
  3503. "indexmap 2.14.0",
  3504. "serde",
  3505. "serde_spanned 0.6.9",
  3506. "toml_datetime 0.6.3",
  3507. "winnow 0.5.40",
  3508. ]
  3509. [[package]]
  3510. name = "toml_edit"
  3511. version = "0.25.11+spec-1.1.0"
  3512. source = "registry+https://github.com/rust-lang/crates.io-index"
  3513. checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
  3514. dependencies = [
  3515. "indexmap 2.14.0",
  3516. "toml_datetime 1.1.1+spec-1.1.0",
  3517. "toml_parser",
  3518. "winnow 1.0.2",
  3519. ]
  3520. [[package]]
  3521. name = "toml_parser"
  3522. version = "1.1.2+spec-1.1.0"
  3523. source = "registry+https://github.com/rust-lang/crates.io-index"
  3524. checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
  3525. dependencies = [
  3526. "winnow 1.0.2",
  3527. ]
  3528. [[package]]
  3529. name = "toml_writer"
  3530. version = "1.1.1+spec-1.1.0"
  3531. source = "registry+https://github.com/rust-lang/crates.io-index"
  3532. checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
  3533. [[package]]
  3534. name = "tower"
  3535. version = "0.5.3"
  3536. source = "registry+https://github.com/rust-lang/crates.io-index"
  3537. checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
  3538. dependencies = [
  3539. "futures-core",
  3540. "futures-util",
  3541. "pin-project-lite",
  3542. "sync_wrapper",
  3543. "tokio",
  3544. "tower-layer",
  3545. "tower-service",
  3546. ]
  3547. [[package]]
  3548. name = "tower-http"
  3549. version = "0.6.10"
  3550. source = "registry+https://github.com/rust-lang/crates.io-index"
  3551. checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
  3552. dependencies = [
  3553. "bitflags 2.11.1",
  3554. "bytes",
  3555. "futures-util",
  3556. "http",
  3557. "http-body",
  3558. "pin-project-lite",
  3559. "tower",
  3560. "tower-layer",
  3561. "tower-service",
  3562. "url",
  3563. ]
  3564. [[package]]
  3565. name = "tower-layer"
  3566. version = "0.3.3"
  3567. source = "registry+https://github.com/rust-lang/crates.io-index"
  3568. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  3569. [[package]]
  3570. name = "tower-service"
  3571. version = "0.3.3"
  3572. source = "registry+https://github.com/rust-lang/crates.io-index"
  3573. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  3574. [[package]]
  3575. name = "tracing"
  3576. version = "0.1.44"
  3577. source = "registry+https://github.com/rust-lang/crates.io-index"
  3578. checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
  3579. dependencies = [
  3580. "pin-project-lite",
  3581. "tracing-attributes",
  3582. "tracing-core",
  3583. ]
  3584. [[package]]
  3585. name = "tracing-attributes"
  3586. version = "0.1.31"
  3587. source = "registry+https://github.com/rust-lang/crates.io-index"
  3588. checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
  3589. dependencies = [
  3590. "proc-macro2",
  3591. "quote",
  3592. "syn 2.0.117",
  3593. ]
  3594. [[package]]
  3595. name = "tracing-core"
  3596. version = "0.1.36"
  3597. source = "registry+https://github.com/rust-lang/crates.io-index"
  3598. checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
  3599. dependencies = [
  3600. "once_cell",
  3601. ]
  3602. [[package]]
  3603. name = "tray-icon"
  3604. version = "0.23.1"
  3605. source = "registry+https://github.com/rust-lang/crates.io-index"
  3606. checksum = "15edbb0d80583e85ee8df283410038e17314df5cba30da2087a54a85216c0773"
  3607. dependencies = [
  3608. "crossbeam-channel",
  3609. "dirs",
  3610. "libappindicator",
  3611. "muda",
  3612. "objc2",
  3613. "objc2-app-kit",
  3614. "objc2-core-foundation",
  3615. "objc2-core-graphics",
  3616. "objc2-foundation",
  3617. "once_cell",
  3618. "png 0.18.1",
  3619. "serde",
  3620. "thiserror 2.0.18",
  3621. "windows-sys 0.61.2",
  3622. ]
  3623. [[package]]
  3624. name = "try-lock"
  3625. version = "0.2.5"
  3626. source = "registry+https://github.com/rust-lang/crates.io-index"
  3627. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  3628. [[package]]
  3629. name = "typeid"
  3630. version = "1.0.3"
  3631. source = "registry+https://github.com/rust-lang/crates.io-index"
  3632. checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
  3633. [[package]]
  3634. name = "typenum"
  3635. version = "1.20.0"
  3636. source = "registry+https://github.com/rust-lang/crates.io-index"
  3637. checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
  3638. [[package]]
  3639. name = "uds_windows"
  3640. version = "1.2.1"
  3641. source = "registry+https://github.com/rust-lang/crates.io-index"
  3642. checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
  3643. dependencies = [
  3644. "memoffset",
  3645. "tempfile",
  3646. "windows-sys 0.61.2",
  3647. ]
  3648. [[package]]
  3649. name = "unic-char-property"
  3650. version = "0.9.0"
  3651. source = "registry+https://github.com/rust-lang/crates.io-index"
  3652. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  3653. dependencies = [
  3654. "unic-char-range",
  3655. ]
  3656. [[package]]
  3657. name = "unic-char-range"
  3658. version = "0.9.0"
  3659. source = "registry+https://github.com/rust-lang/crates.io-index"
  3660. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  3661. [[package]]
  3662. name = "unic-common"
  3663. version = "0.9.0"
  3664. source = "registry+https://github.com/rust-lang/crates.io-index"
  3665. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  3666. [[package]]
  3667. name = "unic-ucd-ident"
  3668. version = "0.9.0"
  3669. source = "registry+https://github.com/rust-lang/crates.io-index"
  3670. checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
  3671. dependencies = [
  3672. "unic-char-property",
  3673. "unic-char-range",
  3674. "unic-ucd-version",
  3675. ]
  3676. [[package]]
  3677. name = "unic-ucd-version"
  3678. version = "0.9.0"
  3679. source = "registry+https://github.com/rust-lang/crates.io-index"
  3680. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  3681. dependencies = [
  3682. "unic-common",
  3683. ]
  3684. [[package]]
  3685. name = "unicode-ident"
  3686. version = "1.0.24"
  3687. source = "registry+https://github.com/rust-lang/crates.io-index"
  3688. checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
  3689. [[package]]
  3690. name = "unicode-segmentation"
  3691. version = "1.13.2"
  3692. source = "registry+https://github.com/rust-lang/crates.io-index"
  3693. checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
  3694. [[package]]
  3695. name = "unicode-xid"
  3696. version = "0.2.6"
  3697. source = "registry+https://github.com/rust-lang/crates.io-index"
  3698. checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
  3699. [[package]]
  3700. name = "url"
  3701. version = "2.5.8"
  3702. source = "registry+https://github.com/rust-lang/crates.io-index"
  3703. checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
  3704. dependencies = [
  3705. "form_urlencoded",
  3706. "idna",
  3707. "percent-encoding",
  3708. "serde",
  3709. "serde_derive",
  3710. ]
  3711. [[package]]
  3712. name = "urlpattern"
  3713. version = "0.3.0"
  3714. source = "registry+https://github.com/rust-lang/crates.io-index"
  3715. checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
  3716. dependencies = [
  3717. "regex",
  3718. "serde",
  3719. "unic-ucd-ident",
  3720. "url",
  3721. ]
  3722. [[package]]
  3723. name = "utf-8"
  3724. version = "0.7.6"
  3725. source = "registry+https://github.com/rust-lang/crates.io-index"
  3726. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  3727. [[package]]
  3728. name = "utf8_iter"
  3729. version = "1.0.4"
  3730. source = "registry+https://github.com/rust-lang/crates.io-index"
  3731. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  3732. [[package]]
  3733. name = "uuid"
  3734. version = "1.23.1"
  3735. source = "registry+https://github.com/rust-lang/crates.io-index"
  3736. checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
  3737. dependencies = [
  3738. "getrandom 0.4.2",
  3739. "js-sys",
  3740. "serde_core",
  3741. "wasm-bindgen",
  3742. ]
  3743. [[package]]
  3744. name = "version-compare"
  3745. version = "0.2.1"
  3746. source = "registry+https://github.com/rust-lang/crates.io-index"
  3747. checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
  3748. [[package]]
  3749. name = "version_check"
  3750. version = "0.9.5"
  3751. source = "registry+https://github.com/rust-lang/crates.io-index"
  3752. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  3753. [[package]]
  3754. name = "vswhom"
  3755. version = "0.1.0"
  3756. source = "registry+https://github.com/rust-lang/crates.io-index"
  3757. checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
  3758. dependencies = [
  3759. "libc",
  3760. "vswhom-sys",
  3761. ]
  3762. [[package]]
  3763. name = "vswhom-sys"
  3764. version = "0.1.3"
  3765. source = "registry+https://github.com/rust-lang/crates.io-index"
  3766. checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
  3767. dependencies = [
  3768. "cc",
  3769. "libc",
  3770. ]
  3771. [[package]]
  3772. name = "walkdir"
  3773. version = "2.5.0"
  3774. source = "registry+https://github.com/rust-lang/crates.io-index"
  3775. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  3776. dependencies = [
  3777. "same-file",
  3778. "winapi-util",
  3779. ]
  3780. [[package]]
  3781. name = "want"
  3782. version = "0.3.1"
  3783. source = "registry+https://github.com/rust-lang/crates.io-index"
  3784. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  3785. dependencies = [
  3786. "try-lock",
  3787. ]
  3788. [[package]]
  3789. name = "wasi"
  3790. version = "0.11.1+wasi-snapshot-preview1"
  3791. source = "registry+https://github.com/rust-lang/crates.io-index"
  3792. checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
  3793. [[package]]
  3794. name = "wasip2"
  3795. version = "1.0.3+wasi-0.2.9"
  3796. source = "registry+https://github.com/rust-lang/crates.io-index"
  3797. checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
  3798. dependencies = [
  3799. "wit-bindgen 0.57.1",
  3800. ]
  3801. [[package]]
  3802. name = "wasip3"
  3803. version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
  3804. source = "registry+https://github.com/rust-lang/crates.io-index"
  3805. checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
  3806. dependencies = [
  3807. "wit-bindgen 0.51.0",
  3808. ]
  3809. [[package]]
  3810. name = "wasm-bindgen"
  3811. version = "0.2.121"
  3812. source = "registry+https://github.com/rust-lang/crates.io-index"
  3813. checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
  3814. dependencies = [
  3815. "cfg-if",
  3816. "once_cell",
  3817. "rustversion",
  3818. "wasm-bindgen-macro",
  3819. "wasm-bindgen-shared",
  3820. ]
  3821. [[package]]
  3822. name = "wasm-bindgen-futures"
  3823. version = "0.4.71"
  3824. source = "registry+https://github.com/rust-lang/crates.io-index"
  3825. checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
  3826. dependencies = [
  3827. "js-sys",
  3828. "wasm-bindgen",
  3829. ]
  3830. [[package]]
  3831. name = "wasm-bindgen-macro"
  3832. version = "0.2.121"
  3833. source = "registry+https://github.com/rust-lang/crates.io-index"
  3834. checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
  3835. dependencies = [
  3836. "quote",
  3837. "wasm-bindgen-macro-support",
  3838. ]
  3839. [[package]]
  3840. name = "wasm-bindgen-macro-support"
  3841. version = "0.2.121"
  3842. source = "registry+https://github.com/rust-lang/crates.io-index"
  3843. checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
  3844. dependencies = [
  3845. "bumpalo",
  3846. "proc-macro2",
  3847. "quote",
  3848. "syn 2.0.117",
  3849. "wasm-bindgen-shared",
  3850. ]
  3851. [[package]]
  3852. name = "wasm-bindgen-shared"
  3853. version = "0.2.121"
  3854. source = "registry+https://github.com/rust-lang/crates.io-index"
  3855. checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
  3856. dependencies = [
  3857. "unicode-ident",
  3858. ]
  3859. [[package]]
  3860. name = "wasm-encoder"
  3861. version = "0.244.0"
  3862. source = "registry+https://github.com/rust-lang/crates.io-index"
  3863. checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
  3864. dependencies = [
  3865. "leb128fmt",
  3866. "wasmparser",
  3867. ]
  3868. [[package]]
  3869. name = "wasm-metadata"
  3870. version = "0.244.0"
  3871. source = "registry+https://github.com/rust-lang/crates.io-index"
  3872. checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
  3873. dependencies = [
  3874. "anyhow",
  3875. "indexmap 2.14.0",
  3876. "wasm-encoder",
  3877. "wasmparser",
  3878. ]
  3879. [[package]]
  3880. name = "wasm-streams"
  3881. version = "0.5.0"
  3882. source = "registry+https://github.com/rust-lang/crates.io-index"
  3883. checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
  3884. dependencies = [
  3885. "futures-util",
  3886. "js-sys",
  3887. "wasm-bindgen",
  3888. "wasm-bindgen-futures",
  3889. "web-sys",
  3890. ]
  3891. [[package]]
  3892. name = "wasmparser"
  3893. version = "0.244.0"
  3894. source = "registry+https://github.com/rust-lang/crates.io-index"
  3895. checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
  3896. dependencies = [
  3897. "bitflags 2.11.1",
  3898. "hashbrown 0.15.5",
  3899. "indexmap 2.14.0",
  3900. "semver",
  3901. ]
  3902. [[package]]
  3903. name = "web-sys"
  3904. version = "0.3.98"
  3905. source = "registry+https://github.com/rust-lang/crates.io-index"
  3906. checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
  3907. dependencies = [
  3908. "js-sys",
  3909. "wasm-bindgen",
  3910. ]
  3911. [[package]]
  3912. name = "web_atoms"
  3913. version = "0.2.4"
  3914. source = "registry+https://github.com/rust-lang/crates.io-index"
  3915. checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
  3916. dependencies = [
  3917. "phf",
  3918. "phf_codegen",
  3919. "string_cache",
  3920. "string_cache_codegen",
  3921. ]
  3922. [[package]]
  3923. name = "webkit2gtk"
  3924. version = "2.0.2"
  3925. source = "registry+https://github.com/rust-lang/crates.io-index"
  3926. checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
  3927. dependencies = [
  3928. "bitflags 1.3.2",
  3929. "cairo-rs",
  3930. "gdk",
  3931. "gdk-sys",
  3932. "gio",
  3933. "gio-sys",
  3934. "glib",
  3935. "glib-sys",
  3936. "gobject-sys",
  3937. "gtk",
  3938. "gtk-sys",
  3939. "javascriptcore-rs",
  3940. "libc",
  3941. "once_cell",
  3942. "soup3",
  3943. "webkit2gtk-sys",
  3944. ]
  3945. [[package]]
  3946. name = "webkit2gtk-sys"
  3947. version = "2.0.2"
  3948. source = "registry+https://github.com/rust-lang/crates.io-index"
  3949. checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
  3950. dependencies = [
  3951. "bitflags 1.3.2",
  3952. "cairo-sys-rs",
  3953. "gdk-sys",
  3954. "gio-sys",
  3955. "glib-sys",
  3956. "gobject-sys",
  3957. "gtk-sys",
  3958. "javascriptcore-rs-sys",
  3959. "libc",
  3960. "pkg-config",
  3961. "soup3-sys",
  3962. "system-deps",
  3963. ]
  3964. [[package]]
  3965. name = "webview2-com"
  3966. version = "0.34.0"
  3967. source = "registry+https://github.com/rust-lang/crates.io-index"
  3968. checksum = "823e7ebcfaea51e78f72c87fc3b65a1e602c321f407a0b36dbb327d7bb7cd921"
  3969. dependencies = [
  3970. "webview2-com-macros",
  3971. "webview2-com-sys 0.34.0",
  3972. "windows 0.58.0",
  3973. "windows-core 0.58.0",
  3974. "windows-implement 0.58.0",
  3975. "windows-interface 0.58.0",
  3976. ]
  3977. [[package]]
  3978. name = "webview2-com"
  3979. version = "0.38.2"
  3980. source = "registry+https://github.com/rust-lang/crates.io-index"
  3981. checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
  3982. dependencies = [
  3983. "webview2-com-macros",
  3984. "webview2-com-sys 0.38.2",
  3985. "windows 0.61.3",
  3986. "windows-core 0.61.2",
  3987. "windows-implement 0.60.2",
  3988. "windows-interface 0.59.3",
  3989. ]
  3990. [[package]]
  3991. name = "webview2-com-macros"
  3992. version = "0.8.1"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
  3995. dependencies = [
  3996. "proc-macro2",
  3997. "quote",
  3998. "syn 2.0.117",
  3999. ]
  4000. [[package]]
  4001. name = "webview2-com-sys"
  4002. version = "0.34.0"
  4003. source = "registry+https://github.com/rust-lang/crates.io-index"
  4004. checksum = "7a82bce72db6e5ee83c68b5de1e2cd6ea195b9fbff91cb37df5884cbe3222df4"
  4005. dependencies = [
  4006. "thiserror 1.0.69",
  4007. "windows 0.58.0",
  4008. "windows-core 0.58.0",
  4009. ]
  4010. [[package]]
  4011. name = "webview2-com-sys"
  4012. version = "0.38.2"
  4013. source = "registry+https://github.com/rust-lang/crates.io-index"
  4014. checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
  4015. dependencies = [
  4016. "thiserror 2.0.18",
  4017. "windows 0.61.3",
  4018. "windows-core 0.61.2",
  4019. ]
  4020. [[package]]
  4021. name = "winapi"
  4022. version = "0.3.9"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4025. dependencies = [
  4026. "winapi-i686-pc-windows-gnu",
  4027. "winapi-x86_64-pc-windows-gnu",
  4028. ]
  4029. [[package]]
  4030. name = "winapi-i686-pc-windows-gnu"
  4031. version = "0.4.0"
  4032. source = "registry+https://github.com/rust-lang/crates.io-index"
  4033. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4034. [[package]]
  4035. name = "winapi-util"
  4036. version = "0.1.11"
  4037. source = "registry+https://github.com/rust-lang/crates.io-index"
  4038. checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
  4039. dependencies = [
  4040. "windows-sys 0.61.2",
  4041. ]
  4042. [[package]]
  4043. name = "winapi-x86_64-pc-windows-gnu"
  4044. version = "0.4.0"
  4045. source = "registry+https://github.com/rust-lang/crates.io-index"
  4046. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4047. [[package]]
  4048. name = "window-vibrancy"
  4049. version = "0.6.0"
  4050. source = "registry+https://github.com/rust-lang/crates.io-index"
  4051. checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
  4052. dependencies = [
  4053. "objc2",
  4054. "objc2-app-kit",
  4055. "objc2-core-foundation",
  4056. "objc2-foundation",
  4057. "raw-window-handle",
  4058. "windows-sys 0.59.0",
  4059. "windows-version",
  4060. ]
  4061. [[package]]
  4062. name = "windows"
  4063. version = "0.58.0"
  4064. source = "registry+https://github.com/rust-lang/crates.io-index"
  4065. checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
  4066. dependencies = [
  4067. "windows-core 0.58.0",
  4068. "windows-targets 0.52.6",
  4069. ]
  4070. [[package]]
  4071. name = "windows"
  4072. version = "0.61.3"
  4073. source = "registry+https://github.com/rust-lang/crates.io-index"
  4074. checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
  4075. dependencies = [
  4076. "windows-collections",
  4077. "windows-core 0.61.2",
  4078. "windows-future",
  4079. "windows-link 0.1.3",
  4080. "windows-numerics",
  4081. ]
  4082. [[package]]
  4083. name = "windows-collections"
  4084. version = "0.2.0"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
  4087. dependencies = [
  4088. "windows-core 0.61.2",
  4089. ]
  4090. [[package]]
  4091. name = "windows-core"
  4092. version = "0.58.0"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
  4095. dependencies = [
  4096. "windows-implement 0.58.0",
  4097. "windows-interface 0.58.0",
  4098. "windows-result 0.2.0",
  4099. "windows-strings 0.1.0",
  4100. "windows-targets 0.52.6",
  4101. ]
  4102. [[package]]
  4103. name = "windows-core"
  4104. version = "0.61.2"
  4105. source = "registry+https://github.com/rust-lang/crates.io-index"
  4106. checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
  4107. dependencies = [
  4108. "windows-implement 0.60.2",
  4109. "windows-interface 0.59.3",
  4110. "windows-link 0.1.3",
  4111. "windows-result 0.3.4",
  4112. "windows-strings 0.4.2",
  4113. ]
  4114. [[package]]
  4115. name = "windows-core"
  4116. version = "0.62.2"
  4117. source = "registry+https://github.com/rust-lang/crates.io-index"
  4118. checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
  4119. dependencies = [
  4120. "windows-implement 0.60.2",
  4121. "windows-interface 0.59.3",
  4122. "windows-link 0.2.1",
  4123. "windows-result 0.4.1",
  4124. "windows-strings 0.5.1",
  4125. ]
  4126. [[package]]
  4127. name = "windows-future"
  4128. version = "0.2.1"
  4129. source = "registry+https://github.com/rust-lang/crates.io-index"
  4130. checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
  4131. dependencies = [
  4132. "windows-core 0.61.2",
  4133. "windows-link 0.1.3",
  4134. "windows-threading",
  4135. ]
  4136. [[package]]
  4137. name = "windows-implement"
  4138. version = "0.58.0"
  4139. source = "registry+https://github.com/rust-lang/crates.io-index"
  4140. checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
  4141. dependencies = [
  4142. "proc-macro2",
  4143. "quote",
  4144. "syn 2.0.117",
  4145. ]
  4146. [[package]]
  4147. name = "windows-implement"
  4148. version = "0.60.2"
  4149. source = "registry+https://github.com/rust-lang/crates.io-index"
  4150. checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
  4151. dependencies = [
  4152. "proc-macro2",
  4153. "quote",
  4154. "syn 2.0.117",
  4155. ]
  4156. [[package]]
  4157. name = "windows-interface"
  4158. version = "0.58.0"
  4159. source = "registry+https://github.com/rust-lang/crates.io-index"
  4160. checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
  4161. dependencies = [
  4162. "proc-macro2",
  4163. "quote",
  4164. "syn 2.0.117",
  4165. ]
  4166. [[package]]
  4167. name = "windows-interface"
  4168. version = "0.59.3"
  4169. source = "registry+https://github.com/rust-lang/crates.io-index"
  4170. checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
  4171. dependencies = [
  4172. "proc-macro2",
  4173. "quote",
  4174. "syn 2.0.117",
  4175. ]
  4176. [[package]]
  4177. name = "windows-link"
  4178. version = "0.1.3"
  4179. source = "registry+https://github.com/rust-lang/crates.io-index"
  4180. checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
  4181. [[package]]
  4182. name = "windows-link"
  4183. version = "0.2.1"
  4184. source = "registry+https://github.com/rust-lang/crates.io-index"
  4185. checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
  4186. [[package]]
  4187. name = "windows-numerics"
  4188. version = "0.2.0"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
  4191. dependencies = [
  4192. "windows-core 0.61.2",
  4193. "windows-link 0.1.3",
  4194. ]
  4195. [[package]]
  4196. name = "windows-result"
  4197. version = "0.2.0"
  4198. source = "registry+https://github.com/rust-lang/crates.io-index"
  4199. checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
  4200. dependencies = [
  4201. "windows-targets 0.52.6",
  4202. ]
  4203. [[package]]
  4204. name = "windows-result"
  4205. version = "0.3.4"
  4206. source = "registry+https://github.com/rust-lang/crates.io-index"
  4207. checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
  4208. dependencies = [
  4209. "windows-link 0.1.3",
  4210. ]
  4211. [[package]]
  4212. name = "windows-result"
  4213. version = "0.4.1"
  4214. source = "registry+https://github.com/rust-lang/crates.io-index"
  4215. checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
  4216. dependencies = [
  4217. "windows-link 0.2.1",
  4218. ]
  4219. [[package]]
  4220. name = "windows-strings"
  4221. version = "0.1.0"
  4222. source = "registry+https://github.com/rust-lang/crates.io-index"
  4223. checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
  4224. dependencies = [
  4225. "windows-result 0.2.0",
  4226. "windows-targets 0.52.6",
  4227. ]
  4228. [[package]]
  4229. name = "windows-strings"
  4230. version = "0.4.2"
  4231. source = "registry+https://github.com/rust-lang/crates.io-index"
  4232. checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
  4233. dependencies = [
  4234. "windows-link 0.1.3",
  4235. ]
  4236. [[package]]
  4237. name = "windows-strings"
  4238. version = "0.5.1"
  4239. source = "registry+https://github.com/rust-lang/crates.io-index"
  4240. checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
  4241. dependencies = [
  4242. "windows-link 0.2.1",
  4243. ]
  4244. [[package]]
  4245. name = "windows-sys"
  4246. version = "0.45.0"
  4247. source = "registry+https://github.com/rust-lang/crates.io-index"
  4248. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4249. dependencies = [
  4250. "windows-targets 0.42.2",
  4251. ]
  4252. [[package]]
  4253. name = "windows-sys"
  4254. version = "0.59.0"
  4255. source = "registry+https://github.com/rust-lang/crates.io-index"
  4256. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  4257. dependencies = [
  4258. "windows-targets 0.52.6",
  4259. ]
  4260. [[package]]
  4261. name = "windows-sys"
  4262. version = "0.61.2"
  4263. source = "registry+https://github.com/rust-lang/crates.io-index"
  4264. checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
  4265. dependencies = [
  4266. "windows-link 0.2.1",
  4267. ]
  4268. [[package]]
  4269. name = "windows-targets"
  4270. version = "0.42.2"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  4273. dependencies = [
  4274. "windows_aarch64_gnullvm 0.42.2",
  4275. "windows_aarch64_msvc 0.42.2",
  4276. "windows_i686_gnu 0.42.2",
  4277. "windows_i686_msvc 0.42.2",
  4278. "windows_x86_64_gnu 0.42.2",
  4279. "windows_x86_64_gnullvm 0.42.2",
  4280. "windows_x86_64_msvc 0.42.2",
  4281. ]
  4282. [[package]]
  4283. name = "windows-targets"
  4284. version = "0.52.6"
  4285. source = "registry+https://github.com/rust-lang/crates.io-index"
  4286. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  4287. dependencies = [
  4288. "windows_aarch64_gnullvm 0.52.6",
  4289. "windows_aarch64_msvc 0.52.6",
  4290. "windows_i686_gnu 0.52.6",
  4291. "windows_i686_gnullvm",
  4292. "windows_i686_msvc 0.52.6",
  4293. "windows_x86_64_gnu 0.52.6",
  4294. "windows_x86_64_gnullvm 0.52.6",
  4295. "windows_x86_64_msvc 0.52.6",
  4296. ]
  4297. [[package]]
  4298. name = "windows-threading"
  4299. version = "0.1.0"
  4300. source = "registry+https://github.com/rust-lang/crates.io-index"
  4301. checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
  4302. dependencies = [
  4303. "windows-link 0.1.3",
  4304. ]
  4305. [[package]]
  4306. name = "windows-version"
  4307. version = "0.1.7"
  4308. source = "registry+https://github.com/rust-lang/crates.io-index"
  4309. checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
  4310. dependencies = [
  4311. "windows-link 0.2.1",
  4312. ]
  4313. [[package]]
  4314. name = "windows_aarch64_gnullvm"
  4315. version = "0.42.2"
  4316. source = "registry+https://github.com/rust-lang/crates.io-index"
  4317. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  4318. [[package]]
  4319. name = "windows_aarch64_gnullvm"
  4320. version = "0.52.6"
  4321. source = "registry+https://github.com/rust-lang/crates.io-index"
  4322. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  4323. [[package]]
  4324. name = "windows_aarch64_msvc"
  4325. version = "0.42.2"
  4326. source = "registry+https://github.com/rust-lang/crates.io-index"
  4327. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  4328. [[package]]
  4329. name = "windows_aarch64_msvc"
  4330. version = "0.52.6"
  4331. source = "registry+https://github.com/rust-lang/crates.io-index"
  4332. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  4333. [[package]]
  4334. name = "windows_i686_gnu"
  4335. version = "0.42.2"
  4336. source = "registry+https://github.com/rust-lang/crates.io-index"
  4337. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  4338. [[package]]
  4339. name = "windows_i686_gnu"
  4340. version = "0.52.6"
  4341. source = "registry+https://github.com/rust-lang/crates.io-index"
  4342. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  4343. [[package]]
  4344. name = "windows_i686_gnullvm"
  4345. version = "0.52.6"
  4346. source = "registry+https://github.com/rust-lang/crates.io-index"
  4347. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  4348. [[package]]
  4349. name = "windows_i686_msvc"
  4350. version = "0.42.2"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  4353. [[package]]
  4354. name = "windows_i686_msvc"
  4355. version = "0.52.6"
  4356. source = "registry+https://github.com/rust-lang/crates.io-index"
  4357. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  4358. [[package]]
  4359. name = "windows_x86_64_gnu"
  4360. version = "0.42.2"
  4361. source = "registry+https://github.com/rust-lang/crates.io-index"
  4362. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  4363. [[package]]
  4364. name = "windows_x86_64_gnu"
  4365. version = "0.52.6"
  4366. source = "registry+https://github.com/rust-lang/crates.io-index"
  4367. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  4368. [[package]]
  4369. name = "windows_x86_64_gnullvm"
  4370. version = "0.42.2"
  4371. source = "registry+https://github.com/rust-lang/crates.io-index"
  4372. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  4373. [[package]]
  4374. name = "windows_x86_64_gnullvm"
  4375. version = "0.52.6"
  4376. source = "registry+https://github.com/rust-lang/crates.io-index"
  4377. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  4378. [[package]]
  4379. name = "windows_x86_64_msvc"
  4380. version = "0.42.2"
  4381. source = "registry+https://github.com/rust-lang/crates.io-index"
  4382. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  4383. [[package]]
  4384. name = "windows_x86_64_msvc"
  4385. version = "0.52.6"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  4388. [[package]]
  4389. name = "winnow"
  4390. version = "0.5.40"
  4391. source = "registry+https://github.com/rust-lang/crates.io-index"
  4392. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  4393. dependencies = [
  4394. "memchr",
  4395. ]
  4396. [[package]]
  4397. name = "winnow"
  4398. version = "0.7.15"
  4399. source = "registry+https://github.com/rust-lang/crates.io-index"
  4400. checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
  4401. [[package]]
  4402. name = "winnow"
  4403. version = "1.0.2"
  4404. source = "registry+https://github.com/rust-lang/crates.io-index"
  4405. checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
  4406. dependencies = [
  4407. "memchr",
  4408. ]
  4409. [[package]]
  4410. name = "winreg"
  4411. version = "0.55.0"
  4412. source = "registry+https://github.com/rust-lang/crates.io-index"
  4413. checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
  4414. dependencies = [
  4415. "cfg-if",
  4416. "windows-sys 0.59.0",
  4417. ]
  4418. [[package]]
  4419. name = "wit-bindgen"
  4420. version = "0.51.0"
  4421. source = "registry+https://github.com/rust-lang/crates.io-index"
  4422. checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
  4423. dependencies = [
  4424. "wit-bindgen-rust-macro",
  4425. ]
  4426. [[package]]
  4427. name = "wit-bindgen"
  4428. version = "0.57.1"
  4429. source = "registry+https://github.com/rust-lang/crates.io-index"
  4430. checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
  4431. [[package]]
  4432. name = "wit-bindgen-core"
  4433. version = "0.51.0"
  4434. source = "registry+https://github.com/rust-lang/crates.io-index"
  4435. checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
  4436. dependencies = [
  4437. "anyhow",
  4438. "heck 0.5.0",
  4439. "wit-parser",
  4440. ]
  4441. [[package]]
  4442. name = "wit-bindgen-rust"
  4443. version = "0.51.0"
  4444. source = "registry+https://github.com/rust-lang/crates.io-index"
  4445. checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
  4446. dependencies = [
  4447. "anyhow",
  4448. "heck 0.5.0",
  4449. "indexmap 2.14.0",
  4450. "prettyplease",
  4451. "syn 2.0.117",
  4452. "wasm-metadata",
  4453. "wit-bindgen-core",
  4454. "wit-component",
  4455. ]
  4456. [[package]]
  4457. name = "wit-bindgen-rust-macro"
  4458. version = "0.51.0"
  4459. source = "registry+https://github.com/rust-lang/crates.io-index"
  4460. checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
  4461. dependencies = [
  4462. "anyhow",
  4463. "prettyplease",
  4464. "proc-macro2",
  4465. "quote",
  4466. "syn 2.0.117",
  4467. "wit-bindgen-core",
  4468. "wit-bindgen-rust",
  4469. ]
  4470. [[package]]
  4471. name = "wit-component"
  4472. version = "0.244.0"
  4473. source = "registry+https://github.com/rust-lang/crates.io-index"
  4474. checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
  4475. dependencies = [
  4476. "anyhow",
  4477. "bitflags 2.11.1",
  4478. "indexmap 2.14.0",
  4479. "log",
  4480. "serde",
  4481. "serde_derive",
  4482. "serde_json",
  4483. "wasm-encoder",
  4484. "wasm-metadata",
  4485. "wasmparser",
  4486. "wit-parser",
  4487. ]
  4488. [[package]]
  4489. name = "wit-parser"
  4490. version = "0.244.0"
  4491. source = "registry+https://github.com/rust-lang/crates.io-index"
  4492. checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
  4493. dependencies = [
  4494. "anyhow",
  4495. "id-arena",
  4496. "indexmap 2.14.0",
  4497. "log",
  4498. "semver",
  4499. "serde",
  4500. "serde_derive",
  4501. "serde_json",
  4502. "unicode-xid",
  4503. "wasmparser",
  4504. ]
  4505. [[package]]
  4506. name = "writeable"
  4507. version = "0.6.3"
  4508. source = "registry+https://github.com/rust-lang/crates.io-index"
  4509. checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
  4510. [[package]]
  4511. name = "wry"
  4512. version = "0.55.1"
  4513. source = "registry+https://github.com/rust-lang/crates.io-index"
  4514. checksum = "186f9871daa55fd9c016578b810d149de58367113db7fb72b462d2323ce19514"
  4515. dependencies = [
  4516. "base64 0.22.1",
  4517. "block2",
  4518. "cookie",
  4519. "crossbeam-channel",
  4520. "dirs",
  4521. "dom_query",
  4522. "dpi",
  4523. "dunce",
  4524. "gdkx11",
  4525. "gtk",
  4526. "http",
  4527. "javascriptcore-rs",
  4528. "jni",
  4529. "libc",
  4530. "ndk",
  4531. "objc2",
  4532. "objc2-app-kit",
  4533. "objc2-core-foundation",
  4534. "objc2-foundation",
  4535. "objc2-ui-kit",
  4536. "objc2-web-kit",
  4537. "once_cell",
  4538. "percent-encoding",
  4539. "raw-window-handle",
  4540. "sha2",
  4541. "soup3",
  4542. "tao-macros",
  4543. "thiserror 2.0.18",
  4544. "url",
  4545. "webkit2gtk",
  4546. "webkit2gtk-sys",
  4547. "webview2-com 0.38.2",
  4548. "windows 0.61.3",
  4549. "windows-core 0.61.2",
  4550. "windows-version",
  4551. "x11-dl",
  4552. ]
  4553. [[package]]
  4554. name = "x11"
  4555. version = "2.21.0"
  4556. source = "registry+https://github.com/rust-lang/crates.io-index"
  4557. checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
  4558. dependencies = [
  4559. "libc",
  4560. "pkg-config",
  4561. ]
  4562. [[package]]
  4563. name = "x11-dl"
  4564. version = "2.21.0"
  4565. source = "registry+https://github.com/rust-lang/crates.io-index"
  4566. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  4567. dependencies = [
  4568. "libc",
  4569. "once_cell",
  4570. "pkg-config",
  4571. ]
  4572. [[package]]
  4573. name = "x11rb"
  4574. version = "0.13.2"
  4575. source = "registry+https://github.com/rust-lang/crates.io-index"
  4576. checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
  4577. dependencies = [
  4578. "gethostname",
  4579. "rustix",
  4580. "x11rb-protocol",
  4581. ]
  4582. [[package]]
  4583. name = "x11rb-protocol"
  4584. version = "0.13.2"
  4585. source = "registry+https://github.com/rust-lang/crates.io-index"
  4586. checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
  4587. [[package]]
  4588. name = "xkeysym"
  4589. version = "0.2.1"
  4590. source = "registry+https://github.com/rust-lang/crates.io-index"
  4591. checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
  4592. [[package]]
  4593. name = "yoke"
  4594. version = "0.8.2"
  4595. source = "registry+https://github.com/rust-lang/crates.io-index"
  4596. checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
  4597. dependencies = [
  4598. "stable_deref_trait",
  4599. "yoke-derive",
  4600. "zerofrom",
  4601. ]
  4602. [[package]]
  4603. name = "yoke-derive"
  4604. version = "0.8.2"
  4605. source = "registry+https://github.com/rust-lang/crates.io-index"
  4606. checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
  4607. dependencies = [
  4608. "proc-macro2",
  4609. "quote",
  4610. "syn 2.0.117",
  4611. "synstructure",
  4612. ]
  4613. [[package]]
  4614. name = "zbus"
  4615. version = "5.15.0"
  4616. source = "registry+https://github.com/rust-lang/crates.io-index"
  4617. checksum = "c3bcbf15c8708d7fc1be0c993622e0a5cbd5e8b52bfa40afa4c3e0cd8d724ac1"
  4618. dependencies = [
  4619. "async-broadcast",
  4620. "async-executor",
  4621. "async-io",
  4622. "async-lock",
  4623. "async-process",
  4624. "async-recursion",
  4625. "async-task",
  4626. "async-trait",
  4627. "blocking",
  4628. "enumflags2",
  4629. "event-listener",
  4630. "futures-core",
  4631. "futures-lite",
  4632. "hex",
  4633. "libc",
  4634. "ordered-stream",
  4635. "rustix",
  4636. "serde",
  4637. "serde_repr",
  4638. "tracing",
  4639. "uds_windows",
  4640. "uuid",
  4641. "windows-sys 0.61.2",
  4642. "winnow 1.0.2",
  4643. "zbus_macros",
  4644. "zbus_names",
  4645. "zvariant",
  4646. ]
  4647. [[package]]
  4648. name = "zbus_macros"
  4649. version = "5.15.0"
  4650. source = "registry+https://github.com/rust-lang/crates.io-index"
  4651. checksum = "51fa5406ad9175a8c825a931f8cf347116b531b3634fcb0b627c290f1f2516ff"
  4652. dependencies = [
  4653. "proc-macro-crate 3.5.0",
  4654. "proc-macro2",
  4655. "quote",
  4656. "syn 2.0.117",
  4657. "zbus_names",
  4658. "zvariant",
  4659. "zvariant_utils",
  4660. ]
  4661. [[package]]
  4662. name = "zbus_names"
  4663. version = "4.3.2"
  4664. source = "registry+https://github.com/rust-lang/crates.io-index"
  4665. checksum = "7074f3e50b894eac91750142016d30d0a89be8e67dbfd9704fb875825760e52d"
  4666. dependencies = [
  4667. "serde",
  4668. "winnow 1.0.2",
  4669. "zvariant",
  4670. ]
  4671. [[package]]
  4672. name = "zerofrom"
  4673. version = "0.1.8"
  4674. source = "registry+https://github.com/rust-lang/crates.io-index"
  4675. checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
  4676. dependencies = [
  4677. "zerofrom-derive",
  4678. ]
  4679. [[package]]
  4680. name = "zerofrom-derive"
  4681. version = "0.1.7"
  4682. source = "registry+https://github.com/rust-lang/crates.io-index"
  4683. checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
  4684. dependencies = [
  4685. "proc-macro2",
  4686. "quote",
  4687. "syn 2.0.117",
  4688. "synstructure",
  4689. ]
  4690. [[package]]
  4691. name = "zerotrie"
  4692. version = "0.2.4"
  4693. source = "registry+https://github.com/rust-lang/crates.io-index"
  4694. checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
  4695. dependencies = [
  4696. "displaydoc",
  4697. "yoke",
  4698. "zerofrom",
  4699. ]
  4700. [[package]]
  4701. name = "zerovec"
  4702. version = "0.11.6"
  4703. source = "registry+https://github.com/rust-lang/crates.io-index"
  4704. checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
  4705. dependencies = [
  4706. "yoke",
  4707. "zerofrom",
  4708. "zerovec-derive",
  4709. ]
  4710. [[package]]
  4711. name = "zerovec-derive"
  4712. version = "0.11.3"
  4713. source = "registry+https://github.com/rust-lang/crates.io-index"
  4714. checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
  4715. dependencies = [
  4716. "proc-macro2",
  4717. "quote",
  4718. "syn 2.0.117",
  4719. ]
  4720. [[package]]
  4721. name = "zmij"
  4722. version = "1.0.21"
  4723. source = "registry+https://github.com/rust-lang/crates.io-index"
  4724. checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
  4725. [[package]]
  4726. name = "zvariant"
  4727. version = "5.11.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "1c1567a6ec68df868cbbfde844cfc6d81649fe5109a62b116b19fabd53e618ee"
  4730. dependencies = [
  4731. "endi",
  4732. "enumflags2",
  4733. "serde",
  4734. "winnow 1.0.2",
  4735. "zvariant_derive",
  4736. "zvariant_utils",
  4737. ]
  4738. [[package]]
  4739. name = "zvariant_derive"
  4740. version = "5.11.0"
  4741. source = "registry+https://github.com/rust-lang/crates.io-index"
  4742. checksum = "c7d5b780599bbde114e39d9a0799577fad1ced5105d38515745f7b3099d8ceda"
  4743. dependencies = [
  4744. "proc-macro-crate 3.5.0",
  4745. "proc-macro2",
  4746. "quote",
  4747. "syn 2.0.117",
  4748. "zvariant_utils",
  4749. ]
  4750. [[package]]
  4751. name = "zvariant_utils"
  4752. version = "3.3.1"
  4753. source = "registry+https://github.com/rust-lang/crates.io-index"
  4754. checksum = "6d464f5733ffa07a3164d656f18533caace9d0638596721355d73256a410d691"
  4755. dependencies = [
  4756. "proc-macro2",
  4757. "quote",
  4758. "serde",
  4759. "syn 2.0.117",
  4760. "winnow 1.0.2",
  4761. ]