Cargo.lock 227 KB

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