Cargo.lock 225 KB

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