Cargo.lock 225 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693
  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 = "aes"
  11. version = "0.8.4"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  14. dependencies = [
  15. "cfg-if",
  16. "cipher",
  17. "cpufeatures 0.2.17",
  18. ]
  19. [[package]]
  20. name = "ahash"
  21. version = "0.8.12"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
  24. dependencies = [
  25. "cfg-if",
  26. "const-random",
  27. "getrandom 0.3.4",
  28. "once_cell",
  29. "version_check",
  30. "zerocopy",
  31. ]
  32. [[package]]
  33. name = "aho-corasick"
  34. version = "1.1.5"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
  37. dependencies = [
  38. "memchr",
  39. ]
  40. [[package]]
  41. name = "alloc-no-stdlib"
  42. version = "2.0.4"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  45. [[package]]
  46. name = "alloc-stdlib"
  47. version = "0.2.4"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
  50. dependencies = [
  51. "alloc-no-stdlib",
  52. ]
  53. [[package]]
  54. name = "allocator-api2"
  55. version = "0.2.21"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  58. [[package]]
  59. name = "android_system_properties"
  60. version = "0.1.6"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
  63. dependencies = [
  64. "libc",
  65. ]
  66. [[package]]
  67. name = "anyhow"
  68. version = "1.0.104"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
  71. [[package]]
  72. name = "arbitrary"
  73. version = "1.4.2"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
  76. dependencies = [
  77. "derive_arbitrary",
  78. ]
  79. [[package]]
  80. name = "arc-swap"
  81. version = "1.9.2"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
  84. dependencies = [
  85. "rustversion",
  86. ]
  87. [[package]]
  88. name = "arrayref"
  89. version = "0.3.9"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
  92. [[package]]
  93. name = "arrayvec"
  94. version = "0.7.8"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
  97. [[package]]
  98. name = "arrow"
  99. version = "57.3.1"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "3bd47f2a6ddc39244bd722a27ee5da66c03369d087b9e024eafdb03e98b98ea7"
  102. dependencies = [
  103. "arrow-arith",
  104. "arrow-array",
  105. "arrow-buffer",
  106. "arrow-cast",
  107. "arrow-csv",
  108. "arrow-data",
  109. "arrow-ipc",
  110. "arrow-json",
  111. "arrow-ord",
  112. "arrow-row",
  113. "arrow-schema",
  114. "arrow-select",
  115. "arrow-string",
  116. ]
  117. [[package]]
  118. name = "arrow-arith"
  119. version = "57.3.1"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "7c7bbd679c5418b8639b92be01f361d60013c4906574b578b77b63c78356594c"
  122. dependencies = [
  123. "arrow-array",
  124. "arrow-buffer",
  125. "arrow-data",
  126. "arrow-schema",
  127. "chrono",
  128. "num-traits",
  129. ]
  130. [[package]]
  131. name = "arrow-array"
  132. version = "57.3.1"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "c8a4ab47b3f3eac60f7fd31b81e9028fda018607bcc63451aca4f2b755269862"
  135. dependencies = [
  136. "ahash",
  137. "arrow-buffer",
  138. "arrow-data",
  139. "arrow-schema",
  140. "chrono",
  141. "chrono-tz",
  142. "half",
  143. "hashbrown 0.16.1",
  144. "num-complex",
  145. "num-integer",
  146. "num-traits",
  147. ]
  148. [[package]]
  149. name = "arrow-buffer"
  150. version = "57.3.1"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "0d18b89b4c4f4811d0858175e79541fe98e33e18db3b011708bc287b1240593f"
  153. dependencies = [
  154. "bytes",
  155. "half",
  156. "num-bigint",
  157. "num-traits",
  158. ]
  159. [[package]]
  160. name = "arrow-cast"
  161. version = "57.3.1"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "722b5c41dd1d14d0a879a1bce92c6fe33f546101bb2acce57a209825edd075b3"
  164. dependencies = [
  165. "arrow-array",
  166. "arrow-buffer",
  167. "arrow-data",
  168. "arrow-ord",
  169. "arrow-schema",
  170. "arrow-select",
  171. "atoi",
  172. "base64 0.22.1",
  173. "chrono",
  174. "comfy-table",
  175. "half",
  176. "lexical-core",
  177. "num-traits",
  178. "ryu",
  179. ]
  180. [[package]]
  181. name = "arrow-csv"
  182. version = "57.3.1"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "27ddb80a4848e03b1655af496d5ac2563a779e5742fcb48f2ca2e089c9cd2197"
  185. dependencies = [
  186. "arrow-array",
  187. "arrow-cast",
  188. "arrow-schema",
  189. "chrono",
  190. "csv",
  191. "csv-core",
  192. "regex",
  193. ]
  194. [[package]]
  195. name = "arrow-data"
  196. version = "57.3.1"
  197. source = "registry+https://github.com/rust-lang/crates.io-index"
  198. checksum = "c1683705c63dcf0d18972759eda48489028cbbff67af7d6bef2c6b7b74ab778a"
  199. dependencies = [
  200. "arrow-buffer",
  201. "arrow-schema",
  202. "half",
  203. "num-integer",
  204. "num-traits",
  205. ]
  206. [[package]]
  207. name = "arrow-ipc"
  208. version = "57.3.1"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "8cf72d04c07229fbf4dbebe7145cac37d7cf7ec582fe705c6b92cb314af096ab"
  211. dependencies = [
  212. "arrow-array",
  213. "arrow-buffer",
  214. "arrow-data",
  215. "arrow-schema",
  216. "arrow-select",
  217. "flatbuffers",
  218. "lz4_flex 0.12.2",
  219. "zstd",
  220. ]
  221. [[package]]
  222. name = "arrow-json"
  223. version = "57.3.1"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "a84a905f41fedfcd7679813c89a61dc369c0f932b27aa8dcc6aa051cc781a97d"
  226. dependencies = [
  227. "arrow-array",
  228. "arrow-buffer",
  229. "arrow-cast",
  230. "arrow-data",
  231. "arrow-schema",
  232. "chrono",
  233. "half",
  234. "indexmap 2.14.0",
  235. "itoa",
  236. "lexical-core",
  237. "memchr",
  238. "num-traits",
  239. "ryu",
  240. "serde_core",
  241. "serde_json",
  242. "simdutf8",
  243. ]
  244. [[package]]
  245. name = "arrow-ord"
  246. version = "57.3.1"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "082342947d4e5a2bcccf029a0a0397e21cb3bb8421edd9571d34fb5dd2670256"
  249. dependencies = [
  250. "arrow-array",
  251. "arrow-buffer",
  252. "arrow-data",
  253. "arrow-schema",
  254. "arrow-select",
  255. ]
  256. [[package]]
  257. name = "arrow-row"
  258. version = "57.3.1"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "e3a931b520a2a5e22033e01a6f2486b4cdc26f9106b759abeebc320f125e94d7"
  261. dependencies = [
  262. "arrow-array",
  263. "arrow-buffer",
  264. "arrow-data",
  265. "arrow-schema",
  266. "half",
  267. ]
  268. [[package]]
  269. name = "arrow-schema"
  270. version = "57.3.1"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "e4cf0d4a6609679e03002167a61074a21d7b1ad9ea65e462b2c0a97f8a3b2bc6"
  273. dependencies = [
  274. "bitflags 2.13.1",
  275. "serde_core",
  276. "serde_json",
  277. ]
  278. [[package]]
  279. name = "arrow-select"
  280. version = "57.3.1"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "0b320d86a9806923663bb0fd9baa65ecaba81cb0cd77ff8c1768b9716b4ef891"
  283. dependencies = [
  284. "ahash",
  285. "arrow-array",
  286. "arrow-buffer",
  287. "arrow-data",
  288. "arrow-schema",
  289. "num-traits",
  290. ]
  291. [[package]]
  292. name = "arrow-string"
  293. version = "57.3.1"
  294. source = "registry+https://github.com/rust-lang/crates.io-index"
  295. checksum = "b493e99162e5764077e7823e50ba284858d365922631c7aaefe9487b1abd02c2"
  296. dependencies = [
  297. "arrow-array",
  298. "arrow-buffer",
  299. "arrow-data",
  300. "arrow-schema",
  301. "arrow-select",
  302. "memchr",
  303. "num-traits",
  304. "regex",
  305. "regex-syntax",
  306. ]
  307. [[package]]
  308. name = "async-broadcast"
  309. version = "0.7.2"
  310. source = "registry+https://github.com/rust-lang/crates.io-index"
  311. checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
  312. dependencies = [
  313. "event-listener",
  314. "event-listener-strategy",
  315. "futures-core",
  316. "pin-project-lite",
  317. ]
  318. [[package]]
  319. name = "async-channel"
  320. version = "2.5.0"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
  323. dependencies = [
  324. "concurrent-queue",
  325. "event-listener-strategy",
  326. "futures-core",
  327. "pin-project-lite",
  328. ]
  329. [[package]]
  330. name = "async-compression"
  331. version = "0.4.43"
  332. source = "registry+https://github.com/rust-lang/crates.io-index"
  333. checksum = "3976abdc8fe7d1133d43d304afd42abdf5bc3e1319d263d223bde07b5efc4be8"
  334. dependencies = [
  335. "compression-codecs",
  336. "compression-core",
  337. "pin-project-lite",
  338. "tokio",
  339. ]
  340. [[package]]
  341. name = "async-executor"
  342. version = "1.14.0"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
  345. dependencies = [
  346. "async-task",
  347. "concurrent-queue",
  348. "fastrand",
  349. "futures-lite",
  350. "pin-project-lite",
  351. "slab",
  352. ]
  353. [[package]]
  354. name = "async-io"
  355. version = "2.6.0"
  356. source = "registry+https://github.com/rust-lang/crates.io-index"
  357. checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
  358. dependencies = [
  359. "autocfg",
  360. "cfg-if",
  361. "concurrent-queue",
  362. "futures-io",
  363. "futures-lite",
  364. "parking",
  365. "polling",
  366. "rustix 1.1.4",
  367. "slab",
  368. "windows-sys 0.61.2",
  369. ]
  370. [[package]]
  371. name = "async-lock"
  372. version = "3.4.2"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
  375. dependencies = [
  376. "event-listener",
  377. "event-listener-strategy",
  378. "pin-project-lite",
  379. ]
  380. [[package]]
  381. name = "async-process"
  382. version = "2.5.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
  385. dependencies = [
  386. "async-channel",
  387. "async-io",
  388. "async-lock",
  389. "async-signal",
  390. "async-task",
  391. "blocking",
  392. "cfg-if",
  393. "event-listener",
  394. "futures-lite",
  395. "rustix 1.1.4",
  396. ]
  397. [[package]]
  398. name = "async-recursion"
  399. version = "1.1.1"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  402. dependencies = [
  403. "proc-macro2",
  404. "quote",
  405. "syn 2.0.119",
  406. ]
  407. [[package]]
  408. name = "async-signal"
  409. version = "0.2.14"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
  412. dependencies = [
  413. "async-io",
  414. "async-lock",
  415. "atomic-waker",
  416. "cfg-if",
  417. "futures-core",
  418. "futures-io",
  419. "rustix 1.1.4",
  420. "signal-hook-registry",
  421. "slab",
  422. "windows-sys 0.61.2",
  423. ]
  424. [[package]]
  425. name = "async-task"
  426. version = "4.7.1"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  429. [[package]]
  430. name = "async-trait"
  431. version = "0.1.91"
  432. source = "registry+https://github.com/rust-lang/crates.io-index"
  433. checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
  434. dependencies = [
  435. "proc-macro2",
  436. "quote",
  437. "syn 3.0.3",
  438. ]
  439. [[package]]
  440. name = "async_cell"
  441. version = "0.2.3"
  442. source = "registry+https://github.com/rust-lang/crates.io-index"
  443. checksum = "447ab28afbb345f5408b120702a44e5529ebf90b1796ec76e9528df8e288e6c2"
  444. dependencies = [
  445. "loom",
  446. ]
  447. [[package]]
  448. name = "atk"
  449. version = "0.18.2"
  450. source = "registry+https://github.com/rust-lang/crates.io-index"
  451. checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
  452. dependencies = [
  453. "atk-sys",
  454. "glib",
  455. "libc",
  456. ]
  457. [[package]]
  458. name = "atk-sys"
  459. version = "0.18.2"
  460. source = "registry+https://github.com/rust-lang/crates.io-index"
  461. checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
  462. dependencies = [
  463. "glib-sys",
  464. "gobject-sys",
  465. "libc",
  466. "system-deps",
  467. ]
  468. [[package]]
  469. name = "atoi"
  470. version = "2.0.0"
  471. source = "registry+https://github.com/rust-lang/crates.io-index"
  472. checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
  473. dependencies = [
  474. "num-traits",
  475. ]
  476. [[package]]
  477. name = "atoi_simd"
  478. version = "0.17.0"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
  481. dependencies = [
  482. "debug_unsafe",
  483. ]
  484. [[package]]
  485. name = "atomic-waker"
  486. version = "1.1.2"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  489. [[package]]
  490. name = "autocfg"
  491. version = "1.5.1"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
  494. [[package]]
  495. name = "base64"
  496. version = "0.21.7"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  499. [[package]]
  500. name = "base64"
  501. version = "0.22.1"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  504. [[package]]
  505. name = "bigdecimal"
  506. version = "0.4.10"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
  509. dependencies = [
  510. "autocfg",
  511. "libm",
  512. "num-bigint",
  513. "num-integer",
  514. "num-traits",
  515. ]
  516. [[package]]
  517. name = "bit-set"
  518. version = "0.8.0"
  519. source = "registry+https://github.com/rust-lang/crates.io-index"
  520. checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
  521. dependencies = [
  522. "bit-vec",
  523. ]
  524. [[package]]
  525. name = "bit-vec"
  526. version = "0.8.0"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
  529. [[package]]
  530. name = "bitflags"
  531. version = "1.3.2"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  534. [[package]]
  535. name = "bitflags"
  536. version = "2.13.1"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
  539. dependencies = [
  540. "serde_core",
  541. ]
  542. [[package]]
  543. name = "bitpacking"
  544. version = "0.9.3"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019"
  547. dependencies = [
  548. "crunchy",
  549. ]
  550. [[package]]
  551. name = "bitvec"
  552. version = "1.1.1"
  553. source = "registry+https://github.com/rust-lang/crates.io-index"
  554. checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
  555. dependencies = [
  556. "funty",
  557. "radium",
  558. "tap",
  559. "wyz",
  560. ]
  561. [[package]]
  562. name = "blake2"
  563. version = "0.10.6"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
  566. dependencies = [
  567. "digest",
  568. ]
  569. [[package]]
  570. name = "blake3"
  571. version = "1.8.6"
  572. source = "registry+https://github.com/rust-lang/crates.io-index"
  573. checksum = "76ae7bad254120e9e4c63bafc385310756f90c484eac0e36b8317cf09cb92a77"
  574. dependencies = [
  575. "arrayref",
  576. "arrayvec",
  577. "cc",
  578. "cfg-if",
  579. "constant_time_eq 0.4.2",
  580. "cpufeatures 0.3.0",
  581. ]
  582. [[package]]
  583. name = "block-buffer"
  584. version = "0.10.4"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  587. dependencies = [
  588. "generic-array",
  589. ]
  590. [[package]]
  591. name = "block2"
  592. version = "0.6.2"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
  595. dependencies = [
  596. "objc2",
  597. ]
  598. [[package]]
  599. name = "blocking"
  600. version = "1.6.2"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
  603. dependencies = [
  604. "async-channel",
  605. "async-task",
  606. "futures-io",
  607. "futures-lite",
  608. "piper",
  609. ]
  610. [[package]]
  611. name = "bon"
  612. version = "3.9.3"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561"
  615. dependencies = [
  616. "bon-macros",
  617. "rustversion",
  618. ]
  619. [[package]]
  620. name = "bon-macros"
  621. version = "3.9.3"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f"
  624. dependencies = [
  625. "darling 0.23.0",
  626. "ident_case",
  627. "prettyplease",
  628. "proc-macro2",
  629. "quote",
  630. "rustversion",
  631. "syn 2.0.119",
  632. ]
  633. [[package]]
  634. name = "brotli"
  635. version = "8.0.4"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
  638. dependencies = [
  639. "alloc-no-stdlib",
  640. "alloc-stdlib",
  641. "brotli-decompressor",
  642. ]
  643. [[package]]
  644. name = "brotli-decompressor"
  645. version = "5.0.3"
  646. source = "registry+https://github.com/rust-lang/crates.io-index"
  647. checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
  648. dependencies = [
  649. "alloc-no-stdlib",
  650. "alloc-stdlib",
  651. ]
  652. [[package]]
  653. name = "bs58"
  654. version = "0.5.1"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  657. dependencies = [
  658. "tinyvec",
  659. ]
  660. [[package]]
  661. name = "bumpalo"
  662. version = "3.20.3"
  663. source = "registry+https://github.com/rust-lang/crates.io-index"
  664. checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
  665. [[package]]
  666. name = "bytemuck"
  667. version = "1.25.2"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
  670. [[package]]
  671. name = "byteorder"
  672. version = "1.5.0"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  675. [[package]]
  676. name = "byteorder-lite"
  677. version = "0.1.0"
  678. source = "registry+https://github.com/rust-lang/crates.io-index"
  679. checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
  680. [[package]]
  681. name = "bytes"
  682. version = "1.12.1"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
  685. dependencies = [
  686. "serde",
  687. ]
  688. [[package]]
  689. name = "bzip2"
  690. version = "0.5.2"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
  693. dependencies = [
  694. "bzip2-sys",
  695. ]
  696. [[package]]
  697. name = "bzip2-sys"
  698. version = "0.1.13+1.0.8"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
  701. dependencies = [
  702. "cc",
  703. "pkg-config",
  704. ]
  705. [[package]]
  706. name = "cairo-rs"
  707. version = "0.18.5"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
  710. dependencies = [
  711. "bitflags 2.13.1",
  712. "cairo-sys-rs",
  713. "glib",
  714. "libc",
  715. "once_cell",
  716. "thiserror 1.0.69",
  717. ]
  718. [[package]]
  719. name = "cairo-sys-rs"
  720. version = "0.18.2"
  721. source = "registry+https://github.com/rust-lang/crates.io-index"
  722. checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
  723. dependencies = [
  724. "glib-sys",
  725. "libc",
  726. "system-deps",
  727. ]
  728. [[package]]
  729. name = "calamine"
  730. version = "0.34.0"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "20ae05a4e39297eecf9a994210d27501318c37a9318201f8e11050add82bb6f0"
  733. dependencies = [
  734. "atoi_simd",
  735. "byteorder",
  736. "codepage",
  737. "encoding_rs",
  738. "fast-float2",
  739. "log",
  740. "quick-xml 0.39.4",
  741. "serde",
  742. "zip 7.2.0",
  743. ]
  744. [[package]]
  745. name = "camino"
  746. version = "1.2.5"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d"
  749. dependencies = [
  750. "serde_core",
  751. ]
  752. [[package]]
  753. name = "cargo-platform"
  754. version = "0.1.9"
  755. source = "registry+https://github.com/rust-lang/crates.io-index"
  756. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  757. dependencies = [
  758. "serde",
  759. ]
  760. [[package]]
  761. name = "cargo_metadata"
  762. version = "0.19.2"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
  765. dependencies = [
  766. "camino",
  767. "cargo-platform",
  768. "semver",
  769. "serde",
  770. "serde_json",
  771. "thiserror 2.0.19",
  772. ]
  773. [[package]]
  774. name = "cargo_toml"
  775. version = "0.22.3"
  776. source = "registry+https://github.com/rust-lang/crates.io-index"
  777. checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
  778. dependencies = [
  779. "serde",
  780. "toml 0.9.12+spec-1.1.0",
  781. ]
  782. [[package]]
  783. name = "cc"
  784. version = "1.4.0"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
  787. dependencies = [
  788. "find-msvc-tools",
  789. "jobserver",
  790. "libc",
  791. "shlex",
  792. ]
  793. [[package]]
  794. name = "census"
  795. version = "0.4.2"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
  798. [[package]]
  799. name = "cesu8"
  800. version = "1.1.0"
  801. source = "registry+https://github.com/rust-lang/crates.io-index"
  802. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  803. [[package]]
  804. name = "cfb"
  805. version = "0.7.3"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
  808. dependencies = [
  809. "byteorder",
  810. "fnv",
  811. "uuid",
  812. ]
  813. [[package]]
  814. name = "cfg-expr"
  815. version = "0.15.8"
  816. source = "registry+https://github.com/rust-lang/crates.io-index"
  817. checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
  818. dependencies = [
  819. "smallvec",
  820. "target-lexicon",
  821. ]
  822. [[package]]
  823. name = "cfg-if"
  824. version = "1.0.4"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
  827. [[package]]
  828. name = "cfg_aliases"
  829. version = "0.2.2"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
  832. [[package]]
  833. name = "chacha20"
  834. version = "0.10.1"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
  837. dependencies = [
  838. "cfg-if",
  839. "cpufeatures 0.3.0",
  840. "rand_core 0.10.1",
  841. ]
  842. [[package]]
  843. name = "chrono"
  844. version = "0.4.45"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
  847. dependencies = [
  848. "iana-time-zone",
  849. "js-sys",
  850. "num-traits",
  851. "serde",
  852. "wasm-bindgen",
  853. "windows-link 0.2.1",
  854. ]
  855. [[package]]
  856. name = "chrono-tz"
  857. version = "0.10.4"
  858. source = "registry+https://github.com/rust-lang/crates.io-index"
  859. checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
  860. dependencies = [
  861. "chrono",
  862. "phf 0.12.1",
  863. ]
  864. [[package]]
  865. name = "cipher"
  866. version = "0.4.4"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  869. dependencies = [
  870. "crypto-common",
  871. "inout",
  872. ]
  873. [[package]]
  874. name = "codepage"
  875. version = "0.1.2"
  876. source = "registry+https://github.com/rust-lang/crates.io-index"
  877. checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
  878. dependencies = [
  879. "encoding_rs",
  880. ]
  881. [[package]]
  882. name = "color_quant"
  883. version = "1.1.0"
  884. source = "registry+https://github.com/rust-lang/crates.io-index"
  885. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  886. [[package]]
  887. name = "combine"
  888. version = "4.6.7"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  891. dependencies = [
  892. "bytes",
  893. "memchr",
  894. ]
  895. [[package]]
  896. name = "comfy-table"
  897. version = "7.2.2"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
  900. dependencies = [
  901. "unicode-segmentation",
  902. "unicode-width",
  903. ]
  904. [[package]]
  905. name = "compression-codecs"
  906. version = "0.4.38"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
  909. dependencies = [
  910. "compression-core",
  911. "flate2",
  912. "memchr",
  913. ]
  914. [[package]]
  915. name = "compression-core"
  916. version = "0.4.32"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
  919. [[package]]
  920. name = "concurrent-queue"
  921. version = "2.5.0"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  924. dependencies = [
  925. "crossbeam-utils",
  926. ]
  927. [[package]]
  928. name = "const-random"
  929. version = "0.1.18"
  930. source = "registry+https://github.com/rust-lang/crates.io-index"
  931. checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
  932. dependencies = [
  933. "const-random-macro",
  934. ]
  935. [[package]]
  936. name = "const-random-macro"
  937. version = "0.1.16"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
  940. dependencies = [
  941. "getrandom 0.2.17",
  942. "once_cell",
  943. "tiny-keccak",
  944. ]
  945. [[package]]
  946. name = "constant_time_eq"
  947. version = "0.3.1"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
  950. [[package]]
  951. name = "constant_time_eq"
  952. version = "0.4.2"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
  955. [[package]]
  956. name = "cookie"
  957. version = "0.18.1"
  958. source = "registry+https://github.com/rust-lang/crates.io-index"
  959. checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
  960. dependencies = [
  961. "percent-encoding",
  962. "time",
  963. "version_check",
  964. ]
  965. [[package]]
  966. name = "cookie_store"
  967. version = "0.22.1"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
  970. dependencies = [
  971. "cookie",
  972. "document-features",
  973. "idna",
  974. "log",
  975. "publicsuffix",
  976. "serde",
  977. "serde_derive",
  978. "serde_json",
  979. "time",
  980. "url",
  981. ]
  982. [[package]]
  983. name = "core-foundation"
  984. version = "0.9.4"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  987. dependencies = [
  988. "core-foundation-sys",
  989. "libc",
  990. ]
  991. [[package]]
  992. name = "core-foundation"
  993. version = "0.10.1"
  994. source = "registry+https://github.com/rust-lang/crates.io-index"
  995. checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
  996. dependencies = [
  997. "core-foundation-sys",
  998. "libc",
  999. ]
  1000. [[package]]
  1001. name = "core-foundation-sys"
  1002. version = "0.8.7"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  1005. [[package]]
  1006. name = "core-graphics"
  1007. version = "0.25.0"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
  1010. dependencies = [
  1011. "bitflags 2.13.1",
  1012. "core-foundation 0.10.1",
  1013. "core-graphics-types",
  1014. "foreign-types",
  1015. "libc",
  1016. ]
  1017. [[package]]
  1018. name = "core-graphics-types"
  1019. version = "0.2.0"
  1020. source = "registry+https://github.com/rust-lang/crates.io-index"
  1021. checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
  1022. dependencies = [
  1023. "bitflags 2.13.1",
  1024. "core-foundation 0.10.1",
  1025. "libc",
  1026. ]
  1027. [[package]]
  1028. name = "cpufeatures"
  1029. version = "0.2.17"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  1032. dependencies = [
  1033. "libc",
  1034. ]
  1035. [[package]]
  1036. name = "cpufeatures"
  1037. version = "0.3.0"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
  1040. dependencies = [
  1041. "libc",
  1042. ]
  1043. [[package]]
  1044. name = "crc"
  1045. version = "3.4.0"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
  1048. dependencies = [
  1049. "crc-catalog",
  1050. ]
  1051. [[package]]
  1052. name = "crc-catalog"
  1053. version = "2.5.0"
  1054. source = "registry+https://github.com/rust-lang/crates.io-index"
  1055. checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
  1056. [[package]]
  1057. name = "crc32fast"
  1058. version = "1.5.0"
  1059. source = "registry+https://github.com/rust-lang/crates.io-index"
  1060. checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
  1061. dependencies = [
  1062. "cfg-if",
  1063. ]
  1064. [[package]]
  1065. name = "crossbeam-channel"
  1066. version = "0.5.16"
  1067. source = "registry+https://github.com/rust-lang/crates.io-index"
  1068. checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
  1069. dependencies = [
  1070. "crossbeam-utils",
  1071. ]
  1072. [[package]]
  1073. name = "crossbeam-deque"
  1074. version = "0.8.7"
  1075. source = "registry+https://github.com/rust-lang/crates.io-index"
  1076. checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
  1077. dependencies = [
  1078. "crossbeam-epoch",
  1079. "crossbeam-utils",
  1080. ]
  1081. [[package]]
  1082. name = "crossbeam-epoch"
  1083. version = "0.9.20"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
  1086. dependencies = [
  1087. "crossbeam-utils",
  1088. ]
  1089. [[package]]
  1090. name = "crossbeam-queue"
  1091. version = "0.3.13"
  1092. source = "registry+https://github.com/rust-lang/crates.io-index"
  1093. checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
  1094. dependencies = [
  1095. "crossbeam-utils",
  1096. ]
  1097. [[package]]
  1098. name = "crossbeam-skiplist"
  1099. version = "0.1.3"
  1100. source = "registry+https://github.com/rust-lang/crates.io-index"
  1101. checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
  1102. dependencies = [
  1103. "crossbeam-epoch",
  1104. "crossbeam-utils",
  1105. ]
  1106. [[package]]
  1107. name = "crossbeam-utils"
  1108. version = "0.8.22"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
  1111. [[package]]
  1112. name = "crunchy"
  1113. version = "0.2.4"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
  1116. [[package]]
  1117. name = "crypto-common"
  1118. version = "0.1.7"
  1119. source = "registry+https://github.com/rust-lang/crates.io-index"
  1120. checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
  1121. dependencies = [
  1122. "generic-array",
  1123. "typenum",
  1124. ]
  1125. [[package]]
  1126. name = "cssparser"
  1127. version = "0.36.0"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
  1130. dependencies = [
  1131. "cssparser-macros",
  1132. "dtoa-short",
  1133. "itoa",
  1134. "phf 0.13.1",
  1135. "smallvec",
  1136. ]
  1137. [[package]]
  1138. name = "cssparser-macros"
  1139. version = "0.6.1"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
  1142. dependencies = [
  1143. "quote",
  1144. "syn 2.0.119",
  1145. ]
  1146. [[package]]
  1147. name = "csv"
  1148. version = "1.4.0"
  1149. source = "registry+https://github.com/rust-lang/crates.io-index"
  1150. checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
  1151. dependencies = [
  1152. "csv-core",
  1153. "itoa",
  1154. "ryu",
  1155. "serde_core",
  1156. ]
  1157. [[package]]
  1158. name = "csv-core"
  1159. version = "0.1.13"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
  1162. dependencies = [
  1163. "memchr",
  1164. ]
  1165. [[package]]
  1166. name = "ctor"
  1167. version = "0.8.0"
  1168. source = "registry+https://github.com/rust-lang/crates.io-index"
  1169. checksum = "352d39c2f7bef1d6ad73db6f5160efcaed66d94ef8c6c573a8410c00bf909a98"
  1170. dependencies = [
  1171. "ctor-proc-macro",
  1172. "dtor",
  1173. ]
  1174. [[package]]
  1175. name = "ctor-proc-macro"
  1176. version = "0.0.7"
  1177. source = "registry+https://github.com/rust-lang/crates.io-index"
  1178. checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
  1179. [[package]]
  1180. name = "darling"
  1181. version = "0.20.11"
  1182. source = "registry+https://github.com/rust-lang/crates.io-index"
  1183. checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
  1184. dependencies = [
  1185. "darling_core 0.20.11",
  1186. "darling_macro 0.20.11",
  1187. ]
  1188. [[package]]
  1189. name = "darling"
  1190. version = "0.23.0"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
  1193. dependencies = [
  1194. "darling_core 0.23.0",
  1195. "darling_macro 0.23.0",
  1196. ]
  1197. [[package]]
  1198. name = "darling_core"
  1199. version = "0.20.11"
  1200. source = "registry+https://github.com/rust-lang/crates.io-index"
  1201. checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
  1202. dependencies = [
  1203. "fnv",
  1204. "ident_case",
  1205. "proc-macro2",
  1206. "quote",
  1207. "strsim",
  1208. "syn 2.0.119",
  1209. ]
  1210. [[package]]
  1211. name = "darling_core"
  1212. version = "0.23.0"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
  1215. dependencies = [
  1216. "ident_case",
  1217. "proc-macro2",
  1218. "quote",
  1219. "strsim",
  1220. "syn 2.0.119",
  1221. ]
  1222. [[package]]
  1223. name = "darling_macro"
  1224. version = "0.20.11"
  1225. source = "registry+https://github.com/rust-lang/crates.io-index"
  1226. checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
  1227. dependencies = [
  1228. "darling_core 0.20.11",
  1229. "quote",
  1230. "syn 2.0.119",
  1231. ]
  1232. [[package]]
  1233. name = "darling_macro"
  1234. version = "0.23.0"
  1235. source = "registry+https://github.com/rust-lang/crates.io-index"
  1236. checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
  1237. dependencies = [
  1238. "darling_core 0.23.0",
  1239. "quote",
  1240. "syn 2.0.119",
  1241. ]
  1242. [[package]]
  1243. name = "dashmap"
  1244. version = "6.2.1"
  1245. source = "registry+https://github.com/rust-lang/crates.io-index"
  1246. checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
  1247. dependencies = [
  1248. "cfg-if",
  1249. "crossbeam-utils",
  1250. "hashbrown 0.14.5",
  1251. "lock_api",
  1252. "once_cell",
  1253. "parking_lot_core",
  1254. ]
  1255. [[package]]
  1256. name = "data-url"
  1257. version = "0.3.2"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
  1260. [[package]]
  1261. name = "datafusion"
  1262. version = "52.5.0"
  1263. source = "registry+https://github.com/rust-lang/crates.io-index"
  1264. checksum = "7541353e77dc7262b71ca27be07d8393661737e3a73b5d1b1c6f7d814c64fa2a"
  1265. dependencies = [
  1266. "arrow",
  1267. "arrow-schema",
  1268. "async-trait",
  1269. "bytes",
  1270. "chrono",
  1271. "datafusion-catalog",
  1272. "datafusion-catalog-listing",
  1273. "datafusion-common",
  1274. "datafusion-common-runtime",
  1275. "datafusion-datasource",
  1276. "datafusion-datasource-arrow",
  1277. "datafusion-datasource-csv",
  1278. "datafusion-datasource-json",
  1279. "datafusion-execution",
  1280. "datafusion-expr",
  1281. "datafusion-expr-common",
  1282. "datafusion-functions",
  1283. "datafusion-functions-aggregate",
  1284. "datafusion-functions-nested",
  1285. "datafusion-functions-table",
  1286. "datafusion-functions-window",
  1287. "datafusion-optimizer",
  1288. "datafusion-physical-expr",
  1289. "datafusion-physical-expr-adapter",
  1290. "datafusion-physical-expr-common",
  1291. "datafusion-physical-optimizer",
  1292. "datafusion-physical-plan",
  1293. "datafusion-session",
  1294. "datafusion-sql",
  1295. "futures",
  1296. "itertools 0.14.0",
  1297. "log",
  1298. "object_store",
  1299. "parking_lot",
  1300. "rand 0.9.5",
  1301. "regex",
  1302. "sqlparser",
  1303. "tempfile",
  1304. "tokio",
  1305. "url",
  1306. "uuid",
  1307. ]
  1308. [[package]]
  1309. name = "datafusion-catalog"
  1310. version = "52.5.0"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "9997731f90fa5398ef831ad0e69600f92c861b79c0d38bd1a29b6f0e3a0ce4c8"
  1313. dependencies = [
  1314. "arrow",
  1315. "async-trait",
  1316. "dashmap",
  1317. "datafusion-common",
  1318. "datafusion-common-runtime",
  1319. "datafusion-datasource",
  1320. "datafusion-execution",
  1321. "datafusion-expr",
  1322. "datafusion-physical-expr",
  1323. "datafusion-physical-plan",
  1324. "datafusion-session",
  1325. "futures",
  1326. "itertools 0.14.0",
  1327. "log",
  1328. "object_store",
  1329. "parking_lot",
  1330. "tokio",
  1331. ]
  1332. [[package]]
  1333. name = "datafusion-catalog-listing"
  1334. version = "52.5.0"
  1335. source = "registry+https://github.com/rust-lang/crates.io-index"
  1336. checksum = "2b30a3dd50dec860c9559275c8d97d9de602e611237a6ecfbda0b3b63b872352"
  1337. dependencies = [
  1338. "arrow",
  1339. "async-trait",
  1340. "datafusion-catalog",
  1341. "datafusion-common",
  1342. "datafusion-datasource",
  1343. "datafusion-execution",
  1344. "datafusion-expr",
  1345. "datafusion-physical-expr",
  1346. "datafusion-physical-expr-adapter",
  1347. "datafusion-physical-expr-common",
  1348. "datafusion-physical-plan",
  1349. "futures",
  1350. "itertools 0.14.0",
  1351. "log",
  1352. "object_store",
  1353. ]
  1354. [[package]]
  1355. name = "datafusion-common"
  1356. version = "52.5.0"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "d551054acec0398ca604512310b77ce05c46f66e54b54d48200a686e385cca4e"
  1359. dependencies = [
  1360. "ahash",
  1361. "arrow",
  1362. "arrow-ipc",
  1363. "chrono",
  1364. "half",
  1365. "hashbrown 0.16.1",
  1366. "indexmap 2.14.0",
  1367. "libc",
  1368. "log",
  1369. "object_store",
  1370. "paste",
  1371. "sqlparser",
  1372. "tokio",
  1373. "web-time",
  1374. ]
  1375. [[package]]
  1376. name = "datafusion-common-runtime"
  1377. version = "52.5.0"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "567d40e285f5b79f8737b576605721cd6c1133b5d2b00bdbd5d9838d90d0812f"
  1380. dependencies = [
  1381. "futures",
  1382. "log",
  1383. "tokio",
  1384. ]
  1385. [[package]]
  1386. name = "datafusion-datasource"
  1387. version = "52.5.0"
  1388. source = "registry+https://github.com/rust-lang/crates.io-index"
  1389. checksum = "27d2668f51b3b30befae2207472569e37807fdedd1d14da58acc6f8ca6257eae"
  1390. dependencies = [
  1391. "arrow",
  1392. "async-trait",
  1393. "bytes",
  1394. "chrono",
  1395. "datafusion-common",
  1396. "datafusion-common-runtime",
  1397. "datafusion-execution",
  1398. "datafusion-expr",
  1399. "datafusion-physical-expr",
  1400. "datafusion-physical-expr-adapter",
  1401. "datafusion-physical-expr-common",
  1402. "datafusion-physical-plan",
  1403. "datafusion-session",
  1404. "futures",
  1405. "glob",
  1406. "itertools 0.14.0",
  1407. "log",
  1408. "object_store",
  1409. "rand 0.9.5",
  1410. "tokio",
  1411. "url",
  1412. ]
  1413. [[package]]
  1414. name = "datafusion-datasource-arrow"
  1415. version = "52.5.0"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "e02e1b3e3a8ec55f1f62de4252b0407c8567363d056078769a197e24fc834a0f"
  1418. dependencies = [
  1419. "arrow",
  1420. "arrow-ipc",
  1421. "async-trait",
  1422. "bytes",
  1423. "datafusion-common",
  1424. "datafusion-common-runtime",
  1425. "datafusion-datasource",
  1426. "datafusion-execution",
  1427. "datafusion-expr",
  1428. "datafusion-physical-expr-common",
  1429. "datafusion-physical-plan",
  1430. "datafusion-session",
  1431. "futures",
  1432. "itertools 0.14.0",
  1433. "object_store",
  1434. "tokio",
  1435. ]
  1436. [[package]]
  1437. name = "datafusion-datasource-csv"
  1438. version = "52.5.0"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "b559d7bf87d4f900f847baba8509634f838d9718695389e903604cdcccdb01f3"
  1441. dependencies = [
  1442. "arrow",
  1443. "async-trait",
  1444. "bytes",
  1445. "datafusion-common",
  1446. "datafusion-common-runtime",
  1447. "datafusion-datasource",
  1448. "datafusion-execution",
  1449. "datafusion-expr",
  1450. "datafusion-physical-expr-common",
  1451. "datafusion-physical-plan",
  1452. "datafusion-session",
  1453. "futures",
  1454. "object_store",
  1455. "regex",
  1456. "tokio",
  1457. ]
  1458. [[package]]
  1459. name = "datafusion-datasource-json"
  1460. version = "52.5.0"
  1461. source = "registry+https://github.com/rust-lang/crates.io-index"
  1462. checksum = "250e2d7591ba8b638f063854650faa40bca4e8bd4059b2ece8836f6388d02db4"
  1463. dependencies = [
  1464. "arrow",
  1465. "async-trait",
  1466. "bytes",
  1467. "datafusion-common",
  1468. "datafusion-common-runtime",
  1469. "datafusion-datasource",
  1470. "datafusion-execution",
  1471. "datafusion-expr",
  1472. "datafusion-physical-expr-common",
  1473. "datafusion-physical-plan",
  1474. "datafusion-session",
  1475. "futures",
  1476. "object_store",
  1477. "tokio",
  1478. ]
  1479. [[package]]
  1480. name = "datafusion-doc"
  1481. version = "52.5.0"
  1482. source = "registry+https://github.com/rust-lang/crates.io-index"
  1483. checksum = "b9496cb0db222dbb9a3735760ceca7fc56f35e1d5502c38d0caa77a81e9c1f6a"
  1484. [[package]]
  1485. name = "datafusion-execution"
  1486. version = "52.5.0"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "dc45d23c516ed8d3637751e44e09e21b45b3f58b473c802dddd1f1ad4fe435ff"
  1489. dependencies = [
  1490. "arrow",
  1491. "async-trait",
  1492. "chrono",
  1493. "dashmap",
  1494. "datafusion-common",
  1495. "datafusion-expr",
  1496. "futures",
  1497. "log",
  1498. "object_store",
  1499. "parking_lot",
  1500. "rand 0.9.5",
  1501. "tempfile",
  1502. "url",
  1503. ]
  1504. [[package]]
  1505. name = "datafusion-expr"
  1506. version = "52.5.0"
  1507. source = "registry+https://github.com/rust-lang/crates.io-index"
  1508. checksum = "63dd30526d2db4fda6440806a41e4676334a94bc0596cc9cc2a0efed20ef2c44"
  1509. dependencies = [
  1510. "arrow",
  1511. "async-trait",
  1512. "chrono",
  1513. "datafusion-common",
  1514. "datafusion-doc",
  1515. "datafusion-expr-common",
  1516. "datafusion-functions-aggregate-common",
  1517. "datafusion-functions-window-common",
  1518. "datafusion-physical-expr-common",
  1519. "indexmap 2.14.0",
  1520. "itertools 0.14.0",
  1521. "paste",
  1522. "serde_json",
  1523. "sqlparser",
  1524. ]
  1525. [[package]]
  1526. name = "datafusion-expr-common"
  1527. version = "52.5.0"
  1528. source = "registry+https://github.com/rust-lang/crates.io-index"
  1529. checksum = "1b486b5f6255d40976b88bb83813b0d035a8333e0ec39864824e78068cf42fa6"
  1530. dependencies = [
  1531. "arrow",
  1532. "datafusion-common",
  1533. "indexmap 2.14.0",
  1534. "itertools 0.14.0",
  1535. "paste",
  1536. ]
  1537. [[package]]
  1538. name = "datafusion-functions"
  1539. version = "52.5.0"
  1540. source = "registry+https://github.com/rust-lang/crates.io-index"
  1541. checksum = "07356c94118d881130dd0ffbff127540407d969c8978736e324edcd6c41cd48f"
  1542. dependencies = [
  1543. "arrow",
  1544. "arrow-buffer",
  1545. "base64 0.22.1",
  1546. "blake2",
  1547. "blake3",
  1548. "chrono",
  1549. "chrono-tz",
  1550. "datafusion-common",
  1551. "datafusion-doc",
  1552. "datafusion-execution",
  1553. "datafusion-expr",
  1554. "datafusion-expr-common",
  1555. "datafusion-macros",
  1556. "hex",
  1557. "itertools 0.14.0",
  1558. "log",
  1559. "md-5",
  1560. "num-traits",
  1561. "rand 0.9.5",
  1562. "regex",
  1563. "sha2",
  1564. "unicode-segmentation",
  1565. "uuid",
  1566. ]
  1567. [[package]]
  1568. name = "datafusion-functions-aggregate"
  1569. version = "52.5.0"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "b644f9cf696df9233ce6958b9807666d78563b56f923267474dd6c07795f1f8f"
  1572. dependencies = [
  1573. "ahash",
  1574. "arrow",
  1575. "datafusion-common",
  1576. "datafusion-doc",
  1577. "datafusion-execution",
  1578. "datafusion-expr",
  1579. "datafusion-functions-aggregate-common",
  1580. "datafusion-macros",
  1581. "datafusion-physical-expr",
  1582. "datafusion-physical-expr-common",
  1583. "half",
  1584. "log",
  1585. "paste",
  1586. ]
  1587. [[package]]
  1588. name = "datafusion-functions-aggregate-common"
  1589. version = "52.5.0"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "c1de2deaaabe8923ce9ea9f29c47bbb4ee14f67ea2fe1ab5398d9bbebcf86e56"
  1592. dependencies = [
  1593. "ahash",
  1594. "arrow",
  1595. "datafusion-common",
  1596. "datafusion-expr-common",
  1597. "datafusion-physical-expr-common",
  1598. ]
  1599. [[package]]
  1600. name = "datafusion-functions-nested"
  1601. version = "52.5.0"
  1602. source = "registry+https://github.com/rust-lang/crates.io-index"
  1603. checksum = "552f8d92e4331ee91d23c02d12bb6acf32cbfd5215117e01c0fb63cd4b15af1a"
  1604. dependencies = [
  1605. "arrow",
  1606. "arrow-ord",
  1607. "datafusion-common",
  1608. "datafusion-doc",
  1609. "datafusion-execution",
  1610. "datafusion-expr",
  1611. "datafusion-expr-common",
  1612. "datafusion-functions",
  1613. "datafusion-functions-aggregate",
  1614. "datafusion-functions-aggregate-common",
  1615. "datafusion-macros",
  1616. "datafusion-physical-expr-common",
  1617. "itertools 0.14.0",
  1618. "log",
  1619. "paste",
  1620. ]
  1621. [[package]]
  1622. name = "datafusion-functions-table"
  1623. version = "52.5.0"
  1624. source = "registry+https://github.com/rust-lang/crates.io-index"
  1625. checksum = "970fd0cdd3df8802b9a9975ff600998289ba9d46682a4f7285cba4820c9ada78"
  1626. dependencies = [
  1627. "arrow",
  1628. "async-trait",
  1629. "datafusion-catalog",
  1630. "datafusion-common",
  1631. "datafusion-expr",
  1632. "datafusion-physical-plan",
  1633. "parking_lot",
  1634. "paste",
  1635. ]
  1636. [[package]]
  1637. name = "datafusion-functions-window"
  1638. version = "52.5.0"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "40b4c21a7c8a986a1866c0a87ab756d0bbf7b5f41f306009fa2d9af79c52ed31"
  1641. dependencies = [
  1642. "arrow",
  1643. "datafusion-common",
  1644. "datafusion-doc",
  1645. "datafusion-expr",
  1646. "datafusion-functions-window-common",
  1647. "datafusion-macros",
  1648. "datafusion-physical-expr",
  1649. "datafusion-physical-expr-common",
  1650. "log",
  1651. "paste",
  1652. ]
  1653. [[package]]
  1654. name = "datafusion-functions-window-common"
  1655. version = "52.5.0"
  1656. source = "registry+https://github.com/rust-lang/crates.io-index"
  1657. checksum = "b1210ad73b8b3211aeaf4a42bef9bd7a2b7fce3ec119a478831f18c6ff7f7b93"
  1658. dependencies = [
  1659. "datafusion-common",
  1660. "datafusion-physical-expr-common",
  1661. ]
  1662. [[package]]
  1663. name = "datafusion-macros"
  1664. version = "52.5.0"
  1665. source = "registry+https://github.com/rust-lang/crates.io-index"
  1666. checksum = "aaa566a963013a38681ad82a727a654bc7feb19632426aea8c3412d415d200c5"
  1667. dependencies = [
  1668. "datafusion-doc",
  1669. "quote",
  1670. "syn 2.0.119",
  1671. ]
  1672. [[package]]
  1673. name = "datafusion-optimizer"
  1674. version = "52.5.0"
  1675. source = "registry+https://github.com/rust-lang/crates.io-index"
  1676. checksum = "ff9aa82b240252a88dee118372f9b9757c545ab9e53c0736bebab2e7da0ef1f2"
  1677. dependencies = [
  1678. "arrow",
  1679. "chrono",
  1680. "datafusion-common",
  1681. "datafusion-expr",
  1682. "datafusion-expr-common",
  1683. "datafusion-physical-expr",
  1684. "indexmap 2.14.0",
  1685. "itertools 0.14.0",
  1686. "log",
  1687. "regex",
  1688. "regex-syntax",
  1689. ]
  1690. [[package]]
  1691. name = "datafusion-physical-expr"
  1692. version = "52.5.0"
  1693. source = "registry+https://github.com/rust-lang/crates.io-index"
  1694. checksum = "7d48022b8af9988c1d852644f9e8b5584c490659769a550c5e8d39457a1da0a5"
  1695. dependencies = [
  1696. "ahash",
  1697. "arrow",
  1698. "datafusion-common",
  1699. "datafusion-expr",
  1700. "datafusion-expr-common",
  1701. "datafusion-functions-aggregate-common",
  1702. "datafusion-physical-expr-common",
  1703. "half",
  1704. "hashbrown 0.16.1",
  1705. "indexmap 2.14.0",
  1706. "itertools 0.14.0",
  1707. "parking_lot",
  1708. "paste",
  1709. "petgraph",
  1710. "tokio",
  1711. ]
  1712. [[package]]
  1713. name = "datafusion-physical-expr-adapter"
  1714. version = "52.5.0"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "ae7a8abc0b4fe624000972a9b145b30b7f1b680bffaa950ea53f78d9b21c27c3"
  1717. dependencies = [
  1718. "arrow",
  1719. "datafusion-common",
  1720. "datafusion-expr",
  1721. "datafusion-functions",
  1722. "datafusion-physical-expr",
  1723. "datafusion-physical-expr-common",
  1724. "itertools 0.14.0",
  1725. ]
  1726. [[package]]
  1727. name = "datafusion-physical-expr-common"
  1728. version = "52.5.0"
  1729. source = "registry+https://github.com/rust-lang/crates.io-index"
  1730. checksum = "147253ca3e6b9d59c162de64c02800973018660e13340dd1886dd038d17ac429"
  1731. dependencies = [
  1732. "ahash",
  1733. "arrow",
  1734. "chrono",
  1735. "datafusion-common",
  1736. "datafusion-expr-common",
  1737. "hashbrown 0.16.1",
  1738. "indexmap 2.14.0",
  1739. "itertools 0.14.0",
  1740. "parking_lot",
  1741. ]
  1742. [[package]]
  1743. name = "datafusion-physical-optimizer"
  1744. version = "52.5.0"
  1745. source = "registry+https://github.com/rust-lang/crates.io-index"
  1746. checksum = "689156bb2282107b6239db8d7ef44b4dab10a9b33d3491a0c74acac5e4fedd72"
  1747. dependencies = [
  1748. "arrow",
  1749. "datafusion-common",
  1750. "datafusion-execution",
  1751. "datafusion-expr",
  1752. "datafusion-expr-common",
  1753. "datafusion-physical-expr",
  1754. "datafusion-physical-expr-common",
  1755. "datafusion-physical-plan",
  1756. "datafusion-pruning",
  1757. "itertools 0.14.0",
  1758. ]
  1759. [[package]]
  1760. name = "datafusion-physical-plan"
  1761. version = "52.5.0"
  1762. source = "registry+https://github.com/rust-lang/crates.io-index"
  1763. checksum = "68253dc0ee5330aa558b2549c9b0da5af9fc17d753ae73022939014ad616fc28"
  1764. dependencies = [
  1765. "ahash",
  1766. "arrow",
  1767. "arrow-ord",
  1768. "arrow-schema",
  1769. "async-trait",
  1770. "datafusion-common",
  1771. "datafusion-common-runtime",
  1772. "datafusion-execution",
  1773. "datafusion-expr",
  1774. "datafusion-functions",
  1775. "datafusion-functions-aggregate-common",
  1776. "datafusion-functions-window-common",
  1777. "datafusion-physical-expr",
  1778. "datafusion-physical-expr-common",
  1779. "futures",
  1780. "half",
  1781. "hashbrown 0.16.1",
  1782. "indexmap 2.14.0",
  1783. "itertools 0.14.0",
  1784. "log",
  1785. "parking_lot",
  1786. "pin-project-lite",
  1787. "tokio",
  1788. ]
  1789. [[package]]
  1790. name = "datafusion-pruning"
  1791. version = "52.5.0"
  1792. source = "registry+https://github.com/rust-lang/crates.io-index"
  1793. checksum = "0fcad240a54d0b1d3e8f668398900260a53122d522b2102ab57218590decacd6"
  1794. dependencies = [
  1795. "arrow",
  1796. "datafusion-common",
  1797. "datafusion-datasource",
  1798. "datafusion-expr-common",
  1799. "datafusion-physical-expr",
  1800. "datafusion-physical-expr-common",
  1801. "datafusion-physical-plan",
  1802. "itertools 0.14.0",
  1803. "log",
  1804. ]
  1805. [[package]]
  1806. name = "datafusion-session"
  1807. version = "52.5.0"
  1808. source = "registry+https://github.com/rust-lang/crates.io-index"
  1809. checksum = "f58e83a68bb67007a8fcbf005c44cefe441270c7ee7f6dee10c0e0109b556f6d"
  1810. dependencies = [
  1811. "async-trait",
  1812. "datafusion-common",
  1813. "datafusion-execution",
  1814. "datafusion-expr",
  1815. "datafusion-physical-plan",
  1816. "parking_lot",
  1817. ]
  1818. [[package]]
  1819. name = "datafusion-sql"
  1820. version = "52.5.0"
  1821. source = "registry+https://github.com/rust-lang/crates.io-index"
  1822. checksum = "be53e9eb55db0fbb8980bb6d87f2435b0524acf4c718ed54a57cabbb299b2ab3"
  1823. dependencies = [
  1824. "arrow",
  1825. "bigdecimal",
  1826. "chrono",
  1827. "datafusion-common",
  1828. "datafusion-expr",
  1829. "indexmap 2.14.0",
  1830. "log",
  1831. "regex",
  1832. "sqlparser",
  1833. ]
  1834. [[package]]
  1835. name = "dbus"
  1836. version = "0.9.12"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "3ab69f03cc8c4340c9c8e315114e1658e6775a9b16a04357973aa21cec22b32e"
  1839. dependencies = [
  1840. "libc",
  1841. "libdbus-sys",
  1842. "windows-sys 0.61.2",
  1843. ]
  1844. [[package]]
  1845. name = "debug_unsafe"
  1846. version = "0.1.4"
  1847. source = "registry+https://github.com/rust-lang/crates.io-index"
  1848. checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
  1849. [[package]]
  1850. name = "deepsize"
  1851. version = "0.2.0"
  1852. source = "registry+https://github.com/rust-lang/crates.io-index"
  1853. checksum = "1cdb987ec36f6bf7bfbea3f928b75590b736fc42af8e54d97592481351b2b96c"
  1854. dependencies = [
  1855. "deepsize_derive",
  1856. ]
  1857. [[package]]
  1858. name = "deepsize_derive"
  1859. version = "0.1.2"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "990101d41f3bc8c1a45641024377ee284ecc338e5ecf3ea0f0e236d897c72796"
  1862. dependencies = [
  1863. "proc-macro2",
  1864. "quote",
  1865. "syn 1.0.109",
  1866. ]
  1867. [[package]]
  1868. name = "deflate64"
  1869. version = "0.1.12"
  1870. source = "registry+https://github.com/rust-lang/crates.io-index"
  1871. checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
  1872. [[package]]
  1873. name = "defmt"
  1874. version = "1.1.1"
  1875. source = "registry+https://github.com/rust-lang/crates.io-index"
  1876. checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
  1877. dependencies = [
  1878. "bitflags 1.3.2",
  1879. "defmt-macros",
  1880. ]
  1881. [[package]]
  1882. name = "defmt-macros"
  1883. version = "1.1.1"
  1884. source = "registry+https://github.com/rust-lang/crates.io-index"
  1885. checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
  1886. dependencies = [
  1887. "defmt-parser",
  1888. "proc-macro2",
  1889. "quote",
  1890. "syn 2.0.119",
  1891. ]
  1892. [[package]]
  1893. name = "defmt-parser"
  1894. version = "1.0.0"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
  1897. dependencies = [
  1898. "thiserror 2.0.19",
  1899. ]
  1900. [[package]]
  1901. name = "deranged"
  1902. version = "0.5.8"
  1903. source = "registry+https://github.com/rust-lang/crates.io-index"
  1904. checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
  1905. dependencies = [
  1906. "serde_core",
  1907. ]
  1908. [[package]]
  1909. name = "derive_arbitrary"
  1910. version = "1.4.2"
  1911. source = "registry+https://github.com/rust-lang/crates.io-index"
  1912. checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
  1913. dependencies = [
  1914. "proc-macro2",
  1915. "quote",
  1916. "syn 2.0.119",
  1917. ]
  1918. [[package]]
  1919. name = "derive_builder"
  1920. version = "0.20.2"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
  1923. dependencies = [
  1924. "derive_builder_macro",
  1925. ]
  1926. [[package]]
  1927. name = "derive_builder_core"
  1928. version = "0.20.2"
  1929. source = "registry+https://github.com/rust-lang/crates.io-index"
  1930. checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
  1931. dependencies = [
  1932. "darling 0.20.11",
  1933. "proc-macro2",
  1934. "quote",
  1935. "syn 2.0.119",
  1936. ]
  1937. [[package]]
  1938. name = "derive_builder_macro"
  1939. version = "0.20.2"
  1940. source = "registry+https://github.com/rust-lang/crates.io-index"
  1941. checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
  1942. dependencies = [
  1943. "derive_builder_core",
  1944. "syn 2.0.119",
  1945. ]
  1946. [[package]]
  1947. name = "derive_more"
  1948. version = "2.1.1"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
  1951. dependencies = [
  1952. "derive_more-impl",
  1953. ]
  1954. [[package]]
  1955. name = "derive_more-impl"
  1956. version = "2.1.1"
  1957. source = "registry+https://github.com/rust-lang/crates.io-index"
  1958. checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
  1959. dependencies = [
  1960. "proc-macro2",
  1961. "quote",
  1962. "rustc_version",
  1963. "syn 2.0.119",
  1964. ]
  1965. [[package]]
  1966. name = "digest"
  1967. version = "0.10.7"
  1968. source = "registry+https://github.com/rust-lang/crates.io-index"
  1969. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1970. dependencies = [
  1971. "block-buffer",
  1972. "crypto-common",
  1973. "subtle",
  1974. ]
  1975. [[package]]
  1976. name = "dirs"
  1977. version = "6.0.0"
  1978. source = "registry+https://github.com/rust-lang/crates.io-index"
  1979. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  1980. dependencies = [
  1981. "dirs-sys",
  1982. ]
  1983. [[package]]
  1984. name = "dirs-sys"
  1985. version = "0.5.0"
  1986. source = "registry+https://github.com/rust-lang/crates.io-index"
  1987. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  1988. dependencies = [
  1989. "libc",
  1990. "option-ext",
  1991. "redox_users",
  1992. "windows-sys 0.61.2",
  1993. ]
  1994. [[package]]
  1995. name = "dispatch2"
  1996. version = "0.3.1"
  1997. source = "registry+https://github.com/rust-lang/crates.io-index"
  1998. checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
  1999. dependencies = [
  2000. "bitflags 2.13.1",
  2001. "block2",
  2002. "libc",
  2003. "objc2",
  2004. ]
  2005. [[package]]
  2006. name = "displaydoc"
  2007. version = "0.2.7"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
  2010. dependencies = [
  2011. "proc-macro2",
  2012. "quote",
  2013. "syn 3.0.3",
  2014. ]
  2015. [[package]]
  2016. name = "dlopen2"
  2017. version = "0.8.2"
  2018. source = "registry+https://github.com/rust-lang/crates.io-index"
  2019. checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
  2020. dependencies = [
  2021. "dlopen2_derive",
  2022. "libc",
  2023. "once_cell",
  2024. "winapi",
  2025. ]
  2026. [[package]]
  2027. name = "dlopen2_derive"
  2028. version = "0.4.3"
  2029. source = "registry+https://github.com/rust-lang/crates.io-index"
  2030. checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
  2031. dependencies = [
  2032. "proc-macro2",
  2033. "quote",
  2034. "syn 2.0.119",
  2035. ]
  2036. [[package]]
  2037. name = "document-features"
  2038. version = "0.2.12"
  2039. source = "registry+https://github.com/rust-lang/crates.io-index"
  2040. checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
  2041. dependencies = [
  2042. "litrs",
  2043. ]
  2044. [[package]]
  2045. name = "docx-rs"
  2046. version = "0.4.22"
  2047. source = "registry+https://github.com/rust-lang/crates.io-index"
  2048. checksum = "7fdf00e8af6d0b3e92d4bbf9b76f773d8b84ea80f310324ad16cbdc2e653e02c"
  2049. dependencies = [
  2050. "base64 0.22.1",
  2051. "crc32fast",
  2052. "image",
  2053. "quick-xml 0.41.0",
  2054. "serde",
  2055. "serde_json",
  2056. "smallvec",
  2057. "thiserror 2.0.19",
  2058. "zip 8.6.0",
  2059. ]
  2060. [[package]]
  2061. name = "dom_query"
  2062. version = "0.27.0"
  2063. source = "registry+https://github.com/rust-lang/crates.io-index"
  2064. checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
  2065. dependencies = [
  2066. "bit-set",
  2067. "cssparser",
  2068. "foldhash 0.2.0",
  2069. "html5ever",
  2070. "precomputed-hash",
  2071. "selectors",
  2072. "tendril",
  2073. ]
  2074. [[package]]
  2075. name = "downcast-rs"
  2076. version = "2.0.2"
  2077. source = "registry+https://github.com/rust-lang/crates.io-index"
  2078. checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc"
  2079. [[package]]
  2080. name = "dpi"
  2081. version = "0.1.2"
  2082. source = "registry+https://github.com/rust-lang/crates.io-index"
  2083. checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
  2084. dependencies = [
  2085. "serde",
  2086. ]
  2087. [[package]]
  2088. name = "dtoa"
  2089. version = "1.0.11"
  2090. source = "registry+https://github.com/rust-lang/crates.io-index"
  2091. checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
  2092. [[package]]
  2093. name = "dtoa-short"
  2094. version = "0.3.5"
  2095. source = "registry+https://github.com/rust-lang/crates.io-index"
  2096. checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
  2097. dependencies = [
  2098. "dtoa",
  2099. ]
  2100. [[package]]
  2101. name = "dtor"
  2102. version = "0.3.0"
  2103. source = "registry+https://github.com/rust-lang/crates.io-index"
  2104. checksum = "f1057d6c64987086ff8ed0fd3fbf377a6b7d205cc7715868cd401705f715cbe4"
  2105. dependencies = [
  2106. "dtor-proc-macro",
  2107. ]
  2108. [[package]]
  2109. name = "dtor-proc-macro"
  2110. version = "0.0.6"
  2111. source = "registry+https://github.com/rust-lang/crates.io-index"
  2112. checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
  2113. [[package]]
  2114. name = "dunce"
  2115. version = "1.0.5"
  2116. source = "registry+https://github.com/rust-lang/crates.io-index"
  2117. checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
  2118. [[package]]
  2119. name = "dyn-clone"
  2120. version = "1.0.20"
  2121. source = "registry+https://github.com/rust-lang/crates.io-index"
  2122. checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
  2123. [[package]]
  2124. name = "either"
  2125. version = "1.17.0"
  2126. source = "registry+https://github.com/rust-lang/crates.io-index"
  2127. checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
  2128. [[package]]
  2129. name = "embed-resource"
  2130. version = "3.0.11"
  2131. source = "registry+https://github.com/rust-lang/crates.io-index"
  2132. checksum = "fbfdaacccebec3b28e4866b8973543c7647797db5ada1bdab552e48fe665fbbd"
  2133. dependencies = [
  2134. "cc",
  2135. "memchr",
  2136. "rustc_version",
  2137. "toml 1.1.4+spec-1.1.0",
  2138. "vswhom",
  2139. "winreg",
  2140. ]
  2141. [[package]]
  2142. name = "embed_plist"
  2143. version = "1.2.2"
  2144. source = "registry+https://github.com/rust-lang/crates.io-index"
  2145. checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
  2146. [[package]]
  2147. name = "encoding_rs"
  2148. version = "0.8.35"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
  2151. dependencies = [
  2152. "cfg-if",
  2153. ]
  2154. [[package]]
  2155. name = "endi"
  2156. version = "1.1.1"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
  2159. [[package]]
  2160. name = "enumflags2"
  2161. version = "0.7.12"
  2162. source = "registry+https://github.com/rust-lang/crates.io-index"
  2163. checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
  2164. dependencies = [
  2165. "enumflags2_derive",
  2166. "serde",
  2167. ]
  2168. [[package]]
  2169. name = "enumflags2_derive"
  2170. version = "0.7.12"
  2171. source = "registry+https://github.com/rust-lang/crates.io-index"
  2172. checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
  2173. dependencies = [
  2174. "proc-macro2",
  2175. "quote",
  2176. "syn 2.0.119",
  2177. ]
  2178. [[package]]
  2179. name = "env_home"
  2180. version = "0.1.0"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
  2183. [[package]]
  2184. name = "equivalent"
  2185. version = "1.0.2"
  2186. source = "registry+https://github.com/rust-lang/crates.io-index"
  2187. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  2188. [[package]]
  2189. name = "erased-serde"
  2190. version = "0.4.10"
  2191. source = "registry+https://github.com/rust-lang/crates.io-index"
  2192. checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
  2193. dependencies = [
  2194. "serde",
  2195. "serde_core",
  2196. "typeid",
  2197. ]
  2198. [[package]]
  2199. name = "errno"
  2200. version = "0.3.14"
  2201. source = "registry+https://github.com/rust-lang/crates.io-index"
  2202. checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
  2203. dependencies = [
  2204. "libc",
  2205. "windows-sys 0.61.2",
  2206. ]
  2207. [[package]]
  2208. name = "ethnum"
  2209. version = "1.5.3"
  2210. source = "registry+https://github.com/rust-lang/crates.io-index"
  2211. checksum = "40404c3f5f511ec4da6fe866ddf6a717c309fdbb69fbbad7b0f3edab8f2e835f"
  2212. [[package]]
  2213. name = "event-listener"
  2214. version = "5.4.2"
  2215. source = "registry+https://github.com/rust-lang/crates.io-index"
  2216. checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
  2217. dependencies = [
  2218. "parking",
  2219. "pin-project-lite",
  2220. ]
  2221. [[package]]
  2222. name = "event-listener-strategy"
  2223. version = "0.5.4"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  2226. dependencies = [
  2227. "event-listener",
  2228. "pin-project-lite",
  2229. ]
  2230. [[package]]
  2231. name = "fast-float2"
  2232. version = "0.2.3"
  2233. source = "registry+https://github.com/rust-lang/crates.io-index"
  2234. checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
  2235. [[package]]
  2236. name = "fastdivide"
  2237. version = "0.4.2"
  2238. source = "registry+https://github.com/rust-lang/crates.io-index"
  2239. checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
  2240. [[package]]
  2241. name = "fastrand"
  2242. version = "2.5.0"
  2243. source = "registry+https://github.com/rust-lang/crates.io-index"
  2244. checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
  2245. [[package]]
  2246. name = "fax"
  2247. version = "0.2.7"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
  2250. [[package]]
  2251. name = "fdeflate"
  2252. version = "0.3.7"
  2253. source = "registry+https://github.com/rust-lang/crates.io-index"
  2254. checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
  2255. dependencies = [
  2256. "simd-adler32",
  2257. ]
  2258. [[package]]
  2259. name = "field-offset"
  2260. version = "0.3.6"
  2261. source = "registry+https://github.com/rust-lang/crates.io-index"
  2262. checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
  2263. dependencies = [
  2264. "memoffset",
  2265. "rustc_version",
  2266. ]
  2267. [[package]]
  2268. name = "filetime"
  2269. version = "0.2.29"
  2270. source = "registry+https://github.com/rust-lang/crates.io-index"
  2271. checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
  2272. dependencies = [
  2273. "cfg-if",
  2274. "libc",
  2275. ]
  2276. [[package]]
  2277. name = "find-msvc-tools"
  2278. version = "0.1.9"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
  2281. [[package]]
  2282. name = "fixedbitset"
  2283. version = "0.5.7"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
  2286. [[package]]
  2287. name = "flatbuffers"
  2288. version = "25.12.19"
  2289. source = "registry+https://github.com/rust-lang/crates.io-index"
  2290. checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
  2291. dependencies = [
  2292. "bitflags 2.13.1",
  2293. "rustc_version",
  2294. ]
  2295. [[package]]
  2296. name = "flate2"
  2297. version = "1.1.9"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
  2300. dependencies = [
  2301. "crc32fast",
  2302. "miniz_oxide",
  2303. "zlib-rs",
  2304. ]
  2305. [[package]]
  2306. name = "fnv"
  2307. version = "1.0.7"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2310. [[package]]
  2311. name = "foldhash"
  2312. version = "0.1.5"
  2313. source = "registry+https://github.com/rust-lang/crates.io-index"
  2314. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  2315. [[package]]
  2316. name = "foldhash"
  2317. version = "0.2.0"
  2318. source = "registry+https://github.com/rust-lang/crates.io-index"
  2319. checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
  2320. [[package]]
  2321. name = "foreign-types"
  2322. version = "0.5.0"
  2323. source = "registry+https://github.com/rust-lang/crates.io-index"
  2324. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  2325. dependencies = [
  2326. "foreign-types-macros",
  2327. "foreign-types-shared",
  2328. ]
  2329. [[package]]
  2330. name = "foreign-types-macros"
  2331. version = "0.2.4"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
  2334. dependencies = [
  2335. "proc-macro2",
  2336. "quote",
  2337. "syn 3.0.3",
  2338. ]
  2339. [[package]]
  2340. name = "foreign-types-shared"
  2341. version = "0.3.1"
  2342. source = "registry+https://github.com/rust-lang/crates.io-index"
  2343. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  2344. [[package]]
  2345. name = "form_urlencoded"
  2346. version = "1.2.2"
  2347. source = "registry+https://github.com/rust-lang/crates.io-index"
  2348. checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
  2349. dependencies = [
  2350. "percent-encoding",
  2351. ]
  2352. [[package]]
  2353. name = "fs4"
  2354. version = "0.8.4"
  2355. source = "registry+https://github.com/rust-lang/crates.io-index"
  2356. checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
  2357. dependencies = [
  2358. "rustix 0.38.44",
  2359. "windows-sys 0.52.0",
  2360. ]
  2361. [[package]]
  2362. name = "fsevent-sys"
  2363. version = "4.1.0"
  2364. source = "registry+https://github.com/rust-lang/crates.io-index"
  2365. checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
  2366. dependencies = [
  2367. "libc",
  2368. ]
  2369. [[package]]
  2370. name = "fsst"
  2371. version = "4.0.0"
  2372. source = "registry+https://github.com/rust-lang/crates.io-index"
  2373. checksum = "2195cc7f87e84bd695586137de99605e7e9579b26ec5e01b82960ddb4d0922f2"
  2374. dependencies = [
  2375. "arrow-array",
  2376. "rand 0.9.5",
  2377. ]
  2378. [[package]]
  2379. name = "fst"
  2380. version = "0.4.7"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
  2383. dependencies = [
  2384. "utf8-ranges",
  2385. ]
  2386. [[package]]
  2387. name = "funty"
  2388. version = "2.0.0"
  2389. source = "registry+https://github.com/rust-lang/crates.io-index"
  2390. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2391. [[package]]
  2392. name = "futures"
  2393. version = "0.3.33"
  2394. source = "registry+https://github.com/rust-lang/crates.io-index"
  2395. checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
  2396. dependencies = [
  2397. "futures-channel",
  2398. "futures-core",
  2399. "futures-executor",
  2400. "futures-io",
  2401. "futures-sink",
  2402. "futures-task",
  2403. "futures-util",
  2404. ]
  2405. [[package]]
  2406. name = "futures-channel"
  2407. version = "0.3.33"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
  2410. dependencies = [
  2411. "futures-core",
  2412. "futures-sink",
  2413. ]
  2414. [[package]]
  2415. name = "futures-core"
  2416. version = "0.3.33"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
  2419. [[package]]
  2420. name = "futures-executor"
  2421. version = "0.3.33"
  2422. source = "registry+https://github.com/rust-lang/crates.io-index"
  2423. checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
  2424. dependencies = [
  2425. "futures-core",
  2426. "futures-task",
  2427. "futures-util",
  2428. ]
  2429. [[package]]
  2430. name = "futures-io"
  2431. version = "0.3.33"
  2432. source = "registry+https://github.com/rust-lang/crates.io-index"
  2433. checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
  2434. [[package]]
  2435. name = "futures-lite"
  2436. version = "2.6.1"
  2437. source = "registry+https://github.com/rust-lang/crates.io-index"
  2438. checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
  2439. dependencies = [
  2440. "fastrand",
  2441. "futures-core",
  2442. "futures-io",
  2443. "parking",
  2444. "pin-project-lite",
  2445. ]
  2446. [[package]]
  2447. name = "futures-macro"
  2448. version = "0.3.33"
  2449. source = "registry+https://github.com/rust-lang/crates.io-index"
  2450. checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
  2451. dependencies = [
  2452. "proc-macro2",
  2453. "quote",
  2454. "syn 2.0.119",
  2455. ]
  2456. [[package]]
  2457. name = "futures-sink"
  2458. version = "0.3.33"
  2459. source = "registry+https://github.com/rust-lang/crates.io-index"
  2460. checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
  2461. [[package]]
  2462. name = "futures-task"
  2463. version = "0.3.33"
  2464. source = "registry+https://github.com/rust-lang/crates.io-index"
  2465. checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
  2466. [[package]]
  2467. name = "futures-util"
  2468. version = "0.3.33"
  2469. source = "registry+https://github.com/rust-lang/crates.io-index"
  2470. checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
  2471. dependencies = [
  2472. "futures-channel",
  2473. "futures-core",
  2474. "futures-io",
  2475. "futures-macro",
  2476. "futures-sink",
  2477. "futures-task",
  2478. "memchr",
  2479. "pin-project-lite",
  2480. "slab",
  2481. ]
  2482. [[package]]
  2483. name = "gdk"
  2484. version = "0.18.2"
  2485. source = "registry+https://github.com/rust-lang/crates.io-index"
  2486. checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
  2487. dependencies = [
  2488. "cairo-rs",
  2489. "gdk-pixbuf",
  2490. "gdk-sys",
  2491. "gio",
  2492. "glib",
  2493. "libc",
  2494. "pango",
  2495. ]
  2496. [[package]]
  2497. name = "gdk-pixbuf"
  2498. version = "0.18.5"
  2499. source = "registry+https://github.com/rust-lang/crates.io-index"
  2500. checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
  2501. dependencies = [
  2502. "gdk-pixbuf-sys",
  2503. "gio",
  2504. "glib",
  2505. "libc",
  2506. "once_cell",
  2507. ]
  2508. [[package]]
  2509. name = "gdk-pixbuf-sys"
  2510. version = "0.18.0"
  2511. source = "registry+https://github.com/rust-lang/crates.io-index"
  2512. checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
  2513. dependencies = [
  2514. "gio-sys",
  2515. "glib-sys",
  2516. "gobject-sys",
  2517. "libc",
  2518. "system-deps",
  2519. ]
  2520. [[package]]
  2521. name = "gdk-sys"
  2522. version = "0.18.2"
  2523. source = "registry+https://github.com/rust-lang/crates.io-index"
  2524. checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
  2525. dependencies = [
  2526. "cairo-sys-rs",
  2527. "gdk-pixbuf-sys",
  2528. "gio-sys",
  2529. "glib-sys",
  2530. "gobject-sys",
  2531. "libc",
  2532. "pango-sys",
  2533. "pkg-config",
  2534. "system-deps",
  2535. ]
  2536. [[package]]
  2537. name = "gdkwayland-sys"
  2538. version = "0.18.2"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
  2541. dependencies = [
  2542. "gdk-sys",
  2543. "glib-sys",
  2544. "gobject-sys",
  2545. "libc",
  2546. "pkg-config",
  2547. "system-deps",
  2548. ]
  2549. [[package]]
  2550. name = "gdkx11"
  2551. version = "0.18.2"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
  2554. dependencies = [
  2555. "gdk",
  2556. "gdkx11-sys",
  2557. "gio",
  2558. "glib",
  2559. "libc",
  2560. "x11",
  2561. ]
  2562. [[package]]
  2563. name = "gdkx11-sys"
  2564. version = "0.18.2"
  2565. source = "registry+https://github.com/rust-lang/crates.io-index"
  2566. checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
  2567. dependencies = [
  2568. "gdk-sys",
  2569. "glib-sys",
  2570. "libc",
  2571. "system-deps",
  2572. "x11",
  2573. ]
  2574. [[package]]
  2575. name = "generator"
  2576. version = "0.8.9"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
  2579. dependencies = [
  2580. "cc",
  2581. "cfg-if",
  2582. "libc",
  2583. "log",
  2584. "rustversion",
  2585. "windows-link 0.2.1",
  2586. "windows-result 0.4.1",
  2587. ]
  2588. [[package]]
  2589. name = "generic-array"
  2590. version = "0.14.7"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2593. dependencies = [
  2594. "typenum",
  2595. "version_check",
  2596. ]
  2597. [[package]]
  2598. name = "getrandom"
  2599. version = "0.2.17"
  2600. source = "registry+https://github.com/rust-lang/crates.io-index"
  2601. checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
  2602. dependencies = [
  2603. "cfg-if",
  2604. "js-sys",
  2605. "libc",
  2606. "wasi",
  2607. "wasm-bindgen",
  2608. ]
  2609. [[package]]
  2610. name = "getrandom"
  2611. version = "0.3.4"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
  2614. dependencies = [
  2615. "cfg-if",
  2616. "js-sys",
  2617. "libc",
  2618. "r-efi 5.3.0",
  2619. "wasip2",
  2620. "wasm-bindgen",
  2621. ]
  2622. [[package]]
  2623. name = "getrandom"
  2624. version = "0.4.3"
  2625. source = "registry+https://github.com/rust-lang/crates.io-index"
  2626. checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
  2627. dependencies = [
  2628. "cfg-if",
  2629. "js-sys",
  2630. "libc",
  2631. "r-efi 6.0.0",
  2632. "rand_core 0.10.1",
  2633. "wasm-bindgen",
  2634. ]
  2635. [[package]]
  2636. name = "gif"
  2637. version = "0.14.2"
  2638. source = "registry+https://github.com/rust-lang/crates.io-index"
  2639. checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
  2640. dependencies = [
  2641. "color_quant",
  2642. "weezl",
  2643. ]
  2644. [[package]]
  2645. name = "gio"
  2646. version = "0.18.4"
  2647. source = "registry+https://github.com/rust-lang/crates.io-index"
  2648. checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
  2649. dependencies = [
  2650. "futures-channel",
  2651. "futures-core",
  2652. "futures-io",
  2653. "futures-util",
  2654. "gio-sys",
  2655. "glib",
  2656. "libc",
  2657. "once_cell",
  2658. "pin-project-lite",
  2659. "smallvec",
  2660. "thiserror 1.0.69",
  2661. ]
  2662. [[package]]
  2663. name = "gio-sys"
  2664. version = "0.18.1"
  2665. source = "registry+https://github.com/rust-lang/crates.io-index"
  2666. checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
  2667. dependencies = [
  2668. "glib-sys",
  2669. "gobject-sys",
  2670. "libc",
  2671. "system-deps",
  2672. "winapi",
  2673. ]
  2674. [[package]]
  2675. name = "glib"
  2676. version = "0.18.5"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
  2679. dependencies = [
  2680. "bitflags 2.13.1",
  2681. "futures-channel",
  2682. "futures-core",
  2683. "futures-executor",
  2684. "futures-task",
  2685. "futures-util",
  2686. "gio-sys",
  2687. "glib-macros",
  2688. "glib-sys",
  2689. "gobject-sys",
  2690. "libc",
  2691. "memchr",
  2692. "once_cell",
  2693. "smallvec",
  2694. "thiserror 1.0.69",
  2695. ]
  2696. [[package]]
  2697. name = "glib-macros"
  2698. version = "0.18.5"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
  2701. dependencies = [
  2702. "heck 0.4.1",
  2703. "proc-macro-crate 2.0.2",
  2704. "proc-macro-error",
  2705. "proc-macro2",
  2706. "quote",
  2707. "syn 2.0.119",
  2708. ]
  2709. [[package]]
  2710. name = "glib-sys"
  2711. version = "0.18.1"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
  2714. dependencies = [
  2715. "libc",
  2716. "system-deps",
  2717. ]
  2718. [[package]]
  2719. name = "glob"
  2720. version = "0.3.4"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
  2723. [[package]]
  2724. name = "gobject-sys"
  2725. version = "0.18.0"
  2726. source = "registry+https://github.com/rust-lang/crates.io-index"
  2727. checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
  2728. dependencies = [
  2729. "glib-sys",
  2730. "libc",
  2731. "system-deps",
  2732. ]
  2733. [[package]]
  2734. name = "gtk"
  2735. version = "0.18.2"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
  2738. dependencies = [
  2739. "atk",
  2740. "cairo-rs",
  2741. "field-offset",
  2742. "futures-channel",
  2743. "gdk",
  2744. "gdk-pixbuf",
  2745. "gio",
  2746. "glib",
  2747. "gtk-sys",
  2748. "gtk3-macros",
  2749. "libc",
  2750. "pango",
  2751. "pkg-config",
  2752. ]
  2753. [[package]]
  2754. name = "gtk-sys"
  2755. version = "0.18.2"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
  2758. dependencies = [
  2759. "atk-sys",
  2760. "cairo-sys-rs",
  2761. "gdk-pixbuf-sys",
  2762. "gdk-sys",
  2763. "gio-sys",
  2764. "glib-sys",
  2765. "gobject-sys",
  2766. "libc",
  2767. "pango-sys",
  2768. "system-deps",
  2769. ]
  2770. [[package]]
  2771. name = "gtk3-macros"
  2772. version = "0.18.2"
  2773. source = "registry+https://github.com/rust-lang/crates.io-index"
  2774. checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
  2775. dependencies = [
  2776. "proc-macro-crate 1.3.1",
  2777. "proc-macro-error",
  2778. "proc-macro2",
  2779. "quote",
  2780. "syn 2.0.119",
  2781. ]
  2782. [[package]]
  2783. name = "h2"
  2784. version = "0.4.15"
  2785. source = "registry+https://github.com/rust-lang/crates.io-index"
  2786. checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
  2787. dependencies = [
  2788. "atomic-waker",
  2789. "bytes",
  2790. "fnv",
  2791. "futures-core",
  2792. "futures-sink",
  2793. "http",
  2794. "indexmap 2.14.0",
  2795. "slab",
  2796. "tokio",
  2797. "tokio-util",
  2798. "tracing",
  2799. ]
  2800. [[package]]
  2801. name = "half"
  2802. version = "2.7.1"
  2803. source = "registry+https://github.com/rust-lang/crates.io-index"
  2804. checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
  2805. dependencies = [
  2806. "cfg-if",
  2807. "crunchy",
  2808. "num-traits",
  2809. "zerocopy",
  2810. ]
  2811. [[package]]
  2812. name = "hashbrown"
  2813. version = "0.12.3"
  2814. source = "registry+https://github.com/rust-lang/crates.io-index"
  2815. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2816. [[package]]
  2817. name = "hashbrown"
  2818. version = "0.14.5"
  2819. source = "registry+https://github.com/rust-lang/crates.io-index"
  2820. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2821. [[package]]
  2822. name = "hashbrown"
  2823. version = "0.15.5"
  2824. source = "registry+https://github.com/rust-lang/crates.io-index"
  2825. checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
  2826. dependencies = [
  2827. "allocator-api2",
  2828. "equivalent",
  2829. "foldhash 0.1.5",
  2830. ]
  2831. [[package]]
  2832. name = "hashbrown"
  2833. version = "0.16.1"
  2834. source = "registry+https://github.com/rust-lang/crates.io-index"
  2835. checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
  2836. dependencies = [
  2837. "allocator-api2",
  2838. "equivalent",
  2839. "foldhash 0.2.0",
  2840. ]
  2841. [[package]]
  2842. name = "hashbrown"
  2843. version = "0.17.1"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
  2846. [[package]]
  2847. name = "heck"
  2848. version = "0.4.1"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2851. [[package]]
  2852. name = "heck"
  2853. version = "0.5.0"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2856. [[package]]
  2857. name = "hermit-abi"
  2858. version = "0.5.2"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
  2861. [[package]]
  2862. name = "hex"
  2863. version = "0.4.3"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2866. [[package]]
  2867. name = "hmac"
  2868. version = "0.12.1"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2871. dependencies = [
  2872. "digest",
  2873. ]
  2874. [[package]]
  2875. name = "html5ever"
  2876. version = "0.38.0"
  2877. source = "registry+https://github.com/rust-lang/crates.io-index"
  2878. checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
  2879. dependencies = [
  2880. "log",
  2881. "markup5ever",
  2882. ]
  2883. [[package]]
  2884. name = "htmlescape"
  2885. version = "0.3.1"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
  2888. [[package]]
  2889. name = "http"
  2890. version = "1.5.0"
  2891. source = "registry+https://github.com/rust-lang/crates.io-index"
  2892. checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
  2893. dependencies = [
  2894. "bytes",
  2895. "itoa",
  2896. ]
  2897. [[package]]
  2898. name = "http-body"
  2899. version = "1.1.0"
  2900. source = "registry+https://github.com/rust-lang/crates.io-index"
  2901. checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
  2902. dependencies = [
  2903. "bytes",
  2904. "http",
  2905. ]
  2906. [[package]]
  2907. name = "http-body-util"
  2908. version = "0.1.4"
  2909. source = "registry+https://github.com/rust-lang/crates.io-index"
  2910. checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
  2911. dependencies = [
  2912. "bytes",
  2913. "futures-core",
  2914. "http",
  2915. "http-body",
  2916. "pin-project-lite",
  2917. ]
  2918. [[package]]
  2919. name = "http-range"
  2920. version = "0.1.5"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
  2923. [[package]]
  2924. name = "httparse"
  2925. version = "1.10.1"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  2928. [[package]]
  2929. name = "humantime"
  2930. version = "2.4.0"
  2931. source = "registry+https://github.com/rust-lang/crates.io-index"
  2932. checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
  2933. [[package]]
  2934. name = "hyper"
  2935. version = "1.11.0"
  2936. source = "registry+https://github.com/rust-lang/crates.io-index"
  2937. checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
  2938. dependencies = [
  2939. "atomic-waker",
  2940. "bytes",
  2941. "futures-channel",
  2942. "futures-core",
  2943. "h2",
  2944. "http",
  2945. "http-body",
  2946. "httparse",
  2947. "itoa",
  2948. "pin-project-lite",
  2949. "smallvec",
  2950. "tokio",
  2951. "want",
  2952. ]
  2953. [[package]]
  2954. name = "hyper-rustls"
  2955. version = "0.27.9"
  2956. source = "registry+https://github.com/rust-lang/crates.io-index"
  2957. checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
  2958. dependencies = [
  2959. "http",
  2960. "hyper",
  2961. "hyper-util",
  2962. "rustls",
  2963. "rustls-native-certs",
  2964. "tokio",
  2965. "tokio-rustls",
  2966. "tower-service",
  2967. "webpki-roots",
  2968. ]
  2969. [[package]]
  2970. name = "hyper-util"
  2971. version = "0.1.20"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
  2974. dependencies = [
  2975. "base64 0.22.1",
  2976. "bytes",
  2977. "futures-channel",
  2978. "futures-util",
  2979. "http",
  2980. "http-body",
  2981. "hyper",
  2982. "ipnet",
  2983. "libc",
  2984. "percent-encoding",
  2985. "pin-project-lite",
  2986. "socket2",
  2987. "system-configuration",
  2988. "tokio",
  2989. "tower-service",
  2990. "tracing",
  2991. "windows-registry",
  2992. ]
  2993. [[package]]
  2994. name = "hyperloglogplus"
  2995. version = "0.4.1"
  2996. source = "registry+https://github.com/rust-lang/crates.io-index"
  2997. checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
  2998. dependencies = [
  2999. "serde",
  3000. ]
  3001. [[package]]
  3002. name = "iana-time-zone"
  3003. version = "0.1.65"
  3004. source = "registry+https://github.com/rust-lang/crates.io-index"
  3005. checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
  3006. dependencies = [
  3007. "android_system_properties",
  3008. "core-foundation-sys",
  3009. "iana-time-zone-haiku",
  3010. "js-sys",
  3011. "log",
  3012. "wasm-bindgen",
  3013. "windows-core 0.62.2",
  3014. ]
  3015. [[package]]
  3016. name = "iana-time-zone-haiku"
  3017. version = "0.1.2"
  3018. source = "registry+https://github.com/rust-lang/crates.io-index"
  3019. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3020. dependencies = [
  3021. "cc",
  3022. ]
  3023. [[package]]
  3024. name = "ico"
  3025. version = "0.5.0"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
  3028. dependencies = [
  3029. "byteorder",
  3030. "png 0.17.16",
  3031. ]
  3032. [[package]]
  3033. name = "icu_collections"
  3034. version = "2.2.0"
  3035. source = "registry+https://github.com/rust-lang/crates.io-index"
  3036. checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
  3037. dependencies = [
  3038. "displaydoc",
  3039. "potential_utf",
  3040. "utf8_iter",
  3041. "yoke",
  3042. "zerofrom",
  3043. "zerovec",
  3044. ]
  3045. [[package]]
  3046. name = "icu_locale_core"
  3047. version = "2.2.0"
  3048. source = "registry+https://github.com/rust-lang/crates.io-index"
  3049. checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
  3050. dependencies = [
  3051. "displaydoc",
  3052. "litemap",
  3053. "tinystr",
  3054. "writeable",
  3055. "zerovec",
  3056. ]
  3057. [[package]]
  3058. name = "icu_normalizer"
  3059. version = "2.2.0"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
  3062. dependencies = [
  3063. "icu_collections",
  3064. "icu_normalizer_data",
  3065. "icu_properties",
  3066. "icu_provider",
  3067. "smallvec",
  3068. "zerovec",
  3069. ]
  3070. [[package]]
  3071. name = "icu_normalizer_data"
  3072. version = "2.2.0"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
  3075. [[package]]
  3076. name = "icu_properties"
  3077. version = "2.2.0"
  3078. source = "registry+https://github.com/rust-lang/crates.io-index"
  3079. checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
  3080. dependencies = [
  3081. "icu_collections",
  3082. "icu_locale_core",
  3083. "icu_properties_data",
  3084. "icu_provider",
  3085. "zerotrie",
  3086. "zerovec",
  3087. ]
  3088. [[package]]
  3089. name = "icu_properties_data"
  3090. version = "2.2.0"
  3091. source = "registry+https://github.com/rust-lang/crates.io-index"
  3092. checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
  3093. [[package]]
  3094. name = "icu_provider"
  3095. version = "2.2.0"
  3096. source = "registry+https://github.com/rust-lang/crates.io-index"
  3097. checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
  3098. dependencies = [
  3099. "displaydoc",
  3100. "icu_locale_core",
  3101. "writeable",
  3102. "yoke",
  3103. "zerofrom",
  3104. "zerotrie",
  3105. "zerovec",
  3106. ]
  3107. [[package]]
  3108. name = "ident_case"
  3109. version = "1.0.1"
  3110. source = "registry+https://github.com/rust-lang/crates.io-index"
  3111. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3112. [[package]]
  3113. name = "idna"
  3114. version = "1.1.0"
  3115. source = "registry+https://github.com/rust-lang/crates.io-index"
  3116. checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
  3117. dependencies = [
  3118. "idna_adapter",
  3119. "smallvec",
  3120. "utf8_iter",
  3121. ]
  3122. [[package]]
  3123. name = "idna_adapter"
  3124. version = "1.2.2"
  3125. source = "registry+https://github.com/rust-lang/crates.io-index"
  3126. checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
  3127. dependencies = [
  3128. "icu_normalizer",
  3129. "icu_properties",
  3130. ]
  3131. [[package]]
  3132. name = "image"
  3133. version = "0.25.10"
  3134. source = "registry+https://github.com/rust-lang/crates.io-index"
  3135. checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
  3136. dependencies = [
  3137. "bytemuck",
  3138. "byteorder-lite",
  3139. "color_quant",
  3140. "gif",
  3141. "moxcms",
  3142. "num-traits",
  3143. "png 0.18.1",
  3144. "tiff",
  3145. "zune-core",
  3146. "zune-jpeg",
  3147. ]
  3148. [[package]]
  3149. name = "indexmap"
  3150. version = "1.9.3"
  3151. source = "registry+https://github.com/rust-lang/crates.io-index"
  3152. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3153. dependencies = [
  3154. "autocfg",
  3155. "hashbrown 0.12.3",
  3156. "serde",
  3157. ]
  3158. [[package]]
  3159. name = "indexmap"
  3160. version = "2.14.0"
  3161. source = "registry+https://github.com/rust-lang/crates.io-index"
  3162. checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
  3163. dependencies = [
  3164. "equivalent",
  3165. "hashbrown 0.17.1",
  3166. "serde",
  3167. "serde_core",
  3168. ]
  3169. [[package]]
  3170. name = "infer"
  3171. version = "0.19.0"
  3172. source = "registry+https://github.com/rust-lang/crates.io-index"
  3173. checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
  3174. dependencies = [
  3175. "cfb",
  3176. ]
  3177. [[package]]
  3178. name = "inotify"
  3179. version = "0.11.4"
  3180. source = "registry+https://github.com/rust-lang/crates.io-index"
  3181. checksum = "153be1941a183ec9ccd095ddbe17a8b8d435ef6c76e9e02451b933c3999af2c8"
  3182. dependencies = [
  3183. "bitflags 2.13.1",
  3184. "inotify-sys",
  3185. "libc",
  3186. ]
  3187. [[package]]
  3188. name = "inotify-sys"
  3189. version = "0.1.8"
  3190. source = "registry+https://github.com/rust-lang/crates.io-index"
  3191. checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
  3192. dependencies = [
  3193. "libc",
  3194. ]
  3195. [[package]]
  3196. name = "inout"
  3197. version = "0.1.4"
  3198. source = "registry+https://github.com/rust-lang/crates.io-index"
  3199. checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
  3200. dependencies = [
  3201. "generic-array",
  3202. ]
  3203. [[package]]
  3204. name = "ipnet"
  3205. version = "2.12.1"
  3206. source = "registry+https://github.com/rust-lang/crates.io-index"
  3207. checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
  3208. [[package]]
  3209. name = "is-docker"
  3210. version = "0.2.0"
  3211. source = "registry+https://github.com/rust-lang/crates.io-index"
  3212. checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
  3213. dependencies = [
  3214. "once_cell",
  3215. ]
  3216. [[package]]
  3217. name = "is-wsl"
  3218. version = "0.4.0"
  3219. source = "registry+https://github.com/rust-lang/crates.io-index"
  3220. checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
  3221. dependencies = [
  3222. "is-docker",
  3223. "once_cell",
  3224. ]
  3225. [[package]]
  3226. name = "itertools"
  3227. version = "0.13.0"
  3228. source = "registry+https://github.com/rust-lang/crates.io-index"
  3229. checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
  3230. dependencies = [
  3231. "either",
  3232. ]
  3233. [[package]]
  3234. name = "itertools"
  3235. version = "0.14.0"
  3236. source = "registry+https://github.com/rust-lang/crates.io-index"
  3237. checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
  3238. dependencies = [
  3239. "either",
  3240. ]
  3241. [[package]]
  3242. name = "itoa"
  3243. version = "1.0.18"
  3244. source = "registry+https://github.com/rust-lang/crates.io-index"
  3245. checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
  3246. [[package]]
  3247. name = "javascriptcore-rs"
  3248. version = "1.1.2"
  3249. source = "registry+https://github.com/rust-lang/crates.io-index"
  3250. checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
  3251. dependencies = [
  3252. "bitflags 1.3.2",
  3253. "glib",
  3254. "javascriptcore-rs-sys",
  3255. ]
  3256. [[package]]
  3257. name = "javascriptcore-rs-sys"
  3258. version = "1.1.1"
  3259. source = "registry+https://github.com/rust-lang/crates.io-index"
  3260. checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
  3261. dependencies = [
  3262. "glib-sys",
  3263. "gobject-sys",
  3264. "libc",
  3265. "system-deps",
  3266. ]
  3267. [[package]]
  3268. name = "jiff"
  3269. version = "0.2.35"
  3270. source = "registry+https://github.com/rust-lang/crates.io-index"
  3271. checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
  3272. dependencies = [
  3273. "defmt",
  3274. "jiff-core",
  3275. "jiff-static",
  3276. "jiff-tzdb-platform",
  3277. "log",
  3278. "portable-atomic",
  3279. "portable-atomic-util",
  3280. "serde_core",
  3281. "windows-link 0.2.1",
  3282. ]
  3283. [[package]]
  3284. name = "jiff-core"
  3285. version = "0.1.0"
  3286. source = "registry+https://github.com/rust-lang/crates.io-index"
  3287. checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
  3288. dependencies = [
  3289. "defmt",
  3290. ]
  3291. [[package]]
  3292. name = "jiff-static"
  3293. version = "0.2.35"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
  3296. dependencies = [
  3297. "jiff-core",
  3298. "proc-macro2",
  3299. "quote",
  3300. "syn 2.0.119",
  3301. ]
  3302. [[package]]
  3303. name = "jiff-tzdb"
  3304. version = "0.1.8"
  3305. source = "registry+https://github.com/rust-lang/crates.io-index"
  3306. checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
  3307. [[package]]
  3308. name = "jiff-tzdb-platform"
  3309. version = "0.1.3"
  3310. source = "registry+https://github.com/rust-lang/crates.io-index"
  3311. checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
  3312. dependencies = [
  3313. "jiff-tzdb",
  3314. ]
  3315. [[package]]
  3316. name = "jni"
  3317. version = "0.21.1"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  3320. dependencies = [
  3321. "cesu8",
  3322. "cfg-if",
  3323. "combine",
  3324. "jni-sys 0.3.1",
  3325. "log",
  3326. "thiserror 1.0.69",
  3327. "walkdir",
  3328. "windows-sys 0.45.0",
  3329. ]
  3330. [[package]]
  3331. name = "jni"
  3332. version = "0.22.4"
  3333. source = "registry+https://github.com/rust-lang/crates.io-index"
  3334. checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
  3335. dependencies = [
  3336. "cfg-if",
  3337. "combine",
  3338. "jni-macros",
  3339. "jni-sys 0.4.1",
  3340. "log",
  3341. "simd_cesu8",
  3342. "thiserror 2.0.19",
  3343. "walkdir",
  3344. "windows-link 0.2.1",
  3345. ]
  3346. [[package]]
  3347. name = "jni-macros"
  3348. version = "0.22.4"
  3349. source = "registry+https://github.com/rust-lang/crates.io-index"
  3350. checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
  3351. dependencies = [
  3352. "proc-macro2",
  3353. "quote",
  3354. "rustc_version",
  3355. "simd_cesu8",
  3356. "syn 2.0.119",
  3357. ]
  3358. [[package]]
  3359. name = "jni-sys"
  3360. version = "0.3.1"
  3361. source = "registry+https://github.com/rust-lang/crates.io-index"
  3362. checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
  3363. dependencies = [
  3364. "jni-sys 0.4.1",
  3365. ]
  3366. [[package]]
  3367. name = "jni-sys"
  3368. version = "0.4.1"
  3369. source = "registry+https://github.com/rust-lang/crates.io-index"
  3370. checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
  3371. dependencies = [
  3372. "jni-sys-macros",
  3373. ]
  3374. [[package]]
  3375. name = "jni-sys-macros"
  3376. version = "0.4.1"
  3377. source = "registry+https://github.com/rust-lang/crates.io-index"
  3378. checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
  3379. dependencies = [
  3380. "quote",
  3381. "syn 2.0.119",
  3382. ]
  3383. [[package]]
  3384. name = "jobserver"
  3385. version = "0.1.35"
  3386. source = "registry+https://github.com/rust-lang/crates.io-index"
  3387. checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
  3388. dependencies = [
  3389. "getrandom 0.4.3",
  3390. "libc",
  3391. ]
  3392. [[package]]
  3393. name = "js-sys"
  3394. version = "0.3.103"
  3395. source = "registry+https://github.com/rust-lang/crates.io-index"
  3396. checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
  3397. dependencies = [
  3398. "cfg-if",
  3399. "futures-util",
  3400. "wasm-bindgen",
  3401. ]
  3402. [[package]]
  3403. name = "json-patch"
  3404. version = "3.0.1"
  3405. source = "registry+https://github.com/rust-lang/crates.io-index"
  3406. checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
  3407. dependencies = [
  3408. "jsonptr",
  3409. "serde",
  3410. "serde_json",
  3411. "thiserror 1.0.69",
  3412. ]
  3413. [[package]]
  3414. name = "jsonb"
  3415. version = "0.5.6"
  3416. source = "registry+https://github.com/rust-lang/crates.io-index"
  3417. checksum = "eb98fb29636087c40ad0d1274d9a30c0c1e83e03ae93f6e7e89247b37fcc6953"
  3418. dependencies = [
  3419. "byteorder",
  3420. "ethnum",
  3421. "fast-float2",
  3422. "itoa",
  3423. "jiff",
  3424. "nom 8.0.0",
  3425. "num-traits",
  3426. "ordered-float",
  3427. "rand 0.9.5",
  3428. "serde",
  3429. "serde_json",
  3430. "zmij",
  3431. ]
  3432. [[package]]
  3433. name = "jsonptr"
  3434. version = "0.6.3"
  3435. source = "registry+https://github.com/rust-lang/crates.io-index"
  3436. checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
  3437. dependencies = [
  3438. "serde",
  3439. "serde_json",
  3440. ]
  3441. [[package]]
  3442. name = "keepawake"
  3443. version = "0.6.0"
  3444. source = "registry+https://github.com/rust-lang/crates.io-index"
  3445. checksum = "5521b450ec179362595d5cbda7c3abd5da3af3dff58456434ad3ca33c95226b7"
  3446. dependencies = [
  3447. "cfg-if",
  3448. "derive_builder",
  3449. "objc2-core-foundation",
  3450. "objc2-io-kit",
  3451. "thiserror 2.0.19",
  3452. "windows 0.62.2",
  3453. "zbus",
  3454. ]
  3455. [[package]]
  3456. name = "keyboard-types"
  3457. version = "0.7.0"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
  3460. dependencies = [
  3461. "bitflags 2.13.1",
  3462. "serde",
  3463. "unicode-segmentation",
  3464. ]
  3465. [[package]]
  3466. name = "kqueue"
  3467. version = "1.2.1"
  3468. source = "registry+https://github.com/rust-lang/crates.io-index"
  3469. checksum = "8d763e5b24120b4ddf50de6c92308156765aabfbbccebf401da7cff2d70a41ea"
  3470. dependencies = [
  3471. "kqueue-sys",
  3472. "libc",
  3473. ]
  3474. [[package]]
  3475. name = "kqueue-sys"
  3476. version = "1.1.2"
  3477. source = "registry+https://github.com/rust-lang/crates.io-index"
  3478. checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
  3479. dependencies = [
  3480. "bitflags 2.13.1",
  3481. "libc",
  3482. ]
  3483. [[package]]
  3484. name = "lance"
  3485. version = "4.0.0"
  3486. source = "registry+https://github.com/rust-lang/crates.io-index"
  3487. checksum = "efe6c3ddd79cdfd2b7e1c23cafae52806906bc40fbd97de9e8cf2f8c7a75fc04"
  3488. dependencies = [
  3489. "arrow",
  3490. "arrow-arith",
  3491. "arrow-array",
  3492. "arrow-buffer",
  3493. "arrow-ipc",
  3494. "arrow-ord",
  3495. "arrow-row",
  3496. "arrow-schema",
  3497. "arrow-select",
  3498. "async-recursion",
  3499. "async-trait",
  3500. "async_cell",
  3501. "byteorder",
  3502. "bytes",
  3503. "chrono",
  3504. "crossbeam-skiplist",
  3505. "dashmap",
  3506. "datafusion",
  3507. "datafusion-expr",
  3508. "datafusion-functions",
  3509. "datafusion-physical-expr",
  3510. "datafusion-physical-plan",
  3511. "deepsize",
  3512. "either",
  3513. "futures",
  3514. "half",
  3515. "humantime",
  3516. "itertools 0.13.0",
  3517. "lance-arrow",
  3518. "lance-core",
  3519. "lance-datafusion",
  3520. "lance-encoding",
  3521. "lance-file",
  3522. "lance-index",
  3523. "lance-io",
  3524. "lance-linalg",
  3525. "lance-namespace",
  3526. "lance-table",
  3527. "log",
  3528. "moka",
  3529. "object_store",
  3530. "permutation",
  3531. "pin-project",
  3532. "prost",
  3533. "prost-types",
  3534. "rand 0.9.5",
  3535. "roaring",
  3536. "semver",
  3537. "serde",
  3538. "serde_json",
  3539. "snafu 0.9.2",
  3540. "tantivy",
  3541. "tokio",
  3542. "tokio-stream",
  3543. "tokio-util",
  3544. "tracing",
  3545. "url",
  3546. "uuid",
  3547. ]
  3548. [[package]]
  3549. name = "lance-arrow"
  3550. version = "4.0.0"
  3551. source = "registry+https://github.com/rust-lang/crates.io-index"
  3552. checksum = "5d9f5d95bdda2a2b790f1fb8028b5b6dcf661abeb3133a8bca0f3d24b054af87"
  3553. dependencies = [
  3554. "arrow-array",
  3555. "arrow-buffer",
  3556. "arrow-cast",
  3557. "arrow-data",
  3558. "arrow-ord",
  3559. "arrow-schema",
  3560. "arrow-select",
  3561. "bytes",
  3562. "futures",
  3563. "getrandom 0.2.17",
  3564. "half",
  3565. "jsonb",
  3566. "num-traits",
  3567. "rand 0.9.5",
  3568. ]
  3569. [[package]]
  3570. name = "lance-bitpacking"
  3571. version = "4.0.0"
  3572. source = "registry+https://github.com/rust-lang/crates.io-index"
  3573. checksum = "f827d6ab9f8f337a9509d5ad66a12f3314db8713868260521c344ef6135eb4e4"
  3574. dependencies = [
  3575. "arrayref",
  3576. "paste",
  3577. "seq-macro",
  3578. ]
  3579. [[package]]
  3580. name = "lance-core"
  3581. version = "4.0.0"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "0f1e25df6a79bf72ee6bcde0851f19b1cd36c5848c1b7db83340882d3c9fdecb"
  3584. dependencies = [
  3585. "arrow-array",
  3586. "arrow-buffer",
  3587. "arrow-schema",
  3588. "async-trait",
  3589. "byteorder",
  3590. "bytes",
  3591. "chrono",
  3592. "datafusion-common",
  3593. "datafusion-sql",
  3594. "deepsize",
  3595. "futures",
  3596. "itertools 0.13.0",
  3597. "lance-arrow",
  3598. "libc",
  3599. "log",
  3600. "mock_instant",
  3601. "moka",
  3602. "num_cpus",
  3603. "object_store",
  3604. "pin-project",
  3605. "prost",
  3606. "rand 0.9.5",
  3607. "roaring",
  3608. "serde_json",
  3609. "snafu 0.9.2",
  3610. "tempfile",
  3611. "tokio",
  3612. "tokio-stream",
  3613. "tokio-util",
  3614. "tracing",
  3615. "url",
  3616. ]
  3617. [[package]]
  3618. name = "lance-datafusion"
  3619. version = "4.0.0"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "93146de8ae720cb90edef81c2f2d0a1b065fc2f23ecff2419546f389b0fa70a4"
  3622. dependencies = [
  3623. "arrow",
  3624. "arrow-array",
  3625. "arrow-buffer",
  3626. "arrow-ord",
  3627. "arrow-schema",
  3628. "arrow-select",
  3629. "async-trait",
  3630. "chrono",
  3631. "datafusion",
  3632. "datafusion-common",
  3633. "datafusion-functions",
  3634. "datafusion-physical-expr",
  3635. "futures",
  3636. "jsonb",
  3637. "lance-arrow",
  3638. "lance-core",
  3639. "lance-datagen",
  3640. "log",
  3641. "pin-project",
  3642. "prost",
  3643. "prost-build",
  3644. "snafu 0.9.2",
  3645. "tokio",
  3646. "tracing",
  3647. ]
  3648. [[package]]
  3649. name = "lance-datagen"
  3650. version = "4.0.0"
  3651. source = "registry+https://github.com/rust-lang/crates.io-index"
  3652. checksum = "ccec8ce4d8e0a87a99c431dab2364398029f2ffb649c1a693c60c79e05ed30dd"
  3653. dependencies = [
  3654. "arrow",
  3655. "arrow-array",
  3656. "arrow-cast",
  3657. "arrow-schema",
  3658. "chrono",
  3659. "futures",
  3660. "half",
  3661. "hex",
  3662. "rand 0.9.5",
  3663. "rand_distr 0.5.1",
  3664. "rand_xoshiro",
  3665. "random_word",
  3666. ]
  3667. [[package]]
  3668. name = "lance-encoding"
  3669. version = "4.0.0"
  3670. source = "registry+https://github.com/rust-lang/crates.io-index"
  3671. checksum = "5c1aec0bbbac6bce829bc10f1ba066258126100596c375fb71908ecf11c2c2a5"
  3672. dependencies = [
  3673. "arrow-arith",
  3674. "arrow-array",
  3675. "arrow-buffer",
  3676. "arrow-cast",
  3677. "arrow-data",
  3678. "arrow-schema",
  3679. "arrow-select",
  3680. "bytemuck",
  3681. "byteorder",
  3682. "bytes",
  3683. "fsst",
  3684. "futures",
  3685. "hex",
  3686. "hyperloglogplus",
  3687. "itertools 0.13.0",
  3688. "lance-arrow",
  3689. "lance-bitpacking",
  3690. "lance-core",
  3691. "log",
  3692. "lz4",
  3693. "num-traits",
  3694. "prost",
  3695. "prost-build",
  3696. "prost-types",
  3697. "rand 0.9.5",
  3698. "snafu 0.9.2",
  3699. "strum",
  3700. "tokio",
  3701. "tracing",
  3702. "xxhash-rust",
  3703. "zstd",
  3704. ]
  3705. [[package]]
  3706. name = "lance-file"
  3707. version = "4.0.0"
  3708. source = "registry+https://github.com/rust-lang/crates.io-index"
  3709. checksum = "14a8c548804f5b17486dc2d3282356ed1957095a852780283bc401fdd69e9075"
  3710. dependencies = [
  3711. "arrow-arith",
  3712. "arrow-array",
  3713. "arrow-buffer",
  3714. "arrow-data",
  3715. "arrow-schema",
  3716. "arrow-select",
  3717. "async-recursion",
  3718. "async-trait",
  3719. "byteorder",
  3720. "bytes",
  3721. "datafusion-common",
  3722. "deepsize",
  3723. "futures",
  3724. "lance-arrow",
  3725. "lance-core",
  3726. "lance-encoding",
  3727. "lance-io",
  3728. "log",
  3729. "num-traits",
  3730. "object_store",
  3731. "prost",
  3732. "prost-build",
  3733. "prost-types",
  3734. "snafu 0.9.2",
  3735. "tokio",
  3736. "tracing",
  3737. ]
  3738. [[package]]
  3739. name = "lance-index"
  3740. version = "4.0.0"
  3741. source = "registry+https://github.com/rust-lang/crates.io-index"
  3742. checksum = "2da212f0090ea59f79ac3686660f596520c167fe1cb5f408900cf71d215f0e03"
  3743. dependencies = [
  3744. "arrow",
  3745. "arrow-arith",
  3746. "arrow-array",
  3747. "arrow-ord",
  3748. "arrow-schema",
  3749. "arrow-select",
  3750. "async-channel",
  3751. "async-recursion",
  3752. "async-trait",
  3753. "bitpacking",
  3754. "bitvec",
  3755. "bytes",
  3756. "chrono",
  3757. "crossbeam-queue",
  3758. "datafusion",
  3759. "datafusion-common",
  3760. "datafusion-expr",
  3761. "datafusion-physical-expr",
  3762. "datafusion-sql",
  3763. "deepsize",
  3764. "dirs",
  3765. "fst",
  3766. "futures",
  3767. "half",
  3768. "itertools 0.13.0",
  3769. "jsonb",
  3770. "lance-arrow",
  3771. "lance-core",
  3772. "lance-datafusion",
  3773. "lance-datagen",
  3774. "lance-encoding",
  3775. "lance-file",
  3776. "lance-io",
  3777. "lance-linalg",
  3778. "lance-table",
  3779. "libm",
  3780. "log",
  3781. "ndarray",
  3782. "num-traits",
  3783. "object_store",
  3784. "prost",
  3785. "prost-build",
  3786. "prost-types",
  3787. "rand 0.9.5",
  3788. "rand_distr 0.5.1",
  3789. "rangemap",
  3790. "rayon",
  3791. "roaring",
  3792. "serde",
  3793. "serde_json",
  3794. "smallvec",
  3795. "snafu 0.9.2",
  3796. "tantivy",
  3797. "tempfile",
  3798. "tokio",
  3799. "tracing",
  3800. "twox-hash",
  3801. "uuid",
  3802. ]
  3803. [[package]]
  3804. name = "lance-io"
  3805. version = "4.0.0"
  3806. source = "registry+https://github.com/rust-lang/crates.io-index"
  3807. checksum = "41d958eb4b56f03bbe0f5f85eb2b4e9657882812297b6f711f201ffc995f259f"
  3808. dependencies = [
  3809. "arrow",
  3810. "arrow-arith",
  3811. "arrow-array",
  3812. "arrow-buffer",
  3813. "arrow-cast",
  3814. "arrow-data",
  3815. "arrow-schema",
  3816. "arrow-select",
  3817. "async-recursion",
  3818. "async-trait",
  3819. "byteorder",
  3820. "bytes",
  3821. "chrono",
  3822. "deepsize",
  3823. "futures",
  3824. "http",
  3825. "lance-arrow",
  3826. "lance-core",
  3827. "lance-namespace",
  3828. "log",
  3829. "object_store",
  3830. "path_abs",
  3831. "pin-project",
  3832. "prost",
  3833. "rand 0.9.5",
  3834. "serde",
  3835. "snafu 0.9.2",
  3836. "tempfile",
  3837. "tokio",
  3838. "tracing",
  3839. "url",
  3840. ]
  3841. [[package]]
  3842. name = "lance-linalg"
  3843. version = "4.0.0"
  3844. source = "registry+https://github.com/rust-lang/crates.io-index"
  3845. checksum = "0285b70da35def7ed95e150fae1d5308089554e1290470403ed3c50cb235bc5e"
  3846. dependencies = [
  3847. "arrow-array",
  3848. "arrow-buffer",
  3849. "arrow-schema",
  3850. "cc",
  3851. "deepsize",
  3852. "half",
  3853. "lance-arrow",
  3854. "lance-core",
  3855. "num-traits",
  3856. "rand 0.9.5",
  3857. ]
  3858. [[package]]
  3859. name = "lance-namespace"
  3860. version = "4.0.0"
  3861. source = "registry+https://github.com/rust-lang/crates.io-index"
  3862. checksum = "5f78e2a828b654e062a495462c6e3eb4fcf0e7e907d761b8f217fc09ccd3ceac"
  3863. dependencies = [
  3864. "arrow",
  3865. "async-trait",
  3866. "bytes",
  3867. "lance-core",
  3868. "lance-namespace-reqwest-client",
  3869. "serde",
  3870. "snafu 0.9.2",
  3871. ]
  3872. [[package]]
  3873. name = "lance-namespace-impls"
  3874. version = "4.0.0"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "a2392314f3da38f00d166295e44244208a65ccfc256e274fa8631849fc3f4d94"
  3877. dependencies = [
  3878. "arrow",
  3879. "arrow-ipc",
  3880. "arrow-schema",
  3881. "async-trait",
  3882. "bytes",
  3883. "chrono",
  3884. "futures",
  3885. "lance",
  3886. "lance-core",
  3887. "lance-index",
  3888. "lance-io",
  3889. "lance-namespace",
  3890. "lance-table",
  3891. "log",
  3892. "object_store",
  3893. "rand 0.9.5",
  3894. "serde_json",
  3895. "snafu 0.9.2",
  3896. "tokio",
  3897. "url",
  3898. ]
  3899. [[package]]
  3900. name = "lance-namespace-reqwest-client"
  3901. version = "0.6.1"
  3902. source = "registry+https://github.com/rust-lang/crates.io-index"
  3903. checksum = "ee2e48de899e2931afb67fcddd0a08e439bf5d8b6ea2a2ed9cb8f4df669bd5cc"
  3904. dependencies = [
  3905. "reqwest 0.12.28",
  3906. "serde",
  3907. "serde_json",
  3908. "serde_repr",
  3909. "url",
  3910. ]
  3911. [[package]]
  3912. name = "lance-table"
  3913. version = "4.0.0"
  3914. source = "registry+https://github.com/rust-lang/crates.io-index"
  3915. checksum = "3df9c4adca3eb2074b3850432a9fb34248a3d90c3d6427d158b13ff9355664ee"
  3916. dependencies = [
  3917. "arrow",
  3918. "arrow-array",
  3919. "arrow-buffer",
  3920. "arrow-ipc",
  3921. "arrow-schema",
  3922. "async-trait",
  3923. "byteorder",
  3924. "bytes",
  3925. "chrono",
  3926. "deepsize",
  3927. "futures",
  3928. "lance-arrow",
  3929. "lance-core",
  3930. "lance-file",
  3931. "lance-io",
  3932. "log",
  3933. "object_store",
  3934. "prost",
  3935. "prost-build",
  3936. "prost-types",
  3937. "rand 0.9.5",
  3938. "rangemap",
  3939. "roaring",
  3940. "semver",
  3941. "serde",
  3942. "serde_json",
  3943. "snafu 0.9.2",
  3944. "tokio",
  3945. "tracing",
  3946. "url",
  3947. "uuid",
  3948. ]
  3949. [[package]]
  3950. name = "lance-testing"
  3951. version = "4.0.0"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "7ed7119bdd6983718387b4ac44af873a165262ca94f181b104cd6f97912eb3bf"
  3954. dependencies = [
  3955. "arrow-array",
  3956. "arrow-schema",
  3957. "lance-arrow",
  3958. "num-traits",
  3959. "rand 0.9.5",
  3960. ]
  3961. [[package]]
  3962. name = "lancedb"
  3963. version = "0.27.2"
  3964. source = "registry+https://github.com/rust-lang/crates.io-index"
  3965. checksum = "ce0f4d7f739dc30608fe8b202cbb40986c2937e1a5a189f98fb06d7b8543156a"
  3966. dependencies = [
  3967. "ahash",
  3968. "arrow",
  3969. "arrow-array",
  3970. "arrow-cast",
  3971. "arrow-data",
  3972. "arrow-ipc",
  3973. "arrow-ord",
  3974. "arrow-schema",
  3975. "arrow-select",
  3976. "async-trait",
  3977. "bytes",
  3978. "chrono",
  3979. "datafusion",
  3980. "datafusion-catalog",
  3981. "datafusion-common",
  3982. "datafusion-execution",
  3983. "datafusion-expr",
  3984. "datafusion-functions",
  3985. "datafusion-physical-expr",
  3986. "datafusion-physical-plan",
  3987. "datafusion-sql",
  3988. "futures",
  3989. "half",
  3990. "lance",
  3991. "lance-arrow",
  3992. "lance-core",
  3993. "lance-datafusion",
  3994. "lance-datagen",
  3995. "lance-encoding",
  3996. "lance-file",
  3997. "lance-index",
  3998. "lance-io",
  3999. "lance-linalg",
  4000. "lance-namespace",
  4001. "lance-namespace-impls",
  4002. "lance-table",
  4003. "lance-testing",
  4004. "lazy_static",
  4005. "log",
  4006. "moka",
  4007. "num-traits",
  4008. "object_store",
  4009. "pin-project",
  4010. "rand 0.9.5",
  4011. "regex",
  4012. "semver",
  4013. "serde",
  4014. "serde_json",
  4015. "serde_with",
  4016. "snafu 0.8.9",
  4017. "tempfile",
  4018. "tokio",
  4019. "url",
  4020. "uuid",
  4021. ]
  4022. [[package]]
  4023. name = "lazy_static"
  4024. version = "1.5.0"
  4025. source = "registry+https://github.com/rust-lang/crates.io-index"
  4026. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  4027. [[package]]
  4028. name = "levenshtein_automata"
  4029. version = "0.2.1"
  4030. source = "registry+https://github.com/rust-lang/crates.io-index"
  4031. checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
  4032. [[package]]
  4033. name = "lexical-core"
  4034. version = "1.0.6"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
  4037. dependencies = [
  4038. "lexical-parse-float",
  4039. "lexical-parse-integer",
  4040. "lexical-util",
  4041. "lexical-write-float",
  4042. "lexical-write-integer",
  4043. ]
  4044. [[package]]
  4045. name = "lexical-parse-float"
  4046. version = "1.0.6"
  4047. source = "registry+https://github.com/rust-lang/crates.io-index"
  4048. checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
  4049. dependencies = [
  4050. "lexical-parse-integer",
  4051. "lexical-util",
  4052. ]
  4053. [[package]]
  4054. name = "lexical-parse-integer"
  4055. version = "1.0.6"
  4056. source = "registry+https://github.com/rust-lang/crates.io-index"
  4057. checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
  4058. dependencies = [
  4059. "lexical-util",
  4060. ]
  4061. [[package]]
  4062. name = "lexical-util"
  4063. version = "1.0.7"
  4064. source = "registry+https://github.com/rust-lang/crates.io-index"
  4065. checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
  4066. [[package]]
  4067. name = "lexical-write-float"
  4068. version = "1.0.6"
  4069. source = "registry+https://github.com/rust-lang/crates.io-index"
  4070. checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
  4071. dependencies = [
  4072. "lexical-util",
  4073. "lexical-write-integer",
  4074. ]
  4075. [[package]]
  4076. name = "lexical-write-integer"
  4077. version = "1.0.6"
  4078. source = "registry+https://github.com/rust-lang/crates.io-index"
  4079. checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
  4080. dependencies = [
  4081. "lexical-util",
  4082. ]
  4083. [[package]]
  4084. name = "libappindicator"
  4085. version = "0.9.0"
  4086. source = "registry+https://github.com/rust-lang/crates.io-index"
  4087. checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
  4088. dependencies = [
  4089. "glib",
  4090. "gtk",
  4091. "gtk-sys",
  4092. "libappindicator-sys",
  4093. "log",
  4094. ]
  4095. [[package]]
  4096. name = "libappindicator-sys"
  4097. version = "0.9.0"
  4098. source = "registry+https://github.com/rust-lang/crates.io-index"
  4099. checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
  4100. dependencies = [
  4101. "gtk-sys",
  4102. "libloading",
  4103. "once_cell",
  4104. ]
  4105. [[package]]
  4106. name = "libc"
  4107. version = "0.2.189"
  4108. source = "registry+https://github.com/rust-lang/crates.io-index"
  4109. checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
  4110. [[package]]
  4111. name = "libdbus-sys"
  4112. version = "0.2.7"
  4113. source = "registry+https://github.com/rust-lang/crates.io-index"
  4114. checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
  4115. dependencies = [
  4116. "pkg-config",
  4117. ]
  4118. [[package]]
  4119. name = "libloading"
  4120. version = "0.7.4"
  4121. source = "registry+https://github.com/rust-lang/crates.io-index"
  4122. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  4123. dependencies = [
  4124. "cfg-if",
  4125. "winapi",
  4126. ]
  4127. [[package]]
  4128. name = "libm"
  4129. version = "0.2.16"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
  4132. [[package]]
  4133. name = "libredox"
  4134. version = "0.1.19"
  4135. source = "registry+https://github.com/rust-lang/crates.io-index"
  4136. checksum = "2026a5056764a10b2bf5d56488cba40da507f5493a6a429340e2004d9ed085fa"
  4137. dependencies = [
  4138. "libc",
  4139. ]
  4140. [[package]]
  4141. name = "linux-raw-sys"
  4142. version = "0.4.15"
  4143. source = "registry+https://github.com/rust-lang/crates.io-index"
  4144. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  4145. [[package]]
  4146. name = "linux-raw-sys"
  4147. version = "0.12.1"
  4148. source = "registry+https://github.com/rust-lang/crates.io-index"
  4149. checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
  4150. [[package]]
  4151. name = "litemap"
  4152. version = "0.8.2"
  4153. source = "registry+https://github.com/rust-lang/crates.io-index"
  4154. checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
  4155. [[package]]
  4156. name = "litrs"
  4157. version = "1.0.0"
  4158. source = "registry+https://github.com/rust-lang/crates.io-index"
  4159. checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
  4160. [[package]]
  4161. name = "lock_api"
  4162. version = "0.4.14"
  4163. source = "registry+https://github.com/rust-lang/crates.io-index"
  4164. checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
  4165. dependencies = [
  4166. "scopeguard",
  4167. ]
  4168. [[package]]
  4169. name = "log"
  4170. version = "0.4.33"
  4171. source = "registry+https://github.com/rust-lang/crates.io-index"
  4172. checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
  4173. [[package]]
  4174. name = "loom"
  4175. version = "0.7.2"
  4176. source = "registry+https://github.com/rust-lang/crates.io-index"
  4177. checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
  4178. dependencies = [
  4179. "cfg-if",
  4180. "generator",
  4181. "scoped-tls",
  4182. "tracing",
  4183. "tracing-subscriber",
  4184. ]
  4185. [[package]]
  4186. name = "lru"
  4187. version = "0.12.5"
  4188. source = "registry+https://github.com/rust-lang/crates.io-index"
  4189. checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
  4190. dependencies = [
  4191. "hashbrown 0.15.5",
  4192. ]
  4193. [[package]]
  4194. name = "lru-slab"
  4195. version = "0.1.2"
  4196. source = "registry+https://github.com/rust-lang/crates.io-index"
  4197. checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
  4198. [[package]]
  4199. name = "lz4"
  4200. version = "1.28.1"
  4201. source = "registry+https://github.com/rust-lang/crates.io-index"
  4202. checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
  4203. dependencies = [
  4204. "lz4-sys",
  4205. ]
  4206. [[package]]
  4207. name = "lz4-sys"
  4208. version = "1.11.1+lz4-1.10.0"
  4209. source = "registry+https://github.com/rust-lang/crates.io-index"
  4210. checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
  4211. dependencies = [
  4212. "cc",
  4213. "libc",
  4214. ]
  4215. [[package]]
  4216. name = "lz4_flex"
  4217. version = "0.11.6"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
  4220. [[package]]
  4221. name = "lz4_flex"
  4222. version = "0.12.2"
  4223. source = "registry+https://github.com/rust-lang/crates.io-index"
  4224. checksum = "90071f8077f8e40adfc4b7fe9cd495ce316263f19e75c2211eeff3fdf475a3d9"
  4225. dependencies = [
  4226. "twox-hash",
  4227. ]
  4228. [[package]]
  4229. name = "lzma-rs"
  4230. version = "0.3.0"
  4231. source = "registry+https://github.com/rust-lang/crates.io-index"
  4232. checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
  4233. dependencies = [
  4234. "byteorder",
  4235. "crc",
  4236. ]
  4237. [[package]]
  4238. name = "lzma-sys"
  4239. version = "0.1.20"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  4242. dependencies = [
  4243. "cc",
  4244. "libc",
  4245. "pkg-config",
  4246. ]
  4247. [[package]]
  4248. name = "markup5ever"
  4249. version = "0.38.0"
  4250. source = "registry+https://github.com/rust-lang/crates.io-index"
  4251. checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
  4252. dependencies = [
  4253. "log",
  4254. "tendril",
  4255. "web_atoms",
  4256. ]
  4257. [[package]]
  4258. name = "matchers"
  4259. version = "0.2.0"
  4260. source = "registry+https://github.com/rust-lang/crates.io-index"
  4261. checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
  4262. dependencies = [
  4263. "regex-automata",
  4264. ]
  4265. [[package]]
  4266. name = "matrixmultiply"
  4267. version = "0.3.11"
  4268. source = "registry+https://github.com/rust-lang/crates.io-index"
  4269. checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
  4270. dependencies = [
  4271. "autocfg",
  4272. "num_cpus",
  4273. "once_cell",
  4274. "rawpointer",
  4275. "thread-tree",
  4276. ]
  4277. [[package]]
  4278. name = "md-5"
  4279. version = "0.10.6"
  4280. source = "registry+https://github.com/rust-lang/crates.io-index"
  4281. checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
  4282. dependencies = [
  4283. "cfg-if",
  4284. "digest",
  4285. ]
  4286. [[package]]
  4287. name = "measure_time"
  4288. version = "0.9.0"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
  4291. dependencies = [
  4292. "log",
  4293. ]
  4294. [[package]]
  4295. name = "memchr"
  4296. version = "2.8.3"
  4297. source = "registry+https://github.com/rust-lang/crates.io-index"
  4298. checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
  4299. [[package]]
  4300. name = "memmap2"
  4301. version = "0.9.11"
  4302. source = "registry+https://github.com/rust-lang/crates.io-index"
  4303. checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
  4304. dependencies = [
  4305. "libc",
  4306. ]
  4307. [[package]]
  4308. name = "memoffset"
  4309. version = "0.9.1"
  4310. source = "registry+https://github.com/rust-lang/crates.io-index"
  4311. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  4312. dependencies = [
  4313. "autocfg",
  4314. ]
  4315. [[package]]
  4316. name = "mime"
  4317. version = "0.3.17"
  4318. source = "registry+https://github.com/rust-lang/crates.io-index"
  4319. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  4320. [[package]]
  4321. name = "mime_guess"
  4322. version = "2.0.5"
  4323. source = "registry+https://github.com/rust-lang/crates.io-index"
  4324. checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
  4325. dependencies = [
  4326. "mime",
  4327. "unicase",
  4328. ]
  4329. [[package]]
  4330. name = "minimal-lexical"
  4331. version = "0.2.1"
  4332. source = "registry+https://github.com/rust-lang/crates.io-index"
  4333. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  4334. [[package]]
  4335. name = "minisign-verify"
  4336. version = "0.2.5"
  4337. source = "registry+https://github.com/rust-lang/crates.io-index"
  4338. checksum = "22f9645cb765ea72b8111f36c522475d2daa0d22c957a9826437e97534bc4e9e"
  4339. [[package]]
  4340. name = "miniz_oxide"
  4341. version = "0.8.9"
  4342. source = "registry+https://github.com/rust-lang/crates.io-index"
  4343. checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
  4344. dependencies = [
  4345. "adler2",
  4346. "simd-adler32",
  4347. ]
  4348. [[package]]
  4349. name = "mio"
  4350. version = "1.2.2"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
  4353. dependencies = [
  4354. "libc",
  4355. "log",
  4356. "wasi",
  4357. "windows-sys 0.61.2",
  4358. ]
  4359. [[package]]
  4360. name = "mock_instant"
  4361. version = "0.6.1"
  4362. source = "registry+https://github.com/rust-lang/crates.io-index"
  4363. checksum = "9bb517913cfcfb9eeda59f36020269075a152701a01606c612f547e4890be399"
  4364. [[package]]
  4365. name = "moka"
  4366. version = "0.12.15"
  4367. source = "registry+https://github.com/rust-lang/crates.io-index"
  4368. checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
  4369. dependencies = [
  4370. "async-lock",
  4371. "crossbeam-channel",
  4372. "crossbeam-epoch",
  4373. "crossbeam-utils",
  4374. "equivalent",
  4375. "event-listener",
  4376. "futures-util",
  4377. "parking_lot",
  4378. "portable-atomic",
  4379. "smallvec",
  4380. "tagptr",
  4381. "uuid",
  4382. ]
  4383. [[package]]
  4384. name = "moxcms"
  4385. version = "0.8.1"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
  4388. dependencies = [
  4389. "num-traits",
  4390. "pxfm",
  4391. ]
  4392. [[package]]
  4393. name = "muda"
  4394. version = "0.19.3"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "1dd04e60bc0b07438a6771710ee1698f98f6ebbc7f89b61264af1563b8aeb878"
  4397. dependencies = [
  4398. "crossbeam-channel",
  4399. "dpi",
  4400. "gtk",
  4401. "keyboard-types",
  4402. "objc2",
  4403. "objc2-app-kit",
  4404. "objc2-core-foundation",
  4405. "objc2-foundation",
  4406. "once_cell",
  4407. "png 0.18.1",
  4408. "serde",
  4409. "thiserror 2.0.19",
  4410. "windows-sys 0.61.2",
  4411. ]
  4412. [[package]]
  4413. name = "multimap"
  4414. version = "0.10.1"
  4415. source = "registry+https://github.com/rust-lang/crates.io-index"
  4416. checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
  4417. [[package]]
  4418. name = "murmurhash32"
  4419. version = "0.3.1"
  4420. source = "registry+https://github.com/rust-lang/crates.io-index"
  4421. checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
  4422. [[package]]
  4423. name = "ndarray"
  4424. version = "0.16.1"
  4425. source = "registry+https://github.com/rust-lang/crates.io-index"
  4426. checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
  4427. dependencies = [
  4428. "matrixmultiply",
  4429. "num-complex",
  4430. "num-integer",
  4431. "num-traits",
  4432. "portable-atomic",
  4433. "portable-atomic-util",
  4434. "rawpointer",
  4435. ]
  4436. [[package]]
  4437. name = "ndk"
  4438. version = "0.9.0"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
  4441. dependencies = [
  4442. "bitflags 2.13.1",
  4443. "jni-sys 0.3.1",
  4444. "log",
  4445. "ndk-sys",
  4446. "num_enum",
  4447. "raw-window-handle",
  4448. "thiserror 1.0.69",
  4449. ]
  4450. [[package]]
  4451. name = "ndk-sys"
  4452. version = "0.6.0+11769913"
  4453. source = "registry+https://github.com/rust-lang/crates.io-index"
  4454. checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
  4455. dependencies = [
  4456. "jni-sys 0.3.1",
  4457. ]
  4458. [[package]]
  4459. name = "new_debug_unreachable"
  4460. version = "1.0.6"
  4461. source = "registry+https://github.com/rust-lang/crates.io-index"
  4462. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  4463. [[package]]
  4464. name = "nom"
  4465. version = "7.1.3"
  4466. source = "registry+https://github.com/rust-lang/crates.io-index"
  4467. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  4468. dependencies = [
  4469. "memchr",
  4470. "minimal-lexical",
  4471. ]
  4472. [[package]]
  4473. name = "nom"
  4474. version = "8.0.0"
  4475. source = "registry+https://github.com/rust-lang/crates.io-index"
  4476. checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
  4477. dependencies = [
  4478. "memchr",
  4479. ]
  4480. [[package]]
  4481. name = "notify"
  4482. version = "8.2.0"
  4483. source = "registry+https://github.com/rust-lang/crates.io-index"
  4484. checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
  4485. dependencies = [
  4486. "bitflags 2.13.1",
  4487. "fsevent-sys",
  4488. "inotify",
  4489. "kqueue",
  4490. "libc",
  4491. "log",
  4492. "mio",
  4493. "notify-types",
  4494. "walkdir",
  4495. "windows-sys 0.60.2",
  4496. ]
  4497. [[package]]
  4498. name = "notify-types"
  4499. version = "2.1.0"
  4500. source = "registry+https://github.com/rust-lang/crates.io-index"
  4501. checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
  4502. dependencies = [
  4503. "bitflags 2.13.1",
  4504. ]
  4505. [[package]]
  4506. name = "nu-ansi-term"
  4507. version = "0.50.3"
  4508. source = "registry+https://github.com/rust-lang/crates.io-index"
  4509. checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
  4510. dependencies = [
  4511. "windows-sys 0.61.2",
  4512. ]
  4513. [[package]]
  4514. name = "num-bigint"
  4515. version = "0.4.8"
  4516. source = "registry+https://github.com/rust-lang/crates.io-index"
  4517. checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
  4518. dependencies = [
  4519. "num-integer",
  4520. "num-traits",
  4521. ]
  4522. [[package]]
  4523. name = "num-complex"
  4524. version = "0.4.6"
  4525. source = "registry+https://github.com/rust-lang/crates.io-index"
  4526. checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
  4527. dependencies = [
  4528. "num-traits",
  4529. ]
  4530. [[package]]
  4531. name = "num-conv"
  4532. version = "0.2.2"
  4533. source = "registry+https://github.com/rust-lang/crates.io-index"
  4534. checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
  4535. [[package]]
  4536. name = "num-integer"
  4537. version = "0.1.46"
  4538. source = "registry+https://github.com/rust-lang/crates.io-index"
  4539. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  4540. dependencies = [
  4541. "num-traits",
  4542. ]
  4543. [[package]]
  4544. name = "num-traits"
  4545. version = "0.2.19"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  4548. dependencies = [
  4549. "autocfg",
  4550. "libm",
  4551. ]
  4552. [[package]]
  4553. name = "num_cpus"
  4554. version = "1.17.0"
  4555. source = "registry+https://github.com/rust-lang/crates.io-index"
  4556. checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
  4557. dependencies = [
  4558. "hermit-abi",
  4559. "libc",
  4560. ]
  4561. [[package]]
  4562. name = "num_enum"
  4563. version = "0.7.6"
  4564. source = "registry+https://github.com/rust-lang/crates.io-index"
  4565. checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
  4566. dependencies = [
  4567. "num_enum_derive",
  4568. "rustversion",
  4569. ]
  4570. [[package]]
  4571. name = "num_enum_derive"
  4572. version = "0.7.6"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
  4575. dependencies = [
  4576. "proc-macro-crate 3.5.0",
  4577. "proc-macro2",
  4578. "quote",
  4579. "syn 2.0.119",
  4580. ]
  4581. [[package]]
  4582. name = "objc2"
  4583. version = "0.6.4"
  4584. source = "registry+https://github.com/rust-lang/crates.io-index"
  4585. checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
  4586. dependencies = [
  4587. "objc2-encode",
  4588. "objc2-exception-helper",
  4589. ]
  4590. [[package]]
  4591. name = "objc2-app-kit"
  4592. version = "0.3.2"
  4593. source = "registry+https://github.com/rust-lang/crates.io-index"
  4594. checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
  4595. dependencies = [
  4596. "bitflags 2.13.1",
  4597. "block2",
  4598. "objc2",
  4599. "objc2-core-foundation",
  4600. "objc2-foundation",
  4601. ]
  4602. [[package]]
  4603. name = "objc2-cloud-kit"
  4604. version = "0.3.2"
  4605. source = "registry+https://github.com/rust-lang/crates.io-index"
  4606. checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
  4607. dependencies = [
  4608. "bitflags 2.13.1",
  4609. "objc2",
  4610. "objc2-foundation",
  4611. ]
  4612. [[package]]
  4613. name = "objc2-core-data"
  4614. version = "0.3.2"
  4615. source = "registry+https://github.com/rust-lang/crates.io-index"
  4616. checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
  4617. dependencies = [
  4618. "objc2",
  4619. "objc2-foundation",
  4620. ]
  4621. [[package]]
  4622. name = "objc2-core-foundation"
  4623. version = "0.3.2"
  4624. source = "registry+https://github.com/rust-lang/crates.io-index"
  4625. checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
  4626. dependencies = [
  4627. "bitflags 2.13.1",
  4628. "block2",
  4629. "dispatch2",
  4630. "libc",
  4631. "objc2",
  4632. ]
  4633. [[package]]
  4634. name = "objc2-core-graphics"
  4635. version = "0.3.2"
  4636. source = "registry+https://github.com/rust-lang/crates.io-index"
  4637. checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
  4638. dependencies = [
  4639. "bitflags 2.13.1",
  4640. "dispatch2",
  4641. "objc2",
  4642. "objc2-core-foundation",
  4643. "objc2-io-surface",
  4644. ]
  4645. [[package]]
  4646. name = "objc2-core-image"
  4647. version = "0.3.2"
  4648. source = "registry+https://github.com/rust-lang/crates.io-index"
  4649. checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
  4650. dependencies = [
  4651. "objc2",
  4652. "objc2-foundation",
  4653. ]
  4654. [[package]]
  4655. name = "objc2-core-location"
  4656. version = "0.3.2"
  4657. source = "registry+https://github.com/rust-lang/crates.io-index"
  4658. checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
  4659. dependencies = [
  4660. "objc2",
  4661. "objc2-foundation",
  4662. ]
  4663. [[package]]
  4664. name = "objc2-core-text"
  4665. version = "0.3.2"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
  4668. dependencies = [
  4669. "bitflags 2.13.1",
  4670. "objc2",
  4671. "objc2-core-foundation",
  4672. "objc2-core-graphics",
  4673. ]
  4674. [[package]]
  4675. name = "objc2-encode"
  4676. version = "4.1.0"
  4677. source = "registry+https://github.com/rust-lang/crates.io-index"
  4678. checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
  4679. [[package]]
  4680. name = "objc2-exception-helper"
  4681. version = "0.1.1"
  4682. source = "registry+https://github.com/rust-lang/crates.io-index"
  4683. checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
  4684. dependencies = [
  4685. "cc",
  4686. ]
  4687. [[package]]
  4688. name = "objc2-foundation"
  4689. version = "0.3.2"
  4690. source = "registry+https://github.com/rust-lang/crates.io-index"
  4691. checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
  4692. dependencies = [
  4693. "bitflags 2.13.1",
  4694. "block2",
  4695. "libc",
  4696. "objc2",
  4697. "objc2-core-foundation",
  4698. ]
  4699. [[package]]
  4700. name = "objc2-io-kit"
  4701. version = "0.3.2"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
  4704. dependencies = [
  4705. "bitflags 2.13.1",
  4706. "block2",
  4707. "dispatch2",
  4708. "libc",
  4709. "objc2",
  4710. "objc2-core-foundation",
  4711. ]
  4712. [[package]]
  4713. name = "objc2-io-surface"
  4714. version = "0.3.2"
  4715. source = "registry+https://github.com/rust-lang/crates.io-index"
  4716. checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
  4717. dependencies = [
  4718. "bitflags 2.13.1",
  4719. "objc2",
  4720. "objc2-core-foundation",
  4721. ]
  4722. [[package]]
  4723. name = "objc2-osa-kit"
  4724. version = "0.3.2"
  4725. source = "registry+https://github.com/rust-lang/crates.io-index"
  4726. checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0"
  4727. dependencies = [
  4728. "bitflags 2.13.1",
  4729. "objc2",
  4730. "objc2-app-kit",
  4731. "objc2-foundation",
  4732. ]
  4733. [[package]]
  4734. name = "objc2-quartz-core"
  4735. version = "0.3.2"
  4736. source = "registry+https://github.com/rust-lang/crates.io-index"
  4737. checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
  4738. dependencies = [
  4739. "bitflags 2.13.1",
  4740. "objc2",
  4741. "objc2-core-foundation",
  4742. "objc2-foundation",
  4743. ]
  4744. [[package]]
  4745. name = "objc2-ui-kit"
  4746. version = "0.3.2"
  4747. source = "registry+https://github.com/rust-lang/crates.io-index"
  4748. checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
  4749. dependencies = [
  4750. "bitflags 2.13.1",
  4751. "block2",
  4752. "objc2",
  4753. "objc2-cloud-kit",
  4754. "objc2-core-data",
  4755. "objc2-core-foundation",
  4756. "objc2-core-graphics",
  4757. "objc2-core-image",
  4758. "objc2-core-location",
  4759. "objc2-core-text",
  4760. "objc2-foundation",
  4761. "objc2-quartz-core",
  4762. "objc2-user-notifications",
  4763. ]
  4764. [[package]]
  4765. name = "objc2-user-notifications"
  4766. version = "0.3.2"
  4767. source = "registry+https://github.com/rust-lang/crates.io-index"
  4768. checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
  4769. dependencies = [
  4770. "objc2",
  4771. "objc2-foundation",
  4772. ]
  4773. [[package]]
  4774. name = "objc2-web-kit"
  4775. version = "0.3.2"
  4776. source = "registry+https://github.com/rust-lang/crates.io-index"
  4777. checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
  4778. dependencies = [
  4779. "bitflags 2.13.1",
  4780. "block2",
  4781. "objc2",
  4782. "objc2-app-kit",
  4783. "objc2-core-foundation",
  4784. "objc2-foundation",
  4785. ]
  4786. [[package]]
  4787. name = "object_store"
  4788. version = "0.12.5"
  4789. source = "registry+https://github.com/rust-lang/crates.io-index"
  4790. checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00"
  4791. dependencies = [
  4792. "async-trait",
  4793. "bytes",
  4794. "chrono",
  4795. "futures",
  4796. "http",
  4797. "humantime",
  4798. "itertools 0.14.0",
  4799. "parking_lot",
  4800. "percent-encoding",
  4801. "thiserror 2.0.19",
  4802. "tokio",
  4803. "tracing",
  4804. "url",
  4805. "walkdir",
  4806. "wasm-bindgen-futures",
  4807. "web-time",
  4808. ]
  4809. [[package]]
  4810. name = "once_cell"
  4811. version = "1.21.4"
  4812. source = "registry+https://github.com/rust-lang/crates.io-index"
  4813. checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
  4814. [[package]]
  4815. name = "oneshot"
  4816. version = "0.1.13"
  4817. source = "registry+https://github.com/rust-lang/crates.io-index"
  4818. checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107"
  4819. [[package]]
  4820. name = "open"
  4821. version = "5.4.1"
  4822. source = "registry+https://github.com/rust-lang/crates.io-index"
  4823. checksum = "f9cfef937e9c486488c7e3d949ae31c0f1d06bdacd75b99c086cb35356e30408"
  4824. dependencies = [
  4825. "dunce",
  4826. "is-wsl",
  4827. "libc",
  4828. ]
  4829. [[package]]
  4830. name = "openssl-probe"
  4831. version = "0.2.1"
  4832. source = "registry+https://github.com/rust-lang/crates.io-index"
  4833. checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
  4834. [[package]]
  4835. name = "option-ext"
  4836. version = "0.2.0"
  4837. source = "registry+https://github.com/rust-lang/crates.io-index"
  4838. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  4839. [[package]]
  4840. name = "ordered-float"
  4841. version = "5.3.0"
  4842. source = "registry+https://github.com/rust-lang/crates.io-index"
  4843. checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
  4844. dependencies = [
  4845. "num-traits",
  4846. ]
  4847. [[package]]
  4848. name = "ordered-stream"
  4849. version = "0.2.0"
  4850. source = "registry+https://github.com/rust-lang/crates.io-index"
  4851. checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
  4852. dependencies = [
  4853. "futures-core",
  4854. "pin-project-lite",
  4855. ]
  4856. [[package]]
  4857. name = "osakit"
  4858. version = "0.3.1"
  4859. source = "registry+https://github.com/rust-lang/crates.io-index"
  4860. checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b"
  4861. dependencies = [
  4862. "objc2",
  4863. "objc2-foundation",
  4864. "objc2-osa-kit",
  4865. "serde",
  4866. "serde_json",
  4867. "thiserror 2.0.19",
  4868. ]
  4869. [[package]]
  4870. name = "ownedbytes"
  4871. version = "0.9.0"
  4872. source = "registry+https://github.com/rust-lang/crates.io-index"
  4873. checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e"
  4874. dependencies = [
  4875. "stable_deref_trait",
  4876. ]
  4877. [[package]]
  4878. name = "pango"
  4879. version = "0.18.3"
  4880. source = "registry+https://github.com/rust-lang/crates.io-index"
  4881. checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
  4882. dependencies = [
  4883. "gio",
  4884. "glib",
  4885. "libc",
  4886. "once_cell",
  4887. "pango-sys",
  4888. ]
  4889. [[package]]
  4890. name = "pango-sys"
  4891. version = "0.18.0"
  4892. source = "registry+https://github.com/rust-lang/crates.io-index"
  4893. checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
  4894. dependencies = [
  4895. "glib-sys",
  4896. "gobject-sys",
  4897. "libc",
  4898. "system-deps",
  4899. ]
  4900. [[package]]
  4901. name = "parking"
  4902. version = "2.2.1"
  4903. source = "registry+https://github.com/rust-lang/crates.io-index"
  4904. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  4905. [[package]]
  4906. name = "parking_lot"
  4907. version = "0.12.5"
  4908. source = "registry+https://github.com/rust-lang/crates.io-index"
  4909. checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
  4910. dependencies = [
  4911. "lock_api",
  4912. "parking_lot_core",
  4913. ]
  4914. [[package]]
  4915. name = "parking_lot_core"
  4916. version = "0.9.12"
  4917. source = "registry+https://github.com/rust-lang/crates.io-index"
  4918. checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
  4919. dependencies = [
  4920. "cfg-if",
  4921. "libc",
  4922. "redox_syscall",
  4923. "smallvec",
  4924. "windows-link 0.2.1",
  4925. ]
  4926. [[package]]
  4927. name = "paste"
  4928. version = "1.0.15"
  4929. source = "registry+https://github.com/rust-lang/crates.io-index"
  4930. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  4931. [[package]]
  4932. name = "path_abs"
  4933. version = "0.5.1"
  4934. source = "registry+https://github.com/rust-lang/crates.io-index"
  4935. checksum = "05ef02f6342ac01d8a93b65f96db53fe68a92a15f41144f97fb00a9e669633c3"
  4936. dependencies = [
  4937. "serde",
  4938. "serde_derive",
  4939. "std_prelude",
  4940. "stfu8",
  4941. ]
  4942. [[package]]
  4943. name = "pbkdf2"
  4944. version = "0.12.2"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4947. dependencies = [
  4948. "digest",
  4949. "hmac",
  4950. ]
  4951. [[package]]
  4952. name = "percent-encoding"
  4953. version = "2.3.2"
  4954. source = "registry+https://github.com/rust-lang/crates.io-index"
  4955. checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
  4956. [[package]]
  4957. name = "permutation"
  4958. version = "0.4.1"
  4959. source = "registry+https://github.com/rust-lang/crates.io-index"
  4960. checksum = "df202b0b0f5b8e389955afd5f27b007b00fb948162953f1db9c70d2c7e3157d7"
  4961. [[package]]
  4962. name = "petgraph"
  4963. version = "0.8.3"
  4964. source = "registry+https://github.com/rust-lang/crates.io-index"
  4965. checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
  4966. dependencies = [
  4967. "fixedbitset",
  4968. "hashbrown 0.15.5",
  4969. "indexmap 2.14.0",
  4970. "serde",
  4971. ]
  4972. [[package]]
  4973. name = "phf"
  4974. version = "0.12.1"
  4975. source = "registry+https://github.com/rust-lang/crates.io-index"
  4976. checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
  4977. dependencies = [
  4978. "phf_shared 0.12.1",
  4979. ]
  4980. [[package]]
  4981. name = "phf"
  4982. version = "0.13.1"
  4983. source = "registry+https://github.com/rust-lang/crates.io-index"
  4984. checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
  4985. dependencies = [
  4986. "phf_macros",
  4987. "phf_shared 0.13.1",
  4988. "serde",
  4989. ]
  4990. [[package]]
  4991. name = "phf_codegen"
  4992. version = "0.13.1"
  4993. source = "registry+https://github.com/rust-lang/crates.io-index"
  4994. checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
  4995. dependencies = [
  4996. "phf_generator",
  4997. "phf_shared 0.13.1",
  4998. ]
  4999. [[package]]
  5000. name = "phf_generator"
  5001. version = "0.13.1"
  5002. source = "registry+https://github.com/rust-lang/crates.io-index"
  5003. checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
  5004. dependencies = [
  5005. "fastrand",
  5006. "phf_shared 0.13.1",
  5007. ]
  5008. [[package]]
  5009. name = "phf_macros"
  5010. version = "0.13.1"
  5011. source = "registry+https://github.com/rust-lang/crates.io-index"
  5012. checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
  5013. dependencies = [
  5014. "phf_generator",
  5015. "phf_shared 0.13.1",
  5016. "proc-macro2",
  5017. "quote",
  5018. "syn 2.0.119",
  5019. ]
  5020. [[package]]
  5021. name = "phf_shared"
  5022. version = "0.12.1"
  5023. source = "registry+https://github.com/rust-lang/crates.io-index"
  5024. checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
  5025. dependencies = [
  5026. "siphasher",
  5027. ]
  5028. [[package]]
  5029. name = "phf_shared"
  5030. version = "0.13.1"
  5031. source = "registry+https://github.com/rust-lang/crates.io-index"
  5032. checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
  5033. dependencies = [
  5034. "siphasher",
  5035. ]
  5036. [[package]]
  5037. name = "pin-project"
  5038. version = "1.1.13"
  5039. source = "registry+https://github.com/rust-lang/crates.io-index"
  5040. checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
  5041. dependencies = [
  5042. "pin-project-internal",
  5043. ]
  5044. [[package]]
  5045. name = "pin-project-internal"
  5046. version = "1.1.13"
  5047. source = "registry+https://github.com/rust-lang/crates.io-index"
  5048. checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
  5049. dependencies = [
  5050. "proc-macro2",
  5051. "quote",
  5052. "syn 2.0.119",
  5053. ]
  5054. [[package]]
  5055. name = "pin-project-lite"
  5056. version = "0.2.17"
  5057. source = "registry+https://github.com/rust-lang/crates.io-index"
  5058. checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
  5059. [[package]]
  5060. name = "piper"
  5061. version = "0.2.5"
  5062. source = "registry+https://github.com/rust-lang/crates.io-index"
  5063. checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
  5064. dependencies = [
  5065. "atomic-waker",
  5066. "fastrand",
  5067. "futures-io",
  5068. ]
  5069. [[package]]
  5070. name = "pkg-config"
  5071. version = "0.3.33"
  5072. source = "registry+https://github.com/rust-lang/crates.io-index"
  5073. checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
  5074. [[package]]
  5075. name = "plist"
  5076. version = "1.10.0"
  5077. source = "registry+https://github.com/rust-lang/crates.io-index"
  5078. checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85"
  5079. dependencies = [
  5080. "base64 0.22.1",
  5081. "indexmap 2.14.0",
  5082. "quick-xml 0.41.0",
  5083. "serde",
  5084. "time",
  5085. ]
  5086. [[package]]
  5087. name = "png"
  5088. version = "0.17.16"
  5089. source = "registry+https://github.com/rust-lang/crates.io-index"
  5090. checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
  5091. dependencies = [
  5092. "bitflags 1.3.2",
  5093. "crc32fast",
  5094. "fdeflate",
  5095. "flate2",
  5096. "miniz_oxide",
  5097. ]
  5098. [[package]]
  5099. name = "png"
  5100. version = "0.18.1"
  5101. source = "registry+https://github.com/rust-lang/crates.io-index"
  5102. checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
  5103. dependencies = [
  5104. "bitflags 2.13.1",
  5105. "crc32fast",
  5106. "fdeflate",
  5107. "flate2",
  5108. "miniz_oxide",
  5109. ]
  5110. [[package]]
  5111. name = "polling"
  5112. version = "3.11.0"
  5113. source = "registry+https://github.com/rust-lang/crates.io-index"
  5114. checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
  5115. dependencies = [
  5116. "cfg-if",
  5117. "concurrent-queue",
  5118. "hermit-abi",
  5119. "pin-project-lite",
  5120. "rustix 1.1.4",
  5121. "windows-sys 0.61.2",
  5122. ]
  5123. [[package]]
  5124. name = "portable-atomic"
  5125. version = "1.14.0"
  5126. source = "registry+https://github.com/rust-lang/crates.io-index"
  5127. checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
  5128. [[package]]
  5129. name = "portable-atomic-util"
  5130. version = "0.2.7"
  5131. source = "registry+https://github.com/rust-lang/crates.io-index"
  5132. checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
  5133. dependencies = [
  5134. "portable-atomic",
  5135. ]
  5136. [[package]]
  5137. name = "potential_utf"
  5138. version = "0.1.5"
  5139. source = "registry+https://github.com/rust-lang/crates.io-index"
  5140. checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
  5141. dependencies = [
  5142. "zerovec",
  5143. ]
  5144. [[package]]
  5145. name = "powerfmt"
  5146. version = "0.2.0"
  5147. source = "registry+https://github.com/rust-lang/crates.io-index"
  5148. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  5149. [[package]]
  5150. name = "ppv-lite86"
  5151. version = "0.2.21"
  5152. source = "registry+https://github.com/rust-lang/crates.io-index"
  5153. checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  5154. dependencies = [
  5155. "zerocopy",
  5156. ]
  5157. [[package]]
  5158. name = "precomputed-hash"
  5159. version = "0.1.1"
  5160. source = "registry+https://github.com/rust-lang/crates.io-index"
  5161. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  5162. [[package]]
  5163. name = "prettyplease"
  5164. version = "0.2.37"
  5165. source = "registry+https://github.com/rust-lang/crates.io-index"
  5166. checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
  5167. dependencies = [
  5168. "proc-macro2",
  5169. "syn 2.0.119",
  5170. ]
  5171. [[package]]
  5172. name = "proc-macro-crate"
  5173. version = "1.3.1"
  5174. source = "registry+https://github.com/rust-lang/crates.io-index"
  5175. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  5176. dependencies = [
  5177. "once_cell",
  5178. "toml_edit 0.19.15",
  5179. ]
  5180. [[package]]
  5181. name = "proc-macro-crate"
  5182. version = "2.0.2"
  5183. source = "registry+https://github.com/rust-lang/crates.io-index"
  5184. checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
  5185. dependencies = [
  5186. "toml_datetime 0.6.3",
  5187. "toml_edit 0.20.2",
  5188. ]
  5189. [[package]]
  5190. name = "proc-macro-crate"
  5191. version = "3.5.0"
  5192. source = "registry+https://github.com/rust-lang/crates.io-index"
  5193. checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
  5194. dependencies = [
  5195. "toml_edit 0.25.13+spec-1.1.0",
  5196. ]
  5197. [[package]]
  5198. name = "proc-macro-error"
  5199. version = "1.0.4"
  5200. source = "registry+https://github.com/rust-lang/crates.io-index"
  5201. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  5202. dependencies = [
  5203. "proc-macro-error-attr",
  5204. "proc-macro2",
  5205. "quote",
  5206. "syn 1.0.109",
  5207. "version_check",
  5208. ]
  5209. [[package]]
  5210. name = "proc-macro-error-attr"
  5211. version = "1.0.4"
  5212. source = "registry+https://github.com/rust-lang/crates.io-index"
  5213. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  5214. dependencies = [
  5215. "proc-macro2",
  5216. "quote",
  5217. "version_check",
  5218. ]
  5219. [[package]]
  5220. name = "proc-macro2"
  5221. version = "1.0.107"
  5222. source = "registry+https://github.com/rust-lang/crates.io-index"
  5223. checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
  5224. dependencies = [
  5225. "unicode-ident",
  5226. ]
  5227. [[package]]
  5228. name = "prost"
  5229. version = "0.14.4"
  5230. source = "registry+https://github.com/rust-lang/crates.io-index"
  5231. checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
  5232. dependencies = [
  5233. "bytes",
  5234. "prost-derive",
  5235. ]
  5236. [[package]]
  5237. name = "prost-build"
  5238. version = "0.14.4"
  5239. source = "registry+https://github.com/rust-lang/crates.io-index"
  5240. checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
  5241. dependencies = [
  5242. "heck 0.5.0",
  5243. "itertools 0.14.0",
  5244. "log",
  5245. "multimap",
  5246. "petgraph",
  5247. "prettyplease",
  5248. "prost",
  5249. "prost-types",
  5250. "regex",
  5251. "syn 2.0.119",
  5252. "tempfile",
  5253. ]
  5254. [[package]]
  5255. name = "prost-derive"
  5256. version = "0.14.4"
  5257. source = "registry+https://github.com/rust-lang/crates.io-index"
  5258. checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
  5259. dependencies = [
  5260. "anyhow",
  5261. "itertools 0.14.0",
  5262. "proc-macro2",
  5263. "quote",
  5264. "syn 2.0.119",
  5265. ]
  5266. [[package]]
  5267. name = "prost-types"
  5268. version = "0.14.4"
  5269. source = "registry+https://github.com/rust-lang/crates.io-index"
  5270. checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
  5271. dependencies = [
  5272. "prost",
  5273. ]
  5274. [[package]]
  5275. name = "psl-types"
  5276. version = "2.0.11"
  5277. source = "registry+https://github.com/rust-lang/crates.io-index"
  5278. checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
  5279. [[package]]
  5280. name = "publicsuffix"
  5281. version = "2.3.0"
  5282. source = "registry+https://github.com/rust-lang/crates.io-index"
  5283. checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
  5284. dependencies = [
  5285. "idna",
  5286. "psl-types",
  5287. ]
  5288. [[package]]
  5289. name = "pxfm"
  5290. version = "0.1.30"
  5291. source = "registry+https://github.com/rust-lang/crates.io-index"
  5292. checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
  5293. [[package]]
  5294. name = "qmai"
  5295. version = "3.2.0"
  5296. dependencies = [
  5297. "arrow-array",
  5298. "arrow-schema",
  5299. "base64 0.22.1",
  5300. "calamine",
  5301. "cfb",
  5302. "chrono",
  5303. "docx-rs",
  5304. "encoding_rs",
  5305. "futures",
  5306. "image",
  5307. "keepawake",
  5308. "lancedb",
  5309. "md-5",
  5310. "notify",
  5311. "serde",
  5312. "serde_json",
  5313. "sha2",
  5314. "tauri",
  5315. "tauri-build",
  5316. "tauri-plugin-dialog",
  5317. "tauri-plugin-http",
  5318. "tauri-plugin-opener",
  5319. "tauri-plugin-single-instance",
  5320. "tauri-plugin-store",
  5321. "tauri-plugin-updater",
  5322. "tokio",
  5323. "toml 0.8.2",
  5324. "uuid",
  5325. "walkdir",
  5326. "which",
  5327. "zip 2.4.2",
  5328. ]
  5329. [[package]]
  5330. name = "quick-error"
  5331. version = "2.0.1"
  5332. source = "registry+https://github.com/rust-lang/crates.io-index"
  5333. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  5334. [[package]]
  5335. name = "quick-xml"
  5336. version = "0.39.4"
  5337. source = "registry+https://github.com/rust-lang/crates.io-index"
  5338. checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
  5339. dependencies = [
  5340. "encoding_rs",
  5341. "memchr",
  5342. ]
  5343. [[package]]
  5344. name = "quick-xml"
  5345. version = "0.41.0"
  5346. source = "registry+https://github.com/rust-lang/crates.io-index"
  5347. checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
  5348. dependencies = [
  5349. "encoding_rs",
  5350. "memchr",
  5351. ]
  5352. [[package]]
  5353. name = "quinn"
  5354. version = "0.11.11"
  5355. source = "registry+https://github.com/rust-lang/crates.io-index"
  5356. checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
  5357. dependencies = [
  5358. "bytes",
  5359. "cfg_aliases",
  5360. "pin-project-lite",
  5361. "quinn-proto",
  5362. "quinn-udp",
  5363. "rustc-hash",
  5364. "rustls",
  5365. "socket2",
  5366. "thiserror 2.0.19",
  5367. "tokio",
  5368. "tracing",
  5369. "web-time",
  5370. ]
  5371. [[package]]
  5372. name = "quinn-proto"
  5373. version = "0.11.16"
  5374. source = "registry+https://github.com/rust-lang/crates.io-index"
  5375. checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
  5376. dependencies = [
  5377. "bytes",
  5378. "getrandom 0.4.3",
  5379. "lru-slab",
  5380. "rand 0.10.2",
  5381. "rand_pcg",
  5382. "ring",
  5383. "rustc-hash",
  5384. "rustls",
  5385. "rustls-pki-types",
  5386. "slab",
  5387. "thiserror 2.0.19",
  5388. "tinyvec",
  5389. "tracing",
  5390. "web-time",
  5391. ]
  5392. [[package]]
  5393. name = "quinn-udp"
  5394. version = "0.5.15"
  5395. source = "registry+https://github.com/rust-lang/crates.io-index"
  5396. checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
  5397. dependencies = [
  5398. "cfg_aliases",
  5399. "libc",
  5400. "once_cell",
  5401. "socket2",
  5402. "tracing",
  5403. "windows-sys 0.61.2",
  5404. ]
  5405. [[package]]
  5406. name = "quote"
  5407. version = "1.0.47"
  5408. source = "registry+https://github.com/rust-lang/crates.io-index"
  5409. checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
  5410. dependencies = [
  5411. "proc-macro2",
  5412. ]
  5413. [[package]]
  5414. name = "r-efi"
  5415. version = "5.3.0"
  5416. source = "registry+https://github.com/rust-lang/crates.io-index"
  5417. checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
  5418. [[package]]
  5419. name = "r-efi"
  5420. version = "6.0.0"
  5421. source = "registry+https://github.com/rust-lang/crates.io-index"
  5422. checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
  5423. [[package]]
  5424. name = "radium"
  5425. version = "0.7.0"
  5426. source = "registry+https://github.com/rust-lang/crates.io-index"
  5427. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  5428. [[package]]
  5429. name = "rand"
  5430. version = "0.8.7"
  5431. source = "registry+https://github.com/rust-lang/crates.io-index"
  5432. checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
  5433. dependencies = [
  5434. "libc",
  5435. "rand_chacha 0.3.1",
  5436. "rand_core 0.6.4",
  5437. ]
  5438. [[package]]
  5439. name = "rand"
  5440. version = "0.9.5"
  5441. source = "registry+https://github.com/rust-lang/crates.io-index"
  5442. checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
  5443. dependencies = [
  5444. "rand_chacha 0.9.0",
  5445. "rand_core 0.9.5",
  5446. ]
  5447. [[package]]
  5448. name = "rand"
  5449. version = "0.10.2"
  5450. source = "registry+https://github.com/rust-lang/crates.io-index"
  5451. checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
  5452. dependencies = [
  5453. "chacha20",
  5454. "getrandom 0.4.3",
  5455. "rand_core 0.10.1",
  5456. ]
  5457. [[package]]
  5458. name = "rand_chacha"
  5459. version = "0.3.1"
  5460. source = "registry+https://github.com/rust-lang/crates.io-index"
  5461. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  5462. dependencies = [
  5463. "ppv-lite86",
  5464. "rand_core 0.6.4",
  5465. ]
  5466. [[package]]
  5467. name = "rand_chacha"
  5468. version = "0.9.0"
  5469. source = "registry+https://github.com/rust-lang/crates.io-index"
  5470. checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  5471. dependencies = [
  5472. "ppv-lite86",
  5473. "rand_core 0.9.5",
  5474. ]
  5475. [[package]]
  5476. name = "rand_core"
  5477. version = "0.6.4"
  5478. source = "registry+https://github.com/rust-lang/crates.io-index"
  5479. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  5480. dependencies = [
  5481. "getrandom 0.2.17",
  5482. ]
  5483. [[package]]
  5484. name = "rand_core"
  5485. version = "0.9.5"
  5486. source = "registry+https://github.com/rust-lang/crates.io-index"
  5487. checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
  5488. dependencies = [
  5489. "getrandom 0.3.4",
  5490. ]
  5491. [[package]]
  5492. name = "rand_core"
  5493. version = "0.10.1"
  5494. source = "registry+https://github.com/rust-lang/crates.io-index"
  5495. checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
  5496. [[package]]
  5497. name = "rand_distr"
  5498. version = "0.4.3"
  5499. source = "registry+https://github.com/rust-lang/crates.io-index"
  5500. checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
  5501. dependencies = [
  5502. "num-traits",
  5503. "rand 0.8.7",
  5504. ]
  5505. [[package]]
  5506. name = "rand_distr"
  5507. version = "0.5.1"
  5508. source = "registry+https://github.com/rust-lang/crates.io-index"
  5509. checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
  5510. dependencies = [
  5511. "num-traits",
  5512. "rand 0.9.5",
  5513. ]
  5514. [[package]]
  5515. name = "rand_pcg"
  5516. version = "0.10.2"
  5517. source = "registry+https://github.com/rust-lang/crates.io-index"
  5518. checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
  5519. dependencies = [
  5520. "rand_core 0.10.1",
  5521. ]
  5522. [[package]]
  5523. name = "rand_xoshiro"
  5524. version = "0.7.0"
  5525. source = "registry+https://github.com/rust-lang/crates.io-index"
  5526. checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
  5527. dependencies = [
  5528. "rand_core 0.9.5",
  5529. ]
  5530. [[package]]
  5531. name = "random_word"
  5532. version = "0.5.2"
  5533. source = "registry+https://github.com/rust-lang/crates.io-index"
  5534. checksum = "e47a395bdb55442b883c89062d6bcff25dc90fa5f8369af81e0ac6d49d78cf81"
  5535. dependencies = [
  5536. "ahash",
  5537. "brotli",
  5538. "paste",
  5539. "rand 0.9.5",
  5540. "unicase",
  5541. ]
  5542. [[package]]
  5543. name = "rangemap"
  5544. version = "1.7.1"
  5545. source = "registry+https://github.com/rust-lang/crates.io-index"
  5546. checksum = "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68"
  5547. [[package]]
  5548. name = "raw-window-handle"
  5549. version = "0.6.2"
  5550. source = "registry+https://github.com/rust-lang/crates.io-index"
  5551. checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
  5552. [[package]]
  5553. name = "rawpointer"
  5554. version = "0.2.1"
  5555. source = "registry+https://github.com/rust-lang/crates.io-index"
  5556. checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
  5557. [[package]]
  5558. name = "rayon"
  5559. version = "1.12.0"
  5560. source = "registry+https://github.com/rust-lang/crates.io-index"
  5561. checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
  5562. dependencies = [
  5563. "either",
  5564. "rayon-core",
  5565. ]
  5566. [[package]]
  5567. name = "rayon-core"
  5568. version = "1.13.0"
  5569. source = "registry+https://github.com/rust-lang/crates.io-index"
  5570. checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
  5571. dependencies = [
  5572. "crossbeam-deque",
  5573. "crossbeam-utils",
  5574. ]
  5575. [[package]]
  5576. name = "redox_syscall"
  5577. version = "0.5.18"
  5578. source = "registry+https://github.com/rust-lang/crates.io-index"
  5579. checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
  5580. dependencies = [
  5581. "bitflags 2.13.1",
  5582. ]
  5583. [[package]]
  5584. name = "redox_users"
  5585. version = "0.5.2"
  5586. source = "registry+https://github.com/rust-lang/crates.io-index"
  5587. checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
  5588. dependencies = [
  5589. "getrandom 0.2.17",
  5590. "libredox",
  5591. "thiserror 2.0.19",
  5592. ]
  5593. [[package]]
  5594. name = "ref-cast"
  5595. version = "1.0.26"
  5596. source = "registry+https://github.com/rust-lang/crates.io-index"
  5597. checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d"
  5598. dependencies = [
  5599. "ref-cast-impl",
  5600. ]
  5601. [[package]]
  5602. name = "ref-cast-impl"
  5603. version = "1.0.26"
  5604. source = "registry+https://github.com/rust-lang/crates.io-index"
  5605. checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c"
  5606. dependencies = [
  5607. "proc-macro2",
  5608. "quote",
  5609. "syn 3.0.3",
  5610. ]
  5611. [[package]]
  5612. name = "regex"
  5613. version = "1.13.1"
  5614. source = "registry+https://github.com/rust-lang/crates.io-index"
  5615. checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
  5616. dependencies = [
  5617. "aho-corasick",
  5618. "memchr",
  5619. "regex-automata",
  5620. "regex-syntax",
  5621. ]
  5622. [[package]]
  5623. name = "regex-automata"
  5624. version = "0.4.18"
  5625. source = "registry+https://github.com/rust-lang/crates.io-index"
  5626. checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
  5627. dependencies = [
  5628. "aho-corasick",
  5629. "memchr",
  5630. "regex-syntax",
  5631. ]
  5632. [[package]]
  5633. name = "regex-syntax"
  5634. version = "0.8.11"
  5635. source = "registry+https://github.com/rust-lang/crates.io-index"
  5636. checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
  5637. [[package]]
  5638. name = "reqwest"
  5639. version = "0.12.28"
  5640. source = "registry+https://github.com/rust-lang/crates.io-index"
  5641. checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
  5642. dependencies = [
  5643. "base64 0.22.1",
  5644. "bytes",
  5645. "cookie",
  5646. "cookie_store",
  5647. "encoding_rs",
  5648. "futures-core",
  5649. "futures-util",
  5650. "h2",
  5651. "http",
  5652. "http-body",
  5653. "http-body-util",
  5654. "hyper",
  5655. "hyper-rustls",
  5656. "hyper-util",
  5657. "js-sys",
  5658. "log",
  5659. "mime",
  5660. "mime_guess",
  5661. "percent-encoding",
  5662. "pin-project-lite",
  5663. "quinn",
  5664. "rustls",
  5665. "rustls-native-certs",
  5666. "rustls-pki-types",
  5667. "serde",
  5668. "serde_json",
  5669. "serde_urlencoded",
  5670. "sync_wrapper",
  5671. "tokio",
  5672. "tokio-rustls",
  5673. "tokio-util",
  5674. "tower",
  5675. "tower-http",
  5676. "tower-service",
  5677. "url",
  5678. "wasm-bindgen",
  5679. "wasm-bindgen-futures",
  5680. "wasm-streams 0.4.2",
  5681. "web-sys",
  5682. "webpki-roots",
  5683. ]
  5684. [[package]]
  5685. name = "reqwest"
  5686. version = "0.13.4"
  5687. source = "registry+https://github.com/rust-lang/crates.io-index"
  5688. checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
  5689. dependencies = [
  5690. "base64 0.22.1",
  5691. "bytes",
  5692. "futures-core",
  5693. "futures-util",
  5694. "http",
  5695. "http-body",
  5696. "http-body-util",
  5697. "hyper",
  5698. "hyper-rustls",
  5699. "hyper-util",
  5700. "js-sys",
  5701. "log",
  5702. "percent-encoding",
  5703. "pin-project-lite",
  5704. "rustls",
  5705. "rustls-pki-types",
  5706. "rustls-platform-verifier",
  5707. "serde",
  5708. "serde_json",
  5709. "sync_wrapper",
  5710. "tokio",
  5711. "tokio-rustls",
  5712. "tokio-util",
  5713. "tower",
  5714. "tower-http",
  5715. "tower-service",
  5716. "url",
  5717. "wasm-bindgen",
  5718. "wasm-bindgen-futures",
  5719. "wasm-streams 0.5.0",
  5720. "web-sys",
  5721. ]
  5722. [[package]]
  5723. name = "rfd"
  5724. version = "0.16.0"
  5725. source = "registry+https://github.com/rust-lang/crates.io-index"
  5726. checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672"
  5727. dependencies = [
  5728. "block2",
  5729. "dispatch2",
  5730. "glib-sys",
  5731. "gobject-sys",
  5732. "gtk-sys",
  5733. "js-sys",
  5734. "log",
  5735. "objc2",
  5736. "objc2-app-kit",
  5737. "objc2-core-foundation",
  5738. "objc2-foundation",
  5739. "raw-window-handle",
  5740. "wasm-bindgen",
  5741. "wasm-bindgen-futures",
  5742. "web-sys",
  5743. "windows-sys 0.60.2",
  5744. ]
  5745. [[package]]
  5746. name = "ring"
  5747. version = "0.17.14"
  5748. source = "registry+https://github.com/rust-lang/crates.io-index"
  5749. checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  5750. dependencies = [
  5751. "cc",
  5752. "cfg-if",
  5753. "getrandom 0.2.17",
  5754. "libc",
  5755. "untrusted",
  5756. "windows-sys 0.52.0",
  5757. ]
  5758. [[package]]
  5759. name = "roaring"
  5760. version = "0.11.4"
  5761. source = "registry+https://github.com/rust-lang/crates.io-index"
  5762. checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9"
  5763. dependencies = [
  5764. "bytemuck",
  5765. "byteorder",
  5766. ]
  5767. [[package]]
  5768. name = "rust-stemmers"
  5769. version = "1.2.0"
  5770. source = "registry+https://github.com/rust-lang/crates.io-index"
  5771. checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
  5772. dependencies = [
  5773. "serde",
  5774. "serde_derive",
  5775. ]
  5776. [[package]]
  5777. name = "rustc-hash"
  5778. version = "2.1.3"
  5779. source = "registry+https://github.com/rust-lang/crates.io-index"
  5780. checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
  5781. [[package]]
  5782. name = "rustc_version"
  5783. version = "0.4.1"
  5784. source = "registry+https://github.com/rust-lang/crates.io-index"
  5785. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  5786. dependencies = [
  5787. "semver",
  5788. ]
  5789. [[package]]
  5790. name = "rustix"
  5791. version = "0.38.44"
  5792. source = "registry+https://github.com/rust-lang/crates.io-index"
  5793. checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
  5794. dependencies = [
  5795. "bitflags 2.13.1",
  5796. "errno",
  5797. "libc",
  5798. "linux-raw-sys 0.4.15",
  5799. "windows-sys 0.59.0",
  5800. ]
  5801. [[package]]
  5802. name = "rustix"
  5803. version = "1.1.4"
  5804. source = "registry+https://github.com/rust-lang/crates.io-index"
  5805. checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
  5806. dependencies = [
  5807. "bitflags 2.13.1",
  5808. "errno",
  5809. "libc",
  5810. "linux-raw-sys 0.12.1",
  5811. "windows-sys 0.61.2",
  5812. ]
  5813. [[package]]
  5814. name = "rustls"
  5815. version = "0.23.43"
  5816. source = "registry+https://github.com/rust-lang/crates.io-index"
  5817. checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
  5818. dependencies = [
  5819. "once_cell",
  5820. "ring",
  5821. "rustls-pki-types",
  5822. "rustls-webpki",
  5823. "subtle",
  5824. "zeroize",
  5825. ]
  5826. [[package]]
  5827. name = "rustls-native-certs"
  5828. version = "0.8.4"
  5829. source = "registry+https://github.com/rust-lang/crates.io-index"
  5830. checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
  5831. dependencies = [
  5832. "openssl-probe",
  5833. "rustls-pki-types",
  5834. "schannel",
  5835. "security-framework",
  5836. ]
  5837. [[package]]
  5838. name = "rustls-pki-types"
  5839. version = "1.15.1"
  5840. source = "registry+https://github.com/rust-lang/crates.io-index"
  5841. checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
  5842. dependencies = [
  5843. "web-time",
  5844. "zeroize",
  5845. ]
  5846. [[package]]
  5847. name = "rustls-platform-verifier"
  5848. version = "0.7.0"
  5849. source = "registry+https://github.com/rust-lang/crates.io-index"
  5850. checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
  5851. dependencies = [
  5852. "core-foundation 0.10.1",
  5853. "core-foundation-sys",
  5854. "jni 0.22.4",
  5855. "log",
  5856. "once_cell",
  5857. "rustls",
  5858. "rustls-native-certs",
  5859. "rustls-platform-verifier-android",
  5860. "rustls-webpki",
  5861. "security-framework",
  5862. "security-framework-sys",
  5863. "webpki-root-certs",
  5864. "windows-sys 0.61.2",
  5865. ]
  5866. [[package]]
  5867. name = "rustls-platform-verifier-android"
  5868. version = "0.1.1"
  5869. source = "registry+https://github.com/rust-lang/crates.io-index"
  5870. checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
  5871. [[package]]
  5872. name = "rustls-webpki"
  5873. version = "0.103.13"
  5874. source = "registry+https://github.com/rust-lang/crates.io-index"
  5875. checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
  5876. dependencies = [
  5877. "ring",
  5878. "rustls-pki-types",
  5879. "untrusted",
  5880. ]
  5881. [[package]]
  5882. name = "rustversion"
  5883. version = "1.0.23"
  5884. source = "registry+https://github.com/rust-lang/crates.io-index"
  5885. checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
  5886. [[package]]
  5887. name = "ryu"
  5888. version = "1.0.23"
  5889. source = "registry+https://github.com/rust-lang/crates.io-index"
  5890. checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
  5891. [[package]]
  5892. name = "same-file"
  5893. version = "1.0.6"
  5894. source = "registry+https://github.com/rust-lang/crates.io-index"
  5895. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  5896. dependencies = [
  5897. "winapi-util",
  5898. ]
  5899. [[package]]
  5900. name = "schannel"
  5901. version = "0.1.29"
  5902. source = "registry+https://github.com/rust-lang/crates.io-index"
  5903. checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
  5904. dependencies = [
  5905. "windows-sys 0.61.2",
  5906. ]
  5907. [[package]]
  5908. name = "schemars"
  5909. version = "0.8.22"
  5910. source = "registry+https://github.com/rust-lang/crates.io-index"
  5911. checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
  5912. dependencies = [
  5913. "dyn-clone",
  5914. "indexmap 1.9.3",
  5915. "schemars_derive",
  5916. "serde",
  5917. "serde_json",
  5918. "url",
  5919. "uuid",
  5920. ]
  5921. [[package]]
  5922. name = "schemars"
  5923. version = "0.9.0"
  5924. source = "registry+https://github.com/rust-lang/crates.io-index"
  5925. checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
  5926. dependencies = [
  5927. "dyn-clone",
  5928. "ref-cast",
  5929. "serde",
  5930. "serde_json",
  5931. ]
  5932. [[package]]
  5933. name = "schemars"
  5934. version = "1.2.2"
  5935. source = "registry+https://github.com/rust-lang/crates.io-index"
  5936. checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
  5937. dependencies = [
  5938. "dyn-clone",
  5939. "ref-cast",
  5940. "serde",
  5941. "serde_json",
  5942. ]
  5943. [[package]]
  5944. name = "schemars_derive"
  5945. version = "0.8.22"
  5946. source = "registry+https://github.com/rust-lang/crates.io-index"
  5947. checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
  5948. dependencies = [
  5949. "proc-macro2",
  5950. "quote",
  5951. "serde_derive_internals",
  5952. "syn 2.0.119",
  5953. ]
  5954. [[package]]
  5955. name = "scoped-tls"
  5956. version = "1.0.1"
  5957. source = "registry+https://github.com/rust-lang/crates.io-index"
  5958. checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
  5959. [[package]]
  5960. name = "scopeguard"
  5961. version = "1.2.0"
  5962. source = "registry+https://github.com/rust-lang/crates.io-index"
  5963. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  5964. [[package]]
  5965. name = "security-framework"
  5966. version = "3.7.0"
  5967. source = "registry+https://github.com/rust-lang/crates.io-index"
  5968. checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
  5969. dependencies = [
  5970. "bitflags 2.13.1",
  5971. "core-foundation 0.10.1",
  5972. "core-foundation-sys",
  5973. "libc",
  5974. "security-framework-sys",
  5975. ]
  5976. [[package]]
  5977. name = "security-framework-sys"
  5978. version = "2.17.0"
  5979. source = "registry+https://github.com/rust-lang/crates.io-index"
  5980. checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
  5981. dependencies = [
  5982. "core-foundation-sys",
  5983. "libc",
  5984. ]
  5985. [[package]]
  5986. name = "selectors"
  5987. version = "0.36.1"
  5988. source = "registry+https://github.com/rust-lang/crates.io-index"
  5989. checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
  5990. dependencies = [
  5991. "bitflags 2.13.1",
  5992. "cssparser",
  5993. "derive_more",
  5994. "log",
  5995. "new_debug_unreachable",
  5996. "phf 0.13.1",
  5997. "phf_codegen",
  5998. "precomputed-hash",
  5999. "rustc-hash",
  6000. "servo_arc",
  6001. "smallvec",
  6002. ]
  6003. [[package]]
  6004. name = "semver"
  6005. version = "1.0.28"
  6006. source = "registry+https://github.com/rust-lang/crates.io-index"
  6007. checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
  6008. dependencies = [
  6009. "serde",
  6010. "serde_core",
  6011. ]
  6012. [[package]]
  6013. name = "seq-macro"
  6014. version = "0.3.6"
  6015. source = "registry+https://github.com/rust-lang/crates.io-index"
  6016. checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
  6017. [[package]]
  6018. name = "serde"
  6019. version = "1.0.229"
  6020. source = "registry+https://github.com/rust-lang/crates.io-index"
  6021. checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
  6022. dependencies = [
  6023. "serde_core",
  6024. "serde_derive",
  6025. ]
  6026. [[package]]
  6027. name = "serde-untagged"
  6028. version = "0.1.9"
  6029. source = "registry+https://github.com/rust-lang/crates.io-index"
  6030. checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
  6031. dependencies = [
  6032. "erased-serde",
  6033. "serde",
  6034. "serde_core",
  6035. "typeid",
  6036. ]
  6037. [[package]]
  6038. name = "serde_core"
  6039. version = "1.0.229"
  6040. source = "registry+https://github.com/rust-lang/crates.io-index"
  6041. checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
  6042. dependencies = [
  6043. "serde_derive",
  6044. ]
  6045. [[package]]
  6046. name = "serde_derive"
  6047. version = "1.0.229"
  6048. source = "registry+https://github.com/rust-lang/crates.io-index"
  6049. checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
  6050. dependencies = [
  6051. "proc-macro2",
  6052. "quote",
  6053. "syn 3.0.3",
  6054. ]
  6055. [[package]]
  6056. name = "serde_derive_internals"
  6057. version = "0.29.1"
  6058. source = "registry+https://github.com/rust-lang/crates.io-index"
  6059. checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
  6060. dependencies = [
  6061. "proc-macro2",
  6062. "quote",
  6063. "syn 2.0.119",
  6064. ]
  6065. [[package]]
  6066. name = "serde_json"
  6067. version = "1.0.151"
  6068. source = "registry+https://github.com/rust-lang/crates.io-index"
  6069. checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
  6070. dependencies = [
  6071. "itoa",
  6072. "memchr",
  6073. "serde",
  6074. "serde_core",
  6075. "zmij",
  6076. ]
  6077. [[package]]
  6078. name = "serde_repr"
  6079. version = "0.1.21"
  6080. source = "registry+https://github.com/rust-lang/crates.io-index"
  6081. checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906"
  6082. dependencies = [
  6083. "proc-macro2",
  6084. "quote",
  6085. "syn 3.0.3",
  6086. ]
  6087. [[package]]
  6088. name = "serde_spanned"
  6089. version = "0.6.9"
  6090. source = "registry+https://github.com/rust-lang/crates.io-index"
  6091. checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
  6092. dependencies = [
  6093. "serde",
  6094. ]
  6095. [[package]]
  6096. name = "serde_spanned"
  6097. version = "1.1.1"
  6098. source = "registry+https://github.com/rust-lang/crates.io-index"
  6099. checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
  6100. dependencies = [
  6101. "serde_core",
  6102. ]
  6103. [[package]]
  6104. name = "serde_urlencoded"
  6105. version = "0.7.1"
  6106. source = "registry+https://github.com/rust-lang/crates.io-index"
  6107. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  6108. dependencies = [
  6109. "form_urlencoded",
  6110. "itoa",
  6111. "ryu",
  6112. "serde",
  6113. ]
  6114. [[package]]
  6115. name = "serde_with"
  6116. version = "3.21.0"
  6117. source = "registry+https://github.com/rust-lang/crates.io-index"
  6118. checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
  6119. dependencies = [
  6120. "base64 0.22.1",
  6121. "bs58",
  6122. "chrono",
  6123. "hex",
  6124. "indexmap 1.9.3",
  6125. "indexmap 2.14.0",
  6126. "schemars 0.9.0",
  6127. "schemars 1.2.2",
  6128. "serde_core",
  6129. "serde_json",
  6130. "serde_with_macros",
  6131. "time",
  6132. ]
  6133. [[package]]
  6134. name = "serde_with_macros"
  6135. version = "3.21.0"
  6136. source = "registry+https://github.com/rust-lang/crates.io-index"
  6137. checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
  6138. dependencies = [
  6139. "darling 0.23.0",
  6140. "proc-macro2",
  6141. "quote",
  6142. "syn 2.0.119",
  6143. ]
  6144. [[package]]
  6145. name = "serialize-to-javascript"
  6146. version = "0.1.2"
  6147. source = "registry+https://github.com/rust-lang/crates.io-index"
  6148. checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
  6149. dependencies = [
  6150. "serde",
  6151. "serde_json",
  6152. "serialize-to-javascript-impl",
  6153. ]
  6154. [[package]]
  6155. name = "serialize-to-javascript-impl"
  6156. version = "0.1.2"
  6157. source = "registry+https://github.com/rust-lang/crates.io-index"
  6158. checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
  6159. dependencies = [
  6160. "proc-macro2",
  6161. "quote",
  6162. "syn 2.0.119",
  6163. ]
  6164. [[package]]
  6165. name = "servo_arc"
  6166. version = "0.4.3"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
  6169. dependencies = [
  6170. "stable_deref_trait",
  6171. ]
  6172. [[package]]
  6173. name = "sha1"
  6174. version = "0.10.7"
  6175. source = "registry+https://github.com/rust-lang/crates.io-index"
  6176. checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
  6177. dependencies = [
  6178. "cfg-if",
  6179. "cpufeatures 0.2.17",
  6180. "digest",
  6181. ]
  6182. [[package]]
  6183. name = "sha2"
  6184. version = "0.10.9"
  6185. source = "registry+https://github.com/rust-lang/crates.io-index"
  6186. checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
  6187. dependencies = [
  6188. "cfg-if",
  6189. "cpufeatures 0.2.17",
  6190. "digest",
  6191. ]
  6192. [[package]]
  6193. name = "sharded-slab"
  6194. version = "0.1.7"
  6195. source = "registry+https://github.com/rust-lang/crates.io-index"
  6196. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  6197. dependencies = [
  6198. "lazy_static",
  6199. ]
  6200. [[package]]
  6201. name = "shlex"
  6202. version = "2.0.1"
  6203. source = "registry+https://github.com/rust-lang/crates.io-index"
  6204. checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
  6205. [[package]]
  6206. name = "signal-hook-registry"
  6207. version = "1.4.8"
  6208. source = "registry+https://github.com/rust-lang/crates.io-index"
  6209. checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
  6210. dependencies = [
  6211. "errno",
  6212. "libc",
  6213. ]
  6214. [[package]]
  6215. name = "simd-adler32"
  6216. version = "0.3.10"
  6217. source = "registry+https://github.com/rust-lang/crates.io-index"
  6218. checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
  6219. [[package]]
  6220. name = "simd_cesu8"
  6221. version = "1.2.0"
  6222. source = "registry+https://github.com/rust-lang/crates.io-index"
  6223. checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
  6224. dependencies = [
  6225. "rustc_version",
  6226. "simdutf8",
  6227. ]
  6228. [[package]]
  6229. name = "simdutf8"
  6230. version = "0.1.5"
  6231. source = "registry+https://github.com/rust-lang/crates.io-index"
  6232. checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
  6233. [[package]]
  6234. name = "siphasher"
  6235. version = "1.0.3"
  6236. source = "registry+https://github.com/rust-lang/crates.io-index"
  6237. checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
  6238. [[package]]
  6239. name = "sketches-ddsketch"
  6240. version = "0.3.1"
  6241. source = "registry+https://github.com/rust-lang/crates.io-index"
  6242. checksum = "0c6f73aeb92d671e0cc4dca167e59b2deb6387c375391bc99ee743f326994a2b"
  6243. dependencies = [
  6244. "serde",
  6245. ]
  6246. [[package]]
  6247. name = "slab"
  6248. version = "0.4.12"
  6249. source = "registry+https://github.com/rust-lang/crates.io-index"
  6250. checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
  6251. [[package]]
  6252. name = "smallvec"
  6253. version = "1.15.2"
  6254. source = "registry+https://github.com/rust-lang/crates.io-index"
  6255. checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
  6256. [[package]]
  6257. name = "snafu"
  6258. version = "0.8.9"
  6259. source = "registry+https://github.com/rust-lang/crates.io-index"
  6260. checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
  6261. dependencies = [
  6262. "snafu-derive 0.8.9",
  6263. ]
  6264. [[package]]
  6265. name = "snafu"
  6266. version = "0.9.2"
  6267. source = "registry+https://github.com/rust-lang/crates.io-index"
  6268. checksum = "e45cb604038abb7b926b679887b3226d8d0f23874b66623625a0454be425a4b7"
  6269. dependencies = [
  6270. "snafu-derive 0.9.2",
  6271. ]
  6272. [[package]]
  6273. name = "snafu-derive"
  6274. version = "0.8.9"
  6275. source = "registry+https://github.com/rust-lang/crates.io-index"
  6276. checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
  6277. dependencies = [
  6278. "heck 0.5.0",
  6279. "proc-macro2",
  6280. "quote",
  6281. "syn 2.0.119",
  6282. ]
  6283. [[package]]
  6284. name = "snafu-derive"
  6285. version = "0.9.2"
  6286. source = "registry+https://github.com/rust-lang/crates.io-index"
  6287. checksum = "287f59010008f0d7cf5e3b03196d666c1acc46c8d3e9cf34c28a1a7157601e72"
  6288. dependencies = [
  6289. "heck 0.5.0",
  6290. "proc-macro2",
  6291. "quote",
  6292. "syn 2.0.119",
  6293. ]
  6294. [[package]]
  6295. name = "socket2"
  6296. version = "0.6.5"
  6297. source = "registry+https://github.com/rust-lang/crates.io-index"
  6298. checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
  6299. dependencies = [
  6300. "libc",
  6301. "windows-sys 0.61.2",
  6302. ]
  6303. [[package]]
  6304. name = "softbuffer"
  6305. version = "0.4.8"
  6306. source = "registry+https://github.com/rust-lang/crates.io-index"
  6307. checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
  6308. dependencies = [
  6309. "bytemuck",
  6310. "js-sys",
  6311. "ndk",
  6312. "objc2",
  6313. "objc2-core-foundation",
  6314. "objc2-core-graphics",
  6315. "objc2-foundation",
  6316. "objc2-quartz-core",
  6317. "raw-window-handle",
  6318. "redox_syscall",
  6319. "tracing",
  6320. "wasm-bindgen",
  6321. "web-sys",
  6322. "windows-sys 0.61.2",
  6323. ]
  6324. [[package]]
  6325. name = "soup3"
  6326. version = "0.5.0"
  6327. source = "registry+https://github.com/rust-lang/crates.io-index"
  6328. checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
  6329. dependencies = [
  6330. "futures-channel",
  6331. "gio",
  6332. "glib",
  6333. "libc",
  6334. "soup3-sys",
  6335. ]
  6336. [[package]]
  6337. name = "soup3-sys"
  6338. version = "0.5.0"
  6339. source = "registry+https://github.com/rust-lang/crates.io-index"
  6340. checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
  6341. dependencies = [
  6342. "gio-sys",
  6343. "glib-sys",
  6344. "gobject-sys",
  6345. "libc",
  6346. "system-deps",
  6347. ]
  6348. [[package]]
  6349. name = "sqlparser"
  6350. version = "0.59.0"
  6351. source = "registry+https://github.com/rust-lang/crates.io-index"
  6352. checksum = "4591acadbcf52f0af60eafbb2c003232b2b4cd8de5f0e9437cb8b1b59046cc0f"
  6353. dependencies = [
  6354. "log",
  6355. "sqlparser_derive",
  6356. ]
  6357. [[package]]
  6358. name = "sqlparser_derive"
  6359. version = "0.3.0"
  6360. source = "registry+https://github.com/rust-lang/crates.io-index"
  6361. checksum = "da5fc6819faabb412da764b99d3b713bb55083c11e7e0c00144d386cd6a1939c"
  6362. dependencies = [
  6363. "proc-macro2",
  6364. "quote",
  6365. "syn 2.0.119",
  6366. ]
  6367. [[package]]
  6368. name = "stable_deref_trait"
  6369. version = "1.2.1"
  6370. source = "registry+https://github.com/rust-lang/crates.io-index"
  6371. checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
  6372. [[package]]
  6373. name = "std_prelude"
  6374. version = "0.2.12"
  6375. source = "registry+https://github.com/rust-lang/crates.io-index"
  6376. checksum = "8207e78455ffdf55661170876f88daf85356e4edd54e0a3dbc79586ca1e50cbe"
  6377. [[package]]
  6378. name = "stfu8"
  6379. version = "0.2.7"
  6380. source = "registry+https://github.com/rust-lang/crates.io-index"
  6381. checksum = "e51f1e89f093f99e7432c491c382b88a6860a5adbe6bf02574bf0a08efff1978"
  6382. [[package]]
  6383. name = "string_cache"
  6384. version = "0.9.0"
  6385. source = "registry+https://github.com/rust-lang/crates.io-index"
  6386. checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
  6387. dependencies = [
  6388. "new_debug_unreachable",
  6389. "parking_lot",
  6390. "phf_shared 0.13.1",
  6391. "precomputed-hash",
  6392. ]
  6393. [[package]]
  6394. name = "string_cache_codegen"
  6395. version = "0.6.1"
  6396. source = "registry+https://github.com/rust-lang/crates.io-index"
  6397. checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
  6398. dependencies = [
  6399. "phf_generator",
  6400. "phf_shared 0.13.1",
  6401. "proc-macro2",
  6402. "quote",
  6403. ]
  6404. [[package]]
  6405. name = "strsim"
  6406. version = "0.11.1"
  6407. source = "registry+https://github.com/rust-lang/crates.io-index"
  6408. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  6409. [[package]]
  6410. name = "strum"
  6411. version = "0.26.3"
  6412. source = "registry+https://github.com/rust-lang/crates.io-index"
  6413. checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
  6414. dependencies = [
  6415. "strum_macros",
  6416. ]
  6417. [[package]]
  6418. name = "strum_macros"
  6419. version = "0.26.4"
  6420. source = "registry+https://github.com/rust-lang/crates.io-index"
  6421. checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
  6422. dependencies = [
  6423. "heck 0.5.0",
  6424. "proc-macro2",
  6425. "quote",
  6426. "rustversion",
  6427. "syn 2.0.119",
  6428. ]
  6429. [[package]]
  6430. name = "subtle"
  6431. version = "2.6.1"
  6432. source = "registry+https://github.com/rust-lang/crates.io-index"
  6433. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  6434. [[package]]
  6435. name = "swift-rs"
  6436. version = "1.0.7"
  6437. source = "registry+https://github.com/rust-lang/crates.io-index"
  6438. checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
  6439. dependencies = [
  6440. "base64 0.21.7",
  6441. "serde",
  6442. "serde_json",
  6443. ]
  6444. [[package]]
  6445. name = "syn"
  6446. version = "1.0.109"
  6447. source = "registry+https://github.com/rust-lang/crates.io-index"
  6448. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  6449. dependencies = [
  6450. "proc-macro2",
  6451. "quote",
  6452. "unicode-ident",
  6453. ]
  6454. [[package]]
  6455. name = "syn"
  6456. version = "2.0.119"
  6457. source = "registry+https://github.com/rust-lang/crates.io-index"
  6458. checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
  6459. dependencies = [
  6460. "proc-macro2",
  6461. "quote",
  6462. "unicode-ident",
  6463. ]
  6464. [[package]]
  6465. name = "syn"
  6466. version = "3.0.3"
  6467. source = "registry+https://github.com/rust-lang/crates.io-index"
  6468. checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
  6469. dependencies = [
  6470. "proc-macro2",
  6471. "quote",
  6472. "unicode-ident",
  6473. ]
  6474. [[package]]
  6475. name = "sync_wrapper"
  6476. version = "1.0.2"
  6477. source = "registry+https://github.com/rust-lang/crates.io-index"
  6478. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  6479. dependencies = [
  6480. "futures-core",
  6481. ]
  6482. [[package]]
  6483. name = "synstructure"
  6484. version = "0.13.2"
  6485. source = "registry+https://github.com/rust-lang/crates.io-index"
  6486. checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  6487. dependencies = [
  6488. "proc-macro2",
  6489. "quote",
  6490. "syn 2.0.119",
  6491. ]
  6492. [[package]]
  6493. name = "system-configuration"
  6494. version = "0.7.0"
  6495. source = "registry+https://github.com/rust-lang/crates.io-index"
  6496. checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
  6497. dependencies = [
  6498. "bitflags 2.13.1",
  6499. "core-foundation 0.9.4",
  6500. "system-configuration-sys",
  6501. ]
  6502. [[package]]
  6503. name = "system-configuration-sys"
  6504. version = "0.6.0"
  6505. source = "registry+https://github.com/rust-lang/crates.io-index"
  6506. checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
  6507. dependencies = [
  6508. "core-foundation-sys",
  6509. "libc",
  6510. ]
  6511. [[package]]
  6512. name = "system-deps"
  6513. version = "6.2.2"
  6514. source = "registry+https://github.com/rust-lang/crates.io-index"
  6515. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  6516. dependencies = [
  6517. "cfg-expr",
  6518. "heck 0.5.0",
  6519. "pkg-config",
  6520. "toml 0.8.2",
  6521. "version-compare",
  6522. ]
  6523. [[package]]
  6524. name = "tagptr"
  6525. version = "0.2.0"
  6526. source = "registry+https://github.com/rust-lang/crates.io-index"
  6527. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  6528. [[package]]
  6529. name = "tantivy"
  6530. version = "0.24.2"
  6531. source = "registry+https://github.com/rust-lang/crates.io-index"
  6532. checksum = "64a966cb0e76e311f09cf18507c9af192f15d34886ee43d7ba7c7e3803660c43"
  6533. dependencies = [
  6534. "aho-corasick",
  6535. "arc-swap",
  6536. "base64 0.22.1",
  6537. "bitpacking",
  6538. "bon",
  6539. "byteorder",
  6540. "census",
  6541. "crc32fast",
  6542. "crossbeam-channel",
  6543. "downcast-rs",
  6544. "fastdivide",
  6545. "fnv",
  6546. "fs4",
  6547. "htmlescape",
  6548. "hyperloglogplus",
  6549. "itertools 0.14.0",
  6550. "levenshtein_automata",
  6551. "log",
  6552. "lru",
  6553. "lz4_flex 0.11.6",
  6554. "measure_time",
  6555. "memmap2",
  6556. "once_cell",
  6557. "oneshot",
  6558. "rayon",
  6559. "regex",
  6560. "rust-stemmers",
  6561. "rustc-hash",
  6562. "serde",
  6563. "serde_json",
  6564. "sketches-ddsketch",
  6565. "smallvec",
  6566. "tantivy-bitpacker",
  6567. "tantivy-columnar",
  6568. "tantivy-common",
  6569. "tantivy-fst",
  6570. "tantivy-query-grammar",
  6571. "tantivy-stacker",
  6572. "tantivy-tokenizer-api",
  6573. "tempfile",
  6574. "thiserror 2.0.19",
  6575. "time",
  6576. "uuid",
  6577. "winapi",
  6578. ]
  6579. [[package]]
  6580. name = "tantivy-bitpacker"
  6581. version = "0.8.0"
  6582. source = "registry+https://github.com/rust-lang/crates.io-index"
  6583. checksum = "1adc286a39e089ae9938935cd488d7d34f14502544a36607effd2239ff0e2494"
  6584. dependencies = [
  6585. "bitpacking",
  6586. ]
  6587. [[package]]
  6588. name = "tantivy-columnar"
  6589. version = "0.5.0"
  6590. source = "registry+https://github.com/rust-lang/crates.io-index"
  6591. checksum = "6300428e0c104c4f7db6f95b466a6f5c1b9aece094ec57cdd365337908dc7344"
  6592. dependencies = [
  6593. "downcast-rs",
  6594. "fastdivide",
  6595. "itertools 0.14.0",
  6596. "serde",
  6597. "tantivy-bitpacker",
  6598. "tantivy-common",
  6599. "tantivy-sstable",
  6600. "tantivy-stacker",
  6601. ]
  6602. [[package]]
  6603. name = "tantivy-common"
  6604. version = "0.9.0"
  6605. source = "registry+https://github.com/rust-lang/crates.io-index"
  6606. checksum = "e91b6ea6090ce03dc72c27d0619e77185d26cc3b20775966c346c6d4f7e99d7f"
  6607. dependencies = [
  6608. "async-trait",
  6609. "byteorder",
  6610. "ownedbytes",
  6611. "serde",
  6612. "time",
  6613. ]
  6614. [[package]]
  6615. name = "tantivy-fst"
  6616. version = "0.5.0"
  6617. source = "registry+https://github.com/rust-lang/crates.io-index"
  6618. checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
  6619. dependencies = [
  6620. "byteorder",
  6621. "regex-syntax",
  6622. "utf8-ranges",
  6623. ]
  6624. [[package]]
  6625. name = "tantivy-query-grammar"
  6626. version = "0.24.0"
  6627. source = "registry+https://github.com/rust-lang/crates.io-index"
  6628. checksum = "e810cdeeebca57fc3f7bfec5f85fdbea9031b2ac9b990eb5ff49b371d52bbe6a"
  6629. dependencies = [
  6630. "nom 7.1.3",
  6631. "serde",
  6632. "serde_json",
  6633. ]
  6634. [[package]]
  6635. name = "tantivy-sstable"
  6636. version = "0.5.0"
  6637. source = "registry+https://github.com/rust-lang/crates.io-index"
  6638. checksum = "709f22c08a4c90e1b36711c1c6cad5ae21b20b093e535b69b18783dd2cb99416"
  6639. dependencies = [
  6640. "futures-util",
  6641. "itertools 0.14.0",
  6642. "tantivy-bitpacker",
  6643. "tantivy-common",
  6644. "tantivy-fst",
  6645. "zstd",
  6646. ]
  6647. [[package]]
  6648. name = "tantivy-stacker"
  6649. version = "0.5.0"
  6650. source = "registry+https://github.com/rust-lang/crates.io-index"
  6651. checksum = "2bcdebb267671311d1e8891fd9d1301803fdb8ad21ba22e0a30d0cab49ba59c1"
  6652. dependencies = [
  6653. "murmurhash32",
  6654. "rand_distr 0.4.3",
  6655. "tantivy-common",
  6656. ]
  6657. [[package]]
  6658. name = "tantivy-tokenizer-api"
  6659. version = "0.5.0"
  6660. source = "registry+https://github.com/rust-lang/crates.io-index"
  6661. checksum = "dfa942fcee81e213e09715bbce8734ae2180070b97b33839a795ba1de201547d"
  6662. dependencies = [
  6663. "serde",
  6664. ]
  6665. [[package]]
  6666. name = "tao"
  6667. version = "0.35.3"
  6668. source = "registry+https://github.com/rust-lang/crates.io-index"
  6669. checksum = "d1c93047acf68669466a34690ac58cca7010bd1b201e1ec86f1fd0a75d3dd4a9"
  6670. dependencies = [
  6671. "bitflags 2.13.1",
  6672. "block2",
  6673. "core-foundation 0.10.1",
  6674. "core-graphics",
  6675. "crossbeam-channel",
  6676. "dbus",
  6677. "dispatch2",
  6678. "dlopen2",
  6679. "dpi",
  6680. "gdkwayland-sys",
  6681. "gdkx11-sys",
  6682. "gtk",
  6683. "jni 0.21.1",
  6684. "libc",
  6685. "log",
  6686. "ndk",
  6687. "ndk-sys",
  6688. "objc2",
  6689. "objc2-app-kit",
  6690. "objc2-foundation",
  6691. "objc2-ui-kit",
  6692. "once_cell",
  6693. "parking_lot",
  6694. "percent-encoding",
  6695. "raw-window-handle",
  6696. "tao-macros",
  6697. "unicode-segmentation",
  6698. "url",
  6699. "windows 0.61.3",
  6700. "windows-core 0.61.2",
  6701. "windows-version",
  6702. "x11-dl",
  6703. ]
  6704. [[package]]
  6705. name = "tao-macros"
  6706. version = "0.1.4"
  6707. source = "registry+https://github.com/rust-lang/crates.io-index"
  6708. checksum = "5f7eeb6d99155545da6150a1795945f16ac9c178deb2a5f2e74d776107bd5849"
  6709. dependencies = [
  6710. "proc-macro2",
  6711. "quote",
  6712. "syn 2.0.119",
  6713. ]
  6714. [[package]]
  6715. name = "tap"
  6716. version = "1.0.1"
  6717. source = "registry+https://github.com/rust-lang/crates.io-index"
  6718. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  6719. [[package]]
  6720. name = "tar"
  6721. version = "0.4.46"
  6722. source = "registry+https://github.com/rust-lang/crates.io-index"
  6723. checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
  6724. dependencies = [
  6725. "filetime",
  6726. "libc",
  6727. "xattr",
  6728. ]
  6729. [[package]]
  6730. name = "target-lexicon"
  6731. version = "0.12.16"
  6732. source = "registry+https://github.com/rust-lang/crates.io-index"
  6733. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  6734. [[package]]
  6735. name = "tauri"
  6736. version = "2.11.5"
  6737. source = "registry+https://github.com/rust-lang/crates.io-index"
  6738. checksum = "667b20e2726d572dea2de7370da16e188eb06008faf9a92fab7cdc46791190b5"
  6739. dependencies = [
  6740. "anyhow",
  6741. "bytes",
  6742. "cookie",
  6743. "dirs",
  6744. "dunce",
  6745. "embed_plist",
  6746. "getrandom 0.3.4",
  6747. "glob",
  6748. "gtk",
  6749. "heck 0.5.0",
  6750. "http",
  6751. "http-range",
  6752. "jni 0.21.1",
  6753. "libc",
  6754. "log",
  6755. "mime",
  6756. "muda",
  6757. "objc2",
  6758. "objc2-app-kit",
  6759. "objc2-foundation",
  6760. "objc2-ui-kit",
  6761. "objc2-web-kit",
  6762. "percent-encoding",
  6763. "plist",
  6764. "raw-window-handle",
  6765. "reqwest 0.13.4",
  6766. "serde",
  6767. "serde_json",
  6768. "serde_repr",
  6769. "serialize-to-javascript",
  6770. "swift-rs",
  6771. "tauri-build",
  6772. "tauri-macros",
  6773. "tauri-runtime",
  6774. "tauri-runtime-wry",
  6775. "tauri-utils",
  6776. "thiserror 2.0.19",
  6777. "tokio",
  6778. "tray-icon",
  6779. "url",
  6780. "webkit2gtk",
  6781. "webview2-com",
  6782. "window-vibrancy",
  6783. "windows 0.61.3",
  6784. ]
  6785. [[package]]
  6786. name = "tauri-build"
  6787. version = "2.6.3"
  6788. source = "registry+https://github.com/rust-lang/crates.io-index"
  6789. checksum = "bc9ce40b16101cb6ea63d3e221567affd1c3a9205f95d7bc574941a10636b632"
  6790. dependencies = [
  6791. "anyhow",
  6792. "cargo_toml",
  6793. "dirs",
  6794. "glob",
  6795. "heck 0.5.0",
  6796. "json-patch",
  6797. "schemars 0.8.22",
  6798. "semver",
  6799. "serde",
  6800. "serde_json",
  6801. "tauri-utils",
  6802. "tauri-winres",
  6803. "walkdir",
  6804. ]
  6805. [[package]]
  6806. name = "tauri-codegen"
  6807. version = "2.6.3"
  6808. source = "registry+https://github.com/rust-lang/crates.io-index"
  6809. checksum = "08279169ff42f8fc45a1dbc9dcae888893ba95288142e5880c59b93a26d2cfc5"
  6810. dependencies = [
  6811. "base64 0.22.1",
  6812. "brotli",
  6813. "ico",
  6814. "json-patch",
  6815. "plist",
  6816. "png 0.17.16",
  6817. "proc-macro2",
  6818. "quote",
  6819. "semver",
  6820. "serde",
  6821. "serde_json",
  6822. "sha2",
  6823. "syn 2.0.119",
  6824. "tauri-utils",
  6825. "thiserror 2.0.19",
  6826. "time",
  6827. "url",
  6828. "uuid",
  6829. "walkdir",
  6830. ]
  6831. [[package]]
  6832. name = "tauri-macros"
  6833. version = "2.6.3"
  6834. source = "registry+https://github.com/rust-lang/crates.io-index"
  6835. checksum = "e8b394794f399a421811d06966343e7933fcae92d59f5180b9388d1174497a45"
  6836. dependencies = [
  6837. "heck 0.5.0",
  6838. "proc-macro2",
  6839. "quote",
  6840. "syn 2.0.119",
  6841. "tauri-codegen",
  6842. "tauri-utils",
  6843. ]
  6844. [[package]]
  6845. name = "tauri-plugin"
  6846. version = "2.6.3"
  6847. source = "registry+https://github.com/rust-lang/crates.io-index"
  6848. checksum = "74be5dd4bed9afbd145e5716b5fa2ec28cbc29c34ffa61c258c9273d896c8020"
  6849. dependencies = [
  6850. "anyhow",
  6851. "glob",
  6852. "plist",
  6853. "schemars 0.8.22",
  6854. "serde",
  6855. "serde_json",
  6856. "tauri-utils",
  6857. "walkdir",
  6858. ]
  6859. [[package]]
  6860. name = "tauri-plugin-dialog"
  6861. version = "2.7.2"
  6862. source = "registry+https://github.com/rust-lang/crates.io-index"
  6863. checksum = "b2d3c1dbe38037e7f590cdf2492594d5ceebe031e7bc7e827509b22a999d2940"
  6864. dependencies = [
  6865. "log",
  6866. "raw-window-handle",
  6867. "rfd",
  6868. "serde",
  6869. "serde_json",
  6870. "tauri",
  6871. "tauri-plugin",
  6872. "tauri-plugin-fs",
  6873. "thiserror 2.0.19",
  6874. "url",
  6875. ]
  6876. [[package]]
  6877. name = "tauri-plugin-fs"
  6878. version = "2.5.1"
  6879. source = "registry+https://github.com/rust-lang/crates.io-index"
  6880. checksum = "b7ecc274121aca0c036a2b42d1cbe83d368d348f54e0bb8a735c2b1548e8f371"
  6881. dependencies = [
  6882. "anyhow",
  6883. "dunce",
  6884. "glob",
  6885. "log",
  6886. "objc2-foundation",
  6887. "percent-encoding",
  6888. "schemars 0.8.22",
  6889. "serde",
  6890. "serde_json",
  6891. "serde_repr",
  6892. "tauri",
  6893. "tauri-plugin",
  6894. "tauri-utils",
  6895. "thiserror 2.0.19",
  6896. "toml 1.1.4+spec-1.1.0",
  6897. "url",
  6898. ]
  6899. [[package]]
  6900. name = "tauri-plugin-http"
  6901. version = "2.5.9"
  6902. source = "registry+https://github.com/rust-lang/crates.io-index"
  6903. checksum = "b5bd512048e1985b7ec78f96d99083e2ddaf7e0d906b2b63c44ce5bb8b894067"
  6904. dependencies = [
  6905. "bytes",
  6906. "cookie_store",
  6907. "data-url",
  6908. "http",
  6909. "regex",
  6910. "reqwest 0.12.28",
  6911. "schemars 0.8.22",
  6912. "serde",
  6913. "serde_json",
  6914. "tauri",
  6915. "tauri-plugin",
  6916. "tauri-plugin-fs",
  6917. "thiserror 2.0.19",
  6918. "tokio",
  6919. "url",
  6920. "urlpattern",
  6921. ]
  6922. [[package]]
  6923. name = "tauri-plugin-opener"
  6924. version = "2.5.4"
  6925. source = "registry+https://github.com/rust-lang/crates.io-index"
  6926. checksum = "17e1bea14edce6b793a04e2417e3fd924b9bc4faae83cdee7d714156cceeed29"
  6927. dependencies = [
  6928. "dunce",
  6929. "glob",
  6930. "objc2-app-kit",
  6931. "objc2-foundation",
  6932. "open",
  6933. "schemars 0.8.22",
  6934. "serde",
  6935. "serde_json",
  6936. "tauri",
  6937. "tauri-plugin",
  6938. "thiserror 2.0.19",
  6939. "url",
  6940. "windows 0.61.3",
  6941. "zbus",
  6942. ]
  6943. [[package]]
  6944. name = "tauri-plugin-single-instance"
  6945. version = "2.4.3"
  6946. source = "registry+https://github.com/rust-lang/crates.io-index"
  6947. checksum = "b3214becf9ef5783c0ae99a3bb25adf5353a7a16ebf53e74b909e29205735c6c"
  6948. dependencies = [
  6949. "serde",
  6950. "serde_json",
  6951. "tauri",
  6952. "thiserror 2.0.19",
  6953. "tokio",
  6954. "tracing",
  6955. "windows-sys 0.60.2",
  6956. "zbus",
  6957. ]
  6958. [[package]]
  6959. name = "tauri-plugin-store"
  6960. version = "2.4.4"
  6961. source = "registry+https://github.com/rust-lang/crates.io-index"
  6962. checksum = "6708afbe549f176b712066e71648ba8fafba20789453718260c7ca356733cb0c"
  6963. dependencies = [
  6964. "dunce",
  6965. "serde",
  6966. "serde_json",
  6967. "tauri",
  6968. "tauri-plugin",
  6969. "thiserror 2.0.19",
  6970. "tokio",
  6971. "tracing",
  6972. ]
  6973. [[package]]
  6974. name = "tauri-plugin-updater"
  6975. version = "2.10.1"
  6976. source = "registry+https://github.com/rust-lang/crates.io-index"
  6977. checksum = "806d9dac662c2e4594ff03c647a552f2c9bd544e7d0f683ec58f872f952ce4af"
  6978. dependencies = [
  6979. "base64 0.22.1",
  6980. "dirs",
  6981. "flate2",
  6982. "futures-util",
  6983. "http",
  6984. "infer",
  6985. "log",
  6986. "minisign-verify",
  6987. "osakit",
  6988. "percent-encoding",
  6989. "reqwest 0.13.4",
  6990. "rustls",
  6991. "semver",
  6992. "serde",
  6993. "serde_json",
  6994. "tar",
  6995. "tauri",
  6996. "tauri-plugin",
  6997. "tempfile",
  6998. "thiserror 2.0.19",
  6999. "time",
  7000. "tokio",
  7001. "url",
  7002. "windows-sys 0.60.2",
  7003. "zip 4.6.1",
  7004. ]
  7005. [[package]]
  7006. name = "tauri-runtime"
  7007. version = "2.11.3"
  7008. source = "registry+https://github.com/rust-lang/crates.io-index"
  7009. checksum = "b0b4bc95aed361b0019067d189a1174a603d460d0f6c72606512d59fc9c12ec8"
  7010. dependencies = [
  7011. "cookie",
  7012. "dpi",
  7013. "gtk",
  7014. "http",
  7015. "jni 0.21.1",
  7016. "objc2",
  7017. "objc2-ui-kit",
  7018. "objc2-web-kit",
  7019. "raw-window-handle",
  7020. "serde",
  7021. "serde_json",
  7022. "tauri-utils",
  7023. "thiserror 2.0.19",
  7024. "url",
  7025. "webkit2gtk",
  7026. "webview2-com",
  7027. "windows 0.61.3",
  7028. ]
  7029. [[package]]
  7030. name = "tauri-runtime-wry"
  7031. version = "2.11.4"
  7032. source = "registry+https://github.com/rust-lang/crates.io-index"
  7033. checksum = "4e6fac707727b7a2f48e4ded90976324267371073edbb415ffb73bb0458d203f"
  7034. dependencies = [
  7035. "gtk",
  7036. "http",
  7037. "jni 0.21.1",
  7038. "log",
  7039. "objc2",
  7040. "objc2-app-kit",
  7041. "once_cell",
  7042. "percent-encoding",
  7043. "raw-window-handle",
  7044. "softbuffer",
  7045. "tao",
  7046. "tauri-runtime",
  7047. "tauri-utils",
  7048. "url",
  7049. "webkit2gtk",
  7050. "webview2-com",
  7051. "windows 0.61.3",
  7052. "wry",
  7053. ]
  7054. [[package]]
  7055. name = "tauri-utils"
  7056. version = "2.9.3"
  7057. source = "registry+https://github.com/rust-lang/crates.io-index"
  7058. checksum = "3e176a18e67764923c4f1ce66f25ae4abe5f688384d5eb1a0fa6c77f3d90f887"
  7059. dependencies = [
  7060. "anyhow",
  7061. "brotli",
  7062. "cargo_metadata",
  7063. "ctor",
  7064. "dom_query",
  7065. "dunce",
  7066. "glob",
  7067. "http",
  7068. "infer",
  7069. "json-patch",
  7070. "log",
  7071. "memchr",
  7072. "phf 0.13.1",
  7073. "plist",
  7074. "proc-macro2",
  7075. "quote",
  7076. "regex",
  7077. "schemars 0.8.22",
  7078. "semver",
  7079. "serde",
  7080. "serde-untagged",
  7081. "serde_json",
  7082. "serde_with",
  7083. "swift-rs",
  7084. "thiserror 2.0.19",
  7085. "toml 1.1.4+spec-1.1.0",
  7086. "url",
  7087. "urlpattern",
  7088. "uuid",
  7089. "walkdir",
  7090. ]
  7091. [[package]]
  7092. name = "tauri-winres"
  7093. version = "0.3.6"
  7094. source = "registry+https://github.com/rust-lang/crates.io-index"
  7095. checksum = "cc65d45c68858bfe420dd29e834b5d15dbecf8a07a8a16cf4d532c7b1f69d4b6"
  7096. dependencies = [
  7097. "dunce",
  7098. "embed-resource",
  7099. "toml 1.1.4+spec-1.1.0",
  7100. ]
  7101. [[package]]
  7102. name = "tempfile"
  7103. version = "3.27.0"
  7104. source = "registry+https://github.com/rust-lang/crates.io-index"
  7105. checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
  7106. dependencies = [
  7107. "fastrand",
  7108. "getrandom 0.4.3",
  7109. "once_cell",
  7110. "rustix 1.1.4",
  7111. "windows-sys 0.61.2",
  7112. ]
  7113. [[package]]
  7114. name = "tendril"
  7115. version = "0.5.1"
  7116. source = "registry+https://github.com/rust-lang/crates.io-index"
  7117. checksum = "5fed54709c5b3a53d09bb1c113ea4f5ceafd1e772ddcb0030a82e1d56c087b08"
  7118. dependencies = [
  7119. "new_debug_unreachable",
  7120. ]
  7121. [[package]]
  7122. name = "thiserror"
  7123. version = "1.0.69"
  7124. source = "registry+https://github.com/rust-lang/crates.io-index"
  7125. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  7126. dependencies = [
  7127. "thiserror-impl 1.0.69",
  7128. ]
  7129. [[package]]
  7130. name = "thiserror"
  7131. version = "2.0.19"
  7132. source = "registry+https://github.com/rust-lang/crates.io-index"
  7133. checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
  7134. dependencies = [
  7135. "thiserror-impl 2.0.19",
  7136. ]
  7137. [[package]]
  7138. name = "thiserror-impl"
  7139. version = "1.0.69"
  7140. source = "registry+https://github.com/rust-lang/crates.io-index"
  7141. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  7142. dependencies = [
  7143. "proc-macro2",
  7144. "quote",
  7145. "syn 2.0.119",
  7146. ]
  7147. [[package]]
  7148. name = "thiserror-impl"
  7149. version = "2.0.19"
  7150. source = "registry+https://github.com/rust-lang/crates.io-index"
  7151. checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
  7152. dependencies = [
  7153. "proc-macro2",
  7154. "quote",
  7155. "syn 3.0.3",
  7156. ]
  7157. [[package]]
  7158. name = "thread-tree"
  7159. version = "0.3.3"
  7160. source = "registry+https://github.com/rust-lang/crates.io-index"
  7161. checksum = "ffbd370cb847953a25954d9f63e14824a36113f8c72eecf6eccef5dc4b45d630"
  7162. dependencies = [
  7163. "crossbeam-channel",
  7164. ]
  7165. [[package]]
  7166. name = "thread_local"
  7167. version = "1.1.10"
  7168. source = "registry+https://github.com/rust-lang/crates.io-index"
  7169. checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
  7170. dependencies = [
  7171. "cfg-if",
  7172. ]
  7173. [[package]]
  7174. name = "tiff"
  7175. version = "0.11.3"
  7176. source = "registry+https://github.com/rust-lang/crates.io-index"
  7177. checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
  7178. dependencies = [
  7179. "fax",
  7180. "flate2",
  7181. "half",
  7182. "quick-error",
  7183. "weezl",
  7184. "zune-jpeg",
  7185. ]
  7186. [[package]]
  7187. name = "time"
  7188. version = "0.3.55"
  7189. source = "registry+https://github.com/rust-lang/crates.io-index"
  7190. checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
  7191. dependencies = [
  7192. "deranged",
  7193. "num-conv",
  7194. "powerfmt",
  7195. "serde_core",
  7196. "time-core",
  7197. "time-macros",
  7198. ]
  7199. [[package]]
  7200. name = "time-core"
  7201. version = "0.1.9"
  7202. source = "registry+https://github.com/rust-lang/crates.io-index"
  7203. checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
  7204. [[package]]
  7205. name = "time-macros"
  7206. version = "0.2.32"
  7207. source = "registry+https://github.com/rust-lang/crates.io-index"
  7208. checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
  7209. dependencies = [
  7210. "num-conv",
  7211. "time-core",
  7212. ]
  7213. [[package]]
  7214. name = "tiny-keccak"
  7215. version = "2.0.2"
  7216. source = "registry+https://github.com/rust-lang/crates.io-index"
  7217. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  7218. dependencies = [
  7219. "crunchy",
  7220. ]
  7221. [[package]]
  7222. name = "tinystr"
  7223. version = "0.8.3"
  7224. source = "registry+https://github.com/rust-lang/crates.io-index"
  7225. checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
  7226. dependencies = [
  7227. "displaydoc",
  7228. "zerovec",
  7229. ]
  7230. [[package]]
  7231. name = "tinyvec"
  7232. version = "1.12.0"
  7233. source = "registry+https://github.com/rust-lang/crates.io-index"
  7234. checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
  7235. dependencies = [
  7236. "tinyvec_macros",
  7237. ]
  7238. [[package]]
  7239. name = "tinyvec_macros"
  7240. version = "0.1.1"
  7241. source = "registry+https://github.com/rust-lang/crates.io-index"
  7242. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  7243. [[package]]
  7244. name = "tokio"
  7245. version = "1.53.1"
  7246. source = "registry+https://github.com/rust-lang/crates.io-index"
  7247. checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
  7248. dependencies = [
  7249. "bytes",
  7250. "libc",
  7251. "mio",
  7252. "parking_lot",
  7253. "pin-project-lite",
  7254. "signal-hook-registry",
  7255. "socket2",
  7256. "tokio-macros",
  7257. "windows-sys 0.61.2",
  7258. ]
  7259. [[package]]
  7260. name = "tokio-macros"
  7261. version = "2.7.2"
  7262. source = "registry+https://github.com/rust-lang/crates.io-index"
  7263. checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
  7264. dependencies = [
  7265. "proc-macro2",
  7266. "quote",
  7267. "syn 3.0.3",
  7268. ]
  7269. [[package]]
  7270. name = "tokio-rustls"
  7271. version = "0.26.4"
  7272. source = "registry+https://github.com/rust-lang/crates.io-index"
  7273. checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
  7274. dependencies = [
  7275. "rustls",
  7276. "tokio",
  7277. ]
  7278. [[package]]
  7279. name = "tokio-stream"
  7280. version = "0.1.19"
  7281. source = "registry+https://github.com/rust-lang/crates.io-index"
  7282. checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
  7283. dependencies = [
  7284. "futures-core",
  7285. "pin-project-lite",
  7286. "tokio",
  7287. ]
  7288. [[package]]
  7289. name = "tokio-util"
  7290. version = "0.7.19"
  7291. source = "registry+https://github.com/rust-lang/crates.io-index"
  7292. checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
  7293. dependencies = [
  7294. "bytes",
  7295. "futures-core",
  7296. "futures-sink",
  7297. "libc",
  7298. "pin-project-lite",
  7299. "tokio",
  7300. ]
  7301. [[package]]
  7302. name = "toml"
  7303. version = "0.8.2"
  7304. source = "registry+https://github.com/rust-lang/crates.io-index"
  7305. checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
  7306. dependencies = [
  7307. "serde",
  7308. "serde_spanned 0.6.9",
  7309. "toml_datetime 0.6.3",
  7310. "toml_edit 0.20.2",
  7311. ]
  7312. [[package]]
  7313. name = "toml"
  7314. version = "0.9.12+spec-1.1.0"
  7315. source = "registry+https://github.com/rust-lang/crates.io-index"
  7316. checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
  7317. dependencies = [
  7318. "indexmap 2.14.0",
  7319. "serde_core",
  7320. "serde_spanned 1.1.1",
  7321. "toml_datetime 0.7.5+spec-1.1.0",
  7322. "toml_parser",
  7323. "toml_writer",
  7324. "winnow 0.7.15",
  7325. ]
  7326. [[package]]
  7327. name = "toml"
  7328. version = "1.1.4+spec-1.1.0"
  7329. source = "registry+https://github.com/rust-lang/crates.io-index"
  7330. checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
  7331. dependencies = [
  7332. "indexmap 2.14.0",
  7333. "serde_core",
  7334. "serde_spanned 1.1.1",
  7335. "toml_datetime 1.1.1+spec-1.1.0",
  7336. "toml_parser",
  7337. "toml_writer",
  7338. "winnow 1.0.4",
  7339. ]
  7340. [[package]]
  7341. name = "toml_datetime"
  7342. version = "0.6.3"
  7343. source = "registry+https://github.com/rust-lang/crates.io-index"
  7344. checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
  7345. dependencies = [
  7346. "serde",
  7347. ]
  7348. [[package]]
  7349. name = "toml_datetime"
  7350. version = "0.7.5+spec-1.1.0"
  7351. source = "registry+https://github.com/rust-lang/crates.io-index"
  7352. checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
  7353. dependencies = [
  7354. "serde_core",
  7355. ]
  7356. [[package]]
  7357. name = "toml_datetime"
  7358. version = "1.1.1+spec-1.1.0"
  7359. source = "registry+https://github.com/rust-lang/crates.io-index"
  7360. checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
  7361. dependencies = [
  7362. "serde_core",
  7363. ]
  7364. [[package]]
  7365. name = "toml_edit"
  7366. version = "0.19.15"
  7367. source = "registry+https://github.com/rust-lang/crates.io-index"
  7368. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  7369. dependencies = [
  7370. "indexmap 2.14.0",
  7371. "toml_datetime 0.6.3",
  7372. "winnow 0.5.40",
  7373. ]
  7374. [[package]]
  7375. name = "toml_edit"
  7376. version = "0.20.2"
  7377. source = "registry+https://github.com/rust-lang/crates.io-index"
  7378. checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
  7379. dependencies = [
  7380. "indexmap 2.14.0",
  7381. "serde",
  7382. "serde_spanned 0.6.9",
  7383. "toml_datetime 0.6.3",
  7384. "winnow 0.5.40",
  7385. ]
  7386. [[package]]
  7387. name = "toml_edit"
  7388. version = "0.25.13+spec-1.1.0"
  7389. source = "registry+https://github.com/rust-lang/crates.io-index"
  7390. checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
  7391. dependencies = [
  7392. "indexmap 2.14.0",
  7393. "toml_datetime 1.1.1+spec-1.1.0",
  7394. "toml_parser",
  7395. "winnow 1.0.4",
  7396. ]
  7397. [[package]]
  7398. name = "toml_parser"
  7399. version = "1.1.3+spec-1.1.0"
  7400. source = "registry+https://github.com/rust-lang/crates.io-index"
  7401. checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
  7402. dependencies = [
  7403. "winnow 1.0.4",
  7404. ]
  7405. [[package]]
  7406. name = "toml_writer"
  7407. version = "1.1.2+spec-1.1.0"
  7408. source = "registry+https://github.com/rust-lang/crates.io-index"
  7409. checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
  7410. [[package]]
  7411. name = "tower"
  7412. version = "0.5.3"
  7413. source = "registry+https://github.com/rust-lang/crates.io-index"
  7414. checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
  7415. dependencies = [
  7416. "futures-core",
  7417. "futures-util",
  7418. "pin-project-lite",
  7419. "sync_wrapper",
  7420. "tokio",
  7421. "tower-layer",
  7422. "tower-service",
  7423. ]
  7424. [[package]]
  7425. name = "tower-http"
  7426. version = "0.6.11"
  7427. source = "registry+https://github.com/rust-lang/crates.io-index"
  7428. checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
  7429. dependencies = [
  7430. "async-compression",
  7431. "bitflags 2.13.1",
  7432. "bytes",
  7433. "futures-core",
  7434. "futures-util",
  7435. "http",
  7436. "http-body",
  7437. "http-body-util",
  7438. "pin-project-lite",
  7439. "tokio",
  7440. "tokio-util",
  7441. "tower",
  7442. "tower-layer",
  7443. "tower-service",
  7444. "url",
  7445. ]
  7446. [[package]]
  7447. name = "tower-layer"
  7448. version = "0.3.3"
  7449. source = "registry+https://github.com/rust-lang/crates.io-index"
  7450. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  7451. [[package]]
  7452. name = "tower-service"
  7453. version = "0.3.3"
  7454. source = "registry+https://github.com/rust-lang/crates.io-index"
  7455. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  7456. [[package]]
  7457. name = "tracing"
  7458. version = "0.1.44"
  7459. source = "registry+https://github.com/rust-lang/crates.io-index"
  7460. checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
  7461. dependencies = [
  7462. "pin-project-lite",
  7463. "tracing-attributes",
  7464. "tracing-core",
  7465. ]
  7466. [[package]]
  7467. name = "tracing-attributes"
  7468. version = "0.1.31"
  7469. source = "registry+https://github.com/rust-lang/crates.io-index"
  7470. checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
  7471. dependencies = [
  7472. "proc-macro2",
  7473. "quote",
  7474. "syn 2.0.119",
  7475. ]
  7476. [[package]]
  7477. name = "tracing-core"
  7478. version = "0.1.36"
  7479. source = "registry+https://github.com/rust-lang/crates.io-index"
  7480. checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
  7481. dependencies = [
  7482. "once_cell",
  7483. "valuable",
  7484. ]
  7485. [[package]]
  7486. name = "tracing-log"
  7487. version = "0.2.0"
  7488. source = "registry+https://github.com/rust-lang/crates.io-index"
  7489. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  7490. dependencies = [
  7491. "log",
  7492. "once_cell",
  7493. "tracing-core",
  7494. ]
  7495. [[package]]
  7496. name = "tracing-subscriber"
  7497. version = "0.3.23"
  7498. source = "registry+https://github.com/rust-lang/crates.io-index"
  7499. checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
  7500. dependencies = [
  7501. "matchers",
  7502. "nu-ansi-term",
  7503. "once_cell",
  7504. "regex-automata",
  7505. "sharded-slab",
  7506. "smallvec",
  7507. "thread_local",
  7508. "tracing",
  7509. "tracing-core",
  7510. "tracing-log",
  7511. ]
  7512. [[package]]
  7513. name = "tray-icon"
  7514. version = "0.24.2"
  7515. source = "registry+https://github.com/rust-lang/crates.io-index"
  7516. checksum = "045979e3f037cd18ad1cb2a419dfda133c5c29c9f3453370079f2255d46c257e"
  7517. dependencies = [
  7518. "crossbeam-channel",
  7519. "dirs",
  7520. "libappindicator",
  7521. "muda",
  7522. "objc2",
  7523. "objc2-app-kit",
  7524. "objc2-core-foundation",
  7525. "objc2-core-graphics",
  7526. "objc2-foundation",
  7527. "once_cell",
  7528. "png 0.18.1",
  7529. "serde",
  7530. "thiserror 2.0.19",
  7531. "windows-sys 0.61.2",
  7532. ]
  7533. [[package]]
  7534. name = "try-lock"
  7535. version = "0.2.5"
  7536. source = "registry+https://github.com/rust-lang/crates.io-index"
  7537. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  7538. [[package]]
  7539. name = "twox-hash"
  7540. version = "2.1.3"
  7541. source = "registry+https://github.com/rust-lang/crates.io-index"
  7542. checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9"
  7543. dependencies = [
  7544. "rand 0.10.2",
  7545. ]
  7546. [[package]]
  7547. name = "typed-path"
  7548. version = "0.12.3"
  7549. source = "registry+https://github.com/rust-lang/crates.io-index"
  7550. checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
  7551. [[package]]
  7552. name = "typeid"
  7553. version = "1.0.3"
  7554. source = "registry+https://github.com/rust-lang/crates.io-index"
  7555. checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
  7556. [[package]]
  7557. name = "typenum"
  7558. version = "1.20.1"
  7559. source = "registry+https://github.com/rust-lang/crates.io-index"
  7560. checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
  7561. [[package]]
  7562. name = "uds_windows"
  7563. version = "1.2.1"
  7564. source = "registry+https://github.com/rust-lang/crates.io-index"
  7565. checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
  7566. dependencies = [
  7567. "memoffset",
  7568. "tempfile",
  7569. "windows-sys 0.61.2",
  7570. ]
  7571. [[package]]
  7572. name = "unic-char-property"
  7573. version = "0.9.0"
  7574. source = "registry+https://github.com/rust-lang/crates.io-index"
  7575. checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
  7576. dependencies = [
  7577. "unic-char-range",
  7578. ]
  7579. [[package]]
  7580. name = "unic-char-range"
  7581. version = "0.9.0"
  7582. source = "registry+https://github.com/rust-lang/crates.io-index"
  7583. checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
  7584. [[package]]
  7585. name = "unic-common"
  7586. version = "0.9.0"
  7587. source = "registry+https://github.com/rust-lang/crates.io-index"
  7588. checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
  7589. [[package]]
  7590. name = "unic-ucd-ident"
  7591. version = "0.9.0"
  7592. source = "registry+https://github.com/rust-lang/crates.io-index"
  7593. checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
  7594. dependencies = [
  7595. "unic-char-property",
  7596. "unic-char-range",
  7597. "unic-ucd-version",
  7598. ]
  7599. [[package]]
  7600. name = "unic-ucd-version"
  7601. version = "0.9.0"
  7602. source = "registry+https://github.com/rust-lang/crates.io-index"
  7603. checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
  7604. dependencies = [
  7605. "unic-common",
  7606. ]
  7607. [[package]]
  7608. name = "unicase"
  7609. version = "2.9.0"
  7610. source = "registry+https://github.com/rust-lang/crates.io-index"
  7611. checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
  7612. [[package]]
  7613. name = "unicode-ident"
  7614. version = "1.0.24"
  7615. source = "registry+https://github.com/rust-lang/crates.io-index"
  7616. checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
  7617. [[package]]
  7618. name = "unicode-segmentation"
  7619. version = "1.13.3"
  7620. source = "registry+https://github.com/rust-lang/crates.io-index"
  7621. checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
  7622. [[package]]
  7623. name = "unicode-width"
  7624. version = "0.2.2"
  7625. source = "registry+https://github.com/rust-lang/crates.io-index"
  7626. checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
  7627. [[package]]
  7628. name = "untrusted"
  7629. version = "0.9.0"
  7630. source = "registry+https://github.com/rust-lang/crates.io-index"
  7631. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  7632. [[package]]
  7633. name = "url"
  7634. version = "2.5.8"
  7635. source = "registry+https://github.com/rust-lang/crates.io-index"
  7636. checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
  7637. dependencies = [
  7638. "form_urlencoded",
  7639. "idna",
  7640. "percent-encoding",
  7641. "serde",
  7642. "serde_derive",
  7643. ]
  7644. [[package]]
  7645. name = "urlpattern"
  7646. version = "0.3.0"
  7647. source = "registry+https://github.com/rust-lang/crates.io-index"
  7648. checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
  7649. dependencies = [
  7650. "regex",
  7651. "serde",
  7652. "unic-ucd-ident",
  7653. "url",
  7654. ]
  7655. [[package]]
  7656. name = "utf8-ranges"
  7657. version = "1.0.5"
  7658. source = "registry+https://github.com/rust-lang/crates.io-index"
  7659. checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
  7660. [[package]]
  7661. name = "utf8_iter"
  7662. version = "1.0.4"
  7663. source = "registry+https://github.com/rust-lang/crates.io-index"
  7664. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  7665. [[package]]
  7666. name = "uuid"
  7667. version = "1.24.0"
  7668. source = "registry+https://github.com/rust-lang/crates.io-index"
  7669. checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
  7670. dependencies = [
  7671. "getrandom 0.4.3",
  7672. "js-sys",
  7673. "serde_core",
  7674. "wasm-bindgen",
  7675. ]
  7676. [[package]]
  7677. name = "valuable"
  7678. version = "0.1.1"
  7679. source = "registry+https://github.com/rust-lang/crates.io-index"
  7680. checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
  7681. [[package]]
  7682. name = "version-compare"
  7683. version = "0.2.1"
  7684. source = "registry+https://github.com/rust-lang/crates.io-index"
  7685. checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
  7686. [[package]]
  7687. name = "version_check"
  7688. version = "0.9.5"
  7689. source = "registry+https://github.com/rust-lang/crates.io-index"
  7690. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  7691. [[package]]
  7692. name = "vswhom"
  7693. version = "0.1.0"
  7694. source = "registry+https://github.com/rust-lang/crates.io-index"
  7695. checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
  7696. dependencies = [
  7697. "libc",
  7698. "vswhom-sys",
  7699. ]
  7700. [[package]]
  7701. name = "vswhom-sys"
  7702. version = "0.1.3"
  7703. source = "registry+https://github.com/rust-lang/crates.io-index"
  7704. checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
  7705. dependencies = [
  7706. "cc",
  7707. "libc",
  7708. ]
  7709. [[package]]
  7710. name = "walkdir"
  7711. version = "2.5.0"
  7712. source = "registry+https://github.com/rust-lang/crates.io-index"
  7713. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  7714. dependencies = [
  7715. "same-file",
  7716. "winapi-util",
  7717. ]
  7718. [[package]]
  7719. name = "want"
  7720. version = "0.3.1"
  7721. source = "registry+https://github.com/rust-lang/crates.io-index"
  7722. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  7723. dependencies = [
  7724. "try-lock",
  7725. ]
  7726. [[package]]
  7727. name = "wasi"
  7728. version = "0.11.1+wasi-snapshot-preview1"
  7729. source = "registry+https://github.com/rust-lang/crates.io-index"
  7730. checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
  7731. [[package]]
  7732. name = "wasip2"
  7733. version = "1.0.4+wasi-0.2.12"
  7734. source = "registry+https://github.com/rust-lang/crates.io-index"
  7735. checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
  7736. dependencies = [
  7737. "wit-bindgen",
  7738. ]
  7739. [[package]]
  7740. name = "wasm-bindgen"
  7741. version = "0.2.126"
  7742. source = "registry+https://github.com/rust-lang/crates.io-index"
  7743. checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
  7744. dependencies = [
  7745. "cfg-if",
  7746. "once_cell",
  7747. "rustversion",
  7748. "wasm-bindgen-macro",
  7749. "wasm-bindgen-shared",
  7750. ]
  7751. [[package]]
  7752. name = "wasm-bindgen-futures"
  7753. version = "0.4.76"
  7754. source = "registry+https://github.com/rust-lang/crates.io-index"
  7755. checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
  7756. dependencies = [
  7757. "js-sys",
  7758. "wasm-bindgen",
  7759. ]
  7760. [[package]]
  7761. name = "wasm-bindgen-macro"
  7762. version = "0.2.126"
  7763. source = "registry+https://github.com/rust-lang/crates.io-index"
  7764. checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
  7765. dependencies = [
  7766. "quote",
  7767. "wasm-bindgen-macro-support",
  7768. ]
  7769. [[package]]
  7770. name = "wasm-bindgen-macro-support"
  7771. version = "0.2.126"
  7772. source = "registry+https://github.com/rust-lang/crates.io-index"
  7773. checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
  7774. dependencies = [
  7775. "bumpalo",
  7776. "proc-macro2",
  7777. "quote",
  7778. "syn 2.0.119",
  7779. "wasm-bindgen-shared",
  7780. ]
  7781. [[package]]
  7782. name = "wasm-bindgen-shared"
  7783. version = "0.2.126"
  7784. source = "registry+https://github.com/rust-lang/crates.io-index"
  7785. checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
  7786. dependencies = [
  7787. "unicode-ident",
  7788. ]
  7789. [[package]]
  7790. name = "wasm-streams"
  7791. version = "0.4.2"
  7792. source = "registry+https://github.com/rust-lang/crates.io-index"
  7793. checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
  7794. dependencies = [
  7795. "futures-util",
  7796. "js-sys",
  7797. "wasm-bindgen",
  7798. "wasm-bindgen-futures",
  7799. "web-sys",
  7800. ]
  7801. [[package]]
  7802. name = "wasm-streams"
  7803. version = "0.5.0"
  7804. source = "registry+https://github.com/rust-lang/crates.io-index"
  7805. checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
  7806. dependencies = [
  7807. "futures-util",
  7808. "js-sys",
  7809. "wasm-bindgen",
  7810. "wasm-bindgen-futures",
  7811. "web-sys",
  7812. ]
  7813. [[package]]
  7814. name = "web-sys"
  7815. version = "0.3.103"
  7816. source = "registry+https://github.com/rust-lang/crates.io-index"
  7817. checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
  7818. dependencies = [
  7819. "js-sys",
  7820. "wasm-bindgen",
  7821. ]
  7822. [[package]]
  7823. name = "web-time"
  7824. version = "1.1.0"
  7825. source = "registry+https://github.com/rust-lang/crates.io-index"
  7826. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  7827. dependencies = [
  7828. "js-sys",
  7829. "wasm-bindgen",
  7830. ]
  7831. [[package]]
  7832. name = "web_atoms"
  7833. version = "0.2.5"
  7834. source = "registry+https://github.com/rust-lang/crates.io-index"
  7835. checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297"
  7836. dependencies = [
  7837. "phf 0.13.1",
  7838. "phf_codegen",
  7839. "string_cache",
  7840. "string_cache_codegen",
  7841. ]
  7842. [[package]]
  7843. name = "webkit2gtk"
  7844. version = "2.0.2"
  7845. source = "registry+https://github.com/rust-lang/crates.io-index"
  7846. checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
  7847. dependencies = [
  7848. "bitflags 1.3.2",
  7849. "cairo-rs",
  7850. "gdk",
  7851. "gdk-sys",
  7852. "gio",
  7853. "gio-sys",
  7854. "glib",
  7855. "glib-sys",
  7856. "gobject-sys",
  7857. "gtk",
  7858. "gtk-sys",
  7859. "javascriptcore-rs",
  7860. "libc",
  7861. "once_cell",
  7862. "soup3",
  7863. "webkit2gtk-sys",
  7864. ]
  7865. [[package]]
  7866. name = "webkit2gtk-sys"
  7867. version = "2.0.2"
  7868. source = "registry+https://github.com/rust-lang/crates.io-index"
  7869. checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
  7870. dependencies = [
  7871. "bitflags 1.3.2",
  7872. "cairo-sys-rs",
  7873. "gdk-sys",
  7874. "gio-sys",
  7875. "glib-sys",
  7876. "gobject-sys",
  7877. "gtk-sys",
  7878. "javascriptcore-rs-sys",
  7879. "libc",
  7880. "pkg-config",
  7881. "soup3-sys",
  7882. "system-deps",
  7883. ]
  7884. [[package]]
  7885. name = "webpki-root-certs"
  7886. version = "1.0.9"
  7887. source = "registry+https://github.com/rust-lang/crates.io-index"
  7888. checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
  7889. dependencies = [
  7890. "rustls-pki-types",
  7891. ]
  7892. [[package]]
  7893. name = "webpki-roots"
  7894. version = "1.0.9"
  7895. source = "registry+https://github.com/rust-lang/crates.io-index"
  7896. checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
  7897. dependencies = [
  7898. "rustls-pki-types",
  7899. ]
  7900. [[package]]
  7901. name = "webview2-com"
  7902. version = "0.38.2"
  7903. source = "registry+https://github.com/rust-lang/crates.io-index"
  7904. checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
  7905. dependencies = [
  7906. "webview2-com-macros",
  7907. "webview2-com-sys",
  7908. "windows 0.61.3",
  7909. "windows-core 0.61.2",
  7910. "windows-implement",
  7911. "windows-interface",
  7912. ]
  7913. [[package]]
  7914. name = "webview2-com-macros"
  7915. version = "0.8.1"
  7916. source = "registry+https://github.com/rust-lang/crates.io-index"
  7917. checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
  7918. dependencies = [
  7919. "proc-macro2",
  7920. "quote",
  7921. "syn 2.0.119",
  7922. ]
  7923. [[package]]
  7924. name = "webview2-com-sys"
  7925. version = "0.38.2"
  7926. source = "registry+https://github.com/rust-lang/crates.io-index"
  7927. checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
  7928. dependencies = [
  7929. "thiserror 2.0.19",
  7930. "windows 0.61.3",
  7931. "windows-core 0.61.2",
  7932. ]
  7933. [[package]]
  7934. name = "weezl"
  7935. version = "0.1.12"
  7936. source = "registry+https://github.com/rust-lang/crates.io-index"
  7937. checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
  7938. [[package]]
  7939. name = "which"
  7940. version = "7.0.3"
  7941. source = "registry+https://github.com/rust-lang/crates.io-index"
  7942. checksum = "24d643ce3fd3e5b54854602a080f34fb10ab75e0b813ee32d00ca2b44fa74762"
  7943. dependencies = [
  7944. "either",
  7945. "env_home",
  7946. "rustix 1.1.4",
  7947. "winsafe",
  7948. ]
  7949. [[package]]
  7950. name = "winapi"
  7951. version = "0.3.9"
  7952. source = "registry+https://github.com/rust-lang/crates.io-index"
  7953. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7954. dependencies = [
  7955. "winapi-i686-pc-windows-gnu",
  7956. "winapi-x86_64-pc-windows-gnu",
  7957. ]
  7958. [[package]]
  7959. name = "winapi-i686-pc-windows-gnu"
  7960. version = "0.4.0"
  7961. source = "registry+https://github.com/rust-lang/crates.io-index"
  7962. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7963. [[package]]
  7964. name = "winapi-util"
  7965. version = "0.1.11"
  7966. source = "registry+https://github.com/rust-lang/crates.io-index"
  7967. checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
  7968. dependencies = [
  7969. "windows-sys 0.61.2",
  7970. ]
  7971. [[package]]
  7972. name = "winapi-x86_64-pc-windows-gnu"
  7973. version = "0.4.0"
  7974. source = "registry+https://github.com/rust-lang/crates.io-index"
  7975. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  7976. [[package]]
  7977. name = "window-vibrancy"
  7978. version = "0.6.0"
  7979. source = "registry+https://github.com/rust-lang/crates.io-index"
  7980. checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
  7981. dependencies = [
  7982. "objc2",
  7983. "objc2-app-kit",
  7984. "objc2-core-foundation",
  7985. "objc2-foundation",
  7986. "raw-window-handle",
  7987. "windows-sys 0.59.0",
  7988. "windows-version",
  7989. ]
  7990. [[package]]
  7991. name = "windows"
  7992. version = "0.61.3"
  7993. source = "registry+https://github.com/rust-lang/crates.io-index"
  7994. checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
  7995. dependencies = [
  7996. "windows-collections 0.2.0",
  7997. "windows-core 0.61.2",
  7998. "windows-future 0.2.1",
  7999. "windows-link 0.1.3",
  8000. "windows-numerics 0.2.0",
  8001. ]
  8002. [[package]]
  8003. name = "windows"
  8004. version = "0.62.2"
  8005. source = "registry+https://github.com/rust-lang/crates.io-index"
  8006. checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
  8007. dependencies = [
  8008. "windows-collections 0.3.2",
  8009. "windows-core 0.62.2",
  8010. "windows-future 0.3.2",
  8011. "windows-numerics 0.3.1",
  8012. ]
  8013. [[package]]
  8014. name = "windows-collections"
  8015. version = "0.2.0"
  8016. source = "registry+https://github.com/rust-lang/crates.io-index"
  8017. checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
  8018. dependencies = [
  8019. "windows-core 0.61.2",
  8020. ]
  8021. [[package]]
  8022. name = "windows-collections"
  8023. version = "0.3.2"
  8024. source = "registry+https://github.com/rust-lang/crates.io-index"
  8025. checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
  8026. dependencies = [
  8027. "windows-core 0.62.2",
  8028. ]
  8029. [[package]]
  8030. name = "windows-core"
  8031. version = "0.61.2"
  8032. source = "registry+https://github.com/rust-lang/crates.io-index"
  8033. checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
  8034. dependencies = [
  8035. "windows-implement",
  8036. "windows-interface",
  8037. "windows-link 0.1.3",
  8038. "windows-result 0.3.4",
  8039. "windows-strings 0.4.2",
  8040. ]
  8041. [[package]]
  8042. name = "windows-core"
  8043. version = "0.62.2"
  8044. source = "registry+https://github.com/rust-lang/crates.io-index"
  8045. checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
  8046. dependencies = [
  8047. "windows-implement",
  8048. "windows-interface",
  8049. "windows-link 0.2.1",
  8050. "windows-result 0.4.1",
  8051. "windows-strings 0.5.1",
  8052. ]
  8053. [[package]]
  8054. name = "windows-future"
  8055. version = "0.2.1"
  8056. source = "registry+https://github.com/rust-lang/crates.io-index"
  8057. checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
  8058. dependencies = [
  8059. "windows-core 0.61.2",
  8060. "windows-link 0.1.3",
  8061. "windows-threading 0.1.0",
  8062. ]
  8063. [[package]]
  8064. name = "windows-future"
  8065. version = "0.3.2"
  8066. source = "registry+https://github.com/rust-lang/crates.io-index"
  8067. checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
  8068. dependencies = [
  8069. "windows-core 0.62.2",
  8070. "windows-link 0.2.1",
  8071. "windows-threading 0.2.1",
  8072. ]
  8073. [[package]]
  8074. name = "windows-implement"
  8075. version = "0.60.2"
  8076. source = "registry+https://github.com/rust-lang/crates.io-index"
  8077. checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
  8078. dependencies = [
  8079. "proc-macro2",
  8080. "quote",
  8081. "syn 2.0.119",
  8082. ]
  8083. [[package]]
  8084. name = "windows-interface"
  8085. version = "0.59.3"
  8086. source = "registry+https://github.com/rust-lang/crates.io-index"
  8087. checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
  8088. dependencies = [
  8089. "proc-macro2",
  8090. "quote",
  8091. "syn 2.0.119",
  8092. ]
  8093. [[package]]
  8094. name = "windows-link"
  8095. version = "0.1.3"
  8096. source = "registry+https://github.com/rust-lang/crates.io-index"
  8097. checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
  8098. [[package]]
  8099. name = "windows-link"
  8100. version = "0.2.1"
  8101. source = "registry+https://github.com/rust-lang/crates.io-index"
  8102. checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
  8103. [[package]]
  8104. name = "windows-numerics"
  8105. version = "0.2.0"
  8106. source = "registry+https://github.com/rust-lang/crates.io-index"
  8107. checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
  8108. dependencies = [
  8109. "windows-core 0.61.2",
  8110. "windows-link 0.1.3",
  8111. ]
  8112. [[package]]
  8113. name = "windows-numerics"
  8114. version = "0.3.1"
  8115. source = "registry+https://github.com/rust-lang/crates.io-index"
  8116. checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
  8117. dependencies = [
  8118. "windows-core 0.62.2",
  8119. "windows-link 0.2.1",
  8120. ]
  8121. [[package]]
  8122. name = "windows-registry"
  8123. version = "0.6.1"
  8124. source = "registry+https://github.com/rust-lang/crates.io-index"
  8125. checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
  8126. dependencies = [
  8127. "windows-link 0.2.1",
  8128. "windows-result 0.4.1",
  8129. "windows-strings 0.5.1",
  8130. ]
  8131. [[package]]
  8132. name = "windows-result"
  8133. version = "0.3.4"
  8134. source = "registry+https://github.com/rust-lang/crates.io-index"
  8135. checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
  8136. dependencies = [
  8137. "windows-link 0.1.3",
  8138. ]
  8139. [[package]]
  8140. name = "windows-result"
  8141. version = "0.4.1"
  8142. source = "registry+https://github.com/rust-lang/crates.io-index"
  8143. checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
  8144. dependencies = [
  8145. "windows-link 0.2.1",
  8146. ]
  8147. [[package]]
  8148. name = "windows-strings"
  8149. version = "0.4.2"
  8150. source = "registry+https://github.com/rust-lang/crates.io-index"
  8151. checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
  8152. dependencies = [
  8153. "windows-link 0.1.3",
  8154. ]
  8155. [[package]]
  8156. name = "windows-strings"
  8157. version = "0.5.1"
  8158. source = "registry+https://github.com/rust-lang/crates.io-index"
  8159. checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
  8160. dependencies = [
  8161. "windows-link 0.2.1",
  8162. ]
  8163. [[package]]
  8164. name = "windows-sys"
  8165. version = "0.45.0"
  8166. source = "registry+https://github.com/rust-lang/crates.io-index"
  8167. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  8168. dependencies = [
  8169. "windows-targets 0.42.2",
  8170. ]
  8171. [[package]]
  8172. name = "windows-sys"
  8173. version = "0.52.0"
  8174. source = "registry+https://github.com/rust-lang/crates.io-index"
  8175. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  8176. dependencies = [
  8177. "windows-targets 0.52.6",
  8178. ]
  8179. [[package]]
  8180. name = "windows-sys"
  8181. version = "0.59.0"
  8182. source = "registry+https://github.com/rust-lang/crates.io-index"
  8183. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  8184. dependencies = [
  8185. "windows-targets 0.52.6",
  8186. ]
  8187. [[package]]
  8188. name = "windows-sys"
  8189. version = "0.60.2"
  8190. source = "registry+https://github.com/rust-lang/crates.io-index"
  8191. checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
  8192. dependencies = [
  8193. "windows-targets 0.53.5",
  8194. ]
  8195. [[package]]
  8196. name = "windows-sys"
  8197. version = "0.61.2"
  8198. source = "registry+https://github.com/rust-lang/crates.io-index"
  8199. checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
  8200. dependencies = [
  8201. "windows-link 0.2.1",
  8202. ]
  8203. [[package]]
  8204. name = "windows-targets"
  8205. version = "0.42.2"
  8206. source = "registry+https://github.com/rust-lang/crates.io-index"
  8207. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  8208. dependencies = [
  8209. "windows_aarch64_gnullvm 0.42.2",
  8210. "windows_aarch64_msvc 0.42.2",
  8211. "windows_i686_gnu 0.42.2",
  8212. "windows_i686_msvc 0.42.2",
  8213. "windows_x86_64_gnu 0.42.2",
  8214. "windows_x86_64_gnullvm 0.42.2",
  8215. "windows_x86_64_msvc 0.42.2",
  8216. ]
  8217. [[package]]
  8218. name = "windows-targets"
  8219. version = "0.52.6"
  8220. source = "registry+https://github.com/rust-lang/crates.io-index"
  8221. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  8222. dependencies = [
  8223. "windows_aarch64_gnullvm 0.52.6",
  8224. "windows_aarch64_msvc 0.52.6",
  8225. "windows_i686_gnu 0.52.6",
  8226. "windows_i686_gnullvm 0.52.6",
  8227. "windows_i686_msvc 0.52.6",
  8228. "windows_x86_64_gnu 0.52.6",
  8229. "windows_x86_64_gnullvm 0.52.6",
  8230. "windows_x86_64_msvc 0.52.6",
  8231. ]
  8232. [[package]]
  8233. name = "windows-targets"
  8234. version = "0.53.5"
  8235. source = "registry+https://github.com/rust-lang/crates.io-index"
  8236. checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
  8237. dependencies = [
  8238. "windows-link 0.2.1",
  8239. "windows_aarch64_gnullvm 0.53.1",
  8240. "windows_aarch64_msvc 0.53.1",
  8241. "windows_i686_gnu 0.53.1",
  8242. "windows_i686_gnullvm 0.53.1",
  8243. "windows_i686_msvc 0.53.1",
  8244. "windows_x86_64_gnu 0.53.1",
  8245. "windows_x86_64_gnullvm 0.53.1",
  8246. "windows_x86_64_msvc 0.53.1",
  8247. ]
  8248. [[package]]
  8249. name = "windows-threading"
  8250. version = "0.1.0"
  8251. source = "registry+https://github.com/rust-lang/crates.io-index"
  8252. checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
  8253. dependencies = [
  8254. "windows-link 0.1.3",
  8255. ]
  8256. [[package]]
  8257. name = "windows-threading"
  8258. version = "0.2.1"
  8259. source = "registry+https://github.com/rust-lang/crates.io-index"
  8260. checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
  8261. dependencies = [
  8262. "windows-link 0.2.1",
  8263. ]
  8264. [[package]]
  8265. name = "windows-version"
  8266. version = "0.1.7"
  8267. source = "registry+https://github.com/rust-lang/crates.io-index"
  8268. checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
  8269. dependencies = [
  8270. "windows-link 0.2.1",
  8271. ]
  8272. [[package]]
  8273. name = "windows_aarch64_gnullvm"
  8274. version = "0.42.2"
  8275. source = "registry+https://github.com/rust-lang/crates.io-index"
  8276. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  8277. [[package]]
  8278. name = "windows_aarch64_gnullvm"
  8279. version = "0.52.6"
  8280. source = "registry+https://github.com/rust-lang/crates.io-index"
  8281. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  8282. [[package]]
  8283. name = "windows_aarch64_gnullvm"
  8284. version = "0.53.1"
  8285. source = "registry+https://github.com/rust-lang/crates.io-index"
  8286. checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
  8287. [[package]]
  8288. name = "windows_aarch64_msvc"
  8289. version = "0.42.2"
  8290. source = "registry+https://github.com/rust-lang/crates.io-index"
  8291. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  8292. [[package]]
  8293. name = "windows_aarch64_msvc"
  8294. version = "0.52.6"
  8295. source = "registry+https://github.com/rust-lang/crates.io-index"
  8296. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  8297. [[package]]
  8298. name = "windows_aarch64_msvc"
  8299. version = "0.53.1"
  8300. source = "registry+https://github.com/rust-lang/crates.io-index"
  8301. checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
  8302. [[package]]
  8303. name = "windows_i686_gnu"
  8304. version = "0.42.2"
  8305. source = "registry+https://github.com/rust-lang/crates.io-index"
  8306. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  8307. [[package]]
  8308. name = "windows_i686_gnu"
  8309. version = "0.52.6"
  8310. source = "registry+https://github.com/rust-lang/crates.io-index"
  8311. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  8312. [[package]]
  8313. name = "windows_i686_gnu"
  8314. version = "0.53.1"
  8315. source = "registry+https://github.com/rust-lang/crates.io-index"
  8316. checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
  8317. [[package]]
  8318. name = "windows_i686_gnullvm"
  8319. version = "0.52.6"
  8320. source = "registry+https://github.com/rust-lang/crates.io-index"
  8321. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  8322. [[package]]
  8323. name = "windows_i686_gnullvm"
  8324. version = "0.53.1"
  8325. source = "registry+https://github.com/rust-lang/crates.io-index"
  8326. checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
  8327. [[package]]
  8328. name = "windows_i686_msvc"
  8329. version = "0.42.2"
  8330. source = "registry+https://github.com/rust-lang/crates.io-index"
  8331. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  8332. [[package]]
  8333. name = "windows_i686_msvc"
  8334. version = "0.52.6"
  8335. source = "registry+https://github.com/rust-lang/crates.io-index"
  8336. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  8337. [[package]]
  8338. name = "windows_i686_msvc"
  8339. version = "0.53.1"
  8340. source = "registry+https://github.com/rust-lang/crates.io-index"
  8341. checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
  8342. [[package]]
  8343. name = "windows_x86_64_gnu"
  8344. version = "0.42.2"
  8345. source = "registry+https://github.com/rust-lang/crates.io-index"
  8346. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  8347. [[package]]
  8348. name = "windows_x86_64_gnu"
  8349. version = "0.52.6"
  8350. source = "registry+https://github.com/rust-lang/crates.io-index"
  8351. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  8352. [[package]]
  8353. name = "windows_x86_64_gnu"
  8354. version = "0.53.1"
  8355. source = "registry+https://github.com/rust-lang/crates.io-index"
  8356. checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
  8357. [[package]]
  8358. name = "windows_x86_64_gnullvm"
  8359. version = "0.42.2"
  8360. source = "registry+https://github.com/rust-lang/crates.io-index"
  8361. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  8362. [[package]]
  8363. name = "windows_x86_64_gnullvm"
  8364. version = "0.52.6"
  8365. source = "registry+https://github.com/rust-lang/crates.io-index"
  8366. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  8367. [[package]]
  8368. name = "windows_x86_64_gnullvm"
  8369. version = "0.53.1"
  8370. source = "registry+https://github.com/rust-lang/crates.io-index"
  8371. checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
  8372. [[package]]
  8373. name = "windows_x86_64_msvc"
  8374. version = "0.42.2"
  8375. source = "registry+https://github.com/rust-lang/crates.io-index"
  8376. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  8377. [[package]]
  8378. name = "windows_x86_64_msvc"
  8379. version = "0.52.6"
  8380. source = "registry+https://github.com/rust-lang/crates.io-index"
  8381. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  8382. [[package]]
  8383. name = "windows_x86_64_msvc"
  8384. version = "0.53.1"
  8385. source = "registry+https://github.com/rust-lang/crates.io-index"
  8386. checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
  8387. [[package]]
  8388. name = "winnow"
  8389. version = "0.5.40"
  8390. source = "registry+https://github.com/rust-lang/crates.io-index"
  8391. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  8392. dependencies = [
  8393. "memchr",
  8394. ]
  8395. [[package]]
  8396. name = "winnow"
  8397. version = "0.7.15"
  8398. source = "registry+https://github.com/rust-lang/crates.io-index"
  8399. checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
  8400. [[package]]
  8401. name = "winnow"
  8402. version = "1.0.4"
  8403. source = "registry+https://github.com/rust-lang/crates.io-index"
  8404. checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
  8405. dependencies = [
  8406. "memchr",
  8407. ]
  8408. [[package]]
  8409. name = "winreg"
  8410. version = "0.55.0"
  8411. source = "registry+https://github.com/rust-lang/crates.io-index"
  8412. checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
  8413. dependencies = [
  8414. "cfg-if",
  8415. "windows-sys 0.59.0",
  8416. ]
  8417. [[package]]
  8418. name = "winsafe"
  8419. version = "0.0.19"
  8420. source = "registry+https://github.com/rust-lang/crates.io-index"
  8421. checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
  8422. [[package]]
  8423. name = "wit-bindgen"
  8424. version = "0.57.1"
  8425. source = "registry+https://github.com/rust-lang/crates.io-index"
  8426. checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
  8427. [[package]]
  8428. name = "writeable"
  8429. version = "0.6.3"
  8430. source = "registry+https://github.com/rust-lang/crates.io-index"
  8431. checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
  8432. [[package]]
  8433. name = "wry"
  8434. version = "0.55.1"
  8435. source = "registry+https://github.com/rust-lang/crates.io-index"
  8436. checksum = "186f9871daa55fd9c016578b810d149de58367113db7fb72b462d2323ce19514"
  8437. dependencies = [
  8438. "base64 0.22.1",
  8439. "block2",
  8440. "cookie",
  8441. "crossbeam-channel",
  8442. "dirs",
  8443. "dom_query",
  8444. "dpi",
  8445. "dunce",
  8446. "gdkx11",
  8447. "gtk",
  8448. "http",
  8449. "javascriptcore-rs",
  8450. "jni 0.21.1",
  8451. "libc",
  8452. "ndk",
  8453. "objc2",
  8454. "objc2-app-kit",
  8455. "objc2-core-foundation",
  8456. "objc2-foundation",
  8457. "objc2-ui-kit",
  8458. "objc2-web-kit",
  8459. "once_cell",
  8460. "percent-encoding",
  8461. "raw-window-handle",
  8462. "sha2",
  8463. "soup3",
  8464. "tao-macros",
  8465. "thiserror 2.0.19",
  8466. "url",
  8467. "webkit2gtk",
  8468. "webkit2gtk-sys",
  8469. "webview2-com",
  8470. "windows 0.61.3",
  8471. "windows-core 0.61.2",
  8472. "windows-version",
  8473. "x11-dl",
  8474. ]
  8475. [[package]]
  8476. name = "wyz"
  8477. version = "0.5.1"
  8478. source = "registry+https://github.com/rust-lang/crates.io-index"
  8479. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  8480. dependencies = [
  8481. "tap",
  8482. ]
  8483. [[package]]
  8484. name = "x11"
  8485. version = "2.21.0"
  8486. source = "registry+https://github.com/rust-lang/crates.io-index"
  8487. checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
  8488. dependencies = [
  8489. "libc",
  8490. "pkg-config",
  8491. ]
  8492. [[package]]
  8493. name = "x11-dl"
  8494. version = "2.21.0"
  8495. source = "registry+https://github.com/rust-lang/crates.io-index"
  8496. checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
  8497. dependencies = [
  8498. "libc",
  8499. "once_cell",
  8500. "pkg-config",
  8501. ]
  8502. [[package]]
  8503. name = "xattr"
  8504. version = "1.6.1"
  8505. source = "registry+https://github.com/rust-lang/crates.io-index"
  8506. checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
  8507. dependencies = [
  8508. "libc",
  8509. "rustix 1.1.4",
  8510. ]
  8511. [[package]]
  8512. name = "xxhash-rust"
  8513. version = "0.8.18"
  8514. source = "registry+https://github.com/rust-lang/crates.io-index"
  8515. checksum = "aee1b19627c7c60102ab80d3a9cbe18de90bfe03bfa6c3715447681f0e8c8af6"
  8516. [[package]]
  8517. name = "xz2"
  8518. version = "0.1.7"
  8519. source = "registry+https://github.com/rust-lang/crates.io-index"
  8520. checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
  8521. dependencies = [
  8522. "lzma-sys",
  8523. ]
  8524. [[package]]
  8525. name = "yoke"
  8526. version = "0.8.3"
  8527. source = "registry+https://github.com/rust-lang/crates.io-index"
  8528. checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
  8529. dependencies = [
  8530. "stable_deref_trait",
  8531. "yoke-derive",
  8532. "zerofrom",
  8533. ]
  8534. [[package]]
  8535. name = "yoke-derive"
  8536. version = "0.8.2"
  8537. source = "registry+https://github.com/rust-lang/crates.io-index"
  8538. checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
  8539. dependencies = [
  8540. "proc-macro2",
  8541. "quote",
  8542. "syn 2.0.119",
  8543. "synstructure",
  8544. ]
  8545. [[package]]
  8546. name = "zbus"
  8547. version = "5.18.0"
  8548. source = "registry+https://github.com/rust-lang/crates.io-index"
  8549. checksum = "fe18fb60dc696039e738717b76eaea21e7a4489bbb1885020b43c94236d7e98a"
  8550. dependencies = [
  8551. "async-broadcast",
  8552. "async-executor",
  8553. "async-io",
  8554. "async-lock",
  8555. "async-process",
  8556. "async-recursion",
  8557. "async-task",
  8558. "async-trait",
  8559. "blocking",
  8560. "enumflags2",
  8561. "event-listener",
  8562. "futures-core",
  8563. "futures-lite",
  8564. "hex",
  8565. "libc",
  8566. "ordered-stream",
  8567. "rustix 1.1.4",
  8568. "serde",
  8569. "serde_repr",
  8570. "tracing",
  8571. "uds_windows",
  8572. "uuid",
  8573. "windows-sys 0.61.2",
  8574. "winnow 1.0.4",
  8575. "zbus_macros",
  8576. "zbus_names",
  8577. "zvariant",
  8578. ]
  8579. [[package]]
  8580. name = "zbus_macros"
  8581. version = "5.18.0"
  8582. source = "registry+https://github.com/rust-lang/crates.io-index"
  8583. checksum = "fe96480bed92df2b442a1a30df364e12d08eed03aeb061f2b8dc6afb2be91119"
  8584. dependencies = [
  8585. "proc-macro-crate 3.5.0",
  8586. "proc-macro2",
  8587. "quote",
  8588. "syn 2.0.119",
  8589. "zbus_names",
  8590. "zvariant",
  8591. "zvariant_utils",
  8592. ]
  8593. [[package]]
  8594. name = "zbus_names"
  8595. version = "4.3.4"
  8596. source = "registry+https://github.com/rust-lang/crates.io-index"
  8597. checksum = "d8bf88b4a3ff53e883001e0e0115b297a9d53c31b9c1edd2bfdd853e3428624e"
  8598. dependencies = [
  8599. "serde",
  8600. "winnow 1.0.4",
  8601. "zvariant",
  8602. ]
  8603. [[package]]
  8604. name = "zerocopy"
  8605. version = "0.8.55"
  8606. source = "registry+https://github.com/rust-lang/crates.io-index"
  8607. checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
  8608. dependencies = [
  8609. "zerocopy-derive",
  8610. ]
  8611. [[package]]
  8612. name = "zerocopy-derive"
  8613. version = "0.8.55"
  8614. source = "registry+https://github.com/rust-lang/crates.io-index"
  8615. checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
  8616. dependencies = [
  8617. "proc-macro2",
  8618. "quote",
  8619. "syn 2.0.119",
  8620. ]
  8621. [[package]]
  8622. name = "zerofrom"
  8623. version = "0.1.8"
  8624. source = "registry+https://github.com/rust-lang/crates.io-index"
  8625. checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
  8626. dependencies = [
  8627. "zerofrom-derive",
  8628. ]
  8629. [[package]]
  8630. name = "zerofrom-derive"
  8631. version = "0.1.7"
  8632. source = "registry+https://github.com/rust-lang/crates.io-index"
  8633. checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
  8634. dependencies = [
  8635. "proc-macro2",
  8636. "quote",
  8637. "syn 2.0.119",
  8638. "synstructure",
  8639. ]
  8640. [[package]]
  8641. name = "zeroize"
  8642. version = "1.9.0"
  8643. source = "registry+https://github.com/rust-lang/crates.io-index"
  8644. checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
  8645. dependencies = [
  8646. "zeroize_derive",
  8647. ]
  8648. [[package]]
  8649. name = "zeroize_derive"
  8650. version = "1.5.0"
  8651. source = "registry+https://github.com/rust-lang/crates.io-index"
  8652. checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
  8653. dependencies = [
  8654. "proc-macro2",
  8655. "quote",
  8656. "syn 2.0.119",
  8657. ]
  8658. [[package]]
  8659. name = "zerotrie"
  8660. version = "0.2.4"
  8661. source = "registry+https://github.com/rust-lang/crates.io-index"
  8662. checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
  8663. dependencies = [
  8664. "displaydoc",
  8665. "yoke",
  8666. "zerofrom",
  8667. ]
  8668. [[package]]
  8669. name = "zerovec"
  8670. version = "0.11.6"
  8671. source = "registry+https://github.com/rust-lang/crates.io-index"
  8672. checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
  8673. dependencies = [
  8674. "yoke",
  8675. "zerofrom",
  8676. "zerovec-derive",
  8677. ]
  8678. [[package]]
  8679. name = "zerovec-derive"
  8680. version = "0.11.3"
  8681. source = "registry+https://github.com/rust-lang/crates.io-index"
  8682. checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
  8683. dependencies = [
  8684. "proc-macro2",
  8685. "quote",
  8686. "syn 2.0.119",
  8687. ]
  8688. [[package]]
  8689. name = "zip"
  8690. version = "2.4.2"
  8691. source = "registry+https://github.com/rust-lang/crates.io-index"
  8692. checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
  8693. dependencies = [
  8694. "aes",
  8695. "arbitrary",
  8696. "bzip2",
  8697. "constant_time_eq 0.3.1",
  8698. "crc32fast",
  8699. "crossbeam-utils",
  8700. "deflate64",
  8701. "displaydoc",
  8702. "flate2",
  8703. "getrandom 0.3.4",
  8704. "hmac",
  8705. "indexmap 2.14.0",
  8706. "lzma-rs",
  8707. "memchr",
  8708. "pbkdf2",
  8709. "sha1",
  8710. "thiserror 2.0.19",
  8711. "time",
  8712. "xz2",
  8713. "zeroize",
  8714. "zopfli",
  8715. "zstd",
  8716. ]
  8717. [[package]]
  8718. name = "zip"
  8719. version = "4.6.1"
  8720. source = "registry+https://github.com/rust-lang/crates.io-index"
  8721. checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1"
  8722. dependencies = [
  8723. "arbitrary",
  8724. "crc32fast",
  8725. "indexmap 2.14.0",
  8726. "memchr",
  8727. ]
  8728. [[package]]
  8729. name = "zip"
  8730. version = "7.2.0"
  8731. source = "registry+https://github.com/rust-lang/crates.io-index"
  8732. checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
  8733. dependencies = [
  8734. "crc32fast",
  8735. "flate2",
  8736. "indexmap 2.14.0",
  8737. "memchr",
  8738. "typed-path",
  8739. "zopfli",
  8740. ]
  8741. [[package]]
  8742. name = "zip"
  8743. version = "8.6.0"
  8744. source = "registry+https://github.com/rust-lang/crates.io-index"
  8745. checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
  8746. dependencies = [
  8747. "crc32fast",
  8748. "flate2",
  8749. "indexmap 2.14.0",
  8750. "memchr",
  8751. "typed-path",
  8752. "zopfli",
  8753. ]
  8754. [[package]]
  8755. name = "zlib-rs"
  8756. version = "0.6.7"
  8757. source = "registry+https://github.com/rust-lang/crates.io-index"
  8758. checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
  8759. [[package]]
  8760. name = "zmij"
  8761. version = "1.0.23"
  8762. source = "registry+https://github.com/rust-lang/crates.io-index"
  8763. checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
  8764. [[package]]
  8765. name = "zopfli"
  8766. version = "0.8.3"
  8767. source = "registry+https://github.com/rust-lang/crates.io-index"
  8768. checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
  8769. dependencies = [
  8770. "bumpalo",
  8771. "crc32fast",
  8772. "log",
  8773. "simd-adler32",
  8774. ]
  8775. [[package]]
  8776. name = "zstd"
  8777. version = "0.13.3"
  8778. source = "registry+https://github.com/rust-lang/crates.io-index"
  8779. checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  8780. dependencies = [
  8781. "zstd-safe",
  8782. ]
  8783. [[package]]
  8784. name = "zstd-safe"
  8785. version = "7.2.4"
  8786. source = "registry+https://github.com/rust-lang/crates.io-index"
  8787. checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  8788. dependencies = [
  8789. "zstd-sys",
  8790. ]
  8791. [[package]]
  8792. name = "zstd-sys"
  8793. version = "2.0.16+zstd.1.5.7"
  8794. source = "registry+https://github.com/rust-lang/crates.io-index"
  8795. checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
  8796. dependencies = [
  8797. "cc",
  8798. "pkg-config",
  8799. ]
  8800. [[package]]
  8801. name = "zune-core"
  8802. version = "0.5.1"
  8803. source = "registry+https://github.com/rust-lang/crates.io-index"
  8804. checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
  8805. [[package]]
  8806. name = "zune-jpeg"
  8807. version = "0.5.15"
  8808. source = "registry+https://github.com/rust-lang/crates.io-index"
  8809. checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
  8810. dependencies = [
  8811. "zune-core",
  8812. ]
  8813. [[package]]
  8814. name = "zvariant"
  8815. version = "5.13.1"
  8816. source = "registry+https://github.com/rust-lang/crates.io-index"
  8817. checksum = "bee2a0bcd2a907786a456fff45aaaaf54c9ba5f50b71ae9ec1a4edd200c94911"
  8818. dependencies = [
  8819. "endi",
  8820. "enumflags2",
  8821. "serde",
  8822. "winnow 1.0.4",
  8823. "zvariant_derive",
  8824. "zvariant_utils",
  8825. ]
  8826. [[package]]
  8827. name = "zvariant_derive"
  8828. version = "5.13.1"
  8829. source = "registry+https://github.com/rust-lang/crates.io-index"
  8830. checksum = "38a708216a18780796770bfe3f4739c7c83a3e8f789b755534bbbc06e4e23e12"
  8831. dependencies = [
  8832. "proc-macro-crate 3.5.0",
  8833. "proc-macro2",
  8834. "quote",
  8835. "syn 2.0.119",
  8836. "zvariant_utils",
  8837. ]
  8838. [[package]]
  8839. name = "zvariant_utils"
  8840. version = "3.5.0"
  8841. source = "registry+https://github.com/rust-lang/crates.io-index"
  8842. checksum = "90cb9383f9b45290407a1258b202d3f8f01db719eb60b4e4055c6375af4fc7c7"
  8843. dependencies = [
  8844. "proc-macro2",
  8845. "quote",
  8846. "serde",
  8847. "syn 2.0.119",
  8848. "winnow 1.0.4",
  8849. ]