Cargo.lock 227 KB

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