Cargo.lock 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254
  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.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
  9. [[package]]
  10. name = "aead"
  11. version = "0.5.2"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  14. dependencies = [
  15. "crypto-common",
  16. "generic-array",
  17. ]
  18. [[package]]
  19. name = "aes"
  20. version = "0.8.4"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  23. dependencies = [
  24. "cfg-if",
  25. "cipher",
  26. "cpufeatures",
  27. "zeroize",
  28. ]
  29. [[package]]
  30. name = "ahash"
  31. version = "0.8.11"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  34. dependencies = [
  35. "cfg-if",
  36. "once_cell",
  37. "version_check",
  38. "zerocopy 0.7.35",
  39. ]
  40. [[package]]
  41. name = "aho-corasick"
  42. version = "1.1.3"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  45. dependencies = [
  46. "memchr",
  47. ]
  48. [[package]]
  49. name = "aligned-vec"
  50. version = "0.5.0"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
  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 = "amplify"
  60. version = "4.8.0"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "448cf0c3afc71439b5f837aac5399a1ef2b223f5f38324dbfb4343deec3b80cc"
  63. dependencies = [
  64. "amplify_derive",
  65. "amplify_num",
  66. "ascii",
  67. "wasm-bindgen",
  68. ]
  69. [[package]]
  70. name = "amplify_derive"
  71. version = "4.0.1"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "2a6309e6b8d89b36b9f959b7a8fa093583b94922a0f6438a24fb08936de4d428"
  74. dependencies = [
  75. "amplify_syn",
  76. "proc-macro2",
  77. "quote",
  78. "syn 1.0.109",
  79. ]
  80. [[package]]
  81. name = "amplify_num"
  82. version = "0.5.3"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "99bcb75a2982047f733547042fc3968c0f460dfcf7d90b90dea3b2744580e9ad"
  85. dependencies = [
  86. "wasm-bindgen",
  87. ]
  88. [[package]]
  89. name = "amplify_syn"
  90. version = "2.0.1"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  93. dependencies = [
  94. "proc-macro2",
  95. "quote",
  96. "syn 1.0.109",
  97. ]
  98. [[package]]
  99. name = "android-tzdata"
  100. version = "0.1.1"
  101. source = "registry+https://github.com/rust-lang/crates.io-index"
  102. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  103. [[package]]
  104. name = "android_log-sys"
  105. version = "0.3.2"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
  108. [[package]]
  109. name = "android_logger"
  110. version = "0.13.3"
  111. source = "registry+https://github.com/rust-lang/crates.io-index"
  112. checksum = "c494134f746c14dc653a35a4ea5aca24ac368529da5370ecf41fe0341c35772f"
  113. dependencies = [
  114. "android_log-sys",
  115. "env_logger",
  116. "log",
  117. "once_cell",
  118. ]
  119. [[package]]
  120. name = "android_system_properties"
  121. version = "0.1.5"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  124. dependencies = [
  125. "libc",
  126. ]
  127. [[package]]
  128. name = "ansi_term"
  129. version = "0.12.1"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  132. dependencies = [
  133. "winapi",
  134. ]
  135. [[package]]
  136. name = "anyhow"
  137. version = "1.0.98"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
  140. [[package]]
  141. name = "arbitrary"
  142. version = "1.4.1"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
  145. [[package]]
  146. name = "arg_enum_proc_macro"
  147. version = "0.3.4"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
  150. dependencies = [
  151. "proc-macro2",
  152. "quote",
  153. "syn 2.0.100",
  154. ]
  155. [[package]]
  156. name = "arrayref"
  157. version = "0.3.9"
  158. source = "registry+https://github.com/rust-lang/crates.io-index"
  159. checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
  160. [[package]]
  161. name = "arrayvec"
  162. version = "0.7.6"
  163. source = "registry+https://github.com/rust-lang/crates.io-index"
  164. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  165. [[package]]
  166. name = "arti-client"
  167. version = "0.29.0"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "32ef6ce4ca6686d6a8561872d01791f0b9f23ea4455a7f1340850d0fac049817"
  170. dependencies = [
  171. "async-trait",
  172. "cfg-if",
  173. "derive-deftly 1.0.1",
  174. "derive_builder_fork_arti",
  175. "derive_more",
  176. "educe",
  177. "fs-mistrust",
  178. "futures",
  179. "hostname-validator",
  180. "humantime",
  181. "humantime-serde",
  182. "libc",
  183. "once_cell",
  184. "postage",
  185. "rand 0.9.0",
  186. "safelog",
  187. "serde",
  188. "thiserror 2.0.12",
  189. "tor-async-utils",
  190. "tor-basic-utils",
  191. "tor-chanmgr",
  192. "tor-circmgr",
  193. "tor-config",
  194. "tor-config-path",
  195. "tor-dirmgr",
  196. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  197. "tor-guardmgr",
  198. "tor-hsclient",
  199. "tor-hscrypto",
  200. "tor-hsservice",
  201. "tor-keymgr",
  202. "tor-linkspec",
  203. "tor-llcrypto",
  204. "tor-memquota",
  205. "tor-netdir",
  206. "tor-netdoc",
  207. "tor-persist",
  208. "tor-proto",
  209. "tor-rtcompat",
  210. "tracing",
  211. "void",
  212. ]
  213. [[package]]
  214. name = "ascii"
  215. version = "1.1.0"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  218. [[package]]
  219. name = "asn1-rs"
  220. version = "0.7.1"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
  223. dependencies = [
  224. "asn1-rs-derive",
  225. "asn1-rs-impl",
  226. "displaydoc",
  227. "nom",
  228. "num-traits",
  229. "rusticata-macros",
  230. "thiserror 2.0.12",
  231. "time",
  232. ]
  233. [[package]]
  234. name = "asn1-rs-derive"
  235. version = "0.6.0"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
  238. dependencies = [
  239. "proc-macro2",
  240. "quote",
  241. "syn 2.0.100",
  242. "synstructure",
  243. ]
  244. [[package]]
  245. name = "asn1-rs-impl"
  246. version = "0.2.0"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  249. dependencies = [
  250. "proc-macro2",
  251. "quote",
  252. "syn 2.0.100",
  253. ]
  254. [[package]]
  255. name = "assert_matches"
  256. version = "1.5.0"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
  259. [[package]]
  260. name = "async-attributes"
  261. version = "1.1.2"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
  264. dependencies = [
  265. "quote",
  266. "syn 1.0.109",
  267. ]
  268. [[package]]
  269. name = "async-channel"
  270. version = "1.9.0"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
  273. dependencies = [
  274. "concurrent-queue",
  275. "event-listener 2.5.3",
  276. "futures-core",
  277. ]
  278. [[package]]
  279. name = "async-channel"
  280. version = "2.3.1"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
  283. dependencies = [
  284. "concurrent-queue",
  285. "event-listener-strategy",
  286. "futures-core",
  287. "pin-project-lite",
  288. ]
  289. [[package]]
  290. name = "async-compression"
  291. version = "0.4.22"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "59a194f9d963d8099596278594b3107448656ba73831c9d8c783e613ce86da64"
  294. dependencies = [
  295. "flate2",
  296. "futures-core",
  297. "futures-io",
  298. "liblzma",
  299. "memchr",
  300. "pin-project-lite",
  301. "zstd",
  302. "zstd-safe",
  303. ]
  304. [[package]]
  305. name = "async-executor"
  306. version = "1.13.1"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
  309. dependencies = [
  310. "async-task",
  311. "concurrent-queue",
  312. "fastrand",
  313. "futures-lite",
  314. "slab",
  315. ]
  316. [[package]]
  317. name = "async-fs"
  318. version = "2.1.2"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
  321. dependencies = [
  322. "async-lock",
  323. "blocking",
  324. "futures-lite",
  325. ]
  326. [[package]]
  327. name = "async-gen"
  328. version = "0.2.3"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "2f872d9d498f6cc7a18aff10f2658f17fc5d729928625d68169aaa29febdf813"
  331. dependencies = [
  332. "async-gen-macros",
  333. "futures-core",
  334. "pin-project-lite",
  335. ]
  336. [[package]]
  337. name = "async-gen-macros"
  338. version = "0.3.0"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "017a711dbce72e9467fea4f6e55afc8cf8e4306a53c80593bad684e8eccef122"
  341. [[package]]
  342. name = "async-global-executor"
  343. version = "2.4.1"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
  346. dependencies = [
  347. "async-channel 2.3.1",
  348. "async-executor",
  349. "async-io",
  350. "async-lock",
  351. "blocking",
  352. "futures-lite",
  353. "once_cell",
  354. ]
  355. [[package]]
  356. name = "async-io"
  357. version = "2.4.0"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
  360. dependencies = [
  361. "async-lock",
  362. "cfg-if",
  363. "concurrent-queue",
  364. "futures-io",
  365. "futures-lite",
  366. "parking",
  367. "polling",
  368. "rustix 0.38.44",
  369. "slab",
  370. "tracing",
  371. "windows-sys 0.59.0",
  372. ]
  373. [[package]]
  374. name = "async-lock"
  375. version = "3.4.0"
  376. source = "registry+https://github.com/rust-lang/crates.io-index"
  377. checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
  378. dependencies = [
  379. "event-listener 5.4.0",
  380. "event-listener-strategy",
  381. "pin-project-lite",
  382. ]
  383. [[package]]
  384. name = "async-net"
  385. version = "2.0.0"
  386. source = "registry+https://github.com/rust-lang/crates.io-index"
  387. checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
  388. dependencies = [
  389. "async-io",
  390. "blocking",
  391. "futures-lite",
  392. ]
  393. [[package]]
  394. name = "async-process"
  395. version = "2.3.0"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
  398. dependencies = [
  399. "async-channel 2.3.1",
  400. "async-io",
  401. "async-lock",
  402. "async-signal",
  403. "async-task",
  404. "blocking",
  405. "cfg-if",
  406. "event-listener 5.4.0",
  407. "futures-lite",
  408. "rustix 0.38.44",
  409. "tracing",
  410. ]
  411. [[package]]
  412. name = "async-recursion"
  413. version = "1.1.1"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  416. dependencies = [
  417. "proc-macro2",
  418. "quote",
  419. "syn 2.0.100",
  420. ]
  421. [[package]]
  422. name = "async-signal"
  423. version = "0.2.10"
  424. source = "registry+https://github.com/rust-lang/crates.io-index"
  425. checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
  426. dependencies = [
  427. "async-io",
  428. "async-lock",
  429. "atomic-waker",
  430. "cfg-if",
  431. "futures-core",
  432. "futures-io",
  433. "rustix 0.38.44",
  434. "signal-hook-registry",
  435. "slab",
  436. "windows-sys 0.59.0",
  437. ]
  438. [[package]]
  439. name = "async-std"
  440. version = "1.13.1"
  441. source = "registry+https://github.com/rust-lang/crates.io-index"
  442. checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24"
  443. dependencies = [
  444. "async-attributes",
  445. "async-channel 1.9.0",
  446. "async-global-executor",
  447. "async-io",
  448. "async-lock",
  449. "async-process",
  450. "crossbeam-utils",
  451. "futures-channel",
  452. "futures-core",
  453. "futures-io",
  454. "futures-lite",
  455. "gloo-timers",
  456. "kv-log-macro",
  457. "log",
  458. "memchr",
  459. "once_cell",
  460. "pin-project-lite",
  461. "pin-utils",
  462. "slab",
  463. "wasm-bindgen-futures",
  464. ]
  465. [[package]]
  466. name = "async-task"
  467. version = "4.7.1"
  468. source = "registry+https://github.com/rust-lang/crates.io-index"
  469. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  470. [[package]]
  471. name = "async-trait"
  472. version = "0.1.88"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
  475. dependencies = [
  476. "proc-macro2",
  477. "quote",
  478. "syn 2.0.100",
  479. ]
  480. [[package]]
  481. name = "async_executors"
  482. version = "0.7.0"
  483. source = "registry+https://github.com/rust-lang/crates.io-index"
  484. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  485. dependencies = [
  486. "async-std",
  487. "blanket",
  488. "futures-core",
  489. "futures-task",
  490. "futures-util",
  491. "pin-project",
  492. "rustc_version",
  493. ]
  494. [[package]]
  495. name = "asynchronous-codec"
  496. version = "0.7.0"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  499. dependencies = [
  500. "bytes",
  501. "futures-sink",
  502. "futures-util",
  503. "memchr",
  504. "pin-project-lite",
  505. ]
  506. [[package]]
  507. name = "atomic"
  508. version = "0.5.3"
  509. source = "registry+https://github.com/rust-lang/crates.io-index"
  510. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  511. [[package]]
  512. name = "atomic"
  513. version = "0.6.0"
  514. source = "registry+https://github.com/rust-lang/crates.io-index"
  515. checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
  516. dependencies = [
  517. "bytemuck",
  518. ]
  519. [[package]]
  520. name = "atomic-waker"
  521. version = "1.1.2"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  524. [[package]]
  525. name = "atomic_float"
  526. version = "1.1.0"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "628d228f918ac3b82fe590352cc719d30664a0c13ca3a60266fe02c7132d480a"
  529. [[package]]
  530. name = "atty"
  531. version = "0.2.14"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  534. dependencies = [
  535. "hermit-abi 0.1.19",
  536. "libc",
  537. "winapi",
  538. ]
  539. [[package]]
  540. name = "autocfg"
  541. version = "1.4.0"
  542. source = "registry+https://github.com/rust-lang/crates.io-index"
  543. checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
  544. [[package]]
  545. name = "av1-grain"
  546. version = "0.2.3"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf"
  549. dependencies = [
  550. "anyhow",
  551. "arrayvec",
  552. "log",
  553. "nom",
  554. "num-rational",
  555. "v_frame",
  556. ]
  557. [[package]]
  558. name = "avif-serialize"
  559. version = "0.8.3"
  560. source = "registry+https://github.com/rust-lang/crates.io-index"
  561. checksum = "98922d6a4cfbcb08820c69d8eeccc05bb1f29bfa06b4f5b1dbfe9a868bd7608e"
  562. dependencies = [
  563. "arrayvec",
  564. ]
  565. [[package]]
  566. name = "base16ct"
  567. version = "0.2.0"
  568. source = "registry+https://github.com/rust-lang/crates.io-index"
  569. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  570. [[package]]
  571. name = "base64"
  572. version = "0.22.1"
  573. source = "registry+https://github.com/rust-lang/crates.io-index"
  574. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  575. [[package]]
  576. name = "base64ct"
  577. version = "1.7.3"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
  580. [[package]]
  581. name = "bit_field"
  582. version = "0.10.2"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
  585. [[package]]
  586. name = "bitflags"
  587. version = "1.3.2"
  588. source = "registry+https://github.com/rust-lang/crates.io-index"
  589. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  590. [[package]]
  591. name = "bitflags"
  592. version = "2.9.0"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
  595. [[package]]
  596. name = "bitstream-io"
  597. version = "2.6.0"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
  600. [[package]]
  601. name = "bitvec"
  602. version = "1.0.1"
  603. source = "registry+https://github.com/rust-lang/crates.io-index"
  604. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  605. dependencies = [
  606. "funty",
  607. "radium",
  608. "tap",
  609. "wyz",
  610. ]
  611. [[package]]
  612. name = "blake2b_simd"
  613. version = "1.0.3"
  614. source = "registry+https://github.com/rust-lang/crates.io-index"
  615. checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99"
  616. dependencies = [
  617. "arrayref",
  618. "arrayvec",
  619. "constant_time_eq",
  620. ]
  621. [[package]]
  622. name = "blake3"
  623. version = "1.8.1"
  624. source = "registry+https://github.com/rust-lang/crates.io-index"
  625. checksum = "389a099b34312839e16420d499a9cad9650541715937ffbdd40d36f49e77eeb3"
  626. dependencies = [
  627. "arrayref",
  628. "arrayvec",
  629. "cc",
  630. "cfg-if",
  631. "constant_time_eq",
  632. "rayon-core",
  633. ]
  634. [[package]]
  635. name = "blanket"
  636. version = "0.3.0"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  639. dependencies = [
  640. "proc-macro2",
  641. "quote",
  642. "syn 2.0.100",
  643. ]
  644. [[package]]
  645. name = "block-buffer"
  646. version = "0.10.4"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  649. dependencies = [
  650. "generic-array",
  651. ]
  652. [[package]]
  653. name = "blocking"
  654. version = "1.6.1"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
  657. dependencies = [
  658. "async-channel 2.3.1",
  659. "async-task",
  660. "futures-io",
  661. "futures-lite",
  662. "piper",
  663. ]
  664. [[package]]
  665. name = "bounded-vec-deque"
  666. version = "0.1.1"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  669. [[package]]
  670. name = "bridgetree"
  671. version = "0.6.0"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "cef977c7f8e75aa81fc589064c121ab8d32448b7939d34d58df479aa93e65ea5"
  674. dependencies = [
  675. "incrementalmerkletree",
  676. ]
  677. [[package]]
  678. name = "bs58"
  679. version = "0.5.1"
  680. source = "registry+https://github.com/rust-lang/crates.io-index"
  681. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  682. dependencies = [
  683. "tinyvec",
  684. ]
  685. [[package]]
  686. name = "bstr"
  687. version = "1.12.0"
  688. source = "registry+https://github.com/rust-lang/crates.io-index"
  689. checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
  690. dependencies = [
  691. "memchr",
  692. "regex-automata 0.4.9",
  693. "serde",
  694. ]
  695. [[package]]
  696. name = "built"
  697. version = "0.7.7"
  698. source = "registry+https://github.com/rust-lang/crates.io-index"
  699. checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
  700. [[package]]
  701. name = "bumpalo"
  702. version = "3.17.0"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
  705. [[package]]
  706. name = "by_address"
  707. version = "1.2.1"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
  710. [[package]]
  711. name = "bytecount"
  712. version = "0.6.8"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
  715. [[package]]
  716. name = "bytemuck"
  717. version = "1.22.0"
  718. source = "registry+https://github.com/rust-lang/crates.io-index"
  719. checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
  720. dependencies = [
  721. "bytemuck_derive",
  722. ]
  723. [[package]]
  724. name = "bytemuck_derive"
  725. version = "1.9.3"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
  728. dependencies = [
  729. "proc-macro2",
  730. "quote",
  731. "syn 2.0.100",
  732. ]
  733. [[package]]
  734. name = "byteorder"
  735. version = "1.5.0"
  736. source = "registry+https://github.com/rust-lang/crates.io-index"
  737. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  738. [[package]]
  739. name = "byteorder-lite"
  740. version = "0.1.0"
  741. source = "registry+https://github.com/rust-lang/crates.io-index"
  742. checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
  743. [[package]]
  744. name = "bytes"
  745. version = "1.10.1"
  746. source = "registry+https://github.com/rust-lang/crates.io-index"
  747. checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
  748. [[package]]
  749. name = "camino"
  750. version = "1.1.9"
  751. source = "registry+https://github.com/rust-lang/crates.io-index"
  752. checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
  753. dependencies = [
  754. "serde",
  755. ]
  756. [[package]]
  757. name = "caret"
  758. version = "0.5.1"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "f5440e59387a6f8291f2696a875656873e9d51e9fb7b38af81a25772a5f81b33"
  761. [[package]]
  762. name = "cargo-platform"
  763. version = "0.1.9"
  764. source = "registry+https://github.com/rust-lang/crates.io-index"
  765. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  766. dependencies = [
  767. "serde",
  768. ]
  769. [[package]]
  770. name = "cargo_metadata"
  771. version = "0.14.2"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  774. dependencies = [
  775. "camino",
  776. "cargo-platform",
  777. "semver",
  778. "serde",
  779. "serde_json",
  780. ]
  781. [[package]]
  782. name = "cc"
  783. version = "1.2.19"
  784. source = "registry+https://github.com/rust-lang/crates.io-index"
  785. checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
  786. dependencies = [
  787. "jobserver",
  788. "libc",
  789. "shlex",
  790. ]
  791. [[package]]
  792. name = "cfg-expr"
  793. version = "0.15.8"
  794. source = "registry+https://github.com/rust-lang/crates.io-index"
  795. checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
  796. dependencies = [
  797. "smallvec",
  798. "target-lexicon",
  799. ]
  800. [[package]]
  801. name = "cfg-if"
  802. version = "1.0.0"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  805. [[package]]
  806. name = "chacha20"
  807. version = "0.9.1"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  810. dependencies = [
  811. "cfg-if",
  812. "cipher",
  813. "cpufeatures",
  814. ]
  815. [[package]]
  816. name = "chacha20poly1305"
  817. version = "0.10.1"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  820. dependencies = [
  821. "aead",
  822. "chacha20",
  823. "cipher",
  824. "poly1305",
  825. "zeroize",
  826. ]
  827. [[package]]
  828. name = "chrono"
  829. version = "0.4.40"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
  832. dependencies = [
  833. "android-tzdata",
  834. "iana-time-zone",
  835. "js-sys",
  836. "num-traits",
  837. "serde",
  838. "wasm-bindgen",
  839. "windows-link",
  840. ]
  841. [[package]]
  842. name = "cipher"
  843. version = "0.4.4"
  844. source = "registry+https://github.com/rust-lang/crates.io-index"
  845. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  846. dependencies = [
  847. "crypto-common",
  848. "inout",
  849. "zeroize",
  850. ]
  851. [[package]]
  852. name = "clap"
  853. version = "2.34.0"
  854. source = "registry+https://github.com/rust-lang/crates.io-index"
  855. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  856. dependencies = [
  857. "ansi_term",
  858. "atty",
  859. "bitflags 1.3.2",
  860. "strsim 0.8.0",
  861. "textwrap",
  862. "unicode-width",
  863. "vec_map",
  864. ]
  865. [[package]]
  866. name = "coarsetime"
  867. version = "0.1.36"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "91849686042de1b41cd81490edc83afbcb0abe5a9b6f2c4114f23ce8cca1bcf4"
  870. dependencies = [
  871. "libc",
  872. "wasix",
  873. "wasm-bindgen",
  874. ]
  875. [[package]]
  876. name = "color"
  877. version = "0.2.3"
  878. source = "registry+https://github.com/rust-lang/crates.io-index"
  879. checksum = "61c387f6cef110ee8eaf12fca5586d3d303c07c594f4a5f02c768b6470b70dbd"
  880. [[package]]
  881. name = "color_quant"
  882. version = "1.1.0"
  883. source = "registry+https://github.com/rust-lang/crates.io-index"
  884. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  885. [[package]]
  886. name = "colored"
  887. version = "3.0.0"
  888. source = "registry+https://github.com/rust-lang/crates.io-index"
  889. checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
  890. dependencies = [
  891. "windows-sys 0.59.0",
  892. ]
  893. [[package]]
  894. name = "concurrent-queue"
  895. version = "2.5.0"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  898. dependencies = [
  899. "crossbeam-utils",
  900. ]
  901. [[package]]
  902. name = "const-oid"
  903. version = "0.9.6"
  904. source = "registry+https://github.com/rust-lang/crates.io-index"
  905. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  906. [[package]]
  907. name = "constant_time_eq"
  908. version = "0.3.1"
  909. source = "registry+https://github.com/rust-lang/crates.io-index"
  910. checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
  911. [[package]]
  912. name = "convert_case"
  913. version = "0.7.1"
  914. source = "registry+https://github.com/rust-lang/crates.io-index"
  915. checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
  916. dependencies = [
  917. "unicode-segmentation",
  918. ]
  919. [[package]]
  920. name = "cookie-factory"
  921. version = "0.3.3"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
  924. dependencies = [
  925. "futures",
  926. ]
  927. [[package]]
  928. name = "core-foundation"
  929. version = "0.9.4"
  930. source = "registry+https://github.com/rust-lang/crates.io-index"
  931. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  932. dependencies = [
  933. "core-foundation-sys",
  934. "libc",
  935. ]
  936. [[package]]
  937. name = "core-foundation-sys"
  938. version = "0.8.7"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  941. [[package]]
  942. name = "core-graphics"
  943. version = "0.23.2"
  944. source = "registry+https://github.com/rust-lang/crates.io-index"
  945. checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
  946. dependencies = [
  947. "bitflags 1.3.2",
  948. "core-foundation",
  949. "core-graphics-types",
  950. "foreign-types",
  951. "libc",
  952. ]
  953. [[package]]
  954. name = "core-graphics-types"
  955. version = "0.1.3"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  958. dependencies = [
  959. "bitflags 1.3.2",
  960. "core-foundation",
  961. "libc",
  962. ]
  963. [[package]]
  964. name = "core-text"
  965. version = "20.1.0"
  966. source = "registry+https://github.com/rust-lang/crates.io-index"
  967. checksum = "c9d2790b5c08465d49f8dc05c8bcae9fea467855947db39b0f8145c091aaced5"
  968. dependencies = [
  969. "core-foundation",
  970. "core-graphics",
  971. "foreign-types",
  972. "libc",
  973. ]
  974. [[package]]
  975. name = "cpufeatures"
  976. version = "0.2.17"
  977. source = "registry+https://github.com/rust-lang/crates.io-index"
  978. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  979. dependencies = [
  980. "libc",
  981. ]
  982. [[package]]
  983. name = "crc32fast"
  984. version = "1.4.2"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  987. dependencies = [
  988. "cfg-if",
  989. ]
  990. [[package]]
  991. name = "crossbeam-deque"
  992. version = "0.8.6"
  993. source = "registry+https://github.com/rust-lang/crates.io-index"
  994. checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
  995. dependencies = [
  996. "crossbeam-epoch",
  997. "crossbeam-utils",
  998. ]
  999. [[package]]
  1000. name = "crossbeam-epoch"
  1001. version = "0.9.18"
  1002. source = "registry+https://github.com/rust-lang/crates.io-index"
  1003. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1004. dependencies = [
  1005. "crossbeam-utils",
  1006. ]
  1007. [[package]]
  1008. name = "crossbeam-queue"
  1009. version = "0.3.12"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
  1012. dependencies = [
  1013. "crossbeam-utils",
  1014. ]
  1015. [[package]]
  1016. name = "crossbeam-utils"
  1017. version = "0.8.21"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  1020. [[package]]
  1021. name = "crunchy"
  1022. version = "0.2.3"
  1023. source = "registry+https://github.com/rust-lang/crates.io-index"
  1024. checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
  1025. [[package]]
  1026. name = "crypto-bigint"
  1027. version = "0.5.5"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1030. dependencies = [
  1031. "generic-array",
  1032. "rand_core 0.6.4",
  1033. "subtle",
  1034. "zeroize",
  1035. ]
  1036. [[package]]
  1037. name = "crypto-common"
  1038. version = "0.1.6"
  1039. source = "registry+https://github.com/rust-lang/crates.io-index"
  1040. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1041. dependencies = [
  1042. "generic-array",
  1043. "rand_core 0.6.4",
  1044. "typenum",
  1045. ]
  1046. [[package]]
  1047. name = "ct-codecs"
  1048. version = "1.1.3"
  1049. source = "registry+https://github.com/rust-lang/crates.io-index"
  1050. checksum = "b916ba8ce9e4182696896f015e8a5ae6081b305f74690baa8465e35f5a142ea4"
  1051. [[package]]
  1052. name = "ctr"
  1053. version = "0.9.2"
  1054. source = "registry+https://github.com/rust-lang/crates.io-index"
  1055. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1056. dependencies = [
  1057. "cipher",
  1058. ]
  1059. [[package]]
  1060. name = "curve25519-dalek"
  1061. version = "4.1.3"
  1062. source = "registry+https://github.com/rust-lang/crates.io-index"
  1063. checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
  1064. dependencies = [
  1065. "cfg-if",
  1066. "cpufeatures",
  1067. "curve25519-dalek-derive",
  1068. "digest",
  1069. "fiat-crypto",
  1070. "rustc_version",
  1071. "subtle",
  1072. "zeroize",
  1073. ]
  1074. [[package]]
  1075. name = "curve25519-dalek-derive"
  1076. version = "0.1.1"
  1077. source = "registry+https://github.com/rust-lang/crates.io-index"
  1078. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1079. dependencies = [
  1080. "proc-macro2",
  1081. "quote",
  1082. "syn 2.0.100",
  1083. ]
  1084. [[package]]
  1085. name = "darkfi"
  1086. version = "0.4.1"
  1087. dependencies = [
  1088. "arti-client",
  1089. "async-trait",
  1090. "blake3",
  1091. "bs58",
  1092. "darkfi-sdk",
  1093. "darkfi-serial",
  1094. "ed25519-compact",
  1095. "futures",
  1096. "futures-rustls",
  1097. "halo2_gadgets",
  1098. "halo2_proofs",
  1099. "httparse",
  1100. "libc",
  1101. "log",
  1102. "num-bigint",
  1103. "pin-project-lite",
  1104. "rand 0.8.5",
  1105. "rcgen",
  1106. "regex",
  1107. "rustls-pemfile",
  1108. "semver",
  1109. "serde",
  1110. "simplelog",
  1111. "sled-overlay",
  1112. "smol",
  1113. "socket2",
  1114. "structopt",
  1115. "structopt-toml",
  1116. "thiserror 2.0.12",
  1117. "tinyjson",
  1118. "tor-cell",
  1119. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1120. "tor-hscrypto",
  1121. "tor-hsservice",
  1122. "tor-proto",
  1123. "tor-rtcompat",
  1124. "url",
  1125. "x509-parser",
  1126. ]
  1127. [[package]]
  1128. name = "darkfi-app"
  1129. version = "0.1.0"
  1130. dependencies = [
  1131. "android_logger",
  1132. "async-channel 2.3.1",
  1133. "async-gen",
  1134. "async-lock",
  1135. "async-recursion",
  1136. "async-trait",
  1137. "atomic_float",
  1138. "blake3",
  1139. "chrono",
  1140. "colored",
  1141. "darkfi",
  1142. "darkfi-serial",
  1143. "dirs 5.0.1",
  1144. "easy-parallel",
  1145. "file-rotate",
  1146. "freetype-rs",
  1147. "futures",
  1148. "glam",
  1149. "harfbuzz-sys",
  1150. "image",
  1151. "log",
  1152. "miniquad",
  1153. "parking_lot 0.12.3",
  1154. "parley",
  1155. "peniko",
  1156. "rand 0.8.5",
  1157. "regex",
  1158. "semver",
  1159. "simplelog",
  1160. "sled-overlay",
  1161. "smol",
  1162. "swash",
  1163. "thiserror 2.0.12",
  1164. "tor-dirmgr",
  1165. "url",
  1166. "zeno",
  1167. "zeromq",
  1168. ]
  1169. [[package]]
  1170. name = "darkfi-derive"
  1171. version = "0.4.2"
  1172. source = "registry+https://github.com/rust-lang/crates.io-index"
  1173. checksum = "2419f39be147184d34144c0cbed3ac3bf7572f0c8703d7a605db5e0f85c66269"
  1174. dependencies = [
  1175. "darkfi-derive-internal",
  1176. "proc-macro-crate",
  1177. "proc-macro2",
  1178. "quote",
  1179. "syn 2.0.100",
  1180. ]
  1181. [[package]]
  1182. name = "darkfi-derive-internal"
  1183. version = "0.4.2"
  1184. source = "registry+https://github.com/rust-lang/crates.io-index"
  1185. checksum = "a7000d1d42b2af380c7367b5cde93cc8cc3b44898d2c467f6d9de3011df9f6e8"
  1186. dependencies = [
  1187. "proc-macro2",
  1188. "quote",
  1189. "syn 2.0.100",
  1190. ]
  1191. [[package]]
  1192. name = "darkfi-sdk"
  1193. version = "0.4.1"
  1194. dependencies = [
  1195. "blake2b_simd",
  1196. "blake3",
  1197. "bridgetree",
  1198. "bs58",
  1199. "chacha20poly1305",
  1200. "darkfi-serial",
  1201. "halo2_gadgets",
  1202. "lazy_static",
  1203. "num-bigint",
  1204. "num-traits",
  1205. "pasta_curves",
  1206. "rand_core 0.6.4",
  1207. "sha2",
  1208. "subtle",
  1209. "thiserror 2.0.12",
  1210. ]
  1211. [[package]]
  1212. name = "darkfi-serial"
  1213. version = "0.4.2"
  1214. source = "registry+https://github.com/rust-lang/crates.io-index"
  1215. checksum = "b2a240620a7858db545156a1de5b215c9b10344c7ad527eed0fc67efd5cea08a"
  1216. dependencies = [
  1217. "async-trait",
  1218. "blake3",
  1219. "bridgetree",
  1220. "darkfi-derive",
  1221. "futures-lite",
  1222. "pasta_curves",
  1223. "semver",
  1224. "url",
  1225. ]
  1226. [[package]]
  1227. name = "darling"
  1228. version = "0.14.4"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  1231. dependencies = [
  1232. "darling_core 0.14.4",
  1233. "darling_macro 0.14.4",
  1234. ]
  1235. [[package]]
  1236. name = "darling"
  1237. version = "0.20.11"
  1238. source = "registry+https://github.com/rust-lang/crates.io-index"
  1239. checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
  1240. dependencies = [
  1241. "darling_core 0.20.11",
  1242. "darling_macro 0.20.11",
  1243. ]
  1244. [[package]]
  1245. name = "darling_core"
  1246. version = "0.14.4"
  1247. source = "registry+https://github.com/rust-lang/crates.io-index"
  1248. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  1249. dependencies = [
  1250. "fnv",
  1251. "ident_case",
  1252. "proc-macro2",
  1253. "quote",
  1254. "strsim 0.10.0",
  1255. "syn 1.0.109",
  1256. ]
  1257. [[package]]
  1258. name = "darling_core"
  1259. version = "0.20.11"
  1260. source = "registry+https://github.com/rust-lang/crates.io-index"
  1261. checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
  1262. dependencies = [
  1263. "fnv",
  1264. "ident_case",
  1265. "proc-macro2",
  1266. "quote",
  1267. "strsim 0.11.1",
  1268. "syn 2.0.100",
  1269. ]
  1270. [[package]]
  1271. name = "darling_macro"
  1272. version = "0.14.4"
  1273. source = "registry+https://github.com/rust-lang/crates.io-index"
  1274. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  1275. dependencies = [
  1276. "darling_core 0.14.4",
  1277. "quote",
  1278. "syn 1.0.109",
  1279. ]
  1280. [[package]]
  1281. name = "darling_macro"
  1282. version = "0.20.11"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
  1285. dependencies = [
  1286. "darling_core 0.20.11",
  1287. "quote",
  1288. "syn 2.0.100",
  1289. ]
  1290. [[package]]
  1291. name = "dashmap"
  1292. version = "5.5.3"
  1293. source = "registry+https://github.com/rust-lang/crates.io-index"
  1294. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  1295. dependencies = [
  1296. "cfg-if",
  1297. "hashbrown 0.14.5",
  1298. "lock_api",
  1299. "once_cell",
  1300. "parking_lot_core 0.9.10",
  1301. ]
  1302. [[package]]
  1303. name = "data-encoding"
  1304. version = "2.9.0"
  1305. source = "registry+https://github.com/rust-lang/crates.io-index"
  1306. checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
  1307. [[package]]
  1308. name = "der"
  1309. version = "0.7.9"
  1310. source = "registry+https://github.com/rust-lang/crates.io-index"
  1311. checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
  1312. dependencies = [
  1313. "const-oid",
  1314. "pem-rfc7468",
  1315. "zeroize",
  1316. ]
  1317. [[package]]
  1318. name = "der-parser"
  1319. version = "10.0.0"
  1320. source = "registry+https://github.com/rust-lang/crates.io-index"
  1321. checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
  1322. dependencies = [
  1323. "asn1-rs",
  1324. "cookie-factory",
  1325. "displaydoc",
  1326. "nom",
  1327. "num-bigint",
  1328. "num-traits",
  1329. "rusticata-macros",
  1330. ]
  1331. [[package]]
  1332. name = "deranged"
  1333. version = "0.4.0"
  1334. source = "registry+https://github.com/rust-lang/crates.io-index"
  1335. checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
  1336. dependencies = [
  1337. "powerfmt",
  1338. "serde",
  1339. ]
  1340. [[package]]
  1341. name = "derive-deftly"
  1342. version = "0.14.6"
  1343. source = "registry+https://github.com/rust-lang/crates.io-index"
  1344. checksum = "e8ea84d0109517cc2253d4a679bdda1e8989e9bd86987e9e4f75ffdda0095fd1"
  1345. dependencies = [
  1346. "derive-deftly-macros 0.14.6",
  1347. "heck 0.5.0",
  1348. ]
  1349. [[package]]
  1350. name = "derive-deftly"
  1351. version = "1.0.1"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "0015cb20a284ec944852820598af3aef6309ea8dc317a0304441272ed620f196"
  1354. dependencies = [
  1355. "derive-deftly-macros 1.0.1",
  1356. "heck 0.5.0",
  1357. ]
  1358. [[package]]
  1359. name = "derive-deftly-macros"
  1360. version = "0.14.6"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "357422a457ccb850dc8f1c1680e0670079560feaad6c2e247e3f345c4fab8a3f"
  1363. dependencies = [
  1364. "heck 0.5.0",
  1365. "indexmap 2.9.0",
  1366. "itertools 0.14.0",
  1367. "proc-macro-crate",
  1368. "proc-macro2",
  1369. "quote",
  1370. "sha3",
  1371. "strum",
  1372. "syn 2.0.100",
  1373. "void",
  1374. ]
  1375. [[package]]
  1376. name = "derive-deftly-macros"
  1377. version = "1.0.1"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "b48e8e38a4aa565da767322b5ca55fb0f8347983c5bc7f7647db069405420479"
  1380. dependencies = [
  1381. "heck 0.5.0",
  1382. "indexmap 2.9.0",
  1383. "itertools 0.14.0",
  1384. "proc-macro-crate",
  1385. "proc-macro2",
  1386. "quote",
  1387. "sha3",
  1388. "strum",
  1389. "syn 2.0.100",
  1390. "void",
  1391. ]
  1392. [[package]]
  1393. name = "derive_builder_core_fork_arti"
  1394. version = "0.11.2"
  1395. source = "registry+https://github.com/rust-lang/crates.io-index"
  1396. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  1397. dependencies = [
  1398. "darling 0.14.4",
  1399. "proc-macro2",
  1400. "quote",
  1401. "syn 1.0.109",
  1402. ]
  1403. [[package]]
  1404. name = "derive_builder_fork_arti"
  1405. version = "0.11.2"
  1406. source = "registry+https://github.com/rust-lang/crates.io-index"
  1407. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  1408. dependencies = [
  1409. "derive_builder_macro_fork_arti",
  1410. ]
  1411. [[package]]
  1412. name = "derive_builder_macro_fork_arti"
  1413. version = "0.11.2"
  1414. source = "registry+https://github.com/rust-lang/crates.io-index"
  1415. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  1416. dependencies = [
  1417. "derive_builder_core_fork_arti",
  1418. "syn 1.0.109",
  1419. ]
  1420. [[package]]
  1421. name = "derive_more"
  1422. version = "2.0.1"
  1423. source = "registry+https://github.com/rust-lang/crates.io-index"
  1424. checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
  1425. dependencies = [
  1426. "derive_more-impl",
  1427. ]
  1428. [[package]]
  1429. name = "derive_more-impl"
  1430. version = "2.0.1"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
  1433. dependencies = [
  1434. "convert_case",
  1435. "proc-macro2",
  1436. "quote",
  1437. "syn 2.0.100",
  1438. "unicode-xid",
  1439. ]
  1440. [[package]]
  1441. name = "digest"
  1442. version = "0.10.7"
  1443. source = "registry+https://github.com/rust-lang/crates.io-index"
  1444. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1445. dependencies = [
  1446. "block-buffer",
  1447. "const-oid",
  1448. "crypto-common",
  1449. "subtle",
  1450. ]
  1451. [[package]]
  1452. name = "directories"
  1453. version = "6.0.0"
  1454. source = "registry+https://github.com/rust-lang/crates.io-index"
  1455. checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
  1456. dependencies = [
  1457. "dirs-sys 0.5.0",
  1458. ]
  1459. [[package]]
  1460. name = "dirs"
  1461. version = "5.0.1"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1464. dependencies = [
  1465. "dirs-sys 0.4.1",
  1466. ]
  1467. [[package]]
  1468. name = "dirs"
  1469. version = "6.0.0"
  1470. source = "registry+https://github.com/rust-lang/crates.io-index"
  1471. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  1472. dependencies = [
  1473. "dirs-sys 0.5.0",
  1474. ]
  1475. [[package]]
  1476. name = "dirs-sys"
  1477. version = "0.4.1"
  1478. source = "registry+https://github.com/rust-lang/crates.io-index"
  1479. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1480. dependencies = [
  1481. "libc",
  1482. "option-ext",
  1483. "redox_users 0.4.6",
  1484. "windows-sys 0.48.0",
  1485. ]
  1486. [[package]]
  1487. name = "dirs-sys"
  1488. version = "0.5.0"
  1489. source = "registry+https://github.com/rust-lang/crates.io-index"
  1490. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  1491. dependencies = [
  1492. "libc",
  1493. "option-ext",
  1494. "redox_users 0.5.0",
  1495. "windows-sys 0.59.0",
  1496. ]
  1497. [[package]]
  1498. name = "displaydoc"
  1499. version = "0.2.5"
  1500. source = "registry+https://github.com/rust-lang/crates.io-index"
  1501. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1502. dependencies = [
  1503. "proc-macro2",
  1504. "quote",
  1505. "syn 2.0.100",
  1506. ]
  1507. [[package]]
  1508. name = "downcast-rs"
  1509. version = "2.0.1"
  1510. source = "registry+https://github.com/rust-lang/crates.io-index"
  1511. checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
  1512. [[package]]
  1513. name = "dyn-clone"
  1514. version = "1.0.19"
  1515. source = "registry+https://github.com/rust-lang/crates.io-index"
  1516. checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
  1517. [[package]]
  1518. name = "easy-parallel"
  1519. version = "3.3.1"
  1520. source = "registry+https://github.com/rust-lang/crates.io-index"
  1521. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  1522. [[package]]
  1523. name = "ecdsa"
  1524. version = "0.16.9"
  1525. source = "registry+https://github.com/rust-lang/crates.io-index"
  1526. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1527. dependencies = [
  1528. "der",
  1529. "digest",
  1530. "elliptic-curve",
  1531. "rfc6979",
  1532. "signature",
  1533. "spki",
  1534. ]
  1535. [[package]]
  1536. name = "ed25519"
  1537. version = "2.2.3"
  1538. source = "registry+https://github.com/rust-lang/crates.io-index"
  1539. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1540. dependencies = [
  1541. "pkcs8",
  1542. "signature",
  1543. ]
  1544. [[package]]
  1545. name = "ed25519-compact"
  1546. version = "2.1.1"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190"
  1549. dependencies = [
  1550. "ct-codecs",
  1551. "getrandom 0.2.15",
  1552. ]
  1553. [[package]]
  1554. name = "ed25519-dalek"
  1555. version = "2.1.1"
  1556. source = "registry+https://github.com/rust-lang/crates.io-index"
  1557. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1558. dependencies = [
  1559. "curve25519-dalek",
  1560. "ed25519",
  1561. "merlin",
  1562. "rand_core 0.6.4",
  1563. "serde",
  1564. "sha2",
  1565. "subtle",
  1566. "zeroize",
  1567. ]
  1568. [[package]]
  1569. name = "educe"
  1570. version = "0.4.23"
  1571. source = "registry+https://github.com/rust-lang/crates.io-index"
  1572. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  1573. dependencies = [
  1574. "enum-ordinalize",
  1575. "proc-macro2",
  1576. "quote",
  1577. "syn 1.0.109",
  1578. ]
  1579. [[package]]
  1580. name = "either"
  1581. version = "1.15.0"
  1582. source = "registry+https://github.com/rust-lang/crates.io-index"
  1583. checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
  1584. [[package]]
  1585. name = "elliptic-curve"
  1586. version = "0.13.8"
  1587. source = "registry+https://github.com/rust-lang/crates.io-index"
  1588. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1589. dependencies = [
  1590. "base16ct",
  1591. "crypto-bigint",
  1592. "digest",
  1593. "ff",
  1594. "generic-array",
  1595. "group",
  1596. "pkcs8",
  1597. "rand_core 0.6.4",
  1598. "sec1",
  1599. "subtle",
  1600. "zeroize",
  1601. ]
  1602. [[package]]
  1603. name = "enum-ordinalize"
  1604. version = "3.1.15"
  1605. source = "registry+https://github.com/rust-lang/crates.io-index"
  1606. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  1607. dependencies = [
  1608. "num-bigint",
  1609. "num-traits",
  1610. "proc-macro2",
  1611. "quote",
  1612. "syn 2.0.100",
  1613. ]
  1614. [[package]]
  1615. name = "env_logger"
  1616. version = "0.10.2"
  1617. source = "registry+https://github.com/rust-lang/crates.io-index"
  1618. checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
  1619. dependencies = [
  1620. "log",
  1621. "regex",
  1622. ]
  1623. [[package]]
  1624. name = "equivalent"
  1625. version = "1.0.2"
  1626. source = "registry+https://github.com/rust-lang/crates.io-index"
  1627. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  1628. [[package]]
  1629. name = "errno"
  1630. version = "0.3.11"
  1631. source = "registry+https://github.com/rust-lang/crates.io-index"
  1632. checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
  1633. dependencies = [
  1634. "libc",
  1635. "windows-sys 0.59.0",
  1636. ]
  1637. [[package]]
  1638. name = "error-chain"
  1639. version = "0.12.4"
  1640. source = "registry+https://github.com/rust-lang/crates.io-index"
  1641. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1642. dependencies = [
  1643. "version_check",
  1644. ]
  1645. [[package]]
  1646. name = "event-listener"
  1647. version = "2.5.3"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1650. [[package]]
  1651. name = "event-listener"
  1652. version = "5.4.0"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
  1655. dependencies = [
  1656. "concurrent-queue",
  1657. "parking",
  1658. "pin-project-lite",
  1659. ]
  1660. [[package]]
  1661. name = "event-listener-strategy"
  1662. version = "0.5.4"
  1663. source = "registry+https://github.com/rust-lang/crates.io-index"
  1664. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  1665. dependencies = [
  1666. "event-listener 5.4.0",
  1667. "pin-project-lite",
  1668. ]
  1669. [[package]]
  1670. name = "exr"
  1671. version = "1.73.0"
  1672. source = "registry+https://github.com/rust-lang/crates.io-index"
  1673. checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
  1674. dependencies = [
  1675. "bit_field",
  1676. "half",
  1677. "lebe",
  1678. "miniz_oxide",
  1679. "rayon-core",
  1680. "smallvec",
  1681. "zune-inflate",
  1682. ]
  1683. [[package]]
  1684. name = "fallible-iterator"
  1685. version = "0.3.0"
  1686. source = "registry+https://github.com/rust-lang/crates.io-index"
  1687. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  1688. [[package]]
  1689. name = "fallible-streaming-iterator"
  1690. version = "0.1.9"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  1693. [[package]]
  1694. name = "fastrand"
  1695. version = "2.3.0"
  1696. source = "registry+https://github.com/rust-lang/crates.io-index"
  1697. checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
  1698. [[package]]
  1699. name = "fdeflate"
  1700. version = "0.3.7"
  1701. source = "registry+https://github.com/rust-lang/crates.io-index"
  1702. checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
  1703. dependencies = [
  1704. "simd-adler32",
  1705. ]
  1706. [[package]]
  1707. name = "ff"
  1708. version = "0.13.1"
  1709. source = "registry+https://github.com/rust-lang/crates.io-index"
  1710. checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
  1711. dependencies = [
  1712. "bitvec",
  1713. "rand_core 0.6.4",
  1714. "subtle",
  1715. ]
  1716. [[package]]
  1717. name = "fiat-crypto"
  1718. version = "0.2.9"
  1719. source = "registry+https://github.com/rust-lang/crates.io-index"
  1720. checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
  1721. [[package]]
  1722. name = "figment"
  1723. version = "0.10.19"
  1724. source = "registry+https://github.com/rust-lang/crates.io-index"
  1725. checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
  1726. dependencies = [
  1727. "atomic 0.6.0",
  1728. "serde",
  1729. "toml 0.8.20",
  1730. "uncased",
  1731. "version_check",
  1732. ]
  1733. [[package]]
  1734. name = "file-rotate"
  1735. version = "0.7.6"
  1736. source = "registry+https://github.com/rust-lang/crates.io-index"
  1737. checksum = "7a3ed82142801f5b1363f7d463963d114db80f467e860b1cd82228eaebc627a0"
  1738. dependencies = [
  1739. "chrono",
  1740. "flate2",
  1741. ]
  1742. [[package]]
  1743. name = "filetime"
  1744. version = "0.2.25"
  1745. source = "registry+https://github.com/rust-lang/crates.io-index"
  1746. checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
  1747. dependencies = [
  1748. "cfg-if",
  1749. "libc",
  1750. "libredox",
  1751. "windows-sys 0.59.0",
  1752. ]
  1753. [[package]]
  1754. name = "flate2"
  1755. version = "1.1.1"
  1756. source = "registry+https://github.com/rust-lang/crates.io-index"
  1757. checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
  1758. dependencies = [
  1759. "crc32fast",
  1760. "miniz_oxide",
  1761. ]
  1762. [[package]]
  1763. name = "fluid-let"
  1764. version = "1.0.0"
  1765. source = "registry+https://github.com/rust-lang/crates.io-index"
  1766. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  1767. [[package]]
  1768. name = "fnv"
  1769. version = "1.0.7"
  1770. source = "registry+https://github.com/rust-lang/crates.io-index"
  1771. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1772. [[package]]
  1773. name = "foldhash"
  1774. version = "0.1.5"
  1775. source = "registry+https://github.com/rust-lang/crates.io-index"
  1776. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  1777. [[package]]
  1778. name = "font-types"
  1779. version = "0.8.4"
  1780. source = "registry+https://github.com/rust-lang/crates.io-index"
  1781. checksum = "1fa6a5e5a77b5f3f7f9e32879f484aa5b3632ddfbe568a16266c904a6f32cdaf"
  1782. dependencies = [
  1783. "bytemuck",
  1784. ]
  1785. [[package]]
  1786. name = "fontconfig-cache-parser"
  1787. version = "0.2.0"
  1788. source = "registry+https://github.com/rust-lang/crates.io-index"
  1789. checksum = "a7f8afb20c8069fd676d27b214559a337cc619a605d25a87baa90b49a06f3b18"
  1790. dependencies = [
  1791. "bytemuck",
  1792. "thiserror 1.0.69",
  1793. ]
  1794. [[package]]
  1795. name = "fontique"
  1796. version = "0.3.0"
  1797. source = "git+https://github.com/linebender/parley.git#d53a05820799a88b23a9712d9d026378a2699403"
  1798. dependencies = [
  1799. "bytemuck",
  1800. "fontconfig-cache-parser",
  1801. "hashbrown 0.15.2",
  1802. "icu_locid",
  1803. "memmap2",
  1804. "objc2-core-foundation",
  1805. "objc2-core-text",
  1806. "objc2-foundation",
  1807. "peniko",
  1808. "read-fonts",
  1809. "roxmltree",
  1810. "smallvec",
  1811. "windows",
  1812. "windows-core 0.58.0",
  1813. ]
  1814. [[package]]
  1815. name = "foreign-types"
  1816. version = "0.5.0"
  1817. source = "registry+https://github.com/rust-lang/crates.io-index"
  1818. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  1819. dependencies = [
  1820. "foreign-types-macros",
  1821. "foreign-types-shared",
  1822. ]
  1823. [[package]]
  1824. name = "foreign-types-macros"
  1825. version = "0.2.3"
  1826. source = "registry+https://github.com/rust-lang/crates.io-index"
  1827. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  1828. dependencies = [
  1829. "proc-macro2",
  1830. "quote",
  1831. "syn 2.0.100",
  1832. ]
  1833. [[package]]
  1834. name = "foreign-types-shared"
  1835. version = "0.3.1"
  1836. source = "registry+https://github.com/rust-lang/crates.io-index"
  1837. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  1838. [[package]]
  1839. name = "form_urlencoded"
  1840. version = "1.2.1"
  1841. source = "registry+https://github.com/rust-lang/crates.io-index"
  1842. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1843. dependencies = [
  1844. "percent-encoding",
  1845. ]
  1846. [[package]]
  1847. name = "freetype-rs"
  1848. version = "0.37.0"
  1849. source = "git+https://github.com/narodnik/freetype-rs#bad2e69dc20d35f33eaee8cd26a2dbf588026ea8"
  1850. dependencies = [
  1851. "bitflags 2.9.0",
  1852. "freetype-sys",
  1853. "libc",
  1854. ]
  1855. [[package]]
  1856. name = "freetype-sys"
  1857. version = "0.22.1"
  1858. source = "git+https://github.com/narodnik/freetype-sys2#ed8af21a697670e06fc5f072c5b2276ebe7f76ec"
  1859. dependencies = [
  1860. "cc",
  1861. "libz-sys",
  1862. "pkg-config",
  1863. ]
  1864. [[package]]
  1865. name = "fs-mistrust"
  1866. version = "0.9.1"
  1867. source = "registry+https://github.com/rust-lang/crates.io-index"
  1868. checksum = "cf4cb1d3bd5de41d56855c3aa0b35fa49d7cf2ff987f25d92df10f0b8c53c3b0"
  1869. dependencies = [
  1870. "derive_builder_fork_arti",
  1871. "dirs 6.0.0",
  1872. "libc",
  1873. "once_cell",
  1874. "pwd-grp",
  1875. "serde",
  1876. "thiserror 2.0.12",
  1877. "walkdir",
  1878. ]
  1879. [[package]]
  1880. name = "fs2"
  1881. version = "0.4.3"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1884. dependencies = [
  1885. "libc",
  1886. "winapi",
  1887. ]
  1888. [[package]]
  1889. name = "fslock"
  1890. version = "0.2.1"
  1891. source = "registry+https://github.com/rust-lang/crates.io-index"
  1892. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  1893. dependencies = [
  1894. "libc",
  1895. "winapi",
  1896. ]
  1897. [[package]]
  1898. name = "fslock-arti-fork"
  1899. version = "0.2.0"
  1900. source = "registry+https://github.com/rust-lang/crates.io-index"
  1901. checksum = "8b21bd626aaab7b904b20bef6d9e06298914a0c8d9fb8b010483766b2e532791"
  1902. dependencies = [
  1903. "libc",
  1904. "winapi",
  1905. ]
  1906. [[package]]
  1907. name = "fslock-guard"
  1908. version = "0.2.2"
  1909. source = "registry+https://github.com/rust-lang/crates.io-index"
  1910. checksum = "4dd65ae40b736ed57be8f11668c12ef6689e2f8609b36da22ff8f4a863a954d3"
  1911. dependencies = [
  1912. "fslock-arti-fork",
  1913. "thiserror 2.0.12",
  1914. "winapi",
  1915. ]
  1916. [[package]]
  1917. name = "funty"
  1918. version = "2.0.0"
  1919. source = "registry+https://github.com/rust-lang/crates.io-index"
  1920. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  1921. [[package]]
  1922. name = "futures"
  1923. version = "0.3.31"
  1924. source = "registry+https://github.com/rust-lang/crates.io-index"
  1925. checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
  1926. dependencies = [
  1927. "futures-channel",
  1928. "futures-core",
  1929. "futures-executor",
  1930. "futures-io",
  1931. "futures-sink",
  1932. "futures-task",
  1933. "futures-util",
  1934. ]
  1935. [[package]]
  1936. name = "futures-channel"
  1937. version = "0.3.31"
  1938. source = "registry+https://github.com/rust-lang/crates.io-index"
  1939. checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
  1940. dependencies = [
  1941. "futures-core",
  1942. "futures-sink",
  1943. ]
  1944. [[package]]
  1945. name = "futures-core"
  1946. version = "0.3.31"
  1947. source = "registry+https://github.com/rust-lang/crates.io-index"
  1948. checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
  1949. [[package]]
  1950. name = "futures-executor"
  1951. version = "0.3.31"
  1952. source = "registry+https://github.com/rust-lang/crates.io-index"
  1953. checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
  1954. dependencies = [
  1955. "futures-core",
  1956. "futures-task",
  1957. "futures-util",
  1958. ]
  1959. [[package]]
  1960. name = "futures-io"
  1961. version = "0.3.31"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
  1964. [[package]]
  1965. name = "futures-lite"
  1966. version = "2.6.0"
  1967. source = "registry+https://github.com/rust-lang/crates.io-index"
  1968. checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
  1969. dependencies = [
  1970. "fastrand",
  1971. "futures-core",
  1972. "futures-io",
  1973. "parking",
  1974. "pin-project-lite",
  1975. ]
  1976. [[package]]
  1977. name = "futures-macro"
  1978. version = "0.3.31"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
  1981. dependencies = [
  1982. "proc-macro2",
  1983. "quote",
  1984. "syn 2.0.100",
  1985. ]
  1986. [[package]]
  1987. name = "futures-rustls"
  1988. version = "0.26.0"
  1989. source = "registry+https://github.com/rust-lang/crates.io-index"
  1990. checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb"
  1991. dependencies = [
  1992. "futures-io",
  1993. "rustls",
  1994. "rustls-pki-types",
  1995. ]
  1996. [[package]]
  1997. name = "futures-sink"
  1998. version = "0.3.31"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
  2001. [[package]]
  2002. name = "futures-task"
  2003. version = "0.3.31"
  2004. source = "registry+https://github.com/rust-lang/crates.io-index"
  2005. checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
  2006. [[package]]
  2007. name = "futures-util"
  2008. version = "0.3.31"
  2009. source = "registry+https://github.com/rust-lang/crates.io-index"
  2010. checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
  2011. dependencies = [
  2012. "futures-channel",
  2013. "futures-core",
  2014. "futures-io",
  2015. "futures-macro",
  2016. "futures-sink",
  2017. "futures-task",
  2018. "memchr",
  2019. "pin-project-lite",
  2020. "pin-utils",
  2021. "slab",
  2022. ]
  2023. [[package]]
  2024. name = "fxhash"
  2025. version = "0.2.1"
  2026. source = "registry+https://github.com/rust-lang/crates.io-index"
  2027. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2028. dependencies = [
  2029. "byteorder",
  2030. ]
  2031. [[package]]
  2032. name = "generic-array"
  2033. version = "0.14.7"
  2034. source = "registry+https://github.com/rust-lang/crates.io-index"
  2035. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2036. dependencies = [
  2037. "typenum",
  2038. "version_check",
  2039. "zeroize",
  2040. ]
  2041. [[package]]
  2042. name = "getrandom"
  2043. version = "0.2.15"
  2044. source = "registry+https://github.com/rust-lang/crates.io-index"
  2045. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  2046. dependencies = [
  2047. "cfg-if",
  2048. "js-sys",
  2049. "libc",
  2050. "wasi 0.11.0+wasi-snapshot-preview1",
  2051. "wasm-bindgen",
  2052. ]
  2053. [[package]]
  2054. name = "getrandom"
  2055. version = "0.3.2"
  2056. source = "registry+https://github.com/rust-lang/crates.io-index"
  2057. checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
  2058. dependencies = [
  2059. "cfg-if",
  2060. "libc",
  2061. "r-efi",
  2062. "wasi 0.14.2+wasi-0.2.4",
  2063. ]
  2064. [[package]]
  2065. name = "gif"
  2066. version = "0.13.1"
  2067. source = "registry+https://github.com/rust-lang/crates.io-index"
  2068. checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
  2069. dependencies = [
  2070. "color_quant",
  2071. "weezl",
  2072. ]
  2073. [[package]]
  2074. name = "glam"
  2075. version = "0.29.3"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
  2078. [[package]]
  2079. name = "glob"
  2080. version = "0.3.2"
  2081. source = "registry+https://github.com/rust-lang/crates.io-index"
  2082. checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
  2083. [[package]]
  2084. name = "glob-match"
  2085. version = "0.2.1"
  2086. source = "registry+https://github.com/rust-lang/crates.io-index"
  2087. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  2088. [[package]]
  2089. name = "gloo-timers"
  2090. version = "0.3.0"
  2091. source = "registry+https://github.com/rust-lang/crates.io-index"
  2092. checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
  2093. dependencies = [
  2094. "futures-channel",
  2095. "futures-core",
  2096. "js-sys",
  2097. "wasm-bindgen",
  2098. ]
  2099. [[package]]
  2100. name = "group"
  2101. version = "0.13.0"
  2102. source = "registry+https://github.com/rust-lang/crates.io-index"
  2103. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2104. dependencies = [
  2105. "ff",
  2106. "rand_core 0.6.4",
  2107. "subtle",
  2108. ]
  2109. [[package]]
  2110. name = "growable-bloom-filter"
  2111. version = "2.1.1"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "d174ccb4ba660d431329e7f0797870d0a4281e36353ec4b4a3c5eab6c2cfb6f1"
  2114. dependencies = [
  2115. "serde",
  2116. "serde_bytes",
  2117. "serde_derive",
  2118. "xxhash-rust",
  2119. ]
  2120. [[package]]
  2121. name = "half"
  2122. version = "2.6.0"
  2123. source = "registry+https://github.com/rust-lang/crates.io-index"
  2124. checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
  2125. dependencies = [
  2126. "cfg-if",
  2127. "crunchy",
  2128. ]
  2129. [[package]]
  2130. name = "halo2_gadgets"
  2131. version = "0.3.1"
  2132. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2133. dependencies = [
  2134. "arrayvec",
  2135. "bitvec",
  2136. "ff",
  2137. "group",
  2138. "halo2_poseidon",
  2139. "halo2_proofs",
  2140. "lazy_static",
  2141. "pasta_curves",
  2142. "rand 0.8.5",
  2143. "sinsemilla",
  2144. "subtle",
  2145. "uint",
  2146. ]
  2147. [[package]]
  2148. name = "halo2_poseidon"
  2149. version = "0.1.0"
  2150. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2151. dependencies = [
  2152. "bitvec",
  2153. "ff",
  2154. "group",
  2155. "pasta_curves",
  2156. ]
  2157. [[package]]
  2158. name = "halo2_proofs"
  2159. version = "0.3.0"
  2160. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2161. dependencies = [
  2162. "blake2b_simd",
  2163. "ff",
  2164. "group",
  2165. "maybe-rayon",
  2166. "pasta_curves",
  2167. "rand_core 0.6.4",
  2168. "tracing",
  2169. ]
  2170. [[package]]
  2171. name = "harfbuzz-sys"
  2172. version = "0.6.1"
  2173. source = "git+https://github.com/narodnik/rust-harfbuzz2#450d37dad132906335ec760cd51463a1ede359ee"
  2174. dependencies = [
  2175. "cc",
  2176. "core-graphics",
  2177. "core-text",
  2178. "foreign-types",
  2179. "freetype-sys",
  2180. "pkg-config",
  2181. "windows",
  2182. ]
  2183. [[package]]
  2184. name = "hashbrown"
  2185. version = "0.12.3"
  2186. source = "registry+https://github.com/rust-lang/crates.io-index"
  2187. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2188. [[package]]
  2189. name = "hashbrown"
  2190. version = "0.14.5"
  2191. source = "registry+https://github.com/rust-lang/crates.io-index"
  2192. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2193. dependencies = [
  2194. "ahash",
  2195. ]
  2196. [[package]]
  2197. name = "hashbrown"
  2198. version = "0.15.2"
  2199. source = "registry+https://github.com/rust-lang/crates.io-index"
  2200. checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
  2201. dependencies = [
  2202. "allocator-api2",
  2203. "equivalent",
  2204. "foldhash",
  2205. ]
  2206. [[package]]
  2207. name = "hashlink"
  2208. version = "0.9.1"
  2209. source = "registry+https://github.com/rust-lang/crates.io-index"
  2210. checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
  2211. dependencies = [
  2212. "hashbrown 0.14.5",
  2213. ]
  2214. [[package]]
  2215. name = "heck"
  2216. version = "0.3.3"
  2217. source = "registry+https://github.com/rust-lang/crates.io-index"
  2218. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2219. dependencies = [
  2220. "unicode-segmentation",
  2221. ]
  2222. [[package]]
  2223. name = "heck"
  2224. version = "0.4.1"
  2225. source = "registry+https://github.com/rust-lang/crates.io-index"
  2226. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2227. [[package]]
  2228. name = "heck"
  2229. version = "0.5.0"
  2230. source = "registry+https://github.com/rust-lang/crates.io-index"
  2231. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2232. [[package]]
  2233. name = "hermit-abi"
  2234. version = "0.1.19"
  2235. source = "registry+https://github.com/rust-lang/crates.io-index"
  2236. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  2237. dependencies = [
  2238. "libc",
  2239. ]
  2240. [[package]]
  2241. name = "hermit-abi"
  2242. version = "0.4.0"
  2243. source = "registry+https://github.com/rust-lang/crates.io-index"
  2244. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  2245. [[package]]
  2246. name = "hex"
  2247. version = "0.4.3"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2250. [[package]]
  2251. name = "hkdf"
  2252. version = "0.12.4"
  2253. source = "registry+https://github.com/rust-lang/crates.io-index"
  2254. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2255. dependencies = [
  2256. "hmac",
  2257. ]
  2258. [[package]]
  2259. name = "hmac"
  2260. version = "0.12.1"
  2261. source = "registry+https://github.com/rust-lang/crates.io-index"
  2262. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2263. dependencies = [
  2264. "digest",
  2265. ]
  2266. [[package]]
  2267. name = "hostname-validator"
  2268. version = "1.1.1"
  2269. source = "registry+https://github.com/rust-lang/crates.io-index"
  2270. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  2271. [[package]]
  2272. name = "http"
  2273. version = "1.3.1"
  2274. source = "registry+https://github.com/rust-lang/crates.io-index"
  2275. checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
  2276. dependencies = [
  2277. "bytes",
  2278. "fnv",
  2279. "itoa",
  2280. ]
  2281. [[package]]
  2282. name = "httparse"
  2283. version = "1.10.1"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  2286. [[package]]
  2287. name = "httpdate"
  2288. version = "1.0.3"
  2289. source = "registry+https://github.com/rust-lang/crates.io-index"
  2290. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  2291. [[package]]
  2292. name = "humantime"
  2293. version = "2.2.0"
  2294. source = "registry+https://github.com/rust-lang/crates.io-index"
  2295. checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
  2296. [[package]]
  2297. name = "humantime-serde"
  2298. version = "1.1.1"
  2299. source = "registry+https://github.com/rust-lang/crates.io-index"
  2300. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  2301. dependencies = [
  2302. "humantime",
  2303. "serde",
  2304. ]
  2305. [[package]]
  2306. name = "iana-time-zone"
  2307. version = "0.1.63"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
  2310. dependencies = [
  2311. "android_system_properties",
  2312. "core-foundation-sys",
  2313. "iana-time-zone-haiku",
  2314. "js-sys",
  2315. "log",
  2316. "wasm-bindgen",
  2317. "windows-core 0.61.0",
  2318. ]
  2319. [[package]]
  2320. name = "iana-time-zone-haiku"
  2321. version = "0.1.2"
  2322. source = "registry+https://github.com/rust-lang/crates.io-index"
  2323. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2324. dependencies = [
  2325. "cc",
  2326. ]
  2327. [[package]]
  2328. name = "icu_collections"
  2329. version = "1.5.0"
  2330. source = "registry+https://github.com/rust-lang/crates.io-index"
  2331. checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
  2332. dependencies = [
  2333. "displaydoc",
  2334. "yoke",
  2335. "zerofrom",
  2336. "zerovec 0.10.4",
  2337. ]
  2338. [[package]]
  2339. name = "icu_locid"
  2340. version = "1.5.0"
  2341. source = "registry+https://github.com/rust-lang/crates.io-index"
  2342. checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
  2343. dependencies = [
  2344. "displaydoc",
  2345. "litemap",
  2346. "tinystr 0.7.6",
  2347. "writeable",
  2348. "zerovec 0.10.4",
  2349. ]
  2350. [[package]]
  2351. name = "icu_locid_transform"
  2352. version = "1.5.0"
  2353. source = "registry+https://github.com/rust-lang/crates.io-index"
  2354. checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
  2355. dependencies = [
  2356. "displaydoc",
  2357. "icu_locid",
  2358. "icu_locid_transform_data",
  2359. "icu_provider",
  2360. "tinystr 0.7.6",
  2361. "zerovec 0.10.4",
  2362. ]
  2363. [[package]]
  2364. name = "icu_locid_transform_data"
  2365. version = "1.5.1"
  2366. source = "registry+https://github.com/rust-lang/crates.io-index"
  2367. checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
  2368. [[package]]
  2369. name = "icu_normalizer"
  2370. version = "1.5.0"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
  2373. dependencies = [
  2374. "displaydoc",
  2375. "icu_collections",
  2376. "icu_normalizer_data",
  2377. "icu_properties",
  2378. "icu_provider",
  2379. "smallvec",
  2380. "utf16_iter",
  2381. "utf8_iter",
  2382. "write16",
  2383. "zerovec 0.10.4",
  2384. ]
  2385. [[package]]
  2386. name = "icu_normalizer_data"
  2387. version = "1.5.1"
  2388. source = "registry+https://github.com/rust-lang/crates.io-index"
  2389. checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
  2390. [[package]]
  2391. name = "icu_properties"
  2392. version = "1.5.1"
  2393. source = "registry+https://github.com/rust-lang/crates.io-index"
  2394. checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
  2395. dependencies = [
  2396. "displaydoc",
  2397. "icu_collections",
  2398. "icu_locid_transform",
  2399. "icu_properties_data",
  2400. "icu_provider",
  2401. "tinystr 0.7.6",
  2402. "zerovec 0.10.4",
  2403. ]
  2404. [[package]]
  2405. name = "icu_properties_data"
  2406. version = "1.5.1"
  2407. source = "registry+https://github.com/rust-lang/crates.io-index"
  2408. checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
  2409. [[package]]
  2410. name = "icu_provider"
  2411. version = "1.5.0"
  2412. source = "registry+https://github.com/rust-lang/crates.io-index"
  2413. checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
  2414. dependencies = [
  2415. "displaydoc",
  2416. "icu_locid",
  2417. "icu_provider_macros",
  2418. "stable_deref_trait",
  2419. "tinystr 0.7.6",
  2420. "writeable",
  2421. "yoke",
  2422. "zerofrom",
  2423. "zerovec 0.10.4",
  2424. ]
  2425. [[package]]
  2426. name = "icu_provider_macros"
  2427. version = "1.5.0"
  2428. source = "registry+https://github.com/rust-lang/crates.io-index"
  2429. checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
  2430. dependencies = [
  2431. "proc-macro2",
  2432. "quote",
  2433. "syn 2.0.100",
  2434. ]
  2435. [[package]]
  2436. name = "ident_case"
  2437. version = "1.0.1"
  2438. source = "registry+https://github.com/rust-lang/crates.io-index"
  2439. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2440. [[package]]
  2441. name = "idna"
  2442. version = "1.0.3"
  2443. source = "registry+https://github.com/rust-lang/crates.io-index"
  2444. checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
  2445. dependencies = [
  2446. "idna_adapter",
  2447. "smallvec",
  2448. "utf8_iter",
  2449. ]
  2450. [[package]]
  2451. name = "idna_adapter"
  2452. version = "1.2.0"
  2453. source = "registry+https://github.com/rust-lang/crates.io-index"
  2454. checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
  2455. dependencies = [
  2456. "icu_normalizer",
  2457. "icu_properties",
  2458. ]
  2459. [[package]]
  2460. name = "image"
  2461. version = "0.25.6"
  2462. source = "registry+https://github.com/rust-lang/crates.io-index"
  2463. checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
  2464. dependencies = [
  2465. "bytemuck",
  2466. "byteorder-lite",
  2467. "color_quant",
  2468. "exr",
  2469. "gif",
  2470. "image-webp",
  2471. "num-traits",
  2472. "png",
  2473. "qoi",
  2474. "ravif",
  2475. "rayon",
  2476. "rgb",
  2477. "tiff",
  2478. "zune-core",
  2479. "zune-jpeg",
  2480. ]
  2481. [[package]]
  2482. name = "image-webp"
  2483. version = "0.2.1"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "b77d01e822461baa8409e156015a1d91735549f0f2c17691bd2d996bef238f7f"
  2486. dependencies = [
  2487. "byteorder-lite",
  2488. "quick-error",
  2489. ]
  2490. [[package]]
  2491. name = "imgref"
  2492. version = "1.11.0"
  2493. source = "registry+https://github.com/rust-lang/crates.io-index"
  2494. checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
  2495. [[package]]
  2496. name = "incrementalmerkletree"
  2497. version = "0.7.1"
  2498. source = "registry+https://github.com/rust-lang/crates.io-index"
  2499. checksum = "216c71634ac6f6ed13c2102d64354c0a04dcbdc30e31692c5972d3974d8b6d97"
  2500. dependencies = [
  2501. "either",
  2502. ]
  2503. [[package]]
  2504. name = "indexmap"
  2505. version = "1.9.3"
  2506. source = "registry+https://github.com/rust-lang/crates.io-index"
  2507. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2508. dependencies = [
  2509. "autocfg",
  2510. "hashbrown 0.12.3",
  2511. "serde",
  2512. ]
  2513. [[package]]
  2514. name = "indexmap"
  2515. version = "2.9.0"
  2516. source = "registry+https://github.com/rust-lang/crates.io-index"
  2517. checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
  2518. dependencies = [
  2519. "equivalent",
  2520. "hashbrown 0.15.2",
  2521. "serde",
  2522. ]
  2523. [[package]]
  2524. name = "inotify"
  2525. version = "0.11.0"
  2526. source = "registry+https://github.com/rust-lang/crates.io-index"
  2527. checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
  2528. dependencies = [
  2529. "bitflags 2.9.0",
  2530. "inotify-sys",
  2531. "libc",
  2532. ]
  2533. [[package]]
  2534. name = "inotify-sys"
  2535. version = "0.1.5"
  2536. source = "registry+https://github.com/rust-lang/crates.io-index"
  2537. checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
  2538. dependencies = [
  2539. "libc",
  2540. ]
  2541. [[package]]
  2542. name = "inout"
  2543. version = "0.1.4"
  2544. source = "registry+https://github.com/rust-lang/crates.io-index"
  2545. checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
  2546. dependencies = [
  2547. "generic-array",
  2548. ]
  2549. [[package]]
  2550. name = "instant"
  2551. version = "0.1.13"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2554. dependencies = [
  2555. "cfg-if",
  2556. ]
  2557. [[package]]
  2558. name = "interpolate_name"
  2559. version = "0.2.4"
  2560. source = "registry+https://github.com/rust-lang/crates.io-index"
  2561. checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
  2562. dependencies = [
  2563. "proc-macro2",
  2564. "quote",
  2565. "syn 2.0.100",
  2566. ]
  2567. [[package]]
  2568. name = "inventory"
  2569. version = "0.3.20"
  2570. source = "registry+https://github.com/rust-lang/crates.io-index"
  2571. checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
  2572. dependencies = [
  2573. "rustversion",
  2574. ]
  2575. [[package]]
  2576. name = "itertools"
  2577. version = "0.12.1"
  2578. source = "registry+https://github.com/rust-lang/crates.io-index"
  2579. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2580. dependencies = [
  2581. "either",
  2582. ]
  2583. [[package]]
  2584. name = "itertools"
  2585. version = "0.14.0"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
  2588. dependencies = [
  2589. "either",
  2590. ]
  2591. [[package]]
  2592. name = "itoa"
  2593. version = "1.0.15"
  2594. source = "registry+https://github.com/rust-lang/crates.io-index"
  2595. checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
  2596. [[package]]
  2597. name = "jobserver"
  2598. version = "0.1.33"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
  2601. dependencies = [
  2602. "getrandom 0.3.2",
  2603. "libc",
  2604. ]
  2605. [[package]]
  2606. name = "jpeg-decoder"
  2607. version = "0.3.1"
  2608. source = "registry+https://github.com/rust-lang/crates.io-index"
  2609. checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
  2610. [[package]]
  2611. name = "js-sys"
  2612. version = "0.3.77"
  2613. source = "registry+https://github.com/rust-lang/crates.io-index"
  2614. checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
  2615. dependencies = [
  2616. "once_cell",
  2617. "wasm-bindgen",
  2618. ]
  2619. [[package]]
  2620. name = "k12"
  2621. version = "0.3.0"
  2622. source = "registry+https://github.com/rust-lang/crates.io-index"
  2623. checksum = "f4dc5fdb62af2f520116927304f15d25b3c2667b4817b90efdc045194c912c54"
  2624. dependencies = [
  2625. "digest",
  2626. "sha3",
  2627. ]
  2628. [[package]]
  2629. name = "keccak"
  2630. version = "0.1.5"
  2631. source = "registry+https://github.com/rust-lang/crates.io-index"
  2632. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  2633. dependencies = [
  2634. "cpufeatures",
  2635. ]
  2636. [[package]]
  2637. name = "kqueue"
  2638. version = "1.0.8"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
  2641. dependencies = [
  2642. "kqueue-sys",
  2643. "libc",
  2644. ]
  2645. [[package]]
  2646. name = "kqueue-sys"
  2647. version = "1.0.4"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
  2650. dependencies = [
  2651. "bitflags 1.3.2",
  2652. "libc",
  2653. ]
  2654. [[package]]
  2655. name = "kurbo"
  2656. version = "0.11.1"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "89234b2cc610a7dd927ebde6b41dd1a5d4214cffaef4cf1fb2195d592f92518f"
  2659. dependencies = [
  2660. "arrayvec",
  2661. "smallvec",
  2662. ]
  2663. [[package]]
  2664. name = "kv-log-macro"
  2665. version = "1.0.7"
  2666. source = "registry+https://github.com/rust-lang/crates.io-index"
  2667. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2668. dependencies = [
  2669. "log",
  2670. ]
  2671. [[package]]
  2672. name = "lazy_static"
  2673. version = "1.5.0"
  2674. source = "registry+https://github.com/rust-lang/crates.io-index"
  2675. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  2676. dependencies = [
  2677. "spin",
  2678. ]
  2679. [[package]]
  2680. name = "lebe"
  2681. version = "0.5.2"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
  2684. [[package]]
  2685. name = "libc"
  2686. version = "0.2.172"
  2687. source = "registry+https://github.com/rust-lang/crates.io-index"
  2688. checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
  2689. [[package]]
  2690. name = "libfuzzer-sys"
  2691. version = "0.4.9"
  2692. source = "registry+https://github.com/rust-lang/crates.io-index"
  2693. checksum = "cf78f52d400cf2d84a3a973a78a592b4adc535739e0a5597a0da6f0c357adc75"
  2694. dependencies = [
  2695. "arbitrary",
  2696. "cc",
  2697. ]
  2698. [[package]]
  2699. name = "liblzma"
  2700. version = "0.3.6"
  2701. source = "registry+https://github.com/rust-lang/crates.io-index"
  2702. checksum = "a631d2b24be269775ba8f7789a6afa1ac228346a20c9e87dbbbe4975a79fd764"
  2703. dependencies = [
  2704. "liblzma-sys",
  2705. ]
  2706. [[package]]
  2707. name = "liblzma-sys"
  2708. version = "0.3.13"
  2709. source = "registry+https://github.com/rust-lang/crates.io-index"
  2710. checksum = "efdadf1a99aceff34553de1461674ab6ac7e7f0843ae9875e339f4a14eb43475"
  2711. dependencies = [
  2712. "cc",
  2713. "libc",
  2714. "pkg-config",
  2715. ]
  2716. [[package]]
  2717. name = "libm"
  2718. version = "0.2.11"
  2719. source = "registry+https://github.com/rust-lang/crates.io-index"
  2720. checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
  2721. [[package]]
  2722. name = "libredox"
  2723. version = "0.1.3"
  2724. source = "registry+https://github.com/rust-lang/crates.io-index"
  2725. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2726. dependencies = [
  2727. "bitflags 2.9.0",
  2728. "libc",
  2729. "redox_syscall 0.5.11",
  2730. ]
  2731. [[package]]
  2732. name = "libsqlite3-sys"
  2733. version = "0.30.1"
  2734. source = "registry+https://github.com/rust-lang/crates.io-index"
  2735. checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
  2736. dependencies = [
  2737. "cc",
  2738. "pkg-config",
  2739. "vcpkg",
  2740. ]
  2741. [[package]]
  2742. name = "libz-sys"
  2743. version = "1.1.22"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
  2746. dependencies = [
  2747. "cc",
  2748. "libc",
  2749. "pkg-config",
  2750. "vcpkg",
  2751. ]
  2752. [[package]]
  2753. name = "linux-raw-sys"
  2754. version = "0.4.15"
  2755. source = "registry+https://github.com/rust-lang/crates.io-index"
  2756. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  2757. [[package]]
  2758. name = "linux-raw-sys"
  2759. version = "0.9.4"
  2760. source = "registry+https://github.com/rust-lang/crates.io-index"
  2761. checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
  2762. [[package]]
  2763. name = "litemap"
  2764. version = "0.7.5"
  2765. source = "registry+https://github.com/rust-lang/crates.io-index"
  2766. checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
  2767. [[package]]
  2768. name = "lock_api"
  2769. version = "0.4.12"
  2770. source = "registry+https://github.com/rust-lang/crates.io-index"
  2771. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2772. dependencies = [
  2773. "autocfg",
  2774. "scopeguard",
  2775. ]
  2776. [[package]]
  2777. name = "log"
  2778. version = "0.4.27"
  2779. source = "registry+https://github.com/rust-lang/crates.io-index"
  2780. checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
  2781. dependencies = [
  2782. "value-bag",
  2783. ]
  2784. [[package]]
  2785. name = "loop9"
  2786. version = "0.1.5"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
  2789. dependencies = [
  2790. "imgref",
  2791. ]
  2792. [[package]]
  2793. name = "malloc_buf"
  2794. version = "0.0.6"
  2795. source = "registry+https://github.com/rust-lang/crates.io-index"
  2796. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  2797. dependencies = [
  2798. "libc",
  2799. ]
  2800. [[package]]
  2801. name = "matchers"
  2802. version = "0.1.0"
  2803. source = "registry+https://github.com/rust-lang/crates.io-index"
  2804. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2805. dependencies = [
  2806. "regex-automata 0.1.10",
  2807. ]
  2808. [[package]]
  2809. name = "maybe-rayon"
  2810. version = "0.1.1"
  2811. source = "registry+https://github.com/rust-lang/crates.io-index"
  2812. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  2813. dependencies = [
  2814. "cfg-if",
  2815. "rayon",
  2816. ]
  2817. [[package]]
  2818. name = "memchr"
  2819. version = "2.7.4"
  2820. source = "registry+https://github.com/rust-lang/crates.io-index"
  2821. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2822. [[package]]
  2823. name = "memmap2"
  2824. version = "0.9.5"
  2825. source = "registry+https://github.com/rust-lang/crates.io-index"
  2826. checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
  2827. dependencies = [
  2828. "libc",
  2829. ]
  2830. [[package]]
  2831. name = "merlin"
  2832. version = "3.0.0"
  2833. source = "registry+https://github.com/rust-lang/crates.io-index"
  2834. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  2835. dependencies = [
  2836. "byteorder",
  2837. "keccak",
  2838. "rand_core 0.6.4",
  2839. "zeroize",
  2840. ]
  2841. [[package]]
  2842. name = "minimal-lexical"
  2843. version = "0.2.1"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2846. [[package]]
  2847. name = "miniquad"
  2848. version = "0.4.8"
  2849. source = "git+https://github.com/narodnik/miniquad#009352f4348f2d9ea9752246d219438d7af8c75c"
  2850. dependencies = [
  2851. "libc",
  2852. "ndk-sys",
  2853. "objc-rs",
  2854. "winapi",
  2855. ]
  2856. [[package]]
  2857. name = "miniz_oxide"
  2858. version = "0.8.8"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
  2861. dependencies = [
  2862. "adler2",
  2863. "simd-adler32",
  2864. ]
  2865. [[package]]
  2866. name = "mio"
  2867. version = "1.0.3"
  2868. source = "registry+https://github.com/rust-lang/crates.io-index"
  2869. checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
  2870. dependencies = [
  2871. "libc",
  2872. "log",
  2873. "wasi 0.11.0+wasi-snapshot-preview1",
  2874. "windows-sys 0.52.0",
  2875. ]
  2876. [[package]]
  2877. name = "ndk-sys"
  2878. version = "0.2.2"
  2879. source = "registry+https://github.com/rust-lang/crates.io-index"
  2880. checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121"
  2881. [[package]]
  2882. name = "new_debug_unreachable"
  2883. version = "1.0.6"
  2884. source = "registry+https://github.com/rust-lang/crates.io-index"
  2885. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  2886. [[package]]
  2887. name = "nom"
  2888. version = "7.1.3"
  2889. source = "registry+https://github.com/rust-lang/crates.io-index"
  2890. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2891. dependencies = [
  2892. "memchr",
  2893. "minimal-lexical",
  2894. ]
  2895. [[package]]
  2896. name = "noop_proc_macro"
  2897. version = "0.3.0"
  2898. source = "registry+https://github.com/rust-lang/crates.io-index"
  2899. checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
  2900. [[package]]
  2901. name = "notify"
  2902. version = "8.0.0"
  2903. source = "registry+https://github.com/rust-lang/crates.io-index"
  2904. checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
  2905. dependencies = [
  2906. "bitflags 2.9.0",
  2907. "filetime",
  2908. "inotify",
  2909. "kqueue",
  2910. "libc",
  2911. "log",
  2912. "mio",
  2913. "notify-types",
  2914. "walkdir",
  2915. "windows-sys 0.59.0",
  2916. ]
  2917. [[package]]
  2918. name = "notify-types"
  2919. version = "2.0.0"
  2920. source = "registry+https://github.com/rust-lang/crates.io-index"
  2921. checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
  2922. [[package]]
  2923. name = "nu-ansi-term"
  2924. version = "0.46.0"
  2925. source = "registry+https://github.com/rust-lang/crates.io-index"
  2926. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2927. dependencies = [
  2928. "overload",
  2929. "winapi",
  2930. ]
  2931. [[package]]
  2932. name = "num-bigint"
  2933. version = "0.4.6"
  2934. source = "registry+https://github.com/rust-lang/crates.io-index"
  2935. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  2936. dependencies = [
  2937. "num-integer",
  2938. "num-traits",
  2939. ]
  2940. [[package]]
  2941. name = "num-bigint-dig"
  2942. version = "0.8.4"
  2943. source = "registry+https://github.com/rust-lang/crates.io-index"
  2944. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  2945. dependencies = [
  2946. "byteorder",
  2947. "lazy_static",
  2948. "libm",
  2949. "num-integer",
  2950. "num-iter",
  2951. "num-traits",
  2952. "rand 0.8.5",
  2953. "smallvec",
  2954. "zeroize",
  2955. ]
  2956. [[package]]
  2957. name = "num-conv"
  2958. version = "0.1.0"
  2959. source = "registry+https://github.com/rust-lang/crates.io-index"
  2960. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  2961. [[package]]
  2962. name = "num-derive"
  2963. version = "0.4.2"
  2964. source = "registry+https://github.com/rust-lang/crates.io-index"
  2965. checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
  2966. dependencies = [
  2967. "proc-macro2",
  2968. "quote",
  2969. "syn 2.0.100",
  2970. ]
  2971. [[package]]
  2972. name = "num-integer"
  2973. version = "0.1.46"
  2974. source = "registry+https://github.com/rust-lang/crates.io-index"
  2975. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  2976. dependencies = [
  2977. "num-traits",
  2978. ]
  2979. [[package]]
  2980. name = "num-iter"
  2981. version = "0.1.45"
  2982. source = "registry+https://github.com/rust-lang/crates.io-index"
  2983. checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
  2984. dependencies = [
  2985. "autocfg",
  2986. "num-integer",
  2987. "num-traits",
  2988. ]
  2989. [[package]]
  2990. name = "num-rational"
  2991. version = "0.4.2"
  2992. source = "registry+https://github.com/rust-lang/crates.io-index"
  2993. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  2994. dependencies = [
  2995. "num-bigint",
  2996. "num-integer",
  2997. "num-traits",
  2998. ]
  2999. [[package]]
  3000. name = "num-traits"
  3001. version = "0.2.19"
  3002. source = "registry+https://github.com/rust-lang/crates.io-index"
  3003. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  3004. dependencies = [
  3005. "autocfg",
  3006. "libm",
  3007. ]
  3008. [[package]]
  3009. name = "num_enum"
  3010. version = "0.7.3"
  3011. source = "registry+https://github.com/rust-lang/crates.io-index"
  3012. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  3013. dependencies = [
  3014. "num_enum_derive",
  3015. ]
  3016. [[package]]
  3017. name = "num_enum_derive"
  3018. version = "0.7.3"
  3019. source = "registry+https://github.com/rust-lang/crates.io-index"
  3020. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  3021. dependencies = [
  3022. "proc-macro-crate",
  3023. "proc-macro2",
  3024. "quote",
  3025. "syn 2.0.100",
  3026. ]
  3027. [[package]]
  3028. name = "num_threads"
  3029. version = "0.1.7"
  3030. source = "registry+https://github.com/rust-lang/crates.io-index"
  3031. checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
  3032. dependencies = [
  3033. "libc",
  3034. ]
  3035. [[package]]
  3036. name = "objc-rs"
  3037. version = "0.2.8"
  3038. source = "registry+https://github.com/rust-lang/crates.io-index"
  3039. checksum = "64a1e7069a2525126bf12a9f1f7916835fafade384fb27cabf698e745e2a1eb8"
  3040. dependencies = [
  3041. "malloc_buf",
  3042. ]
  3043. [[package]]
  3044. name = "objc2"
  3045. version = "0.6.0"
  3046. source = "registry+https://github.com/rust-lang/crates.io-index"
  3047. checksum = "3531f65190d9cff863b77a99857e74c314dd16bf56c538c4b57c7cbc3f3a6e59"
  3048. dependencies = [
  3049. "objc2-encode",
  3050. ]
  3051. [[package]]
  3052. name = "objc2-core-foundation"
  3053. version = "0.3.0"
  3054. source = "registry+https://github.com/rust-lang/crates.io-index"
  3055. checksum = "daeaf60f25471d26948a1c2f840e3f7d86f4109e3af4e8e4b5cd70c39690d925"
  3056. dependencies = [
  3057. "bitflags 2.9.0",
  3058. ]
  3059. [[package]]
  3060. name = "objc2-core-text"
  3061. version = "0.3.0"
  3062. source = "registry+https://github.com/rust-lang/crates.io-index"
  3063. checksum = "6fde15abfe00bf9f1eda220addbdfa6c62b0e5595e98208e8cdbc2ec0f6970a6"
  3064. dependencies = [
  3065. "bitflags 2.9.0",
  3066. "objc2-core-foundation",
  3067. ]
  3068. [[package]]
  3069. name = "objc2-encode"
  3070. version = "4.1.0"
  3071. source = "registry+https://github.com/rust-lang/crates.io-index"
  3072. checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
  3073. [[package]]
  3074. name = "objc2-foundation"
  3075. version = "0.3.0"
  3076. source = "registry+https://github.com/rust-lang/crates.io-index"
  3077. checksum = "3a21c6c9014b82c39515db5b396f91645182611c97d24637cf56ac01e5f8d998"
  3078. dependencies = [
  3079. "bitflags 2.9.0",
  3080. "objc2",
  3081. ]
  3082. [[package]]
  3083. name = "oid-registry"
  3084. version = "0.8.1"
  3085. source = "registry+https://github.com/rust-lang/crates.io-index"
  3086. checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
  3087. dependencies = [
  3088. "asn1-rs",
  3089. ]
  3090. [[package]]
  3091. name = "once_cell"
  3092. version = "1.21.3"
  3093. source = "registry+https://github.com/rust-lang/crates.io-index"
  3094. checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
  3095. [[package]]
  3096. name = "oneshot-fused-workaround"
  3097. version = "0.2.1"
  3098. source = "registry+https://github.com/rust-lang/crates.io-index"
  3099. checksum = "8e2f833c92b3bb159ddee62e27d611e056cd89373b4ba7ba6df8bcd00acdf1b5"
  3100. dependencies = [
  3101. "futures",
  3102. ]
  3103. [[package]]
  3104. name = "oneshot-fused-workaround"
  3105. version = "0.2.1"
  3106. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  3107. dependencies = [
  3108. "futures",
  3109. ]
  3110. [[package]]
  3111. name = "opaque-debug"
  3112. version = "0.3.1"
  3113. source = "registry+https://github.com/rust-lang/crates.io-index"
  3114. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  3115. [[package]]
  3116. name = "option-ext"
  3117. version = "0.2.0"
  3118. source = "registry+https://github.com/rust-lang/crates.io-index"
  3119. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  3120. [[package]]
  3121. name = "ordered-float"
  3122. version = "2.10.1"
  3123. source = "registry+https://github.com/rust-lang/crates.io-index"
  3124. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  3125. dependencies = [
  3126. "num-traits",
  3127. ]
  3128. [[package]]
  3129. name = "os_str_bytes"
  3130. version = "6.6.1"
  3131. source = "registry+https://github.com/rust-lang/crates.io-index"
  3132. checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
  3133. dependencies = [
  3134. "memchr",
  3135. ]
  3136. [[package]]
  3137. name = "overload"
  3138. version = "0.1.1"
  3139. source = "registry+https://github.com/rust-lang/crates.io-index"
  3140. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3141. [[package]]
  3142. name = "p256"
  3143. version = "0.13.2"
  3144. source = "registry+https://github.com/rust-lang/crates.io-index"
  3145. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  3146. dependencies = [
  3147. "ecdsa",
  3148. "elliptic-curve",
  3149. "primeorder",
  3150. "sha2",
  3151. ]
  3152. [[package]]
  3153. name = "p384"
  3154. version = "0.13.1"
  3155. source = "registry+https://github.com/rust-lang/crates.io-index"
  3156. checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
  3157. dependencies = [
  3158. "ecdsa",
  3159. "elliptic-curve",
  3160. "primeorder",
  3161. "sha2",
  3162. ]
  3163. [[package]]
  3164. name = "p521"
  3165. version = "0.13.3"
  3166. source = "registry+https://github.com/rust-lang/crates.io-index"
  3167. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  3168. dependencies = [
  3169. "base16ct",
  3170. "ecdsa",
  3171. "elliptic-curve",
  3172. "primeorder",
  3173. "rand_core 0.6.4",
  3174. "sha2",
  3175. ]
  3176. [[package]]
  3177. name = "parking"
  3178. version = "2.2.1"
  3179. source = "registry+https://github.com/rust-lang/crates.io-index"
  3180. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  3181. [[package]]
  3182. name = "parking_lot"
  3183. version = "0.11.2"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3186. dependencies = [
  3187. "instant",
  3188. "lock_api",
  3189. "parking_lot_core 0.8.6",
  3190. ]
  3191. [[package]]
  3192. name = "parking_lot"
  3193. version = "0.12.3"
  3194. source = "registry+https://github.com/rust-lang/crates.io-index"
  3195. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  3196. dependencies = [
  3197. "lock_api",
  3198. "parking_lot_core 0.9.10",
  3199. ]
  3200. [[package]]
  3201. name = "parking_lot_core"
  3202. version = "0.8.6"
  3203. source = "registry+https://github.com/rust-lang/crates.io-index"
  3204. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3205. dependencies = [
  3206. "cfg-if",
  3207. "instant",
  3208. "libc",
  3209. "redox_syscall 0.2.16",
  3210. "smallvec",
  3211. "winapi",
  3212. ]
  3213. [[package]]
  3214. name = "parking_lot_core"
  3215. version = "0.9.10"
  3216. source = "registry+https://github.com/rust-lang/crates.io-index"
  3217. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  3218. dependencies = [
  3219. "cfg-if",
  3220. "libc",
  3221. "redox_syscall 0.5.11",
  3222. "smallvec",
  3223. "windows-targets 0.52.6",
  3224. ]
  3225. [[package]]
  3226. name = "parley"
  3227. version = "0.3.0"
  3228. source = "git+https://github.com/linebender/parley.git#d53a05820799a88b23a9712d9d026378a2699403"
  3229. dependencies = [
  3230. "fontique",
  3231. "hashbrown 0.15.2",
  3232. "peniko",
  3233. "skrifa",
  3234. "swash",
  3235. ]
  3236. [[package]]
  3237. name = "pasta_curves"
  3238. version = "0.5.1"
  3239. source = "registry+https://github.com/rust-lang/crates.io-index"
  3240. checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095"
  3241. dependencies = [
  3242. "blake2b_simd",
  3243. "ff",
  3244. "group",
  3245. "lazy_static",
  3246. "rand 0.8.5",
  3247. "static_assertions",
  3248. "subtle",
  3249. ]
  3250. [[package]]
  3251. name = "paste"
  3252. version = "1.0.15"
  3253. source = "registry+https://github.com/rust-lang/crates.io-index"
  3254. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  3255. [[package]]
  3256. name = "pem"
  3257. version = "3.0.5"
  3258. source = "registry+https://github.com/rust-lang/crates.io-index"
  3259. checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
  3260. dependencies = [
  3261. "base64",
  3262. "serde",
  3263. ]
  3264. [[package]]
  3265. name = "pem-rfc7468"
  3266. version = "0.7.0"
  3267. source = "registry+https://github.com/rust-lang/crates.io-index"
  3268. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  3269. dependencies = [
  3270. "base64ct",
  3271. ]
  3272. [[package]]
  3273. name = "peniko"
  3274. version = "0.3.1"
  3275. source = "registry+https://github.com/rust-lang/crates.io-index"
  3276. checksum = "2ec061f435b573ff602b2c5690f1a5bfcf461327194654cfbfce4412b95cf2a1"
  3277. dependencies = [
  3278. "color",
  3279. "kurbo",
  3280. "smallvec",
  3281. ]
  3282. [[package]]
  3283. name = "percent-encoding"
  3284. version = "2.3.1"
  3285. source = "registry+https://github.com/rust-lang/crates.io-index"
  3286. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  3287. [[package]]
  3288. name = "phf"
  3289. version = "0.11.3"
  3290. source = "registry+https://github.com/rust-lang/crates.io-index"
  3291. checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
  3292. dependencies = [
  3293. "phf_macros",
  3294. "phf_shared",
  3295. ]
  3296. [[package]]
  3297. name = "phf_generator"
  3298. version = "0.11.3"
  3299. source = "registry+https://github.com/rust-lang/crates.io-index"
  3300. checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
  3301. dependencies = [
  3302. "phf_shared",
  3303. "rand 0.8.5",
  3304. ]
  3305. [[package]]
  3306. name = "phf_macros"
  3307. version = "0.11.3"
  3308. source = "registry+https://github.com/rust-lang/crates.io-index"
  3309. checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
  3310. dependencies = [
  3311. "phf_generator",
  3312. "phf_shared",
  3313. "proc-macro2",
  3314. "quote",
  3315. "syn 2.0.100",
  3316. ]
  3317. [[package]]
  3318. name = "phf_shared"
  3319. version = "0.11.3"
  3320. source = "registry+https://github.com/rust-lang/crates.io-index"
  3321. checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
  3322. dependencies = [
  3323. "siphasher",
  3324. ]
  3325. [[package]]
  3326. name = "pin-project"
  3327. version = "1.1.10"
  3328. source = "registry+https://github.com/rust-lang/crates.io-index"
  3329. checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
  3330. dependencies = [
  3331. "pin-project-internal",
  3332. ]
  3333. [[package]]
  3334. name = "pin-project-internal"
  3335. version = "1.1.10"
  3336. source = "registry+https://github.com/rust-lang/crates.io-index"
  3337. checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
  3338. dependencies = [
  3339. "proc-macro2",
  3340. "quote",
  3341. "syn 2.0.100",
  3342. ]
  3343. [[package]]
  3344. name = "pin-project-lite"
  3345. version = "0.2.16"
  3346. source = "registry+https://github.com/rust-lang/crates.io-index"
  3347. checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
  3348. [[package]]
  3349. name = "pin-utils"
  3350. version = "0.1.0"
  3351. source = "registry+https://github.com/rust-lang/crates.io-index"
  3352. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3353. [[package]]
  3354. name = "piper"
  3355. version = "0.2.4"
  3356. source = "registry+https://github.com/rust-lang/crates.io-index"
  3357. checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
  3358. dependencies = [
  3359. "atomic-waker",
  3360. "fastrand",
  3361. "futures-io",
  3362. ]
  3363. [[package]]
  3364. name = "pkcs1"
  3365. version = "0.7.5"
  3366. source = "registry+https://github.com/rust-lang/crates.io-index"
  3367. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  3368. dependencies = [
  3369. "der",
  3370. "pkcs8",
  3371. "spki",
  3372. ]
  3373. [[package]]
  3374. name = "pkcs8"
  3375. version = "0.10.2"
  3376. source = "registry+https://github.com/rust-lang/crates.io-index"
  3377. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  3378. dependencies = [
  3379. "der",
  3380. "spki",
  3381. ]
  3382. [[package]]
  3383. name = "pkg-config"
  3384. version = "0.3.32"
  3385. source = "registry+https://github.com/rust-lang/crates.io-index"
  3386. checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
  3387. [[package]]
  3388. name = "png"
  3389. version = "0.17.16"
  3390. source = "registry+https://github.com/rust-lang/crates.io-index"
  3391. checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
  3392. dependencies = [
  3393. "bitflags 1.3.2",
  3394. "crc32fast",
  3395. "fdeflate",
  3396. "flate2",
  3397. "miniz_oxide",
  3398. ]
  3399. [[package]]
  3400. name = "polling"
  3401. version = "3.7.4"
  3402. source = "registry+https://github.com/rust-lang/crates.io-index"
  3403. checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
  3404. dependencies = [
  3405. "cfg-if",
  3406. "concurrent-queue",
  3407. "hermit-abi 0.4.0",
  3408. "pin-project-lite",
  3409. "rustix 0.38.44",
  3410. "tracing",
  3411. "windows-sys 0.59.0",
  3412. ]
  3413. [[package]]
  3414. name = "poly1305"
  3415. version = "0.8.0"
  3416. source = "registry+https://github.com/rust-lang/crates.io-index"
  3417. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  3418. dependencies = [
  3419. "cpufeatures",
  3420. "opaque-debug",
  3421. "universal-hash",
  3422. ]
  3423. [[package]]
  3424. name = "postage"
  3425. version = "0.5.0"
  3426. source = "registry+https://github.com/rust-lang/crates.io-index"
  3427. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  3428. dependencies = [
  3429. "atomic 0.5.3",
  3430. "crossbeam-queue",
  3431. "futures",
  3432. "parking_lot 0.12.3",
  3433. "pin-project",
  3434. "static_assertions",
  3435. "thiserror 1.0.69",
  3436. ]
  3437. [[package]]
  3438. name = "powerfmt"
  3439. version = "0.2.0"
  3440. source = "registry+https://github.com/rust-lang/crates.io-index"
  3441. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  3442. [[package]]
  3443. name = "ppv-lite86"
  3444. version = "0.2.21"
  3445. source = "registry+https://github.com/rust-lang/crates.io-index"
  3446. checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  3447. dependencies = [
  3448. "zerocopy 0.8.24",
  3449. ]
  3450. [[package]]
  3451. name = "primeorder"
  3452. version = "0.13.6"
  3453. source = "registry+https://github.com/rust-lang/crates.io-index"
  3454. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  3455. dependencies = [
  3456. "elliptic-curve",
  3457. ]
  3458. [[package]]
  3459. name = "priority-queue"
  3460. version = "2.3.1"
  3461. source = "registry+https://github.com/rust-lang/crates.io-index"
  3462. checksum = "ef08705fa1589a1a59aa924ad77d14722cb0cd97b67dd5004ed5f4a4873fce8d"
  3463. dependencies = [
  3464. "autocfg",
  3465. "equivalent",
  3466. "indexmap 2.9.0",
  3467. ]
  3468. [[package]]
  3469. name = "proc-macro-crate"
  3470. version = "3.3.0"
  3471. source = "registry+https://github.com/rust-lang/crates.io-index"
  3472. checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
  3473. dependencies = [
  3474. "toml_edit",
  3475. ]
  3476. [[package]]
  3477. name = "proc-macro-error"
  3478. version = "1.0.4"
  3479. source = "registry+https://github.com/rust-lang/crates.io-index"
  3480. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3481. dependencies = [
  3482. "proc-macro-error-attr",
  3483. "proc-macro2",
  3484. "quote",
  3485. "syn 1.0.109",
  3486. "version_check",
  3487. ]
  3488. [[package]]
  3489. name = "proc-macro-error-attr"
  3490. version = "1.0.4"
  3491. source = "registry+https://github.com/rust-lang/crates.io-index"
  3492. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3493. dependencies = [
  3494. "proc-macro2",
  3495. "quote",
  3496. "version_check",
  3497. ]
  3498. [[package]]
  3499. name = "proc-macro2"
  3500. version = "1.0.94"
  3501. source = "registry+https://github.com/rust-lang/crates.io-index"
  3502. checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
  3503. dependencies = [
  3504. "unicode-ident",
  3505. ]
  3506. [[package]]
  3507. name = "profiling"
  3508. version = "1.0.16"
  3509. source = "registry+https://github.com/rust-lang/crates.io-index"
  3510. checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d"
  3511. dependencies = [
  3512. "profiling-procmacros",
  3513. ]
  3514. [[package]]
  3515. name = "profiling-procmacros"
  3516. version = "1.0.16"
  3517. source = "registry+https://github.com/rust-lang/crates.io-index"
  3518. checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30"
  3519. dependencies = [
  3520. "quote",
  3521. "syn 2.0.100",
  3522. ]
  3523. [[package]]
  3524. name = "pulldown-cmark"
  3525. version = "0.9.6"
  3526. source = "registry+https://github.com/rust-lang/crates.io-index"
  3527. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  3528. dependencies = [
  3529. "bitflags 2.9.0",
  3530. "memchr",
  3531. "unicase",
  3532. ]
  3533. [[package]]
  3534. name = "pwd-grp"
  3535. version = "1.0.0"
  3536. source = "registry+https://github.com/rust-lang/crates.io-index"
  3537. checksum = "b94fdf3867b7f2889a736f0022ea9386766280d2cca4bdbe41629ada9e4f3b8f"
  3538. dependencies = [
  3539. "derive-deftly 0.14.6",
  3540. "libc",
  3541. "paste",
  3542. "thiserror 1.0.69",
  3543. ]
  3544. [[package]]
  3545. name = "qoi"
  3546. version = "0.4.1"
  3547. source = "registry+https://github.com/rust-lang/crates.io-index"
  3548. checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
  3549. dependencies = [
  3550. "bytemuck",
  3551. ]
  3552. [[package]]
  3553. name = "quick-error"
  3554. version = "2.0.1"
  3555. source = "registry+https://github.com/rust-lang/crates.io-index"
  3556. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  3557. [[package]]
  3558. name = "quote"
  3559. version = "1.0.40"
  3560. source = "registry+https://github.com/rust-lang/crates.io-index"
  3561. checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
  3562. dependencies = [
  3563. "proc-macro2",
  3564. ]
  3565. [[package]]
  3566. name = "r-efi"
  3567. version = "5.2.0"
  3568. source = "registry+https://github.com/rust-lang/crates.io-index"
  3569. checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
  3570. [[package]]
  3571. name = "radium"
  3572. version = "0.7.0"
  3573. source = "registry+https://github.com/rust-lang/crates.io-index"
  3574. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  3575. [[package]]
  3576. name = "rand"
  3577. version = "0.8.5"
  3578. source = "registry+https://github.com/rust-lang/crates.io-index"
  3579. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3580. dependencies = [
  3581. "libc",
  3582. "rand_chacha 0.3.1",
  3583. "rand_core 0.6.4",
  3584. ]
  3585. [[package]]
  3586. name = "rand"
  3587. version = "0.9.0"
  3588. source = "registry+https://github.com/rust-lang/crates.io-index"
  3589. checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
  3590. dependencies = [
  3591. "rand_chacha 0.9.0",
  3592. "rand_core 0.9.3",
  3593. "zerocopy 0.8.24",
  3594. ]
  3595. [[package]]
  3596. name = "rand_chacha"
  3597. version = "0.3.1"
  3598. source = "registry+https://github.com/rust-lang/crates.io-index"
  3599. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3600. dependencies = [
  3601. "ppv-lite86",
  3602. "rand_core 0.6.4",
  3603. ]
  3604. [[package]]
  3605. name = "rand_chacha"
  3606. version = "0.9.0"
  3607. source = "registry+https://github.com/rust-lang/crates.io-index"
  3608. checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  3609. dependencies = [
  3610. "ppv-lite86",
  3611. "rand_core 0.9.3",
  3612. ]
  3613. [[package]]
  3614. name = "rand_core"
  3615. version = "0.6.4"
  3616. source = "registry+https://github.com/rust-lang/crates.io-index"
  3617. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3618. dependencies = [
  3619. "getrandom 0.2.15",
  3620. ]
  3621. [[package]]
  3622. name = "rand_core"
  3623. version = "0.9.3"
  3624. source = "registry+https://github.com/rust-lang/crates.io-index"
  3625. checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
  3626. dependencies = [
  3627. "getrandom 0.3.2",
  3628. ]
  3629. [[package]]
  3630. name = "rand_jitter"
  3631. version = "0.5.0"
  3632. source = "registry+https://github.com/rust-lang/crates.io-index"
  3633. checksum = "b16df48f071248e67b8fc5e866d9448d45c08ad8b672baaaf796e2f15e606ff0"
  3634. dependencies = [
  3635. "libc",
  3636. "rand_core 0.9.3",
  3637. "winapi",
  3638. ]
  3639. [[package]]
  3640. name = "rav1e"
  3641. version = "0.7.1"
  3642. source = "registry+https://github.com/rust-lang/crates.io-index"
  3643. checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
  3644. dependencies = [
  3645. "arbitrary",
  3646. "arg_enum_proc_macro",
  3647. "arrayvec",
  3648. "av1-grain",
  3649. "bitstream-io",
  3650. "built",
  3651. "cfg-if",
  3652. "interpolate_name",
  3653. "itertools 0.12.1",
  3654. "libc",
  3655. "libfuzzer-sys",
  3656. "log",
  3657. "maybe-rayon",
  3658. "new_debug_unreachable",
  3659. "noop_proc_macro",
  3660. "num-derive",
  3661. "num-traits",
  3662. "once_cell",
  3663. "paste",
  3664. "profiling",
  3665. "rand 0.8.5",
  3666. "rand_chacha 0.3.1",
  3667. "simd_helpers",
  3668. "system-deps",
  3669. "thiserror 1.0.69",
  3670. "v_frame",
  3671. "wasm-bindgen",
  3672. ]
  3673. [[package]]
  3674. name = "ravif"
  3675. version = "0.11.12"
  3676. source = "registry+https://github.com/rust-lang/crates.io-index"
  3677. checksum = "d6a5f31fcf7500f9401fea858ea4ab5525c99f2322cfcee732c0e6c74208c0c6"
  3678. dependencies = [
  3679. "avif-serialize",
  3680. "imgref",
  3681. "loop9",
  3682. "quick-error",
  3683. "rav1e",
  3684. "rayon",
  3685. "rgb",
  3686. ]
  3687. [[package]]
  3688. name = "rayon"
  3689. version = "1.10.0"
  3690. source = "registry+https://github.com/rust-lang/crates.io-index"
  3691. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  3692. dependencies = [
  3693. "either",
  3694. "rayon-core",
  3695. ]
  3696. [[package]]
  3697. name = "rayon-core"
  3698. version = "1.12.1"
  3699. source = "registry+https://github.com/rust-lang/crates.io-index"
  3700. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3701. dependencies = [
  3702. "crossbeam-deque",
  3703. "crossbeam-utils",
  3704. ]
  3705. [[package]]
  3706. name = "rcgen"
  3707. version = "0.12.1"
  3708. source = "registry+https://github.com/rust-lang/crates.io-index"
  3709. checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
  3710. dependencies = [
  3711. "pem",
  3712. "ring",
  3713. "time",
  3714. "yasna",
  3715. ]
  3716. [[package]]
  3717. name = "rdrand"
  3718. version = "0.8.3"
  3719. source = "registry+https://github.com/rust-lang/crates.io-index"
  3720. checksum = "d92195228612ac8eed47adbc2ed0f04e513a4ccb98175b6f2bd04d963b533655"
  3721. dependencies = [
  3722. "rand_core 0.6.4",
  3723. ]
  3724. [[package]]
  3725. name = "read-fonts"
  3726. version = "0.25.3"
  3727. source = "registry+https://github.com/rust-lang/crates.io-index"
  3728. checksum = "f6f9e8a4f503e5c8750e4cd3b32a4e090035c46374b305a15c70bad833dca05f"
  3729. dependencies = [
  3730. "bytemuck",
  3731. "font-types",
  3732. ]
  3733. [[package]]
  3734. name = "redox_syscall"
  3735. version = "0.2.16"
  3736. source = "registry+https://github.com/rust-lang/crates.io-index"
  3737. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3738. dependencies = [
  3739. "bitflags 1.3.2",
  3740. ]
  3741. [[package]]
  3742. name = "redox_syscall"
  3743. version = "0.5.11"
  3744. source = "registry+https://github.com/rust-lang/crates.io-index"
  3745. checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
  3746. dependencies = [
  3747. "bitflags 2.9.0",
  3748. ]
  3749. [[package]]
  3750. name = "redox_users"
  3751. version = "0.4.6"
  3752. source = "registry+https://github.com/rust-lang/crates.io-index"
  3753. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  3754. dependencies = [
  3755. "getrandom 0.2.15",
  3756. "libredox",
  3757. "thiserror 1.0.69",
  3758. ]
  3759. [[package]]
  3760. name = "redox_users"
  3761. version = "0.5.0"
  3762. source = "registry+https://github.com/rust-lang/crates.io-index"
  3763. checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
  3764. dependencies = [
  3765. "getrandom 0.2.15",
  3766. "libredox",
  3767. "thiserror 2.0.12",
  3768. ]
  3769. [[package]]
  3770. name = "regex"
  3771. version = "1.11.1"
  3772. source = "registry+https://github.com/rust-lang/crates.io-index"
  3773. checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
  3774. dependencies = [
  3775. "aho-corasick",
  3776. "memchr",
  3777. "regex-automata 0.4.9",
  3778. "regex-syntax 0.8.5",
  3779. ]
  3780. [[package]]
  3781. name = "regex-automata"
  3782. version = "0.1.10"
  3783. source = "registry+https://github.com/rust-lang/crates.io-index"
  3784. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3785. dependencies = [
  3786. "regex-syntax 0.6.29",
  3787. ]
  3788. [[package]]
  3789. name = "regex-automata"
  3790. version = "0.4.9"
  3791. source = "registry+https://github.com/rust-lang/crates.io-index"
  3792. checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
  3793. dependencies = [
  3794. "aho-corasick",
  3795. "memchr",
  3796. "regex-syntax 0.8.5",
  3797. ]
  3798. [[package]]
  3799. name = "regex-syntax"
  3800. version = "0.6.29"
  3801. source = "registry+https://github.com/rust-lang/crates.io-index"
  3802. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3803. [[package]]
  3804. name = "regex-syntax"
  3805. version = "0.8.5"
  3806. source = "registry+https://github.com/rust-lang/crates.io-index"
  3807. checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
  3808. [[package]]
  3809. name = "retry-error"
  3810. version = "0.6.3"
  3811. source = "registry+https://github.com/rust-lang/crates.io-index"
  3812. checksum = "9cd5db9deeb62617010191df02a0887c96cc15d91514d32c208d6b8f76b9f20e"
  3813. [[package]]
  3814. name = "retry-error"
  3815. version = "0.6.3"
  3816. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  3817. [[package]]
  3818. name = "rfc6979"
  3819. version = "0.4.0"
  3820. source = "registry+https://github.com/rust-lang/crates.io-index"
  3821. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  3822. dependencies = [
  3823. "hmac",
  3824. "subtle",
  3825. ]
  3826. [[package]]
  3827. name = "rgb"
  3828. version = "0.8.50"
  3829. source = "registry+https://github.com/rust-lang/crates.io-index"
  3830. checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
  3831. [[package]]
  3832. name = "ring"
  3833. version = "0.17.14"
  3834. source = "registry+https://github.com/rust-lang/crates.io-index"
  3835. checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  3836. dependencies = [
  3837. "cc",
  3838. "cfg-if",
  3839. "getrandom 0.2.15",
  3840. "libc",
  3841. "untrusted",
  3842. "windows-sys 0.52.0",
  3843. ]
  3844. [[package]]
  3845. name = "roxmltree"
  3846. version = "0.20.0"
  3847. source = "registry+https://github.com/rust-lang/crates.io-index"
  3848. checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
  3849. [[package]]
  3850. name = "rsa"
  3851. version = "0.9.8"
  3852. source = "registry+https://github.com/rust-lang/crates.io-index"
  3853. checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
  3854. dependencies = [
  3855. "const-oid",
  3856. "digest",
  3857. "num-bigint-dig",
  3858. "num-integer",
  3859. "num-traits",
  3860. "pkcs1",
  3861. "pkcs8",
  3862. "rand_core 0.6.4",
  3863. "sha2",
  3864. "signature",
  3865. "spki",
  3866. "subtle",
  3867. "zeroize",
  3868. ]
  3869. [[package]]
  3870. name = "rusqlite"
  3871. version = "0.32.1"
  3872. source = "registry+https://github.com/rust-lang/crates.io-index"
  3873. checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
  3874. dependencies = [
  3875. "bitflags 2.9.0",
  3876. "fallible-iterator",
  3877. "fallible-streaming-iterator",
  3878. "hashlink",
  3879. "libsqlite3-sys",
  3880. "smallvec",
  3881. "time",
  3882. ]
  3883. [[package]]
  3884. name = "rustc_version"
  3885. version = "0.4.1"
  3886. source = "registry+https://github.com/rust-lang/crates.io-index"
  3887. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  3888. dependencies = [
  3889. "semver",
  3890. ]
  3891. [[package]]
  3892. name = "rusticata-macros"
  3893. version = "4.1.0"
  3894. source = "registry+https://github.com/rust-lang/crates.io-index"
  3895. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  3896. dependencies = [
  3897. "nom",
  3898. ]
  3899. [[package]]
  3900. name = "rustix"
  3901. version = "0.38.44"
  3902. source = "registry+https://github.com/rust-lang/crates.io-index"
  3903. checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
  3904. dependencies = [
  3905. "bitflags 2.9.0",
  3906. "errno",
  3907. "libc",
  3908. "linux-raw-sys 0.4.15",
  3909. "windows-sys 0.59.0",
  3910. ]
  3911. [[package]]
  3912. name = "rustix"
  3913. version = "1.0.5"
  3914. source = "registry+https://github.com/rust-lang/crates.io-index"
  3915. checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
  3916. dependencies = [
  3917. "bitflags 2.9.0",
  3918. "errno",
  3919. "libc",
  3920. "linux-raw-sys 0.9.4",
  3921. "windows-sys 0.59.0",
  3922. ]
  3923. [[package]]
  3924. name = "rustls"
  3925. version = "0.23.26"
  3926. source = "registry+https://github.com/rust-lang/crates.io-index"
  3927. checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
  3928. dependencies = [
  3929. "log",
  3930. "once_cell",
  3931. "ring",
  3932. "rustls-pki-types",
  3933. "rustls-webpki",
  3934. "subtle",
  3935. "zeroize",
  3936. ]
  3937. [[package]]
  3938. name = "rustls-pemfile"
  3939. version = "2.2.0"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
  3942. dependencies = [
  3943. "rustls-pki-types",
  3944. ]
  3945. [[package]]
  3946. name = "rustls-pki-types"
  3947. version = "1.11.0"
  3948. source = "registry+https://github.com/rust-lang/crates.io-index"
  3949. checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
  3950. [[package]]
  3951. name = "rustls-webpki"
  3952. version = "0.103.1"
  3953. source = "registry+https://github.com/rust-lang/crates.io-index"
  3954. checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
  3955. dependencies = [
  3956. "ring",
  3957. "rustls-pki-types",
  3958. "untrusted",
  3959. ]
  3960. [[package]]
  3961. name = "rustversion"
  3962. version = "1.0.20"
  3963. source = "registry+https://github.com/rust-lang/crates.io-index"
  3964. checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
  3965. [[package]]
  3966. name = "ryu"
  3967. version = "1.0.20"
  3968. source = "registry+https://github.com/rust-lang/crates.io-index"
  3969. checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
  3970. [[package]]
  3971. name = "safelog"
  3972. version = "0.4.5"
  3973. source = "registry+https://github.com/rust-lang/crates.io-index"
  3974. checksum = "fba05ad561772e139a16a49088b2d332f659ef49953d56e09cf0f726784e5fdd"
  3975. dependencies = [
  3976. "derive_more",
  3977. "educe",
  3978. "either",
  3979. "fluid-let",
  3980. "thiserror 2.0.12",
  3981. ]
  3982. [[package]]
  3983. name = "same-file"
  3984. version = "1.0.6"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3987. dependencies = [
  3988. "winapi-util",
  3989. ]
  3990. [[package]]
  3991. name = "sanitize-filename"
  3992. version = "0.6.0"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "bc984f4f9ceb736a7bb755c3e3bd17dc56370af2600c9780dcc48c66453da34d"
  3995. dependencies = [
  3996. "regex",
  3997. ]
  3998. [[package]]
  3999. name = "scopeguard"
  4000. version = "1.2.0"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4003. [[package]]
  4004. name = "sec1"
  4005. version = "0.7.3"
  4006. source = "registry+https://github.com/rust-lang/crates.io-index"
  4007. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  4008. dependencies = [
  4009. "base16ct",
  4010. "der",
  4011. "generic-array",
  4012. "pkcs8",
  4013. "subtle",
  4014. "zeroize",
  4015. ]
  4016. [[package]]
  4017. name = "semver"
  4018. version = "1.0.26"
  4019. source = "registry+https://github.com/rust-lang/crates.io-index"
  4020. checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
  4021. dependencies = [
  4022. "serde",
  4023. ]
  4024. [[package]]
  4025. name = "serde"
  4026. version = "1.0.219"
  4027. source = "registry+https://github.com/rust-lang/crates.io-index"
  4028. checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
  4029. dependencies = [
  4030. "serde_derive",
  4031. ]
  4032. [[package]]
  4033. name = "serde-value"
  4034. version = "0.7.0"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  4037. dependencies = [
  4038. "ordered-float",
  4039. "serde",
  4040. ]
  4041. [[package]]
  4042. name = "serde_bytes"
  4043. version = "0.11.17"
  4044. source = "registry+https://github.com/rust-lang/crates.io-index"
  4045. checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
  4046. dependencies = [
  4047. "serde",
  4048. ]
  4049. [[package]]
  4050. name = "serde_derive"
  4051. version = "1.0.219"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
  4054. dependencies = [
  4055. "proc-macro2",
  4056. "quote",
  4057. "syn 2.0.100",
  4058. ]
  4059. [[package]]
  4060. name = "serde_ignored"
  4061. version = "0.1.11"
  4062. source = "registry+https://github.com/rust-lang/crates.io-index"
  4063. checksum = "566da67d80e92e009728b3731ff0e5360cb181432b8ca73ea30bb1d170700d76"
  4064. dependencies = [
  4065. "serde",
  4066. ]
  4067. [[package]]
  4068. name = "serde_json"
  4069. version = "1.0.140"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
  4072. dependencies = [
  4073. "itoa",
  4074. "memchr",
  4075. "ryu",
  4076. "serde",
  4077. ]
  4078. [[package]]
  4079. name = "serde_spanned"
  4080. version = "0.6.8"
  4081. source = "registry+https://github.com/rust-lang/crates.io-index"
  4082. checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
  4083. dependencies = [
  4084. "serde",
  4085. ]
  4086. [[package]]
  4087. name = "serde_with"
  4088. version = "3.12.0"
  4089. source = "registry+https://github.com/rust-lang/crates.io-index"
  4090. checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
  4091. dependencies = [
  4092. "base64",
  4093. "chrono",
  4094. "hex",
  4095. "indexmap 1.9.3",
  4096. "indexmap 2.9.0",
  4097. "serde",
  4098. "serde_derive",
  4099. "serde_json",
  4100. "serde_with_macros",
  4101. "time",
  4102. ]
  4103. [[package]]
  4104. name = "serde_with_macros"
  4105. version = "3.12.0"
  4106. source = "registry+https://github.com/rust-lang/crates.io-index"
  4107. checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
  4108. dependencies = [
  4109. "darling 0.20.11",
  4110. "proc-macro2",
  4111. "quote",
  4112. "syn 2.0.100",
  4113. ]
  4114. [[package]]
  4115. name = "sha1"
  4116. version = "0.10.6"
  4117. source = "registry+https://github.com/rust-lang/crates.io-index"
  4118. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  4119. dependencies = [
  4120. "cfg-if",
  4121. "cpufeatures",
  4122. "digest",
  4123. ]
  4124. [[package]]
  4125. name = "sha2"
  4126. version = "0.10.8"
  4127. source = "registry+https://github.com/rust-lang/crates.io-index"
  4128. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  4129. dependencies = [
  4130. "cfg-if",
  4131. "cpufeatures",
  4132. "digest",
  4133. ]
  4134. [[package]]
  4135. name = "sha3"
  4136. version = "0.10.8"
  4137. source = "registry+https://github.com/rust-lang/crates.io-index"
  4138. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  4139. dependencies = [
  4140. "digest",
  4141. "keccak",
  4142. ]
  4143. [[package]]
  4144. name = "sharded-slab"
  4145. version = "0.1.7"
  4146. source = "registry+https://github.com/rust-lang/crates.io-index"
  4147. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  4148. dependencies = [
  4149. "lazy_static",
  4150. ]
  4151. [[package]]
  4152. name = "shellexpand"
  4153. version = "3.1.1"
  4154. source = "registry+https://github.com/rust-lang/crates.io-index"
  4155. checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
  4156. dependencies = [
  4157. "bstr",
  4158. "dirs 6.0.0",
  4159. "os_str_bytes",
  4160. ]
  4161. [[package]]
  4162. name = "shlex"
  4163. version = "1.3.0"
  4164. source = "registry+https://github.com/rust-lang/crates.io-index"
  4165. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  4166. [[package]]
  4167. name = "signal-hook-registry"
  4168. version = "1.4.2"
  4169. source = "registry+https://github.com/rust-lang/crates.io-index"
  4170. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  4171. dependencies = [
  4172. "libc",
  4173. ]
  4174. [[package]]
  4175. name = "signature"
  4176. version = "2.2.0"
  4177. source = "registry+https://github.com/rust-lang/crates.io-index"
  4178. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  4179. dependencies = [
  4180. "digest",
  4181. "rand_core 0.6.4",
  4182. ]
  4183. [[package]]
  4184. name = "simd-adler32"
  4185. version = "0.3.7"
  4186. source = "registry+https://github.com/rust-lang/crates.io-index"
  4187. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  4188. [[package]]
  4189. name = "simd_helpers"
  4190. version = "0.1.0"
  4191. source = "registry+https://github.com/rust-lang/crates.io-index"
  4192. checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
  4193. dependencies = [
  4194. "quote",
  4195. ]
  4196. [[package]]
  4197. name = "simplelog"
  4198. version = "0.12.2"
  4199. source = "registry+https://github.com/rust-lang/crates.io-index"
  4200. checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
  4201. dependencies = [
  4202. "log",
  4203. "termcolor",
  4204. "time",
  4205. ]
  4206. [[package]]
  4207. name = "sinsemilla"
  4208. version = "0.1.0"
  4209. source = "registry+https://github.com/rust-lang/crates.io-index"
  4210. checksum = "3d268ae0ea06faafe1662e9967cd4f9022014f5eeb798e0c302c876df8b7af9c"
  4211. dependencies = [
  4212. "group",
  4213. "pasta_curves",
  4214. "subtle",
  4215. ]
  4216. [[package]]
  4217. name = "siphasher"
  4218. version = "1.0.1"
  4219. source = "registry+https://github.com/rust-lang/crates.io-index"
  4220. checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
  4221. [[package]]
  4222. name = "skeptic"
  4223. version = "0.13.7"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  4226. dependencies = [
  4227. "bytecount",
  4228. "cargo_metadata",
  4229. "error-chain",
  4230. "glob",
  4231. "pulldown-cmark",
  4232. "tempfile",
  4233. "walkdir",
  4234. ]
  4235. [[package]]
  4236. name = "skrifa"
  4237. version = "0.26.6"
  4238. source = "registry+https://github.com/rust-lang/crates.io-index"
  4239. checksum = "8cc1aa86c26dbb1b63875a7180aa0819709b33348eb5b1491e4321fae388179d"
  4240. dependencies = [
  4241. "bytemuck",
  4242. "read-fonts",
  4243. ]
  4244. [[package]]
  4245. name = "slab"
  4246. version = "0.4.9"
  4247. source = "registry+https://github.com/rust-lang/crates.io-index"
  4248. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  4249. dependencies = [
  4250. "autocfg",
  4251. ]
  4252. [[package]]
  4253. name = "sled"
  4254. version = "0.34.7"
  4255. source = "registry+https://github.com/rust-lang/crates.io-index"
  4256. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4257. dependencies = [
  4258. "crc32fast",
  4259. "crossbeam-epoch",
  4260. "crossbeam-utils",
  4261. "fs2",
  4262. "fxhash",
  4263. "libc",
  4264. "log",
  4265. "parking_lot 0.11.2",
  4266. ]
  4267. [[package]]
  4268. name = "sled-overlay"
  4269. version = "0.1.7"
  4270. source = "registry+https://github.com/rust-lang/crates.io-index"
  4271. checksum = "8d1717bcb125ddaf5bc24609afa738639c5e0e1ac0004258e5b7506db5f51c94"
  4272. dependencies = [
  4273. "sled",
  4274. ]
  4275. [[package]]
  4276. name = "slotmap"
  4277. version = "1.0.7"
  4278. source = "registry+https://github.com/rust-lang/crates.io-index"
  4279. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  4280. dependencies = [
  4281. "serde",
  4282. "version_check",
  4283. ]
  4284. [[package]]
  4285. name = "slotmap-careful"
  4286. version = "0.2.3"
  4287. source = "registry+https://github.com/rust-lang/crates.io-index"
  4288. checksum = "186e34c0f5a636bb33bf53ca356933c525a7758ddddb8d93f98eff866db966d5"
  4289. dependencies = [
  4290. "paste",
  4291. "serde",
  4292. "slotmap",
  4293. "thiserror 2.0.12",
  4294. "void",
  4295. ]
  4296. [[package]]
  4297. name = "slotmap-careful"
  4298. version = "0.2.3"
  4299. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  4300. dependencies = [
  4301. "paste",
  4302. "serde",
  4303. "slotmap",
  4304. "thiserror 2.0.12",
  4305. "void",
  4306. ]
  4307. [[package]]
  4308. name = "smallvec"
  4309. version = "1.15.0"
  4310. source = "registry+https://github.com/rust-lang/crates.io-index"
  4311. checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
  4312. [[package]]
  4313. name = "smol"
  4314. version = "2.0.2"
  4315. source = "registry+https://github.com/rust-lang/crates.io-index"
  4316. checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f"
  4317. dependencies = [
  4318. "async-channel 2.3.1",
  4319. "async-executor",
  4320. "async-fs",
  4321. "async-io",
  4322. "async-lock",
  4323. "async-net",
  4324. "async-process",
  4325. "blocking",
  4326. "futures-lite",
  4327. ]
  4328. [[package]]
  4329. name = "socket2"
  4330. version = "0.5.9"
  4331. source = "registry+https://github.com/rust-lang/crates.io-index"
  4332. checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
  4333. dependencies = [
  4334. "libc",
  4335. "windows-sys 0.52.0",
  4336. ]
  4337. [[package]]
  4338. name = "spin"
  4339. version = "0.9.8"
  4340. source = "registry+https://github.com/rust-lang/crates.io-index"
  4341. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  4342. [[package]]
  4343. name = "spki"
  4344. version = "0.7.3"
  4345. source = "registry+https://github.com/rust-lang/crates.io-index"
  4346. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  4347. dependencies = [
  4348. "base64ct",
  4349. "der",
  4350. ]
  4351. [[package]]
  4352. name = "ssh-cipher"
  4353. version = "0.2.0"
  4354. source = "registry+https://github.com/rust-lang/crates.io-index"
  4355. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  4356. dependencies = [
  4357. "cipher",
  4358. "ssh-encoding",
  4359. ]
  4360. [[package]]
  4361. name = "ssh-encoding"
  4362. version = "0.2.0"
  4363. source = "registry+https://github.com/rust-lang/crates.io-index"
  4364. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  4365. dependencies = [
  4366. "base64ct",
  4367. "pem-rfc7468",
  4368. "sha2",
  4369. ]
  4370. [[package]]
  4371. name = "ssh-key"
  4372. version = "0.6.7"
  4373. source = "registry+https://github.com/rust-lang/crates.io-index"
  4374. checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
  4375. dependencies = [
  4376. "p256",
  4377. "p384",
  4378. "p521",
  4379. "rand_core 0.6.4",
  4380. "rsa",
  4381. "sec1",
  4382. "sha2",
  4383. "signature",
  4384. "ssh-cipher",
  4385. "ssh-encoding",
  4386. "subtle",
  4387. "zeroize",
  4388. ]
  4389. [[package]]
  4390. name = "stable_deref_trait"
  4391. version = "1.2.0"
  4392. source = "registry+https://github.com/rust-lang/crates.io-index"
  4393. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  4394. [[package]]
  4395. name = "static_assertions"
  4396. version = "1.1.0"
  4397. source = "registry+https://github.com/rust-lang/crates.io-index"
  4398. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4399. [[package]]
  4400. name = "strsim"
  4401. version = "0.8.0"
  4402. source = "registry+https://github.com/rust-lang/crates.io-index"
  4403. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  4404. [[package]]
  4405. name = "strsim"
  4406. version = "0.10.0"
  4407. source = "registry+https://github.com/rust-lang/crates.io-index"
  4408. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  4409. [[package]]
  4410. name = "strsim"
  4411. version = "0.11.1"
  4412. source = "registry+https://github.com/rust-lang/crates.io-index"
  4413. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  4414. [[package]]
  4415. name = "structopt"
  4416. version = "0.3.26"
  4417. source = "registry+https://github.com/rust-lang/crates.io-index"
  4418. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  4419. dependencies = [
  4420. "clap",
  4421. "lazy_static",
  4422. "structopt-derive",
  4423. ]
  4424. [[package]]
  4425. name = "structopt-derive"
  4426. version = "0.4.18"
  4427. source = "registry+https://github.com/rust-lang/crates.io-index"
  4428. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  4429. dependencies = [
  4430. "heck 0.3.3",
  4431. "proc-macro-error",
  4432. "proc-macro2",
  4433. "quote",
  4434. "syn 1.0.109",
  4435. ]
  4436. [[package]]
  4437. name = "structopt-toml"
  4438. version = "0.5.1"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  4441. dependencies = [
  4442. "anyhow",
  4443. "clap",
  4444. "serde",
  4445. "serde_derive",
  4446. "skeptic",
  4447. "structopt",
  4448. "structopt-toml-derive",
  4449. "toml 0.5.11",
  4450. ]
  4451. [[package]]
  4452. name = "structopt-toml-derive"
  4453. version = "0.5.1"
  4454. source = "registry+https://github.com/rust-lang/crates.io-index"
  4455. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  4456. dependencies = [
  4457. "heck 0.4.1",
  4458. "proc-macro2",
  4459. "quote",
  4460. "syn 1.0.109",
  4461. ]
  4462. [[package]]
  4463. name = "strum"
  4464. version = "0.27.1"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
  4467. dependencies = [
  4468. "strum_macros",
  4469. ]
  4470. [[package]]
  4471. name = "strum_macros"
  4472. version = "0.27.1"
  4473. source = "registry+https://github.com/rust-lang/crates.io-index"
  4474. checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
  4475. dependencies = [
  4476. "heck 0.5.0",
  4477. "proc-macro2",
  4478. "quote",
  4479. "rustversion",
  4480. "syn 2.0.100",
  4481. ]
  4482. [[package]]
  4483. name = "subtle"
  4484. version = "2.6.1"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  4487. [[package]]
  4488. name = "swash"
  4489. version = "0.2.2"
  4490. source = "git+https://github.com/valadaptive/swash?branch=tight-bounds#2884db1436e05256246047dc4a41b970afb7a74a"
  4491. dependencies = [
  4492. "skrifa",
  4493. "yazi",
  4494. "zeno",
  4495. ]
  4496. [[package]]
  4497. name = "syn"
  4498. version = "1.0.109"
  4499. source = "registry+https://github.com/rust-lang/crates.io-index"
  4500. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4501. dependencies = [
  4502. "proc-macro2",
  4503. "quote",
  4504. "unicode-ident",
  4505. ]
  4506. [[package]]
  4507. name = "syn"
  4508. version = "2.0.100"
  4509. source = "registry+https://github.com/rust-lang/crates.io-index"
  4510. checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
  4511. dependencies = [
  4512. "proc-macro2",
  4513. "quote",
  4514. "unicode-ident",
  4515. ]
  4516. [[package]]
  4517. name = "synstructure"
  4518. version = "0.13.1"
  4519. source = "registry+https://github.com/rust-lang/crates.io-index"
  4520. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  4521. dependencies = [
  4522. "proc-macro2",
  4523. "quote",
  4524. "syn 2.0.100",
  4525. ]
  4526. [[package]]
  4527. name = "system-deps"
  4528. version = "6.2.2"
  4529. source = "registry+https://github.com/rust-lang/crates.io-index"
  4530. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  4531. dependencies = [
  4532. "cfg-expr",
  4533. "heck 0.5.0",
  4534. "pkg-config",
  4535. "toml 0.8.20",
  4536. "version-compare",
  4537. ]
  4538. [[package]]
  4539. name = "tap"
  4540. version = "1.0.1"
  4541. source = "registry+https://github.com/rust-lang/crates.io-index"
  4542. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  4543. [[package]]
  4544. name = "target-lexicon"
  4545. version = "0.12.16"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  4548. [[package]]
  4549. name = "tempfile"
  4550. version = "3.19.1"
  4551. source = "registry+https://github.com/rust-lang/crates.io-index"
  4552. checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
  4553. dependencies = [
  4554. "fastrand",
  4555. "getrandom 0.3.2",
  4556. "once_cell",
  4557. "rustix 1.0.5",
  4558. "windows-sys 0.59.0",
  4559. ]
  4560. [[package]]
  4561. name = "termcolor"
  4562. version = "1.4.1"
  4563. source = "registry+https://github.com/rust-lang/crates.io-index"
  4564. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  4565. dependencies = [
  4566. "winapi-util",
  4567. ]
  4568. [[package]]
  4569. name = "textwrap"
  4570. version = "0.11.0"
  4571. source = "registry+https://github.com/rust-lang/crates.io-index"
  4572. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  4573. dependencies = [
  4574. "unicode-width",
  4575. ]
  4576. [[package]]
  4577. name = "thiserror"
  4578. version = "1.0.69"
  4579. source = "registry+https://github.com/rust-lang/crates.io-index"
  4580. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  4581. dependencies = [
  4582. "thiserror-impl 1.0.69",
  4583. ]
  4584. [[package]]
  4585. name = "thiserror"
  4586. version = "2.0.12"
  4587. source = "registry+https://github.com/rust-lang/crates.io-index"
  4588. checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
  4589. dependencies = [
  4590. "thiserror-impl 2.0.12",
  4591. ]
  4592. [[package]]
  4593. name = "thiserror-impl"
  4594. version = "1.0.69"
  4595. source = "registry+https://github.com/rust-lang/crates.io-index"
  4596. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  4597. dependencies = [
  4598. "proc-macro2",
  4599. "quote",
  4600. "syn 2.0.100",
  4601. ]
  4602. [[package]]
  4603. name = "thiserror-impl"
  4604. version = "2.0.12"
  4605. source = "registry+https://github.com/rust-lang/crates.io-index"
  4606. checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
  4607. dependencies = [
  4608. "proc-macro2",
  4609. "quote",
  4610. "syn 2.0.100",
  4611. ]
  4612. [[package]]
  4613. name = "thread_local"
  4614. version = "1.1.8"
  4615. source = "registry+https://github.com/rust-lang/crates.io-index"
  4616. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  4617. dependencies = [
  4618. "cfg-if",
  4619. "once_cell",
  4620. ]
  4621. [[package]]
  4622. name = "tiff"
  4623. version = "0.9.1"
  4624. source = "registry+https://github.com/rust-lang/crates.io-index"
  4625. checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
  4626. dependencies = [
  4627. "flate2",
  4628. "jpeg-decoder",
  4629. "weezl",
  4630. ]
  4631. [[package]]
  4632. name = "time"
  4633. version = "0.3.41"
  4634. source = "registry+https://github.com/rust-lang/crates.io-index"
  4635. checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
  4636. dependencies = [
  4637. "deranged",
  4638. "itoa",
  4639. "libc",
  4640. "num-conv",
  4641. "num_threads",
  4642. "powerfmt",
  4643. "serde",
  4644. "time-core",
  4645. "time-macros",
  4646. ]
  4647. [[package]]
  4648. name = "time-core"
  4649. version = "0.1.4"
  4650. source = "registry+https://github.com/rust-lang/crates.io-index"
  4651. checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
  4652. [[package]]
  4653. name = "time-macros"
  4654. version = "0.2.22"
  4655. source = "registry+https://github.com/rust-lang/crates.io-index"
  4656. checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
  4657. dependencies = [
  4658. "num-conv",
  4659. "time-core",
  4660. ]
  4661. [[package]]
  4662. name = "tinyjson"
  4663. version = "2.5.1"
  4664. source = "registry+https://github.com/rust-lang/crates.io-index"
  4665. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  4666. [[package]]
  4667. name = "tinystr"
  4668. version = "0.7.6"
  4669. source = "registry+https://github.com/rust-lang/crates.io-index"
  4670. checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
  4671. dependencies = [
  4672. "displaydoc",
  4673. "zerovec 0.10.4",
  4674. ]
  4675. [[package]]
  4676. name = "tinystr"
  4677. version = "0.8.1"
  4678. source = "registry+https://github.com/rust-lang/crates.io-index"
  4679. checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
  4680. dependencies = [
  4681. "displaydoc",
  4682. "zerovec 0.11.1",
  4683. ]
  4684. [[package]]
  4685. name = "tinyvec"
  4686. version = "1.9.0"
  4687. source = "registry+https://github.com/rust-lang/crates.io-index"
  4688. checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
  4689. dependencies = [
  4690. "tinyvec_macros",
  4691. ]
  4692. [[package]]
  4693. name = "tinyvec_macros"
  4694. version = "0.1.1"
  4695. source = "registry+https://github.com/rust-lang/crates.io-index"
  4696. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4697. [[package]]
  4698. name = "toml"
  4699. version = "0.5.11"
  4700. source = "registry+https://github.com/rust-lang/crates.io-index"
  4701. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4702. dependencies = [
  4703. "serde",
  4704. ]
  4705. [[package]]
  4706. name = "toml"
  4707. version = "0.8.20"
  4708. source = "registry+https://github.com/rust-lang/crates.io-index"
  4709. checksum = "cd87a5cdd6ffab733b2f74bc4fd7ee5fff6634124999ac278c35fc78c6120148"
  4710. dependencies = [
  4711. "serde",
  4712. "serde_spanned",
  4713. "toml_datetime",
  4714. "toml_edit",
  4715. ]
  4716. [[package]]
  4717. name = "toml_datetime"
  4718. version = "0.6.8"
  4719. source = "registry+https://github.com/rust-lang/crates.io-index"
  4720. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  4721. dependencies = [
  4722. "serde",
  4723. ]
  4724. [[package]]
  4725. name = "toml_edit"
  4726. version = "0.22.24"
  4727. source = "registry+https://github.com/rust-lang/crates.io-index"
  4728. checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
  4729. dependencies = [
  4730. "indexmap 2.9.0",
  4731. "serde",
  4732. "serde_spanned",
  4733. "toml_datetime",
  4734. "winnow",
  4735. ]
  4736. [[package]]
  4737. name = "tor-async-utils"
  4738. version = "0.29.0"
  4739. source = "registry+https://github.com/rust-lang/crates.io-index"
  4740. checksum = "d8af0bcb05f22eea7c8d4015082019963c592e300de1c692af6c3c418c080eb0"
  4741. dependencies = [
  4742. "derive-deftly 1.0.1",
  4743. "educe",
  4744. "futures",
  4745. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4746. "pin-project",
  4747. "postage",
  4748. "thiserror 2.0.12",
  4749. "void",
  4750. ]
  4751. [[package]]
  4752. name = "tor-basic-utils"
  4753. version = "0.29.0"
  4754. source = "registry+https://github.com/rust-lang/crates.io-index"
  4755. checksum = "182be53685e694cf90ce7e696e116cc0b01434522f17f12ce374b51f7a40bfc9"
  4756. dependencies = [
  4757. "derive_more",
  4758. "hex",
  4759. "itertools 0.14.0",
  4760. "libc",
  4761. "paste",
  4762. "rand 0.9.0",
  4763. "rand_chacha 0.9.0",
  4764. "serde",
  4765. "slab",
  4766. "smallvec",
  4767. "thiserror 2.0.12",
  4768. ]
  4769. [[package]]
  4770. name = "tor-bytes"
  4771. version = "0.29.0"
  4772. source = "registry+https://github.com/rust-lang/crates.io-index"
  4773. checksum = "ea40884e6a999280e985e758a230366c9e976da70df899574751151631b4c864"
  4774. dependencies = [
  4775. "bytes",
  4776. "derive-deftly 1.0.1",
  4777. "digest",
  4778. "educe",
  4779. "getrandom 0.3.2",
  4780. "safelog",
  4781. "thiserror 2.0.12",
  4782. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4783. "tor-llcrypto",
  4784. "zeroize",
  4785. ]
  4786. [[package]]
  4787. name = "tor-cell"
  4788. version = "0.29.0"
  4789. source = "registry+https://github.com/rust-lang/crates.io-index"
  4790. checksum = "fcda4d1dcfdd9a8954a3ff569f3ab3217bb3686c90d3acf5fb3f9576cae47431"
  4791. dependencies = [
  4792. "amplify",
  4793. "bitflags 2.9.0",
  4794. "bytes",
  4795. "caret",
  4796. "derive-deftly 1.0.1",
  4797. "derive_more",
  4798. "educe",
  4799. "paste",
  4800. "rand 0.9.0",
  4801. "smallvec",
  4802. "thiserror 2.0.12",
  4803. "tor-basic-utils",
  4804. "tor-bytes",
  4805. "tor-cert",
  4806. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4807. "tor-hscrypto",
  4808. "tor-linkspec",
  4809. "tor-llcrypto",
  4810. "tor-memquota",
  4811. "tor-units",
  4812. "void",
  4813. ]
  4814. [[package]]
  4815. name = "tor-cert"
  4816. version = "0.29.0"
  4817. source = "registry+https://github.com/rust-lang/crates.io-index"
  4818. checksum = "7042c22afc733f256947042bcaaffc28c6ec51d53cb6ecef6d5b1ad6fd3989bd"
  4819. dependencies = [
  4820. "caret",
  4821. "derive_builder_fork_arti",
  4822. "derive_more",
  4823. "digest",
  4824. "thiserror 2.0.12",
  4825. "tor-bytes",
  4826. "tor-checkable",
  4827. "tor-llcrypto",
  4828. ]
  4829. [[package]]
  4830. name = "tor-chanmgr"
  4831. version = "0.29.0"
  4832. source = "registry+https://github.com/rust-lang/crates.io-index"
  4833. checksum = "cf904041fcecc51eb6b4d2b18f6b7265b474b7fe8a3a6f5e9189daa357dbb7b0"
  4834. dependencies = [
  4835. "async-trait",
  4836. "caret",
  4837. "derive_builder_fork_arti",
  4838. "derive_more",
  4839. "educe",
  4840. "futures",
  4841. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4842. "postage",
  4843. "rand 0.9.0",
  4844. "safelog",
  4845. "serde",
  4846. "thiserror 2.0.12",
  4847. "tor-async-utils",
  4848. "tor-basic-utils",
  4849. "tor-cell",
  4850. "tor-config",
  4851. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4852. "tor-linkspec",
  4853. "tor-llcrypto",
  4854. "tor-memquota",
  4855. "tor-netdir",
  4856. "tor-proto",
  4857. "tor-rtcompat",
  4858. "tor-socksproto",
  4859. "tor-units",
  4860. "tracing",
  4861. "void",
  4862. ]
  4863. [[package]]
  4864. name = "tor-checkable"
  4865. version = "0.29.0"
  4866. source = "registry+https://github.com/rust-lang/crates.io-index"
  4867. checksum = "b3f44a30f1c7c924bfdc9e358ed197ed3bd0a6fa9b7a3271d6dc367a5e08f3fd"
  4868. dependencies = [
  4869. "humantime",
  4870. "signature",
  4871. "thiserror 2.0.12",
  4872. "tor-llcrypto",
  4873. ]
  4874. [[package]]
  4875. name = "tor-circmgr"
  4876. version = "0.29.0"
  4877. source = "registry+https://github.com/rust-lang/crates.io-index"
  4878. checksum = "e36a9a7d2c457482ce17ba086c623ddc7109fb9f2143170d65cbefc0ee3474ef"
  4879. dependencies = [
  4880. "amplify",
  4881. "async-trait",
  4882. "bounded-vec-deque",
  4883. "cfg-if",
  4884. "derive_builder_fork_arti",
  4885. "derive_more",
  4886. "downcast-rs",
  4887. "dyn-clone",
  4888. "educe",
  4889. "futures",
  4890. "humantime-serde",
  4891. "itertools 0.14.0",
  4892. "once_cell",
  4893. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4894. "pin-project",
  4895. "rand 0.9.0",
  4896. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4897. "safelog",
  4898. "serde",
  4899. "static_assertions",
  4900. "thiserror 2.0.12",
  4901. "tor-async-utils",
  4902. "tor-basic-utils",
  4903. "tor-chanmgr",
  4904. "tor-config",
  4905. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4906. "tor-guardmgr",
  4907. "tor-linkspec",
  4908. "tor-memquota",
  4909. "tor-netdir",
  4910. "tor-netdoc",
  4911. "tor-persist",
  4912. "tor-proto",
  4913. "tor-protover",
  4914. "tor-relay-selection",
  4915. "tor-rtcompat",
  4916. "tor-units",
  4917. "tracing",
  4918. "void",
  4919. "weak-table",
  4920. ]
  4921. [[package]]
  4922. name = "tor-config"
  4923. version = "0.29.0"
  4924. source = "registry+https://github.com/rust-lang/crates.io-index"
  4925. checksum = "74c04314fef18dd6ea027c4dbe64e34bd9b5f2c900fa6b8fe331b68ced55591d"
  4926. dependencies = [
  4927. "amplify",
  4928. "cfg-if",
  4929. "derive-deftly 1.0.1",
  4930. "derive_builder_fork_arti",
  4931. "educe",
  4932. "either",
  4933. "figment",
  4934. "fs-mistrust",
  4935. "futures",
  4936. "itertools 0.14.0",
  4937. "notify",
  4938. "once_cell",
  4939. "paste",
  4940. "postage",
  4941. "regex",
  4942. "serde",
  4943. "serde-value",
  4944. "serde_ignored",
  4945. "strum",
  4946. "thiserror 2.0.12",
  4947. "toml 0.8.20",
  4948. "tor-basic-utils",
  4949. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4950. "tor-rtcompat",
  4951. "tracing",
  4952. "void",
  4953. ]
  4954. [[package]]
  4955. name = "tor-config-path"
  4956. version = "0.29.0"
  4957. source = "registry+https://github.com/rust-lang/crates.io-index"
  4958. checksum = "6162c71d9cdab7a8cd249be2c0c922f6a4ac926fc32d03b320696f426260d9cc"
  4959. dependencies = [
  4960. "directories",
  4961. "once_cell",
  4962. "serde",
  4963. "shellexpand",
  4964. "thiserror 2.0.12",
  4965. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4966. "tor-general-addr 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4967. ]
  4968. [[package]]
  4969. name = "tor-consdiff"
  4970. version = "0.29.0"
  4971. source = "registry+https://github.com/rust-lang/crates.io-index"
  4972. checksum = "a4a0b9697be65ba2e9dae30f536e5dff4d3489d30ea1f5df862afacb91dfdca9"
  4973. dependencies = [
  4974. "digest",
  4975. "hex",
  4976. "thiserror 2.0.12",
  4977. "tor-llcrypto",
  4978. ]
  4979. [[package]]
  4980. name = "tor-dirclient"
  4981. version = "0.29.0"
  4982. source = "registry+https://github.com/rust-lang/crates.io-index"
  4983. checksum = "b4416c5031e75625b620c2a56e1051993076b3e8574f79ec0251e2b736da2f1e"
  4984. dependencies = [
  4985. "async-compression",
  4986. "base64ct",
  4987. "derive_more",
  4988. "futures",
  4989. "hex",
  4990. "http",
  4991. "httparse",
  4992. "httpdate",
  4993. "itertools 0.14.0",
  4994. "memchr",
  4995. "thiserror 2.0.12",
  4996. "tor-circmgr",
  4997. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4998. "tor-hscrypto",
  4999. "tor-linkspec",
  5000. "tor-llcrypto",
  5001. "tor-netdoc",
  5002. "tor-proto",
  5003. "tor-rtcompat",
  5004. "tracing",
  5005. ]
  5006. [[package]]
  5007. name = "tor-dirmgr"
  5008. version = "0.29.0"
  5009. source = "registry+https://github.com/rust-lang/crates.io-index"
  5010. checksum = "97978e4080932866d8a8cae042fd20a72f3fa91095834dced74bd4f6ceaa4180"
  5011. dependencies = [
  5012. "async-trait",
  5013. "base64ct",
  5014. "derive_builder_fork_arti",
  5015. "derive_more",
  5016. "digest",
  5017. "educe",
  5018. "event-listener 5.4.0",
  5019. "fs-mistrust",
  5020. "fslock",
  5021. "futures",
  5022. "hex",
  5023. "humantime",
  5024. "humantime-serde",
  5025. "itertools 0.14.0",
  5026. "memmap2",
  5027. "once_cell",
  5028. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5029. "paste",
  5030. "postage",
  5031. "rand 0.9.0",
  5032. "rusqlite",
  5033. "safelog",
  5034. "scopeguard",
  5035. "serde",
  5036. "signature",
  5037. "static_assertions",
  5038. "strum",
  5039. "thiserror 2.0.12",
  5040. "time",
  5041. "tor-async-utils",
  5042. "tor-basic-utils",
  5043. "tor-checkable",
  5044. "tor-circmgr",
  5045. "tor-config",
  5046. "tor-consdiff",
  5047. "tor-dirclient",
  5048. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5049. "tor-guardmgr",
  5050. "tor-llcrypto",
  5051. "tor-netdir",
  5052. "tor-netdoc",
  5053. "tor-persist",
  5054. "tor-proto",
  5055. "tor-rtcompat",
  5056. "tracing",
  5057. ]
  5058. [[package]]
  5059. name = "tor-error"
  5060. version = "0.29.0"
  5061. source = "registry+https://github.com/rust-lang/crates.io-index"
  5062. checksum = "e6488b3bf0c82b1880505ea060bfa8dc24d380e16efe354e3449a283f4212b73"
  5063. dependencies = [
  5064. "derive_more",
  5065. "futures",
  5066. "once_cell",
  5067. "paste",
  5068. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5069. "static_assertions",
  5070. "strum",
  5071. "thiserror 2.0.12",
  5072. "tracing",
  5073. "void",
  5074. ]
  5075. [[package]]
  5076. name = "tor-error"
  5077. version = "0.29.0"
  5078. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5079. dependencies = [
  5080. "derive_more",
  5081. "futures",
  5082. "once_cell",
  5083. "paste",
  5084. "retry-error 0.6.3 (git+https://github.com/narodnik/arti)",
  5085. "static_assertions",
  5086. "strum",
  5087. "thiserror 2.0.12",
  5088. "tracing",
  5089. "void",
  5090. ]
  5091. [[package]]
  5092. name = "tor-general-addr"
  5093. version = "0.29.0"
  5094. source = "registry+https://github.com/rust-lang/crates.io-index"
  5095. checksum = "7551ba9b4449958e5f072d85501e9f2c32ae8002f438c5383465c2369e642813"
  5096. dependencies = [
  5097. "derive_more",
  5098. "thiserror 2.0.12",
  5099. "void",
  5100. ]
  5101. [[package]]
  5102. name = "tor-general-addr"
  5103. version = "0.29.0"
  5104. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5105. dependencies = [
  5106. "derive_more",
  5107. "thiserror 2.0.12",
  5108. "void",
  5109. ]
  5110. [[package]]
  5111. name = "tor-guardmgr"
  5112. version = "0.29.0"
  5113. source = "registry+https://github.com/rust-lang/crates.io-index"
  5114. checksum = "c1d0877a98542eaa2b9f669336c9132fe35cb8ee530af94ad50bce407af23088"
  5115. dependencies = [
  5116. "amplify",
  5117. "base64ct",
  5118. "derive-deftly 1.0.1",
  5119. "derive_builder_fork_arti",
  5120. "derive_more",
  5121. "dyn-clone",
  5122. "educe",
  5123. "futures",
  5124. "humantime",
  5125. "humantime-serde",
  5126. "itertools 0.14.0",
  5127. "num_enum",
  5128. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5129. "pin-project",
  5130. "postage",
  5131. "rand 0.9.0",
  5132. "safelog",
  5133. "serde",
  5134. "strum",
  5135. "thiserror 2.0.12",
  5136. "tor-async-utils",
  5137. "tor-basic-utils",
  5138. "tor-config",
  5139. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5140. "tor-linkspec",
  5141. "tor-llcrypto",
  5142. "tor-netdir",
  5143. "tor-netdoc",
  5144. "tor-persist",
  5145. "tor-proto",
  5146. "tor-relay-selection",
  5147. "tor-rtcompat",
  5148. "tor-units",
  5149. "tracing",
  5150. ]
  5151. [[package]]
  5152. name = "tor-hsclient"
  5153. version = "0.29.0"
  5154. source = "registry+https://github.com/rust-lang/crates.io-index"
  5155. checksum = "a6fc936ee17c88f83bab968c21e6f631904fc441cd01e1d0b219b12668134dbe"
  5156. dependencies = [
  5157. "async-trait",
  5158. "derive-deftly 1.0.1",
  5159. "derive_more",
  5160. "educe",
  5161. "either",
  5162. "futures",
  5163. "itertools 0.14.0",
  5164. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5165. "postage",
  5166. "rand 0.9.0",
  5167. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5168. "safelog",
  5169. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5170. "strum",
  5171. "thiserror 2.0.12",
  5172. "tor-async-utils",
  5173. "tor-basic-utils",
  5174. "tor-bytes",
  5175. "tor-cell",
  5176. "tor-checkable",
  5177. "tor-circmgr",
  5178. "tor-config",
  5179. "tor-dirclient",
  5180. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5181. "tor-hscrypto",
  5182. "tor-keymgr",
  5183. "tor-linkspec",
  5184. "tor-llcrypto",
  5185. "tor-memquota",
  5186. "tor-netdir",
  5187. "tor-netdoc",
  5188. "tor-persist",
  5189. "tor-proto",
  5190. "tor-rtcompat",
  5191. "tracing",
  5192. ]
  5193. [[package]]
  5194. name = "tor-hscrypto"
  5195. version = "0.29.0"
  5196. source = "registry+https://github.com/rust-lang/crates.io-index"
  5197. checksum = "2e2ddacd739dd691bb3623e045ef07d8660d157f5a882e9b996b79f5e3803fa0"
  5198. dependencies = [
  5199. "cipher",
  5200. "data-encoding",
  5201. "derive-deftly 1.0.1",
  5202. "derive_more",
  5203. "digest",
  5204. "humantime",
  5205. "itertools 0.14.0",
  5206. "paste",
  5207. "rand 0.9.0",
  5208. "safelog",
  5209. "signature",
  5210. "subtle",
  5211. "thiserror 2.0.12",
  5212. "tor-basic-utils",
  5213. "tor-bytes",
  5214. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5215. "tor-key-forge",
  5216. "tor-llcrypto",
  5217. "tor-memquota",
  5218. "tor-units",
  5219. "void",
  5220. "zeroize",
  5221. ]
  5222. [[package]]
  5223. name = "tor-hsservice"
  5224. version = "0.29.0"
  5225. source = "registry+https://github.com/rust-lang/crates.io-index"
  5226. checksum = "52e6609424df5d0830d0182ee4f77df5f8246767b0433993e2d7a0816914ac48"
  5227. dependencies = [
  5228. "amplify",
  5229. "async-trait",
  5230. "base64ct",
  5231. "cfg-if",
  5232. "derive-deftly 1.0.1",
  5233. "derive_builder_fork_arti",
  5234. "derive_more",
  5235. "digest",
  5236. "educe",
  5237. "fs-mistrust",
  5238. "futures",
  5239. "growable-bloom-filter",
  5240. "hex",
  5241. "humantime",
  5242. "itertools 0.14.0",
  5243. "k12",
  5244. "once_cell",
  5245. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5246. "postage",
  5247. "rand 0.9.0",
  5248. "rand_core 0.9.3",
  5249. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5250. "safelog",
  5251. "serde",
  5252. "serde_with",
  5253. "strum",
  5254. "thiserror 2.0.12",
  5255. "tor-async-utils",
  5256. "tor-basic-utils",
  5257. "tor-bytes",
  5258. "tor-cell",
  5259. "tor-circmgr",
  5260. "tor-config",
  5261. "tor-config-path",
  5262. "tor-dirclient",
  5263. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5264. "tor-hscrypto",
  5265. "tor-keymgr",
  5266. "tor-linkspec",
  5267. "tor-llcrypto",
  5268. "tor-log-ratelim",
  5269. "tor-netdir",
  5270. "tor-netdoc",
  5271. "tor-persist",
  5272. "tor-proto",
  5273. "tor-protover",
  5274. "tor-relay-selection",
  5275. "tor-rtcompat",
  5276. "tracing",
  5277. "void",
  5278. ]
  5279. [[package]]
  5280. name = "tor-key-forge"
  5281. version = "0.29.0"
  5282. source = "registry+https://github.com/rust-lang/crates.io-index"
  5283. checksum = "ac47ab4aff8c0af8cf92b5dd3984e830c4da564bb48f06630aa7f951c688f0ba"
  5284. dependencies = [
  5285. "derive-deftly 1.0.1",
  5286. "derive_more",
  5287. "downcast-rs",
  5288. "paste",
  5289. "rand 0.9.0",
  5290. "signature",
  5291. "ssh-key",
  5292. "thiserror 2.0.12",
  5293. "tor-bytes",
  5294. "tor-cert",
  5295. "tor-checkable",
  5296. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5297. "tor-llcrypto",
  5298. ]
  5299. [[package]]
  5300. name = "tor-keymgr"
  5301. version = "0.29.0"
  5302. source = "registry+https://github.com/rust-lang/crates.io-index"
  5303. checksum = "e0a0bc40b735b3d1e04d8ac550bce66d40ea84ef5fc47a76fc8f64713b4abe3f"
  5304. dependencies = [
  5305. "amplify",
  5306. "arrayvec",
  5307. "cfg-if",
  5308. "derive-deftly 1.0.1",
  5309. "derive_builder_fork_arti",
  5310. "derive_more",
  5311. "downcast-rs",
  5312. "dyn-clone",
  5313. "fs-mistrust",
  5314. "glob-match",
  5315. "humantime",
  5316. "inventory",
  5317. "itertools 0.14.0",
  5318. "rand 0.9.0",
  5319. "serde",
  5320. "signature",
  5321. "ssh-key",
  5322. "thiserror 2.0.12",
  5323. "tor-basic-utils",
  5324. "tor-bytes",
  5325. "tor-config",
  5326. "tor-config-path",
  5327. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5328. "tor-hscrypto",
  5329. "tor-key-forge",
  5330. "tor-llcrypto",
  5331. "tor-persist",
  5332. "tracing",
  5333. "walkdir",
  5334. "zeroize",
  5335. ]
  5336. [[package]]
  5337. name = "tor-linkspec"
  5338. version = "0.29.0"
  5339. source = "registry+https://github.com/rust-lang/crates.io-index"
  5340. checksum = "b12f5be8e6077b66ec04e64b7e1a779e77af44893b5454cd0928289c45767780"
  5341. dependencies = [
  5342. "base64ct",
  5343. "by_address",
  5344. "caret",
  5345. "derive-deftly 1.0.1",
  5346. "derive_builder_fork_arti",
  5347. "derive_more",
  5348. "hex",
  5349. "itertools 0.14.0",
  5350. "safelog",
  5351. "serde",
  5352. "serde_with",
  5353. "strum",
  5354. "thiserror 2.0.12",
  5355. "tor-basic-utils",
  5356. "tor-bytes",
  5357. "tor-config",
  5358. "tor-llcrypto",
  5359. "tor-memquota",
  5360. "tor-protover",
  5361. ]
  5362. [[package]]
  5363. name = "tor-llcrypto"
  5364. version = "0.29.0"
  5365. source = "registry+https://github.com/rust-lang/crates.io-index"
  5366. checksum = "057afeb075f0689c40465646a1b7671baffebd3c8dd40e62ed5013a5ab157e76"
  5367. dependencies = [
  5368. "aes",
  5369. "base64ct",
  5370. "ctr",
  5371. "curve25519-dalek",
  5372. "der-parser",
  5373. "derive-deftly 1.0.1",
  5374. "derive_more",
  5375. "digest",
  5376. "ed25519-dalek",
  5377. "educe",
  5378. "getrandom 0.3.2",
  5379. "hex",
  5380. "once_cell",
  5381. "rand 0.9.0",
  5382. "rand_chacha 0.9.0",
  5383. "rand_core 0.6.4",
  5384. "rand_core 0.9.3",
  5385. "rand_jitter",
  5386. "rdrand",
  5387. "rsa",
  5388. "safelog",
  5389. "serde",
  5390. "sha1",
  5391. "sha2",
  5392. "sha3",
  5393. "signature",
  5394. "subtle",
  5395. "thiserror 2.0.12",
  5396. "tor-memquota",
  5397. "visibility",
  5398. "x25519-dalek",
  5399. "zeroize",
  5400. ]
  5401. [[package]]
  5402. name = "tor-log-ratelim"
  5403. version = "0.29.0"
  5404. source = "registry+https://github.com/rust-lang/crates.io-index"
  5405. checksum = "68b4f7d6adb39d73c414e891b37abd380a1e1eb1545735da422581128b1a9274"
  5406. dependencies = [
  5407. "futures",
  5408. "humantime",
  5409. "once_cell",
  5410. "thiserror 2.0.12",
  5411. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5412. "tor-rtcompat",
  5413. "tracing",
  5414. "weak-table",
  5415. ]
  5416. [[package]]
  5417. name = "tor-memquota"
  5418. version = "0.29.0"
  5419. source = "registry+https://github.com/rust-lang/crates.io-index"
  5420. checksum = "c86c061032e8d1b2922016fbe40b48a967dc7a3c09cd5bb0e3a33a00dad210ef"
  5421. dependencies = [
  5422. "derive-deftly 1.0.1",
  5423. "derive_more",
  5424. "dyn-clone",
  5425. "educe",
  5426. "futures",
  5427. "itertools 0.14.0",
  5428. "paste",
  5429. "pin-project",
  5430. "serde",
  5431. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5432. "static_assertions",
  5433. "thiserror 2.0.12",
  5434. "tor-async-utils",
  5435. "tor-basic-utils",
  5436. "tor-config",
  5437. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5438. "tor-log-ratelim",
  5439. "tor-rtcompat",
  5440. "tracing",
  5441. "void",
  5442. ]
  5443. [[package]]
  5444. name = "tor-netdir"
  5445. version = "0.29.0"
  5446. source = "registry+https://github.com/rust-lang/crates.io-index"
  5447. checksum = "d8a7a1ff78d5bc186836ffe50012dfdd7e9a137a692201d5e8dd204df2c1f608"
  5448. dependencies = [
  5449. "async-trait",
  5450. "bitflags 2.9.0",
  5451. "derive_more",
  5452. "digest",
  5453. "futures",
  5454. "hex",
  5455. "humantime",
  5456. "itertools 0.14.0",
  5457. "num_enum",
  5458. "rand 0.9.0",
  5459. "serde",
  5460. "static_assertions",
  5461. "strum",
  5462. "thiserror 2.0.12",
  5463. "time",
  5464. "tor-basic-utils",
  5465. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5466. "tor-hscrypto",
  5467. "tor-linkspec",
  5468. "tor-llcrypto",
  5469. "tor-netdoc",
  5470. "tor-protover",
  5471. "tor-units",
  5472. "tracing",
  5473. "typed-index-collections",
  5474. ]
  5475. [[package]]
  5476. name = "tor-netdoc"
  5477. version = "0.29.0"
  5478. source = "registry+https://github.com/rust-lang/crates.io-index"
  5479. checksum = "3bafcb9dc0ac3ef8ab6e2006ab892699797cb8381e18a0248e138027a6817c8b"
  5480. dependencies = [
  5481. "amplify",
  5482. "base64ct",
  5483. "bitflags 2.9.0",
  5484. "cipher",
  5485. "derive_builder_fork_arti",
  5486. "derive_more",
  5487. "digest",
  5488. "educe",
  5489. "hex",
  5490. "humantime",
  5491. "itertools 0.14.0",
  5492. "memchr",
  5493. "once_cell",
  5494. "phf",
  5495. "rand 0.9.0",
  5496. "serde",
  5497. "serde_with",
  5498. "signature",
  5499. "smallvec",
  5500. "subtle",
  5501. "thiserror 2.0.12",
  5502. "time",
  5503. "tinystr 0.8.1",
  5504. "tor-basic-utils",
  5505. "tor-bytes",
  5506. "tor-cell",
  5507. "tor-cert",
  5508. "tor-checkable",
  5509. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5510. "tor-hscrypto",
  5511. "tor-linkspec",
  5512. "tor-llcrypto",
  5513. "tor-protover",
  5514. "tor-units",
  5515. "void",
  5516. "weak-table",
  5517. "zeroize",
  5518. ]
  5519. [[package]]
  5520. name = "tor-persist"
  5521. version = "0.29.0"
  5522. source = "registry+https://github.com/rust-lang/crates.io-index"
  5523. checksum = "a245023c2109228264d03ef7c1c549e41052b9a2a8b193acb8f98d82ad5982bf"
  5524. dependencies = [
  5525. "amplify",
  5526. "derive-deftly 1.0.1",
  5527. "derive_more",
  5528. "filetime",
  5529. "fs-mistrust",
  5530. "fslock",
  5531. "fslock-guard",
  5532. "futures",
  5533. "itertools 0.14.0",
  5534. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5535. "paste",
  5536. "sanitize-filename",
  5537. "serde",
  5538. "serde_json",
  5539. "thiserror 2.0.12",
  5540. "time",
  5541. "tor-async-utils",
  5542. "tor-basic-utils",
  5543. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5544. "tracing",
  5545. "void",
  5546. ]
  5547. [[package]]
  5548. name = "tor-proto"
  5549. version = "0.29.0"
  5550. source = "registry+https://github.com/rust-lang/crates.io-index"
  5551. checksum = "1ea421e41f1e2cc5ac8b990610d0a69a330532a863b344c44812a815af25811a"
  5552. dependencies = [
  5553. "amplify",
  5554. "asynchronous-codec",
  5555. "bitvec",
  5556. "bytes",
  5557. "caret",
  5558. "cipher",
  5559. "coarsetime",
  5560. "derive-deftly 1.0.1",
  5561. "derive_builder_fork_arti",
  5562. "derive_more",
  5563. "digest",
  5564. "educe",
  5565. "futures",
  5566. "futures-util",
  5567. "hkdf",
  5568. "hmac",
  5569. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5570. "pin-project",
  5571. "rand 0.9.0",
  5572. "rand_core 0.9.3",
  5573. "safelog",
  5574. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5575. "static_assertions",
  5576. "subtle",
  5577. "thiserror 2.0.12",
  5578. "tor-async-utils",
  5579. "tor-basic-utils",
  5580. "tor-bytes",
  5581. "tor-cell",
  5582. "tor-cert",
  5583. "tor-checkable",
  5584. "tor-config",
  5585. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5586. "tor-hscrypto",
  5587. "tor-linkspec",
  5588. "tor-llcrypto",
  5589. "tor-log-ratelim",
  5590. "tor-memquota",
  5591. "tor-rtcompat",
  5592. "tor-rtmock",
  5593. "tor-units",
  5594. "tracing",
  5595. "typenum",
  5596. "visibility",
  5597. "void",
  5598. "zeroize",
  5599. ]
  5600. [[package]]
  5601. name = "tor-protover"
  5602. version = "0.29.0"
  5603. source = "registry+https://github.com/rust-lang/crates.io-index"
  5604. checksum = "a887114e6ed2f2e2b291c16cfcf751e26298fb2be4599b0a44cae47a588dc4ae"
  5605. dependencies = [
  5606. "caret",
  5607. "paste",
  5608. "thiserror 2.0.12",
  5609. ]
  5610. [[package]]
  5611. name = "tor-relay-selection"
  5612. version = "0.29.0"
  5613. source = "registry+https://github.com/rust-lang/crates.io-index"
  5614. checksum = "ba0d8a53a12c0fbdb1b842f0705629bacf11ab2c99531a58952c53fa619f830f"
  5615. dependencies = [
  5616. "rand 0.9.0",
  5617. "serde",
  5618. "tor-basic-utils",
  5619. "tor-linkspec",
  5620. "tor-netdir",
  5621. "tor-netdoc",
  5622. ]
  5623. [[package]]
  5624. name = "tor-rtcompat"
  5625. version = "0.29.0"
  5626. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5627. dependencies = [
  5628. "async-io",
  5629. "async-std",
  5630. "async-trait",
  5631. "async_executors",
  5632. "asynchronous-codec",
  5633. "coarsetime",
  5634. "derive_more",
  5635. "dyn-clone",
  5636. "educe",
  5637. "futures",
  5638. "futures-rustls",
  5639. "hex",
  5640. "libc",
  5641. "paste",
  5642. "pin-project",
  5643. "rustls",
  5644. "rustls-pki-types",
  5645. "rustls-webpki",
  5646. "thiserror 2.0.12",
  5647. "tor-error 0.29.0 (git+https://github.com/narodnik/arti)",
  5648. "tor-general-addr 0.29.0 (git+https://github.com/narodnik/arti)",
  5649. "tracing",
  5650. "void",
  5651. ]
  5652. [[package]]
  5653. name = "tor-rtmock"
  5654. version = "0.29.0"
  5655. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5656. dependencies = [
  5657. "amplify",
  5658. "assert_matches",
  5659. "async-trait",
  5660. "derive-deftly 1.0.1",
  5661. "derive_more",
  5662. "educe",
  5663. "futures",
  5664. "humantime",
  5665. "itertools 0.14.0",
  5666. "oneshot-fused-workaround 0.2.1 (git+https://github.com/narodnik/arti)",
  5667. "pin-project",
  5668. "priority-queue",
  5669. "slotmap-careful 0.2.3 (git+https://github.com/narodnik/arti)",
  5670. "strum",
  5671. "thiserror 2.0.12",
  5672. "tor-error 0.29.0 (git+https://github.com/narodnik/arti)",
  5673. "tor-general-addr 0.29.0 (git+https://github.com/narodnik/arti)",
  5674. "tor-rtcompat",
  5675. "tracing",
  5676. "tracing-test",
  5677. "void",
  5678. ]
  5679. [[package]]
  5680. name = "tor-socksproto"
  5681. version = "0.29.0"
  5682. source = "registry+https://github.com/rust-lang/crates.io-index"
  5683. checksum = "cf9ca35781e3eea82b6b2c1a68c8be87a53157bb6ce6c12401f825745d4fac9b"
  5684. dependencies = [
  5685. "amplify",
  5686. "caret",
  5687. "derive-deftly 1.0.1",
  5688. "educe",
  5689. "safelog",
  5690. "subtle",
  5691. "thiserror 2.0.12",
  5692. "tor-bytes",
  5693. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5694. ]
  5695. [[package]]
  5696. name = "tor-units"
  5697. version = "0.29.0"
  5698. source = "registry+https://github.com/rust-lang/crates.io-index"
  5699. checksum = "1ddc10f6c42aa268a8b680e68063f7f26da10fd71200d973659c55328b42845b"
  5700. dependencies = [
  5701. "derive-deftly 1.0.1",
  5702. "derive_more",
  5703. "thiserror 2.0.12",
  5704. "tor-memquota",
  5705. ]
  5706. [[package]]
  5707. name = "tracing"
  5708. version = "0.1.41"
  5709. source = "registry+https://github.com/rust-lang/crates.io-index"
  5710. checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
  5711. dependencies = [
  5712. "pin-project-lite",
  5713. "tracing-attributes",
  5714. "tracing-core",
  5715. ]
  5716. [[package]]
  5717. name = "tracing-attributes"
  5718. version = "0.1.28"
  5719. source = "registry+https://github.com/rust-lang/crates.io-index"
  5720. checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
  5721. dependencies = [
  5722. "proc-macro2",
  5723. "quote",
  5724. "syn 2.0.100",
  5725. ]
  5726. [[package]]
  5727. name = "tracing-core"
  5728. version = "0.1.33"
  5729. source = "registry+https://github.com/rust-lang/crates.io-index"
  5730. checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
  5731. dependencies = [
  5732. "once_cell",
  5733. "valuable",
  5734. ]
  5735. [[package]]
  5736. name = "tracing-log"
  5737. version = "0.2.0"
  5738. source = "registry+https://github.com/rust-lang/crates.io-index"
  5739. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  5740. dependencies = [
  5741. "log",
  5742. "once_cell",
  5743. "tracing-core",
  5744. ]
  5745. [[package]]
  5746. name = "tracing-subscriber"
  5747. version = "0.3.19"
  5748. source = "registry+https://github.com/rust-lang/crates.io-index"
  5749. checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
  5750. dependencies = [
  5751. "matchers",
  5752. "nu-ansi-term",
  5753. "once_cell",
  5754. "regex",
  5755. "sharded-slab",
  5756. "smallvec",
  5757. "thread_local",
  5758. "tracing",
  5759. "tracing-core",
  5760. "tracing-log",
  5761. ]
  5762. [[package]]
  5763. name = "tracing-test"
  5764. version = "0.2.5"
  5765. source = "registry+https://github.com/rust-lang/crates.io-index"
  5766. checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
  5767. dependencies = [
  5768. "tracing-core",
  5769. "tracing-subscriber",
  5770. "tracing-test-macro",
  5771. ]
  5772. [[package]]
  5773. name = "tracing-test-macro"
  5774. version = "0.2.5"
  5775. source = "registry+https://github.com/rust-lang/crates.io-index"
  5776. checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
  5777. dependencies = [
  5778. "quote",
  5779. "syn 2.0.100",
  5780. ]
  5781. [[package]]
  5782. name = "typed-index-collections"
  5783. version = "3.1.0"
  5784. source = "registry+https://github.com/rust-lang/crates.io-index"
  5785. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  5786. [[package]]
  5787. name = "typenum"
  5788. version = "1.18.0"
  5789. source = "registry+https://github.com/rust-lang/crates.io-index"
  5790. checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
  5791. [[package]]
  5792. name = "uint"
  5793. version = "0.9.5"
  5794. source = "registry+https://github.com/rust-lang/crates.io-index"
  5795. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5796. dependencies = [
  5797. "byteorder",
  5798. "crunchy",
  5799. "hex",
  5800. "static_assertions",
  5801. ]
  5802. [[package]]
  5803. name = "uncased"
  5804. version = "0.9.10"
  5805. source = "registry+https://github.com/rust-lang/crates.io-index"
  5806. checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
  5807. dependencies = [
  5808. "version_check",
  5809. ]
  5810. [[package]]
  5811. name = "unicase"
  5812. version = "2.8.1"
  5813. source = "registry+https://github.com/rust-lang/crates.io-index"
  5814. checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
  5815. [[package]]
  5816. name = "unicode-ident"
  5817. version = "1.0.18"
  5818. source = "registry+https://github.com/rust-lang/crates.io-index"
  5819. checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
  5820. [[package]]
  5821. name = "unicode-segmentation"
  5822. version = "1.12.0"
  5823. source = "registry+https://github.com/rust-lang/crates.io-index"
  5824. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  5825. [[package]]
  5826. name = "unicode-width"
  5827. version = "0.1.14"
  5828. source = "registry+https://github.com/rust-lang/crates.io-index"
  5829. checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
  5830. [[package]]
  5831. name = "unicode-xid"
  5832. version = "0.2.6"
  5833. source = "registry+https://github.com/rust-lang/crates.io-index"
  5834. checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
  5835. [[package]]
  5836. name = "universal-hash"
  5837. version = "0.5.1"
  5838. source = "registry+https://github.com/rust-lang/crates.io-index"
  5839. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  5840. dependencies = [
  5841. "crypto-common",
  5842. "subtle",
  5843. ]
  5844. [[package]]
  5845. name = "untrusted"
  5846. version = "0.9.0"
  5847. source = "registry+https://github.com/rust-lang/crates.io-index"
  5848. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5849. [[package]]
  5850. name = "url"
  5851. version = "2.5.4"
  5852. source = "registry+https://github.com/rust-lang/crates.io-index"
  5853. checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
  5854. dependencies = [
  5855. "form_urlencoded",
  5856. "idna",
  5857. "percent-encoding",
  5858. "serde",
  5859. ]
  5860. [[package]]
  5861. name = "utf16_iter"
  5862. version = "1.0.5"
  5863. source = "registry+https://github.com/rust-lang/crates.io-index"
  5864. checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
  5865. [[package]]
  5866. name = "utf8_iter"
  5867. version = "1.0.4"
  5868. source = "registry+https://github.com/rust-lang/crates.io-index"
  5869. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  5870. [[package]]
  5871. name = "uuid"
  5872. version = "1.16.0"
  5873. source = "registry+https://github.com/rust-lang/crates.io-index"
  5874. checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
  5875. dependencies = [
  5876. "getrandom 0.3.2",
  5877. ]
  5878. [[package]]
  5879. name = "v_frame"
  5880. version = "0.3.8"
  5881. source = "registry+https://github.com/rust-lang/crates.io-index"
  5882. checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
  5883. dependencies = [
  5884. "aligned-vec",
  5885. "num-traits",
  5886. "wasm-bindgen",
  5887. ]
  5888. [[package]]
  5889. name = "valuable"
  5890. version = "0.1.1"
  5891. source = "registry+https://github.com/rust-lang/crates.io-index"
  5892. checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
  5893. [[package]]
  5894. name = "value-bag"
  5895. version = "1.11.1"
  5896. source = "registry+https://github.com/rust-lang/crates.io-index"
  5897. checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
  5898. [[package]]
  5899. name = "vcpkg"
  5900. version = "0.2.15"
  5901. source = "registry+https://github.com/rust-lang/crates.io-index"
  5902. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5903. [[package]]
  5904. name = "vec_map"
  5905. version = "0.8.2"
  5906. source = "registry+https://github.com/rust-lang/crates.io-index"
  5907. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  5908. [[package]]
  5909. name = "version-compare"
  5910. version = "0.2.0"
  5911. source = "registry+https://github.com/rust-lang/crates.io-index"
  5912. checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
  5913. [[package]]
  5914. name = "version_check"
  5915. version = "0.9.5"
  5916. source = "registry+https://github.com/rust-lang/crates.io-index"
  5917. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  5918. [[package]]
  5919. name = "visibility"
  5920. version = "0.1.1"
  5921. source = "registry+https://github.com/rust-lang/crates.io-index"
  5922. checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
  5923. dependencies = [
  5924. "proc-macro2",
  5925. "quote",
  5926. "syn 2.0.100",
  5927. ]
  5928. [[package]]
  5929. name = "void"
  5930. version = "1.0.2"
  5931. source = "registry+https://github.com/rust-lang/crates.io-index"
  5932. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5933. [[package]]
  5934. name = "walkdir"
  5935. version = "2.5.0"
  5936. source = "registry+https://github.com/rust-lang/crates.io-index"
  5937. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  5938. dependencies = [
  5939. "same-file",
  5940. "winapi-util",
  5941. ]
  5942. [[package]]
  5943. name = "wasi"
  5944. version = "0.11.0+wasi-snapshot-preview1"
  5945. source = "registry+https://github.com/rust-lang/crates.io-index"
  5946. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5947. [[package]]
  5948. name = "wasi"
  5949. version = "0.14.2+wasi-0.2.4"
  5950. source = "registry+https://github.com/rust-lang/crates.io-index"
  5951. checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
  5952. dependencies = [
  5953. "wit-bindgen-rt",
  5954. ]
  5955. [[package]]
  5956. name = "wasix"
  5957. version = "0.12.21"
  5958. source = "registry+https://github.com/rust-lang/crates.io-index"
  5959. checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
  5960. dependencies = [
  5961. "wasi 0.11.0+wasi-snapshot-preview1",
  5962. ]
  5963. [[package]]
  5964. name = "wasm-bindgen"
  5965. version = "0.2.100"
  5966. source = "registry+https://github.com/rust-lang/crates.io-index"
  5967. checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
  5968. dependencies = [
  5969. "cfg-if",
  5970. "once_cell",
  5971. "rustversion",
  5972. "wasm-bindgen-macro",
  5973. ]
  5974. [[package]]
  5975. name = "wasm-bindgen-backend"
  5976. version = "0.2.100"
  5977. source = "registry+https://github.com/rust-lang/crates.io-index"
  5978. checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
  5979. dependencies = [
  5980. "bumpalo",
  5981. "log",
  5982. "proc-macro2",
  5983. "quote",
  5984. "syn 2.0.100",
  5985. "wasm-bindgen-shared",
  5986. ]
  5987. [[package]]
  5988. name = "wasm-bindgen-futures"
  5989. version = "0.4.50"
  5990. source = "registry+https://github.com/rust-lang/crates.io-index"
  5991. checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
  5992. dependencies = [
  5993. "cfg-if",
  5994. "js-sys",
  5995. "once_cell",
  5996. "wasm-bindgen",
  5997. "web-sys",
  5998. ]
  5999. [[package]]
  6000. name = "wasm-bindgen-macro"
  6001. version = "0.2.100"
  6002. source = "registry+https://github.com/rust-lang/crates.io-index"
  6003. checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
  6004. dependencies = [
  6005. "quote",
  6006. "wasm-bindgen-macro-support",
  6007. ]
  6008. [[package]]
  6009. name = "wasm-bindgen-macro-support"
  6010. version = "0.2.100"
  6011. source = "registry+https://github.com/rust-lang/crates.io-index"
  6012. checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
  6013. dependencies = [
  6014. "proc-macro2",
  6015. "quote",
  6016. "syn 2.0.100",
  6017. "wasm-bindgen-backend",
  6018. "wasm-bindgen-shared",
  6019. ]
  6020. [[package]]
  6021. name = "wasm-bindgen-shared"
  6022. version = "0.2.100"
  6023. source = "registry+https://github.com/rust-lang/crates.io-index"
  6024. checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
  6025. dependencies = [
  6026. "unicode-ident",
  6027. ]
  6028. [[package]]
  6029. name = "weak-table"
  6030. version = "0.3.2"
  6031. source = "registry+https://github.com/rust-lang/crates.io-index"
  6032. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  6033. [[package]]
  6034. name = "web-sys"
  6035. version = "0.3.77"
  6036. source = "registry+https://github.com/rust-lang/crates.io-index"
  6037. checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
  6038. dependencies = [
  6039. "js-sys",
  6040. "wasm-bindgen",
  6041. ]
  6042. [[package]]
  6043. name = "weezl"
  6044. version = "0.1.8"
  6045. source = "registry+https://github.com/rust-lang/crates.io-index"
  6046. checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
  6047. [[package]]
  6048. name = "winapi"
  6049. version = "0.3.9"
  6050. source = "registry+https://github.com/rust-lang/crates.io-index"
  6051. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6052. dependencies = [
  6053. "winapi-i686-pc-windows-gnu",
  6054. "winapi-x86_64-pc-windows-gnu",
  6055. ]
  6056. [[package]]
  6057. name = "winapi-i686-pc-windows-gnu"
  6058. version = "0.4.0"
  6059. source = "registry+https://github.com/rust-lang/crates.io-index"
  6060. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6061. [[package]]
  6062. name = "winapi-util"
  6063. version = "0.1.9"
  6064. source = "registry+https://github.com/rust-lang/crates.io-index"
  6065. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  6066. dependencies = [
  6067. "windows-sys 0.59.0",
  6068. ]
  6069. [[package]]
  6070. name = "winapi-x86_64-pc-windows-gnu"
  6071. version = "0.4.0"
  6072. source = "registry+https://github.com/rust-lang/crates.io-index"
  6073. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6074. [[package]]
  6075. name = "windows"
  6076. version = "0.58.0"
  6077. source = "registry+https://github.com/rust-lang/crates.io-index"
  6078. checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
  6079. dependencies = [
  6080. "windows-core 0.58.0",
  6081. "windows-targets 0.52.6",
  6082. ]
  6083. [[package]]
  6084. name = "windows-core"
  6085. version = "0.58.0"
  6086. source = "registry+https://github.com/rust-lang/crates.io-index"
  6087. checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
  6088. dependencies = [
  6089. "windows-implement 0.58.0",
  6090. "windows-interface 0.58.0",
  6091. "windows-result 0.2.0",
  6092. "windows-strings 0.1.0",
  6093. "windows-targets 0.52.6",
  6094. ]
  6095. [[package]]
  6096. name = "windows-core"
  6097. version = "0.61.0"
  6098. source = "registry+https://github.com/rust-lang/crates.io-index"
  6099. checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
  6100. dependencies = [
  6101. "windows-implement 0.60.0",
  6102. "windows-interface 0.59.1",
  6103. "windows-link",
  6104. "windows-result 0.3.2",
  6105. "windows-strings 0.4.0",
  6106. ]
  6107. [[package]]
  6108. name = "windows-implement"
  6109. version = "0.58.0"
  6110. source = "registry+https://github.com/rust-lang/crates.io-index"
  6111. checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
  6112. dependencies = [
  6113. "proc-macro2",
  6114. "quote",
  6115. "syn 2.0.100",
  6116. ]
  6117. [[package]]
  6118. name = "windows-implement"
  6119. version = "0.60.0"
  6120. source = "registry+https://github.com/rust-lang/crates.io-index"
  6121. checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
  6122. dependencies = [
  6123. "proc-macro2",
  6124. "quote",
  6125. "syn 2.0.100",
  6126. ]
  6127. [[package]]
  6128. name = "windows-interface"
  6129. version = "0.58.0"
  6130. source = "registry+https://github.com/rust-lang/crates.io-index"
  6131. checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
  6132. dependencies = [
  6133. "proc-macro2",
  6134. "quote",
  6135. "syn 2.0.100",
  6136. ]
  6137. [[package]]
  6138. name = "windows-interface"
  6139. version = "0.59.1"
  6140. source = "registry+https://github.com/rust-lang/crates.io-index"
  6141. checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
  6142. dependencies = [
  6143. "proc-macro2",
  6144. "quote",
  6145. "syn 2.0.100",
  6146. ]
  6147. [[package]]
  6148. name = "windows-link"
  6149. version = "0.1.1"
  6150. source = "registry+https://github.com/rust-lang/crates.io-index"
  6151. checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
  6152. [[package]]
  6153. name = "windows-result"
  6154. version = "0.2.0"
  6155. source = "registry+https://github.com/rust-lang/crates.io-index"
  6156. checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
  6157. dependencies = [
  6158. "windows-targets 0.52.6",
  6159. ]
  6160. [[package]]
  6161. name = "windows-result"
  6162. version = "0.3.2"
  6163. source = "registry+https://github.com/rust-lang/crates.io-index"
  6164. checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
  6165. dependencies = [
  6166. "windows-link",
  6167. ]
  6168. [[package]]
  6169. name = "windows-strings"
  6170. version = "0.1.0"
  6171. source = "registry+https://github.com/rust-lang/crates.io-index"
  6172. checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
  6173. dependencies = [
  6174. "windows-result 0.2.0",
  6175. "windows-targets 0.52.6",
  6176. ]
  6177. [[package]]
  6178. name = "windows-strings"
  6179. version = "0.4.0"
  6180. source = "registry+https://github.com/rust-lang/crates.io-index"
  6181. checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
  6182. dependencies = [
  6183. "windows-link",
  6184. ]
  6185. [[package]]
  6186. name = "windows-sys"
  6187. version = "0.48.0"
  6188. source = "registry+https://github.com/rust-lang/crates.io-index"
  6189. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6190. dependencies = [
  6191. "windows-targets 0.48.5",
  6192. ]
  6193. [[package]]
  6194. name = "windows-sys"
  6195. version = "0.52.0"
  6196. source = "registry+https://github.com/rust-lang/crates.io-index"
  6197. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  6198. dependencies = [
  6199. "windows-targets 0.52.6",
  6200. ]
  6201. [[package]]
  6202. name = "windows-sys"
  6203. version = "0.59.0"
  6204. source = "registry+https://github.com/rust-lang/crates.io-index"
  6205. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  6206. dependencies = [
  6207. "windows-targets 0.52.6",
  6208. ]
  6209. [[package]]
  6210. name = "windows-targets"
  6211. version = "0.48.5"
  6212. source = "registry+https://github.com/rust-lang/crates.io-index"
  6213. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  6214. dependencies = [
  6215. "windows_aarch64_gnullvm 0.48.5",
  6216. "windows_aarch64_msvc 0.48.5",
  6217. "windows_i686_gnu 0.48.5",
  6218. "windows_i686_msvc 0.48.5",
  6219. "windows_x86_64_gnu 0.48.5",
  6220. "windows_x86_64_gnullvm 0.48.5",
  6221. "windows_x86_64_msvc 0.48.5",
  6222. ]
  6223. [[package]]
  6224. name = "windows-targets"
  6225. version = "0.52.6"
  6226. source = "registry+https://github.com/rust-lang/crates.io-index"
  6227. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  6228. dependencies = [
  6229. "windows_aarch64_gnullvm 0.52.6",
  6230. "windows_aarch64_msvc 0.52.6",
  6231. "windows_i686_gnu 0.52.6",
  6232. "windows_i686_gnullvm",
  6233. "windows_i686_msvc 0.52.6",
  6234. "windows_x86_64_gnu 0.52.6",
  6235. "windows_x86_64_gnullvm 0.52.6",
  6236. "windows_x86_64_msvc 0.52.6",
  6237. ]
  6238. [[package]]
  6239. name = "windows_aarch64_gnullvm"
  6240. version = "0.48.5"
  6241. source = "registry+https://github.com/rust-lang/crates.io-index"
  6242. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  6243. [[package]]
  6244. name = "windows_aarch64_gnullvm"
  6245. version = "0.52.6"
  6246. source = "registry+https://github.com/rust-lang/crates.io-index"
  6247. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  6248. [[package]]
  6249. name = "windows_aarch64_msvc"
  6250. version = "0.48.5"
  6251. source = "registry+https://github.com/rust-lang/crates.io-index"
  6252. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  6253. [[package]]
  6254. name = "windows_aarch64_msvc"
  6255. version = "0.52.6"
  6256. source = "registry+https://github.com/rust-lang/crates.io-index"
  6257. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  6258. [[package]]
  6259. name = "windows_i686_gnu"
  6260. version = "0.48.5"
  6261. source = "registry+https://github.com/rust-lang/crates.io-index"
  6262. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  6263. [[package]]
  6264. name = "windows_i686_gnu"
  6265. version = "0.52.6"
  6266. source = "registry+https://github.com/rust-lang/crates.io-index"
  6267. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  6268. [[package]]
  6269. name = "windows_i686_gnullvm"
  6270. version = "0.52.6"
  6271. source = "registry+https://github.com/rust-lang/crates.io-index"
  6272. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  6273. [[package]]
  6274. name = "windows_i686_msvc"
  6275. version = "0.48.5"
  6276. source = "registry+https://github.com/rust-lang/crates.io-index"
  6277. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  6278. [[package]]
  6279. name = "windows_i686_msvc"
  6280. version = "0.52.6"
  6281. source = "registry+https://github.com/rust-lang/crates.io-index"
  6282. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  6283. [[package]]
  6284. name = "windows_x86_64_gnu"
  6285. version = "0.48.5"
  6286. source = "registry+https://github.com/rust-lang/crates.io-index"
  6287. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  6288. [[package]]
  6289. name = "windows_x86_64_gnu"
  6290. version = "0.52.6"
  6291. source = "registry+https://github.com/rust-lang/crates.io-index"
  6292. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  6293. [[package]]
  6294. name = "windows_x86_64_gnullvm"
  6295. version = "0.48.5"
  6296. source = "registry+https://github.com/rust-lang/crates.io-index"
  6297. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  6298. [[package]]
  6299. name = "windows_x86_64_gnullvm"
  6300. version = "0.52.6"
  6301. source = "registry+https://github.com/rust-lang/crates.io-index"
  6302. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  6303. [[package]]
  6304. name = "windows_x86_64_msvc"
  6305. version = "0.48.5"
  6306. source = "registry+https://github.com/rust-lang/crates.io-index"
  6307. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  6308. [[package]]
  6309. name = "windows_x86_64_msvc"
  6310. version = "0.52.6"
  6311. source = "registry+https://github.com/rust-lang/crates.io-index"
  6312. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  6313. [[package]]
  6314. name = "winnow"
  6315. version = "0.7.6"
  6316. source = "registry+https://github.com/rust-lang/crates.io-index"
  6317. checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
  6318. dependencies = [
  6319. "memchr",
  6320. ]
  6321. [[package]]
  6322. name = "wit-bindgen-rt"
  6323. version = "0.39.0"
  6324. source = "registry+https://github.com/rust-lang/crates.io-index"
  6325. checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
  6326. dependencies = [
  6327. "bitflags 2.9.0",
  6328. ]
  6329. [[package]]
  6330. name = "write16"
  6331. version = "1.0.0"
  6332. source = "registry+https://github.com/rust-lang/crates.io-index"
  6333. checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
  6334. [[package]]
  6335. name = "writeable"
  6336. version = "0.5.5"
  6337. source = "registry+https://github.com/rust-lang/crates.io-index"
  6338. checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
  6339. [[package]]
  6340. name = "wyz"
  6341. version = "0.5.1"
  6342. source = "registry+https://github.com/rust-lang/crates.io-index"
  6343. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6344. dependencies = [
  6345. "tap",
  6346. ]
  6347. [[package]]
  6348. name = "x25519-dalek"
  6349. version = "2.0.1"
  6350. source = "registry+https://github.com/rust-lang/crates.io-index"
  6351. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  6352. dependencies = [
  6353. "curve25519-dalek",
  6354. "rand_core 0.6.4",
  6355. "serde",
  6356. "zeroize",
  6357. ]
  6358. [[package]]
  6359. name = "x509-parser"
  6360. version = "0.17.0"
  6361. source = "registry+https://github.com/rust-lang/crates.io-index"
  6362. checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
  6363. dependencies = [
  6364. "asn1-rs",
  6365. "data-encoding",
  6366. "der-parser",
  6367. "lazy_static",
  6368. "nom",
  6369. "oid-registry",
  6370. "ring",
  6371. "rusticata-macros",
  6372. "thiserror 2.0.12",
  6373. "time",
  6374. ]
  6375. [[package]]
  6376. name = "xxhash-rust"
  6377. version = "0.8.15"
  6378. source = "registry+https://github.com/rust-lang/crates.io-index"
  6379. checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
  6380. [[package]]
  6381. name = "yasna"
  6382. version = "0.5.2"
  6383. source = "registry+https://github.com/rust-lang/crates.io-index"
  6384. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6385. dependencies = [
  6386. "time",
  6387. ]
  6388. [[package]]
  6389. name = "yazi"
  6390. version = "0.2.1"
  6391. source = "registry+https://github.com/rust-lang/crates.io-index"
  6392. checksum = "e01738255b5a16e78bbb83e7fbba0a1e7dd506905cfc53f4622d89015a03fbb5"
  6393. [[package]]
  6394. name = "yoke"
  6395. version = "0.7.5"
  6396. source = "registry+https://github.com/rust-lang/crates.io-index"
  6397. checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
  6398. dependencies = [
  6399. "serde",
  6400. "stable_deref_trait",
  6401. "yoke-derive",
  6402. "zerofrom",
  6403. ]
  6404. [[package]]
  6405. name = "yoke-derive"
  6406. version = "0.7.5"
  6407. source = "registry+https://github.com/rust-lang/crates.io-index"
  6408. checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
  6409. dependencies = [
  6410. "proc-macro2",
  6411. "quote",
  6412. "syn 2.0.100",
  6413. "synstructure",
  6414. ]
  6415. [[package]]
  6416. name = "zeno"
  6417. version = "0.3.2"
  6418. source = "git+https://github.com/valadaptive/zeno?branch=tight-bounds#696f94184a1af5c0411c282045549264236ff881"
  6419. [[package]]
  6420. name = "zerocopy"
  6421. version = "0.7.35"
  6422. source = "registry+https://github.com/rust-lang/crates.io-index"
  6423. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  6424. dependencies = [
  6425. "zerocopy-derive 0.7.35",
  6426. ]
  6427. [[package]]
  6428. name = "zerocopy"
  6429. version = "0.8.24"
  6430. source = "registry+https://github.com/rust-lang/crates.io-index"
  6431. checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
  6432. dependencies = [
  6433. "zerocopy-derive 0.8.24",
  6434. ]
  6435. [[package]]
  6436. name = "zerocopy-derive"
  6437. version = "0.7.35"
  6438. source = "registry+https://github.com/rust-lang/crates.io-index"
  6439. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  6440. dependencies = [
  6441. "proc-macro2",
  6442. "quote",
  6443. "syn 2.0.100",
  6444. ]
  6445. [[package]]
  6446. name = "zerocopy-derive"
  6447. version = "0.8.24"
  6448. source = "registry+https://github.com/rust-lang/crates.io-index"
  6449. checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
  6450. dependencies = [
  6451. "proc-macro2",
  6452. "quote",
  6453. "syn 2.0.100",
  6454. ]
  6455. [[package]]
  6456. name = "zerofrom"
  6457. version = "0.1.6"
  6458. source = "registry+https://github.com/rust-lang/crates.io-index"
  6459. checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
  6460. dependencies = [
  6461. "zerofrom-derive",
  6462. ]
  6463. [[package]]
  6464. name = "zerofrom-derive"
  6465. version = "0.1.6"
  6466. source = "registry+https://github.com/rust-lang/crates.io-index"
  6467. checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
  6468. dependencies = [
  6469. "proc-macro2",
  6470. "quote",
  6471. "syn 2.0.100",
  6472. "synstructure",
  6473. ]
  6474. [[package]]
  6475. name = "zeroize"
  6476. version = "1.8.1"
  6477. source = "registry+https://github.com/rust-lang/crates.io-index"
  6478. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  6479. dependencies = [
  6480. "zeroize_derive",
  6481. ]
  6482. [[package]]
  6483. name = "zeroize_derive"
  6484. version = "1.4.2"
  6485. source = "registry+https://github.com/rust-lang/crates.io-index"
  6486. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6487. dependencies = [
  6488. "proc-macro2",
  6489. "quote",
  6490. "syn 2.0.100",
  6491. ]
  6492. [[package]]
  6493. name = "zeromq"
  6494. version = "0.4.1"
  6495. source = "registry+https://github.com/rust-lang/crates.io-index"
  6496. checksum = "6a4528179201f6eecf211961a7d3276faa61554c82651ecc66387f68fc3004bd"
  6497. dependencies = [
  6498. "async-std",
  6499. "async-trait",
  6500. "asynchronous-codec",
  6501. "bytes",
  6502. "crossbeam-queue",
  6503. "dashmap",
  6504. "futures-channel",
  6505. "futures-io",
  6506. "futures-task",
  6507. "futures-util",
  6508. "log",
  6509. "num-traits",
  6510. "once_cell",
  6511. "parking_lot 0.12.3",
  6512. "rand 0.8.5",
  6513. "regex",
  6514. "thiserror 1.0.69",
  6515. "uuid",
  6516. ]
  6517. [[package]]
  6518. name = "zerovec"
  6519. version = "0.10.4"
  6520. source = "registry+https://github.com/rust-lang/crates.io-index"
  6521. checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
  6522. dependencies = [
  6523. "yoke",
  6524. "zerofrom",
  6525. "zerovec-derive",
  6526. ]
  6527. [[package]]
  6528. name = "zerovec"
  6529. version = "0.11.1"
  6530. source = "registry+https://github.com/rust-lang/crates.io-index"
  6531. checksum = "94e62113720e311984f461c56b00457ae9981c0bc7859d22306cc2ae2f95571c"
  6532. dependencies = [
  6533. "zerofrom",
  6534. ]
  6535. [[package]]
  6536. name = "zerovec-derive"
  6537. version = "0.10.3"
  6538. source = "registry+https://github.com/rust-lang/crates.io-index"
  6539. checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
  6540. dependencies = [
  6541. "proc-macro2",
  6542. "quote",
  6543. "syn 2.0.100",
  6544. ]
  6545. [[package]]
  6546. name = "zstd"
  6547. version = "0.13.3"
  6548. source = "registry+https://github.com/rust-lang/crates.io-index"
  6549. checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  6550. dependencies = [
  6551. "zstd-safe",
  6552. ]
  6553. [[package]]
  6554. name = "zstd-safe"
  6555. version = "7.2.4"
  6556. source = "registry+https://github.com/rust-lang/crates.io-index"
  6557. checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  6558. dependencies = [
  6559. "zstd-sys",
  6560. ]
  6561. [[package]]
  6562. name = "zstd-sys"
  6563. version = "2.0.15+zstd.1.5.7"
  6564. source = "registry+https://github.com/rust-lang/crates.io-index"
  6565. checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
  6566. dependencies = [
  6567. "cc",
  6568. "pkg-config",
  6569. ]
  6570. [[package]]
  6571. name = "zune-core"
  6572. version = "0.4.12"
  6573. source = "registry+https://github.com/rust-lang/crates.io-index"
  6574. checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
  6575. [[package]]
  6576. name = "zune-inflate"
  6577. version = "0.2.54"
  6578. source = "registry+https://github.com/rust-lang/crates.io-index"
  6579. checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
  6580. dependencies = [
  6581. "simd-adler32",
  6582. ]
  6583. [[package]]
  6584. name = "zune-jpeg"
  6585. version = "0.4.14"
  6586. source = "registry+https://github.com/rust-lang/crates.io-index"
  6587. checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028"
  6588. dependencies = [
  6589. "zune-core",
  6590. ]