Cargo.lock 225 KB

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