Cargo.lock 171 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "Inflector"
  6. version = "0.11.4"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
  9. dependencies = [
  10. "lazy_static",
  11. "regex",
  12. ]
  13. [[package]]
  14. name = "addr2line"
  15. version = "0.22.0"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
  18. dependencies = [
  19. "gimli 0.29.0",
  20. ]
  21. [[package]]
  22. name = "adler"
  23. version = "1.0.2"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  26. [[package]]
  27. name = "aead"
  28. version = "0.5.2"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  31. dependencies = [
  32. "crypto-common",
  33. "generic-array",
  34. ]
  35. [[package]]
  36. name = "aes"
  37. version = "0.8.4"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  40. dependencies = [
  41. "cfg-if",
  42. "cipher",
  43. "cpufeatures",
  44. ]
  45. [[package]]
  46. name = "aes-gcm"
  47. version = "0.10.3"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
  50. dependencies = [
  51. "aead",
  52. "aes",
  53. "cipher",
  54. "ctr",
  55. "ghash",
  56. "subtle",
  57. ]
  58. [[package]]
  59. name = "ahash"
  60. version = "0.7.8"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
  63. dependencies = [
  64. "getrandom",
  65. "once_cell",
  66. "version_check",
  67. ]
  68. [[package]]
  69. name = "ahash"
  70. version = "0.8.11"
  71. source = "registry+https://github.com/rust-lang/crates.io-index"
  72. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  73. dependencies = [
  74. "cfg-if",
  75. "once_cell",
  76. "version_check",
  77. "zerocopy",
  78. ]
  79. [[package]]
  80. name = "aho-corasick"
  81. version = "1.1.3"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  84. dependencies = [
  85. "memchr",
  86. ]
  87. [[package]]
  88. name = "allocator-api2"
  89. version = "0.2.18"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
  92. [[package]]
  93. name = "android-tzdata"
  94. version = "0.1.1"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  97. [[package]]
  98. name = "android_system_properties"
  99. version = "0.1.5"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  102. dependencies = [
  103. "libc",
  104. ]
  105. [[package]]
  106. name = "anstream"
  107. version = "0.6.15"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
  110. dependencies = [
  111. "anstyle",
  112. "anstyle-parse",
  113. "anstyle-query",
  114. "anstyle-wincon",
  115. "colorchoice",
  116. "is_terminal_polyfill",
  117. "utf8parse",
  118. ]
  119. [[package]]
  120. name = "anstyle"
  121. version = "1.0.8"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
  124. [[package]]
  125. name = "anstyle-parse"
  126. version = "0.2.5"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
  129. dependencies = [
  130. "utf8parse",
  131. ]
  132. [[package]]
  133. name = "anstyle-query"
  134. version = "1.1.1"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
  137. dependencies = [
  138. "windows-sys 0.52.0",
  139. ]
  140. [[package]]
  141. name = "anstyle-wincon"
  142. version = "3.0.4"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
  145. dependencies = [
  146. "anstyle",
  147. "windows-sys 0.52.0",
  148. ]
  149. [[package]]
  150. name = "anyhow"
  151. version = "1.0.86"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
  154. [[package]]
  155. name = "arbitrary"
  156. version = "1.3.2"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
  159. [[package]]
  160. name = "arrayref"
  161. version = "0.3.8"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a"
  164. [[package]]
  165. name = "arrayvec"
  166. version = "0.7.6"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  169. [[package]]
  170. name = "ascii"
  171. version = "0.9.3"
  172. source = "registry+https://github.com/rust-lang/crates.io-index"
  173. checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e"
  174. [[package]]
  175. name = "asn1-rs"
  176. version = "0.6.2"
  177. source = "registry+https://github.com/rust-lang/crates.io-index"
  178. checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
  179. dependencies = [
  180. "asn1-rs-derive",
  181. "asn1-rs-impl",
  182. "displaydoc",
  183. "nom",
  184. "num-traits",
  185. "rusticata-macros",
  186. "thiserror",
  187. "time",
  188. ]
  189. [[package]]
  190. name = "asn1-rs-derive"
  191. version = "0.5.1"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
  194. dependencies = [
  195. "proc-macro2",
  196. "quote",
  197. "syn 2.0.75",
  198. "synstructure",
  199. ]
  200. [[package]]
  201. name = "asn1-rs-impl"
  202. version = "0.2.0"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  205. dependencies = [
  206. "proc-macro2",
  207. "quote",
  208. "syn 2.0.75",
  209. ]
  210. [[package]]
  211. name = "asn1_der"
  212. version = "0.7.6"
  213. source = "registry+https://github.com/rust-lang/crates.io-index"
  214. checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247"
  215. [[package]]
  216. name = "async-graphql"
  217. version = "7.0.7"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "2b76aba2f176af685c2229633881a3adeae51f87ae1811781e73910b7001c93e"
  220. dependencies = [
  221. "async-graphql-derive",
  222. "async-graphql-parser",
  223. "async-graphql-value",
  224. "async-stream",
  225. "async-trait",
  226. "base64 0.22.1",
  227. "bytes",
  228. "fnv",
  229. "futures-util",
  230. "http 1.1.0",
  231. "indexmap 2.4.0",
  232. "mime",
  233. "multer",
  234. "num-traits",
  235. "once_cell",
  236. "pin-project-lite",
  237. "regex",
  238. "serde",
  239. "serde_json",
  240. "serde_urlencoded",
  241. "static_assertions_next",
  242. "thiserror",
  243. "tracing",
  244. "tracing-futures",
  245. ]
  246. [[package]]
  247. name = "async-graphql-derive"
  248. version = "7.0.7"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "72e2e26a6b44bc61df3ca8546402cf9204c28e30c06084cc8e75cd5e34d4f150"
  251. dependencies = [
  252. "Inflector",
  253. "async-graphql-parser",
  254. "darling 0.20.10",
  255. "proc-macro-crate 3.1.0",
  256. "proc-macro2",
  257. "quote",
  258. "strum 0.26.3",
  259. "syn 2.0.75",
  260. "thiserror",
  261. ]
  262. [[package]]
  263. name = "async-graphql-parser"
  264. version = "7.0.7"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. checksum = "f801451484b4977d6fe67b29030f81353cabdcbb754e5a064f39493582dac0cf"
  267. dependencies = [
  268. "async-graphql-value",
  269. "pest",
  270. "serde",
  271. "serde_json",
  272. ]
  273. [[package]]
  274. name = "async-graphql-value"
  275. version = "7.0.7"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "69117c43c01d81a69890a9f5dd6235f2f027ca8d1ec62d6d3c5e01ca0edb4f2b"
  278. dependencies = [
  279. "bytes",
  280. "indexmap 2.4.0",
  281. "serde",
  282. "serde_json",
  283. ]
  284. [[package]]
  285. name = "async-io"
  286. version = "2.3.4"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8"
  289. dependencies = [
  290. "async-lock",
  291. "cfg-if",
  292. "concurrent-queue",
  293. "futures-io",
  294. "futures-lite",
  295. "parking",
  296. "polling",
  297. "rustix",
  298. "slab",
  299. "tracing",
  300. "windows-sys 0.59.0",
  301. ]
  302. [[package]]
  303. name = "async-lock"
  304. version = "3.4.0"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
  307. dependencies = [
  308. "event-listener",
  309. "event-listener-strategy",
  310. "pin-project-lite",
  311. ]
  312. [[package]]
  313. name = "async-stream"
  314. version = "0.3.5"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  317. dependencies = [
  318. "async-stream-impl",
  319. "futures-core",
  320. "pin-project-lite",
  321. ]
  322. [[package]]
  323. name = "async-stream-impl"
  324. version = "0.3.5"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  327. dependencies = [
  328. "proc-macro2",
  329. "quote",
  330. "syn 2.0.75",
  331. ]
  332. [[package]]
  333. name = "async-trait"
  334. version = "0.1.81"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
  337. dependencies = [
  338. "proc-macro2",
  339. "quote",
  340. "syn 2.0.75",
  341. ]
  342. [[package]]
  343. name = "asynchronous-codec"
  344. version = "0.6.2"
  345. source = "registry+https://github.com/rust-lang/crates.io-index"
  346. checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568"
  347. dependencies = [
  348. "bytes",
  349. "futures-sink",
  350. "futures-util",
  351. "memchr",
  352. "pin-project-lite",
  353. ]
  354. [[package]]
  355. name = "asynchronous-codec"
  356. version = "0.7.0"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  359. dependencies = [
  360. "bytes",
  361. "futures-sink",
  362. "futures-util",
  363. "memchr",
  364. "pin-project-lite",
  365. ]
  366. [[package]]
  367. name = "atomic-polyfill"
  368. version = "1.0.3"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
  371. dependencies = [
  372. "critical-section",
  373. ]
  374. [[package]]
  375. name = "attohttpc"
  376. version = "0.24.1"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2"
  379. dependencies = [
  380. "http 0.2.12",
  381. "log",
  382. "url",
  383. ]
  384. [[package]]
  385. name = "autocfg"
  386. version = "1.3.0"
  387. source = "registry+https://github.com/rust-lang/crates.io-index"
  388. checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
  389. [[package]]
  390. name = "axum"
  391. version = "0.5.17"
  392. source = "registry+https://github.com/rust-lang/crates.io-index"
  393. checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
  394. dependencies = [
  395. "async-trait",
  396. "axum-core",
  397. "bitflags 1.3.2",
  398. "bytes",
  399. "futures-util",
  400. "http 0.2.12",
  401. "http-body",
  402. "hyper",
  403. "itoa",
  404. "matchit",
  405. "memchr",
  406. "mime",
  407. "percent-encoding",
  408. "pin-project-lite",
  409. "serde",
  410. "serde_json",
  411. "serde_urlencoded",
  412. "sync_wrapper",
  413. "tokio",
  414. "tower",
  415. "tower-http",
  416. "tower-layer",
  417. "tower-service",
  418. ]
  419. [[package]]
  420. name = "axum-core"
  421. version = "0.2.9"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
  424. dependencies = [
  425. "async-trait",
  426. "bytes",
  427. "futures-util",
  428. "http 0.2.12",
  429. "http-body",
  430. "mime",
  431. "tower-layer",
  432. "tower-service",
  433. ]
  434. [[package]]
  435. name = "backtrace"
  436. version = "0.3.73"
  437. source = "registry+https://github.com/rust-lang/crates.io-index"
  438. checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
  439. dependencies = [
  440. "addr2line",
  441. "cc",
  442. "cfg-if",
  443. "libc",
  444. "miniz_oxide",
  445. "object",
  446. "rustc-demangle",
  447. "serde",
  448. ]
  449. [[package]]
  450. name = "base-x"
  451. version = "0.2.11"
  452. source = "registry+https://github.com/rust-lang/crates.io-index"
  453. checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
  454. [[package]]
  455. name = "base16ct"
  456. version = "0.2.0"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  459. [[package]]
  460. name = "base64"
  461. version = "0.13.1"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  464. [[package]]
  465. name = "base64"
  466. version = "0.21.7"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  469. [[package]]
  470. name = "base64"
  471. version = "0.22.1"
  472. source = "registry+https://github.com/rust-lang/crates.io-index"
  473. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  474. [[package]]
  475. name = "base64ct"
  476. version = "1.6.0"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  479. [[package]]
  480. name = "bech32"
  481. version = "0.9.1"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  484. [[package]]
  485. name = "bincode"
  486. version = "1.3.3"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  489. dependencies = [
  490. "serde",
  491. ]
  492. [[package]]
  493. name = "bit-set"
  494. version = "0.5.3"
  495. source = "registry+https://github.com/rust-lang/crates.io-index"
  496. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  497. dependencies = [
  498. "bit-vec",
  499. ]
  500. [[package]]
  501. name = "bit-vec"
  502. version = "0.6.3"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  505. [[package]]
  506. name = "bitflags"
  507. version = "1.3.2"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  510. [[package]]
  511. name = "bitflags"
  512. version = "2.6.0"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  515. dependencies = [
  516. "serde",
  517. ]
  518. [[package]]
  519. name = "bitvec"
  520. version = "1.0.1"
  521. source = "registry+https://github.com/rust-lang/crates.io-index"
  522. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  523. dependencies = [
  524. "funty",
  525. "radium",
  526. "tap",
  527. "wyz",
  528. ]
  529. [[package]]
  530. name = "blake2"
  531. version = "0.10.6"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
  534. dependencies = [
  535. "digest 0.10.7",
  536. ]
  537. [[package]]
  538. name = "block-buffer"
  539. version = "0.9.0"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  542. dependencies = [
  543. "generic-array",
  544. ]
  545. [[package]]
  546. name = "block-buffer"
  547. version = "0.10.4"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  550. dependencies = [
  551. "generic-array",
  552. ]
  553. [[package]]
  554. name = "borsh"
  555. version = "0.9.3"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
  558. dependencies = [
  559. "borsh-derive 0.9.3",
  560. "hashbrown 0.11.2",
  561. ]
  562. [[package]]
  563. name = "borsh"
  564. version = "0.10.3"
  565. source = "registry+https://github.com/rust-lang/crates.io-index"
  566. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  567. dependencies = [
  568. "borsh-derive 0.10.3",
  569. "hashbrown 0.13.2",
  570. ]
  571. [[package]]
  572. name = "borsh-derive"
  573. version = "0.9.3"
  574. source = "registry+https://github.com/rust-lang/crates.io-index"
  575. checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
  576. dependencies = [
  577. "borsh-derive-internal 0.9.3",
  578. "borsh-schema-derive-internal 0.9.3",
  579. "proc-macro-crate 0.1.5",
  580. "proc-macro2",
  581. "syn 1.0.109",
  582. ]
  583. [[package]]
  584. name = "borsh-derive"
  585. version = "0.10.3"
  586. source = "registry+https://github.com/rust-lang/crates.io-index"
  587. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  588. dependencies = [
  589. "borsh-derive-internal 0.10.3",
  590. "borsh-schema-derive-internal 0.10.3",
  591. "proc-macro-crate 0.1.5",
  592. "proc-macro2",
  593. "syn 1.0.109",
  594. ]
  595. [[package]]
  596. name = "borsh-derive-internal"
  597. version = "0.9.3"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
  600. dependencies = [
  601. "proc-macro2",
  602. "quote",
  603. "syn 1.0.109",
  604. ]
  605. [[package]]
  606. name = "borsh-derive-internal"
  607. version = "0.10.3"
  608. source = "registry+https://github.com/rust-lang/crates.io-index"
  609. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  610. dependencies = [
  611. "proc-macro2",
  612. "quote",
  613. "syn 1.0.109",
  614. ]
  615. [[package]]
  616. name = "borsh-schema-derive-internal"
  617. version = "0.9.3"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
  620. dependencies = [
  621. "proc-macro2",
  622. "quote",
  623. "syn 1.0.109",
  624. ]
  625. [[package]]
  626. name = "borsh-schema-derive-internal"
  627. version = "0.10.3"
  628. source = "registry+https://github.com/rust-lang/crates.io-index"
  629. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  630. dependencies = [
  631. "proc-macro2",
  632. "quote",
  633. "syn 1.0.109",
  634. ]
  635. [[package]]
  636. name = "bs58"
  637. version = "0.5.1"
  638. source = "registry+https://github.com/rust-lang/crates.io-index"
  639. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  640. dependencies = [
  641. "sha2 0.10.8",
  642. "tinyvec",
  643. ]
  644. [[package]]
  645. name = "bstr"
  646. version = "1.10.0"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
  649. dependencies = [
  650. "memchr",
  651. "regex-automata",
  652. "serde",
  653. ]
  654. [[package]]
  655. name = "bumpalo"
  656. version = "3.16.0"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  659. [[package]]
  660. name = "bytemuck"
  661. version = "1.17.0"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "6fd4c6dcc3b0aea2f5c0b4b82c2b15fe39ddbc76041a310848f4706edf76bb31"
  664. dependencies = [
  665. "bytemuck_derive",
  666. ]
  667. [[package]]
  668. name = "bytemuck_derive"
  669. version = "1.7.1"
  670. source = "registry+https://github.com/rust-lang/crates.io-index"
  671. checksum = "0cc8b54b395f2fcfbb3d90c47b01c7f444d94d05bdeb775811dec868ac3bbc26"
  672. dependencies = [
  673. "proc-macro2",
  674. "quote",
  675. "syn 2.0.75",
  676. ]
  677. [[package]]
  678. name = "byteorder"
  679. version = "1.5.0"
  680. source = "registry+https://github.com/rust-lang/crates.io-index"
  681. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  682. [[package]]
  683. name = "bytes"
  684. version = "1.7.1"
  685. source = "registry+https://github.com/rust-lang/crates.io-index"
  686. checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
  687. dependencies = [
  688. "serde",
  689. ]
  690. [[package]]
  691. name = "cc"
  692. version = "1.1.13"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48"
  695. dependencies = [
  696. "jobserver",
  697. "libc",
  698. "shlex",
  699. ]
  700. [[package]]
  701. name = "cfg-if"
  702. version = "1.0.0"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  705. [[package]]
  706. name = "chacha20"
  707. version = "0.9.1"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  710. dependencies = [
  711. "cfg-if",
  712. "cipher",
  713. "cpufeatures",
  714. ]
  715. [[package]]
  716. name = "chacha20poly1305"
  717. version = "0.10.1"
  718. source = "registry+https://github.com/rust-lang/crates.io-index"
  719. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  720. dependencies = [
  721. "aead",
  722. "chacha20",
  723. "cipher",
  724. "poly1305",
  725. "zeroize",
  726. ]
  727. [[package]]
  728. name = "chrono"
  729. version = "0.4.38"
  730. source = "registry+https://github.com/rust-lang/crates.io-index"
  731. checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
  732. dependencies = [
  733. "android-tzdata",
  734. "iana-time-zone",
  735. "js-sys",
  736. "num-traits",
  737. "serde",
  738. "wasm-bindgen",
  739. "windows-targets 0.52.6",
  740. ]
  741. [[package]]
  742. name = "cipher"
  743. version = "0.4.4"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  746. dependencies = [
  747. "crypto-common",
  748. "inout",
  749. "zeroize",
  750. ]
  751. [[package]]
  752. name = "clap"
  753. version = "4.5.16"
  754. source = "registry+https://github.com/rust-lang/crates.io-index"
  755. checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
  756. dependencies = [
  757. "clap_builder",
  758. "clap_derive",
  759. ]
  760. [[package]]
  761. name = "clap_builder"
  762. version = "4.5.15"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
  765. dependencies = [
  766. "anstream",
  767. "anstyle",
  768. "clap_lex",
  769. "strsim 0.11.1",
  770. ]
  771. [[package]]
  772. name = "clap_derive"
  773. version = "4.5.13"
  774. source = "registry+https://github.com/rust-lang/crates.io-index"
  775. checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
  776. dependencies = [
  777. "heck 0.5.0",
  778. "proc-macro2",
  779. "quote",
  780. "syn 2.0.75",
  781. ]
  782. [[package]]
  783. name = "clap_lex"
  784. version = "0.7.2"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
  787. [[package]]
  788. name = "cobs"
  789. version = "0.2.3"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
  792. [[package]]
  793. name = "coins-bip32"
  794. version = "0.8.7"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3"
  797. dependencies = [
  798. "bs58",
  799. "coins-core",
  800. "digest 0.10.7",
  801. "hmac 0.12.1",
  802. "k256",
  803. "serde",
  804. "sha2 0.10.8",
  805. "thiserror",
  806. ]
  807. [[package]]
  808. name = "coins-bip39"
  809. version = "0.8.7"
  810. source = "registry+https://github.com/rust-lang/crates.io-index"
  811. checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528"
  812. dependencies = [
  813. "bitvec",
  814. "coins-bip32",
  815. "hmac 0.12.1",
  816. "once_cell",
  817. "pbkdf2 0.12.2",
  818. "rand",
  819. "sha2 0.10.8",
  820. "thiserror",
  821. ]
  822. [[package]]
  823. name = "coins-core"
  824. version = "0.8.7"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979"
  827. dependencies = [
  828. "base64 0.21.7",
  829. "bech32",
  830. "bs58",
  831. "digest 0.10.7",
  832. "generic-array",
  833. "hex",
  834. "ripemd",
  835. "serde",
  836. "serde_derive",
  837. "sha2 0.10.8",
  838. "sha3",
  839. "thiserror",
  840. ]
  841. [[package]]
  842. name = "colorchoice"
  843. version = "1.0.2"
  844. source = "registry+https://github.com/rust-lang/crates.io-index"
  845. checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
  846. [[package]]
  847. name = "combine"
  848. version = "3.8.1"
  849. source = "registry+https://github.com/rust-lang/crates.io-index"
  850. checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680"
  851. dependencies = [
  852. "ascii",
  853. "byteorder",
  854. "either",
  855. "memchr",
  856. "unreachable",
  857. ]
  858. [[package]]
  859. name = "concurrent-queue"
  860. version = "2.5.0"
  861. source = "registry+https://github.com/rust-lang/crates.io-index"
  862. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  863. dependencies = [
  864. "crossbeam-utils",
  865. ]
  866. [[package]]
  867. name = "console"
  868. version = "0.15.8"
  869. source = "registry+https://github.com/rust-lang/crates.io-index"
  870. checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
  871. dependencies = [
  872. "encode_unicode",
  873. "lazy_static",
  874. "libc",
  875. "unicode-width",
  876. "windows-sys 0.52.0",
  877. ]
  878. [[package]]
  879. name = "const-oid"
  880. version = "0.9.6"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  883. [[package]]
  884. name = "convert_case"
  885. version = "0.4.0"
  886. source = "registry+https://github.com/rust-lang/crates.io-index"
  887. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  888. [[package]]
  889. name = "cookie"
  890. version = "0.17.0"
  891. source = "registry+https://github.com/rust-lang/crates.io-index"
  892. checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
  893. dependencies = [
  894. "percent-encoding",
  895. "time",
  896. "version_check",
  897. ]
  898. [[package]]
  899. name = "cookie_store"
  900. version = "0.20.0"
  901. source = "registry+https://github.com/rust-lang/crates.io-index"
  902. checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
  903. dependencies = [
  904. "cookie",
  905. "idna 0.3.0",
  906. "log",
  907. "publicsuffix",
  908. "serde",
  909. "serde_derive",
  910. "serde_json",
  911. "time",
  912. "url",
  913. ]
  914. [[package]]
  915. name = "core-foundation"
  916. version = "0.9.4"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  919. dependencies = [
  920. "core-foundation-sys",
  921. "libc",
  922. ]
  923. [[package]]
  924. name = "core-foundation-sys"
  925. version = "0.8.7"
  926. source = "registry+https://github.com/rust-lang/crates.io-index"
  927. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  928. [[package]]
  929. name = "core2"
  930. version = "0.4.0"
  931. source = "registry+https://github.com/rust-lang/crates.io-index"
  932. checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
  933. dependencies = [
  934. "memchr",
  935. ]
  936. [[package]]
  937. name = "counter"
  938. version = "0.5.7"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "2d458e66999348f56fd3ffcfbb7f7951542075ca8359687c703de6500c1ddccd"
  941. dependencies = [
  942. "num-traits",
  943. ]
  944. [[package]]
  945. name = "cpufeatures"
  946. version = "0.2.13"
  947. source = "registry+https://github.com/rust-lang/crates.io-index"
  948. checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
  949. dependencies = [
  950. "libc",
  951. ]
  952. [[package]]
  953. name = "cranelift-bforest"
  954. version = "0.110.2"
  955. source = "registry+https://github.com/rust-lang/crates.io-index"
  956. checksum = "305d51c180ebdc46ef61bc60c54ae6512db3bc9a05842a1f1e762e45977019ab"
  957. dependencies = [
  958. "cranelift-entity",
  959. ]
  960. [[package]]
  961. name = "cranelift-bitset"
  962. version = "0.110.2"
  963. source = "registry+https://github.com/rust-lang/crates.io-index"
  964. checksum = "e3247afacd9b13d620033f3190d9e49d1beefc1acb33d5604a249956c9c13709"
  965. dependencies = [
  966. "serde",
  967. "serde_derive",
  968. ]
  969. [[package]]
  970. name = "cranelift-codegen"
  971. version = "0.110.2"
  972. source = "registry+https://github.com/rust-lang/crates.io-index"
  973. checksum = "bd7ca95e831c18d1356da783765c344207cbdffea91e13e47fa9327dbb2e0719"
  974. dependencies = [
  975. "bumpalo",
  976. "cranelift-bforest",
  977. "cranelift-bitset",
  978. "cranelift-codegen-meta",
  979. "cranelift-codegen-shared",
  980. "cranelift-control",
  981. "cranelift-entity",
  982. "cranelift-isle",
  983. "gimli 0.28.1",
  984. "hashbrown 0.14.5",
  985. "log",
  986. "regalloc2",
  987. "rustc-hash 1.1.0",
  988. "smallvec",
  989. "target-lexicon",
  990. ]
  991. [[package]]
  992. name = "cranelift-codegen-meta"
  993. version = "0.110.2"
  994. source = "registry+https://github.com/rust-lang/crates.io-index"
  995. checksum = "450c105fa1e51bfba4e95a86e926504a867ad5639d63f31d43fe3b7ec1f1c9ef"
  996. dependencies = [
  997. "cranelift-codegen-shared",
  998. ]
  999. [[package]]
  1000. name = "cranelift-codegen-shared"
  1001. version = "0.110.2"
  1002. source = "registry+https://github.com/rust-lang/crates.io-index"
  1003. checksum = "5479117cd1266881479908d383086561cee37e49affbea9b1e6b594cc21cc220"
  1004. [[package]]
  1005. name = "cranelift-control"
  1006. version = "0.110.2"
  1007. source = "registry+https://github.com/rust-lang/crates.io-index"
  1008. checksum = "34378804f0abfdd22c068a741cfeed86938b92375b2a96fb0b42c878e0141bfb"
  1009. dependencies = [
  1010. "arbitrary",
  1011. ]
  1012. [[package]]
  1013. name = "cranelift-entity"
  1014. version = "0.110.2"
  1015. source = "registry+https://github.com/rust-lang/crates.io-index"
  1016. checksum = "a48cb0a194c9ba82fec35a1e492055388d89b2e3c03dee9dcf2488892be8004d"
  1017. dependencies = [
  1018. "cranelift-bitset",
  1019. "serde",
  1020. "serde_derive",
  1021. ]
  1022. [[package]]
  1023. name = "cranelift-frontend"
  1024. version = "0.110.2"
  1025. source = "registry+https://github.com/rust-lang/crates.io-index"
  1026. checksum = "8327afc6c1c05f4be62fefce5b439fa83521c65363a322e86ea32c85e7ceaf64"
  1027. dependencies = [
  1028. "cranelift-codegen",
  1029. "log",
  1030. "smallvec",
  1031. "target-lexicon",
  1032. ]
  1033. [[package]]
  1034. name = "cranelift-isle"
  1035. version = "0.110.2"
  1036. source = "registry+https://github.com/rust-lang/crates.io-index"
  1037. checksum = "56b08621c00321efcfa3eee6a3179adc009e21ea8d24ca7adc3c326184bc3f48"
  1038. [[package]]
  1039. name = "cranelift-native"
  1040. version = "0.110.2"
  1041. source = "registry+https://github.com/rust-lang/crates.io-index"
  1042. checksum = "d51180b147c8557c1196c77b098f04140c91962e135ea152cd2fcabf40cf365c"
  1043. dependencies = [
  1044. "cranelift-codegen",
  1045. "libc",
  1046. "target-lexicon",
  1047. ]
  1048. [[package]]
  1049. name = "cranelift-wasm"
  1050. version = "0.110.2"
  1051. source = "registry+https://github.com/rust-lang/crates.io-index"
  1052. checksum = "019e3dccb7f15e0bc14f0ddc034ec608a66df8e05c9e1e16f75a7716f8461799"
  1053. dependencies = [
  1054. "cranelift-codegen",
  1055. "cranelift-entity",
  1056. "cranelift-frontend",
  1057. "itertools 0.12.1",
  1058. "log",
  1059. "smallvec",
  1060. "wasmparser",
  1061. "wasmtime-types",
  1062. ]
  1063. [[package]]
  1064. name = "crc32fast"
  1065. version = "1.4.2"
  1066. source = "registry+https://github.com/rust-lang/crates.io-index"
  1067. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  1068. dependencies = [
  1069. "cfg-if",
  1070. ]
  1071. [[package]]
  1072. name = "critical-section"
  1073. version = "1.1.2"
  1074. source = "registry+https://github.com/rust-lang/crates.io-index"
  1075. checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216"
  1076. [[package]]
  1077. name = "crossbeam-deque"
  1078. version = "0.8.5"
  1079. source = "registry+https://github.com/rust-lang/crates.io-index"
  1080. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  1081. dependencies = [
  1082. "crossbeam-epoch",
  1083. "crossbeam-utils",
  1084. ]
  1085. [[package]]
  1086. name = "crossbeam-epoch"
  1087. version = "0.9.18"
  1088. source = "registry+https://github.com/rust-lang/crates.io-index"
  1089. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1090. dependencies = [
  1091. "crossbeam-utils",
  1092. ]
  1093. [[package]]
  1094. name = "crossbeam-utils"
  1095. version = "0.8.20"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
  1098. [[package]]
  1099. name = "crunchy"
  1100. version = "0.2.2"
  1101. source = "registry+https://github.com/rust-lang/crates.io-index"
  1102. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1103. [[package]]
  1104. name = "crypto-bigint"
  1105. version = "0.5.5"
  1106. source = "registry+https://github.com/rust-lang/crates.io-index"
  1107. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1108. dependencies = [
  1109. "generic-array",
  1110. "rand_core",
  1111. "subtle",
  1112. "zeroize",
  1113. ]
  1114. [[package]]
  1115. name = "crypto-common"
  1116. version = "0.1.6"
  1117. source = "registry+https://github.com/rust-lang/crates.io-index"
  1118. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1119. dependencies = [
  1120. "generic-array",
  1121. "rand_core",
  1122. "typenum",
  1123. ]
  1124. [[package]]
  1125. name = "crypto-mac"
  1126. version = "0.8.0"
  1127. source = "registry+https://github.com/rust-lang/crates.io-index"
  1128. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  1129. dependencies = [
  1130. "generic-array",
  1131. "subtle",
  1132. ]
  1133. [[package]]
  1134. name = "ctr"
  1135. version = "0.9.2"
  1136. source = "registry+https://github.com/rust-lang/crates.io-index"
  1137. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1138. dependencies = [
  1139. "cipher",
  1140. ]
  1141. [[package]]
  1142. name = "curve25519-dalek"
  1143. version = "4.1.3"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
  1146. dependencies = [
  1147. "cfg-if",
  1148. "cpufeatures",
  1149. "curve25519-dalek-derive",
  1150. "digest 0.10.7",
  1151. "fiat-crypto",
  1152. "rustc_version",
  1153. "subtle",
  1154. "zeroize",
  1155. ]
  1156. [[package]]
  1157. name = "curve25519-dalek-derive"
  1158. version = "0.1.1"
  1159. source = "registry+https://github.com/rust-lang/crates.io-index"
  1160. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1161. dependencies = [
  1162. "proc-macro2",
  1163. "quote",
  1164. "syn 2.0.75",
  1165. ]
  1166. [[package]]
  1167. name = "cynic"
  1168. version = "2.2.8"
  1169. source = "registry+https://github.com/rust-lang/crates.io-index"
  1170. checksum = "b1afa0591b1021e427e548a1f0f147fe6168f6c7c7f7006bace77f28856051b8"
  1171. dependencies = [
  1172. "cynic-proc-macros",
  1173. "reqwest",
  1174. "serde",
  1175. "serde_json",
  1176. "static_assertions",
  1177. "thiserror",
  1178. ]
  1179. [[package]]
  1180. name = "cynic-codegen"
  1181. version = "2.2.8"
  1182. source = "registry+https://github.com/rust-lang/crates.io-index"
  1183. checksum = "70a1bb05cc554f46079d0fa72abe995a2d32d0737d410a41da75b31e3f7ef768"
  1184. dependencies = [
  1185. "counter",
  1186. "darling 0.13.4",
  1187. "graphql-parser",
  1188. "once_cell",
  1189. "proc-macro2",
  1190. "quote",
  1191. "strsim 0.10.0",
  1192. "syn 1.0.109",
  1193. ]
  1194. [[package]]
  1195. name = "cynic-proc-macros"
  1196. version = "2.2.8"
  1197. source = "registry+https://github.com/rust-lang/crates.io-index"
  1198. checksum = "aa595c4ed7a5374e0e58c5c34f9d93bd6b7d45062790963bd4b4c3c0bf520c4d"
  1199. dependencies = [
  1200. "cynic-codegen",
  1201. "syn 1.0.109",
  1202. ]
  1203. [[package]]
  1204. name = "darling"
  1205. version = "0.13.4"
  1206. source = "registry+https://github.com/rust-lang/crates.io-index"
  1207. checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
  1208. dependencies = [
  1209. "darling_core 0.13.4",
  1210. "darling_macro 0.13.4",
  1211. ]
  1212. [[package]]
  1213. name = "darling"
  1214. version = "0.20.10"
  1215. source = "registry+https://github.com/rust-lang/crates.io-index"
  1216. checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
  1217. dependencies = [
  1218. "darling_core 0.20.10",
  1219. "darling_macro 0.20.10",
  1220. ]
  1221. [[package]]
  1222. name = "darling_core"
  1223. version = "0.13.4"
  1224. source = "registry+https://github.com/rust-lang/crates.io-index"
  1225. checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
  1226. dependencies = [
  1227. "fnv",
  1228. "ident_case",
  1229. "proc-macro2",
  1230. "quote",
  1231. "strsim 0.10.0",
  1232. "syn 1.0.109",
  1233. ]
  1234. [[package]]
  1235. name = "darling_core"
  1236. version = "0.20.10"
  1237. source = "registry+https://github.com/rust-lang/crates.io-index"
  1238. checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
  1239. dependencies = [
  1240. "fnv",
  1241. "ident_case",
  1242. "proc-macro2",
  1243. "quote",
  1244. "strsim 0.11.1",
  1245. "syn 2.0.75",
  1246. ]
  1247. [[package]]
  1248. name = "darling_macro"
  1249. version = "0.13.4"
  1250. source = "registry+https://github.com/rust-lang/crates.io-index"
  1251. checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
  1252. dependencies = [
  1253. "darling_core 0.13.4",
  1254. "quote",
  1255. "syn 1.0.109",
  1256. ]
  1257. [[package]]
  1258. name = "darling_macro"
  1259. version = "0.20.10"
  1260. source = "registry+https://github.com/rust-lang/crates.io-index"
  1261. checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
  1262. dependencies = [
  1263. "darling_core 0.20.10",
  1264. "quote",
  1265. "syn 2.0.75",
  1266. ]
  1267. [[package]]
  1268. name = "data-encoding"
  1269. version = "2.6.0"
  1270. source = "registry+https://github.com/rust-lang/crates.io-index"
  1271. checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
  1272. [[package]]
  1273. name = "data-encoding-macro"
  1274. version = "0.1.15"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639"
  1277. dependencies = [
  1278. "data-encoding",
  1279. "data-encoding-macro-internal",
  1280. ]
  1281. [[package]]
  1282. name = "data-encoding-macro-internal"
  1283. version = "0.1.13"
  1284. source = "registry+https://github.com/rust-lang/crates.io-index"
  1285. checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f"
  1286. dependencies = [
  1287. "data-encoding",
  1288. "syn 1.0.109",
  1289. ]
  1290. [[package]]
  1291. name = "der"
  1292. version = "0.7.9"
  1293. source = "registry+https://github.com/rust-lang/crates.io-index"
  1294. checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
  1295. dependencies = [
  1296. "const-oid",
  1297. "zeroize",
  1298. ]
  1299. [[package]]
  1300. name = "der-parser"
  1301. version = "9.0.0"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
  1304. dependencies = [
  1305. "asn1-rs",
  1306. "displaydoc",
  1307. "nom",
  1308. "num-bigint",
  1309. "num-traits",
  1310. "rusticata-macros",
  1311. ]
  1312. [[package]]
  1313. name = "deranged"
  1314. version = "0.3.11"
  1315. source = "registry+https://github.com/rust-lang/crates.io-index"
  1316. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1317. dependencies = [
  1318. "powerfmt",
  1319. "serde",
  1320. ]
  1321. [[package]]
  1322. name = "derivative"
  1323. version = "2.2.0"
  1324. source = "registry+https://github.com/rust-lang/crates.io-index"
  1325. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1326. dependencies = [
  1327. "proc-macro2",
  1328. "quote",
  1329. "syn 1.0.109",
  1330. ]
  1331. [[package]]
  1332. name = "derive_more"
  1333. version = "0.99.18"
  1334. source = "registry+https://github.com/rust-lang/crates.io-index"
  1335. checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
  1336. dependencies = [
  1337. "convert_case",
  1338. "proc-macro2",
  1339. "quote",
  1340. "rustc_version",
  1341. "syn 2.0.75",
  1342. ]
  1343. [[package]]
  1344. name = "difflib"
  1345. version = "0.4.0"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
  1348. [[package]]
  1349. name = "digest"
  1350. version = "0.9.0"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1353. dependencies = [
  1354. "generic-array",
  1355. ]
  1356. [[package]]
  1357. name = "digest"
  1358. version = "0.10.7"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1361. dependencies = [
  1362. "block-buffer 0.10.4",
  1363. "const-oid",
  1364. "crypto-common",
  1365. "subtle",
  1366. ]
  1367. [[package]]
  1368. name = "directories-next"
  1369. version = "2.0.0"
  1370. source = "registry+https://github.com/rust-lang/crates.io-index"
  1371. checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
  1372. dependencies = [
  1373. "cfg-if",
  1374. "dirs-sys-next",
  1375. ]
  1376. [[package]]
  1377. name = "dirs-sys-next"
  1378. version = "0.1.2"
  1379. source = "registry+https://github.com/rust-lang/crates.io-index"
  1380. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1381. dependencies = [
  1382. "libc",
  1383. "redox_users",
  1384. "winapi",
  1385. ]
  1386. [[package]]
  1387. name = "displaydoc"
  1388. version = "0.2.5"
  1389. source = "registry+https://github.com/rust-lang/crates.io-index"
  1390. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1391. dependencies = [
  1392. "proc-macro2",
  1393. "quote",
  1394. "syn 2.0.75",
  1395. ]
  1396. [[package]]
  1397. name = "dotenv"
  1398. version = "0.15.0"
  1399. source = "registry+https://github.com/rust-lang/crates.io-index"
  1400. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  1401. [[package]]
  1402. name = "downcast"
  1403. version = "0.11.0"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
  1406. [[package]]
  1407. name = "dtoa"
  1408. version = "1.0.9"
  1409. source = "registry+https://github.com/rust-lang/crates.io-index"
  1410. checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
  1411. [[package]]
  1412. name = "dyn-clone"
  1413. version = "1.0.17"
  1414. source = "registry+https://github.com/rust-lang/crates.io-index"
  1415. checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
  1416. [[package]]
  1417. name = "ecdsa"
  1418. version = "0.16.9"
  1419. source = "registry+https://github.com/rust-lang/crates.io-index"
  1420. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1421. dependencies = [
  1422. "der",
  1423. "digest 0.10.7",
  1424. "elliptic-curve",
  1425. "rfc6979",
  1426. "signature",
  1427. "spki",
  1428. ]
  1429. [[package]]
  1430. name = "ed25519"
  1431. version = "2.2.3"
  1432. source = "registry+https://github.com/rust-lang/crates.io-index"
  1433. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1434. dependencies = [
  1435. "pkcs8",
  1436. "signature",
  1437. ]
  1438. [[package]]
  1439. name = "ed25519-dalek"
  1440. version = "2.1.1"
  1441. source = "registry+https://github.com/rust-lang/crates.io-index"
  1442. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1443. dependencies = [
  1444. "curve25519-dalek",
  1445. "ed25519",
  1446. "rand_core",
  1447. "serde",
  1448. "sha2 0.10.8",
  1449. "subtle",
  1450. "zeroize",
  1451. ]
  1452. [[package]]
  1453. name = "either"
  1454. version = "1.13.0"
  1455. source = "registry+https://github.com/rust-lang/crates.io-index"
  1456. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  1457. [[package]]
  1458. name = "elliptic-curve"
  1459. version = "0.13.8"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1462. dependencies = [
  1463. "base16ct",
  1464. "crypto-bigint",
  1465. "digest 0.10.7",
  1466. "ff",
  1467. "generic-array",
  1468. "group",
  1469. "pkcs8",
  1470. "rand_core",
  1471. "sec1",
  1472. "subtle",
  1473. "zeroize",
  1474. ]
  1475. [[package]]
  1476. name = "embedded-io"
  1477. version = "0.4.0"
  1478. source = "registry+https://github.com/rust-lang/crates.io-index"
  1479. checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
  1480. [[package]]
  1481. name = "embedded-io"
  1482. version = "0.6.1"
  1483. source = "registry+https://github.com/rust-lang/crates.io-index"
  1484. checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
  1485. [[package]]
  1486. name = "encode_unicode"
  1487. version = "0.3.6"
  1488. source = "registry+https://github.com/rust-lang/crates.io-index"
  1489. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1490. [[package]]
  1491. name = "encoding_rs"
  1492. version = "0.8.34"
  1493. source = "registry+https://github.com/rust-lang/crates.io-index"
  1494. checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
  1495. dependencies = [
  1496. "cfg-if",
  1497. ]
  1498. [[package]]
  1499. name = "enum-as-inner"
  1500. version = "0.6.0"
  1501. source = "registry+https://github.com/rust-lang/crates.io-index"
  1502. checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
  1503. dependencies = [
  1504. "heck 0.4.1",
  1505. "proc-macro2",
  1506. "quote",
  1507. "syn 2.0.75",
  1508. ]
  1509. [[package]]
  1510. name = "enum-iterator"
  1511. version = "1.5.0"
  1512. source = "registry+https://github.com/rust-lang/crates.io-index"
  1513. checksum = "9fd242f399be1da0a5354aa462d57b4ab2b4ee0683cc552f7c007d2d12d36e94"
  1514. dependencies = [
  1515. "enum-iterator-derive",
  1516. ]
  1517. [[package]]
  1518. name = "enum-iterator-derive"
  1519. version = "1.4.0"
  1520. source = "registry+https://github.com/rust-lang/crates.io-index"
  1521. checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
  1522. dependencies = [
  1523. "proc-macro2",
  1524. "quote",
  1525. "syn 2.0.75",
  1526. ]
  1527. [[package]]
  1528. name = "equivalent"
  1529. version = "1.0.1"
  1530. source = "registry+https://github.com/rust-lang/crates.io-index"
  1531. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  1532. [[package]]
  1533. name = "errno"
  1534. version = "0.3.9"
  1535. source = "registry+https://github.com/rust-lang/crates.io-index"
  1536. checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
  1537. dependencies = [
  1538. "libc",
  1539. "windows-sys 0.52.0",
  1540. ]
  1541. [[package]]
  1542. name = "eth-keystore"
  1543. version = "0.5.0"
  1544. source = "registry+https://github.com/rust-lang/crates.io-index"
  1545. checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab"
  1546. dependencies = [
  1547. "aes",
  1548. "ctr",
  1549. "digest 0.10.7",
  1550. "hex",
  1551. "hmac 0.12.1",
  1552. "pbkdf2 0.11.0",
  1553. "rand",
  1554. "scrypt",
  1555. "serde",
  1556. "serde_json",
  1557. "sha2 0.10.8",
  1558. "sha3",
  1559. "thiserror",
  1560. "uuid 0.8.2",
  1561. ]
  1562. [[package]]
  1563. name = "ethnum"
  1564. version = "1.5.0"
  1565. source = "registry+https://github.com/rust-lang/crates.io-index"
  1566. checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
  1567. [[package]]
  1568. name = "event-listener"
  1569. version = "5.3.1"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
  1572. dependencies = [
  1573. "concurrent-queue",
  1574. "parking",
  1575. "pin-project-lite",
  1576. ]
  1577. [[package]]
  1578. name = "event-listener-strategy"
  1579. version = "0.5.2"
  1580. source = "registry+https://github.com/rust-lang/crates.io-index"
  1581. checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
  1582. dependencies = [
  1583. "event-listener",
  1584. "pin-project-lite",
  1585. ]
  1586. [[package]]
  1587. name = "eventsource-client"
  1588. version = "0.12.2"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "4c80c6714d1a380314fcb11a22eeff022e1e1c9642f0bb54e15dc9cb29f37b29"
  1591. dependencies = [
  1592. "futures",
  1593. "hyper",
  1594. "hyper-rustls",
  1595. "hyper-timeout",
  1596. "log",
  1597. "pin-project",
  1598. "rand",
  1599. "tokio",
  1600. ]
  1601. [[package]]
  1602. name = "fallible-iterator"
  1603. version = "0.3.0"
  1604. source = "registry+https://github.com/rust-lang/crates.io-index"
  1605. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  1606. [[package]]
  1607. name = "fast-math"
  1608. version = "0.1.1"
  1609. source = "registry+https://github.com/rust-lang/crates.io-index"
  1610. checksum = "2465292146cdfc2011350fe3b1c616ac83cf0faeedb33463ba1c332ed8948d66"
  1611. dependencies = [
  1612. "ieee754",
  1613. ]
  1614. [[package]]
  1615. name = "fastrand"
  1616. version = "2.1.0"
  1617. source = "registry+https://github.com/rust-lang/crates.io-index"
  1618. checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
  1619. [[package]]
  1620. name = "ff"
  1621. version = "0.13.0"
  1622. source = "registry+https://github.com/rust-lang/crates.io-index"
  1623. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  1624. dependencies = [
  1625. "rand_core",
  1626. "subtle",
  1627. ]
  1628. [[package]]
  1629. name = "fiat-crypto"
  1630. version = "0.2.9"
  1631. source = "registry+https://github.com/rust-lang/crates.io-index"
  1632. checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
  1633. [[package]]
  1634. name = "fixed-hash"
  1635. version = "0.8.0"
  1636. source = "registry+https://github.com/rust-lang/crates.io-index"
  1637. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  1638. dependencies = [
  1639. "static_assertions",
  1640. ]
  1641. [[package]]
  1642. name = "float-cmp"
  1643. version = "0.9.0"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
  1646. dependencies = [
  1647. "num-traits",
  1648. ]
  1649. [[package]]
  1650. name = "fnv"
  1651. version = "1.0.7"
  1652. source = "registry+https://github.com/rust-lang/crates.io-index"
  1653. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1654. [[package]]
  1655. name = "foreign-types"
  1656. version = "0.3.2"
  1657. source = "registry+https://github.com/rust-lang/crates.io-index"
  1658. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1659. dependencies = [
  1660. "foreign-types-shared",
  1661. ]
  1662. [[package]]
  1663. name = "foreign-types-shared"
  1664. version = "0.1.1"
  1665. source = "registry+https://github.com/rust-lang/crates.io-index"
  1666. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1667. [[package]]
  1668. name = "form_urlencoded"
  1669. version = "1.2.1"
  1670. source = "registry+https://github.com/rust-lang/crates.io-index"
  1671. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1672. dependencies = [
  1673. "percent-encoding",
  1674. ]
  1675. [[package]]
  1676. name = "fragile"
  1677. version = "2.0.0"
  1678. source = "registry+https://github.com/rust-lang/crates.io-index"
  1679. checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
  1680. [[package]]
  1681. name = "fuel-abi-types"
  1682. version = "0.7.0"
  1683. source = "registry+https://github.com/rust-lang/crates.io-index"
  1684. checksum = "bce44ac13b1971be7cea024a2003cf944522093dafec454fea9ff792f0ff2577"
  1685. dependencies = [
  1686. "itertools 0.10.5",
  1687. "lazy_static",
  1688. "proc-macro2",
  1689. "quote",
  1690. "regex",
  1691. "serde",
  1692. "serde_json",
  1693. "syn 2.0.75",
  1694. "thiserror",
  1695. ]
  1696. [[package]]
  1697. name = "fuel-asm"
  1698. version = "0.56.0"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "122c27ab46707017063bf1c6e0b4f3de881e22e81b4059750a0dc95033d9cc26"
  1701. dependencies = [
  1702. "bitflags 2.6.0",
  1703. "fuel-types",
  1704. "serde",
  1705. "strum 0.24.1",
  1706. ]
  1707. [[package]]
  1708. name = "fuel-core"
  1709. version = "0.35.0"
  1710. source = "registry+https://github.com/rust-lang/crates.io-index"
  1711. checksum = "023265fe375de17c0ad26ae5d01feb4841653524deab82cbc70979ea5d346b94"
  1712. dependencies = [
  1713. "anyhow",
  1714. "async-graphql",
  1715. "async-trait",
  1716. "axum",
  1717. "clap",
  1718. "derive_more",
  1719. "enum-iterator",
  1720. "fuel-core-chain-config",
  1721. "fuel-core-consensus-module",
  1722. "fuel-core-database",
  1723. "fuel-core-executor",
  1724. "fuel-core-gas-price-service",
  1725. "fuel-core-importer",
  1726. "fuel-core-metrics",
  1727. "fuel-core-p2p",
  1728. "fuel-core-poa",
  1729. "fuel-core-producer",
  1730. "fuel-core-services",
  1731. "fuel-core-storage",
  1732. "fuel-core-txpool",
  1733. "fuel-core-types",
  1734. "fuel-core-upgradable-executor",
  1735. "futures",
  1736. "hex",
  1737. "hyper",
  1738. "indicatif",
  1739. "itertools 0.12.1",
  1740. "postcard",
  1741. "rand",
  1742. "serde",
  1743. "serde_json",
  1744. "strum 0.25.0",
  1745. "strum_macros 0.25.3",
  1746. "thiserror",
  1747. "tokio",
  1748. "tokio-rayon",
  1749. "tokio-stream",
  1750. "tokio-util",
  1751. "tower-http",
  1752. "tracing",
  1753. "uuid 1.10.0",
  1754. ]
  1755. [[package]]
  1756. name = "fuel-core-chain-config"
  1757. version = "0.35.0"
  1758. source = "registry+https://github.com/rust-lang/crates.io-index"
  1759. checksum = "318a5a9733255cffac64a4b5acf6a7f41e438bec3ead506fc9f74730ce956528"
  1760. dependencies = [
  1761. "anyhow",
  1762. "bech32",
  1763. "derivative",
  1764. "fuel-core-storage",
  1765. "fuel-core-types",
  1766. "itertools 0.12.1",
  1767. "postcard",
  1768. "rand",
  1769. "serde",
  1770. "serde_json",
  1771. "serde_with",
  1772. "tracing",
  1773. ]
  1774. [[package]]
  1775. name = "fuel-core-client"
  1776. version = "0.35.0"
  1777. source = "registry+https://github.com/rust-lang/crates.io-index"
  1778. checksum = "03ad219bde52b072a2d828f27072982047a77cc02c953ea7e83c23de586d466d"
  1779. dependencies = [
  1780. "anyhow",
  1781. "cynic",
  1782. "derive_more",
  1783. "eventsource-client",
  1784. "fuel-core-types",
  1785. "futures",
  1786. "hex",
  1787. "hyper-rustls",
  1788. "itertools 0.12.1",
  1789. "reqwest",
  1790. "schemafy_lib",
  1791. "serde",
  1792. "serde_json",
  1793. "tai64",
  1794. "thiserror",
  1795. "tracing",
  1796. ]
  1797. [[package]]
  1798. name = "fuel-core-consensus-module"
  1799. version = "0.35.0"
  1800. source = "registry+https://github.com/rust-lang/crates.io-index"
  1801. checksum = "e43c7a168ee26efee5fa2fc54e4ba003b386f8f6d1f407db3e5c98bcdec6d0a2"
  1802. dependencies = [
  1803. "anyhow",
  1804. "fuel-core-chain-config",
  1805. "fuel-core-poa",
  1806. "fuel-core-storage",
  1807. "fuel-core-types",
  1808. ]
  1809. [[package]]
  1810. name = "fuel-core-database"
  1811. version = "0.35.0"
  1812. source = "registry+https://github.com/rust-lang/crates.io-index"
  1813. checksum = "8e7c0e04807ec39d71910ee1cab9c1f9eb27ee9bf05a3d8788c3db6801c6ac27"
  1814. dependencies = [
  1815. "anyhow",
  1816. "derive_more",
  1817. "fuel-core-storage",
  1818. "fuel-core-types",
  1819. ]
  1820. [[package]]
  1821. name = "fuel-core-executor"
  1822. version = "0.35.0"
  1823. source = "registry+https://github.com/rust-lang/crates.io-index"
  1824. checksum = "061f43f469181ac6991e83458147e3d07a503a23f48e1cedc10ea83e8700d6d8"
  1825. dependencies = [
  1826. "anyhow",
  1827. "fuel-core-storage",
  1828. "fuel-core-types",
  1829. "hex",
  1830. "parking_lot",
  1831. "serde",
  1832. "tracing",
  1833. ]
  1834. [[package]]
  1835. name = "fuel-core-gas-price-service"
  1836. version = "0.35.0"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "50015fb2a24f21c441a59e4e81e2a5eee3626285784119cf9346be6e37bfe199"
  1839. dependencies = [
  1840. "anyhow",
  1841. "async-trait",
  1842. "enum-iterator",
  1843. "fuel-core-services",
  1844. "fuel-core-storage",
  1845. "fuel-core-types",
  1846. "fuel-gas-price-algorithm",
  1847. "futures",
  1848. "num_enum",
  1849. "serde",
  1850. "strum 0.25.0",
  1851. "strum_macros 0.25.3",
  1852. "thiserror",
  1853. "tokio",
  1854. "tokio-stream",
  1855. "tracing",
  1856. ]
  1857. [[package]]
  1858. name = "fuel-core-importer"
  1859. version = "0.35.0"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "69fd6d1c72316511bd7c00084f2d8684a736dd57f97f912564d9af8ea13929c9"
  1862. dependencies = [
  1863. "anyhow",
  1864. "derive_more",
  1865. "fuel-core-metrics",
  1866. "fuel-core-storage",
  1867. "fuel-core-types",
  1868. "parking_lot",
  1869. "rayon",
  1870. "tokio",
  1871. "tracing",
  1872. ]
  1873. [[package]]
  1874. name = "fuel-core-metrics"
  1875. version = "0.35.0"
  1876. source = "registry+https://github.com/rust-lang/crates.io-index"
  1877. checksum = "88eb1bd81016b49493181b8bc29526678229350a780d4d04db137415028db179"
  1878. dependencies = [
  1879. "parking_lot",
  1880. "pin-project-lite",
  1881. "prometheus-client",
  1882. "regex",
  1883. "tracing",
  1884. ]
  1885. [[package]]
  1886. name = "fuel-core-p2p"
  1887. version = "0.35.0"
  1888. source = "registry+https://github.com/rust-lang/crates.io-index"
  1889. checksum = "fd4d69e535e914be87cb92843d4ac6b7b8b60110364f88efe8e509052368aaa3"
  1890. dependencies = [
  1891. "anyhow",
  1892. "async-trait",
  1893. "fuel-core-chain-config",
  1894. "fuel-core-metrics",
  1895. "fuel-core-services",
  1896. "fuel-core-storage",
  1897. "fuel-core-types",
  1898. "futures",
  1899. "hex",
  1900. "ip_network",
  1901. "libp2p",
  1902. "libp2p-mplex",
  1903. "postcard",
  1904. "prometheus-client",
  1905. "quick-protobuf",
  1906. "quick-protobuf-codec",
  1907. "rand",
  1908. "rayon",
  1909. "serde",
  1910. "serde_with",
  1911. "sha2 0.10.8",
  1912. "thiserror",
  1913. "tokio",
  1914. "tracing",
  1915. "void",
  1916. ]
  1917. [[package]]
  1918. name = "fuel-core-poa"
  1919. version = "0.35.0"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "5ef478ff684ee6c2eac57070322ba05525842670576328414da7fd6c40af4e25"
  1922. dependencies = [
  1923. "anyhow",
  1924. "async-trait",
  1925. "fuel-core-chain-config",
  1926. "fuel-core-services",
  1927. "fuel-core-storage",
  1928. "fuel-core-types",
  1929. "serde",
  1930. "serde_json",
  1931. "tokio",
  1932. "tokio-stream",
  1933. "tracing",
  1934. ]
  1935. [[package]]
  1936. name = "fuel-core-producer"
  1937. version = "0.35.0"
  1938. source = "registry+https://github.com/rust-lang/crates.io-index"
  1939. checksum = "43d09fa42cdfe3c72fe325043e6b7860586d7f34c60baaef9f4a18a13bdcc6f4"
  1940. dependencies = [
  1941. "anyhow",
  1942. "async-trait",
  1943. "derive_more",
  1944. "fuel-core-storage",
  1945. "fuel-core-types",
  1946. "tokio",
  1947. "tokio-rayon",
  1948. "tracing",
  1949. ]
  1950. [[package]]
  1951. name = "fuel-core-services"
  1952. version = "0.35.0"
  1953. source = "registry+https://github.com/rust-lang/crates.io-index"
  1954. checksum = "064b31213ea0b56f6558a0493b264cbd79e060a56de2bd35f8a10d7e78f526fa"
  1955. dependencies = [
  1956. "anyhow",
  1957. "async-trait",
  1958. "fuel-core-metrics",
  1959. "futures",
  1960. "parking_lot",
  1961. "tokio",
  1962. "tracing",
  1963. ]
  1964. [[package]]
  1965. name = "fuel-core-storage"
  1966. version = "0.35.0"
  1967. source = "registry+https://github.com/rust-lang/crates.io-index"
  1968. checksum = "f06320744b7d53bc7928d1a40a28fd697191a5b6938a353164231a3423ebdcd9"
  1969. dependencies = [
  1970. "anyhow",
  1971. "derive_more",
  1972. "enum-iterator",
  1973. "fuel-core-types",
  1974. "fuel-vm",
  1975. "impl-tools",
  1976. "itertools 0.12.1",
  1977. "mockall",
  1978. "num_enum",
  1979. "paste",
  1980. "postcard",
  1981. "primitive-types",
  1982. "rand",
  1983. "serde",
  1984. "strum 0.25.0",
  1985. "strum_macros 0.25.3",
  1986. ]
  1987. [[package]]
  1988. name = "fuel-core-txpool"
  1989. version = "0.35.0"
  1990. source = "registry+https://github.com/rust-lang/crates.io-index"
  1991. checksum = "9deaa3a9b5a2d49bf12fba5af16cc29142d58318eeb5ec8e67258d2dc1ec66ff"
  1992. dependencies = [
  1993. "anyhow",
  1994. "async-trait",
  1995. "derive_more",
  1996. "fuel-core-metrics",
  1997. "fuel-core-services",
  1998. "fuel-core-storage",
  1999. "fuel-core-types",
  2000. "mockall",
  2001. "num-rational",
  2002. "parking_lot",
  2003. "tokio",
  2004. "tokio-rayon",
  2005. "tokio-stream",
  2006. "tracing",
  2007. ]
  2008. [[package]]
  2009. name = "fuel-core-types"
  2010. version = "0.35.0"
  2011. source = "registry+https://github.com/rust-lang/crates.io-index"
  2012. checksum = "84fda0c6dc7b3bd24a993b3902f55862b8db0fa6de5b0f1d45f5942bc59792eb"
  2013. dependencies = [
  2014. "anyhow",
  2015. "bs58",
  2016. "derivative",
  2017. "derive_more",
  2018. "fuel-vm",
  2019. "rand",
  2020. "secrecy",
  2021. "serde",
  2022. "tai64",
  2023. "zeroize",
  2024. ]
  2025. [[package]]
  2026. name = "fuel-core-upgradable-executor"
  2027. version = "0.35.0"
  2028. source = "registry+https://github.com/rust-lang/crates.io-index"
  2029. checksum = "5c104eb427f63ab720ffa2cd08e35df3064753648ff5dace9853a68f7ae98e1b"
  2030. dependencies = [
  2031. "anyhow",
  2032. "derive_more",
  2033. "fuel-core-executor",
  2034. "fuel-core-storage",
  2035. "fuel-core-types",
  2036. "fuel-core-wasm-executor",
  2037. "parking_lot",
  2038. "postcard",
  2039. "tracing",
  2040. "wasmtime",
  2041. ]
  2042. [[package]]
  2043. name = "fuel-core-wasm-executor"
  2044. version = "0.35.0"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "5e2277ef1637329cb879d9cf370dae9fa3b23f28031eb59800f39e552b81aefe"
  2047. dependencies = [
  2048. "anyhow",
  2049. "fuel-core-executor",
  2050. "fuel-core-storage",
  2051. "fuel-core-types",
  2052. "postcard",
  2053. "serde",
  2054. ]
  2055. [[package]]
  2056. name = "fuel-crypto"
  2057. version = "0.56.0"
  2058. source = "registry+https://github.com/rust-lang/crates.io-index"
  2059. checksum = "33548590131674e8f272a3e056be4dbaa1de7cb364eab2b17987cd5c0dc31cb0"
  2060. dependencies = [
  2061. "coins-bip32",
  2062. "coins-bip39",
  2063. "ecdsa",
  2064. "ed25519-dalek",
  2065. "fuel-types",
  2066. "k256",
  2067. "lazy_static",
  2068. "p256",
  2069. "rand",
  2070. "secp256k1",
  2071. "serde",
  2072. "sha2 0.10.8",
  2073. "zeroize",
  2074. ]
  2075. [[package]]
  2076. name = "fuel-derive"
  2077. version = "0.56.0"
  2078. source = "registry+https://github.com/rust-lang/crates.io-index"
  2079. checksum = "3f49fdbfc1615d88d2849650afc2b0ac2fecd69661ebadd31a073d8416747764"
  2080. dependencies = [
  2081. "proc-macro2",
  2082. "quote",
  2083. "syn 2.0.75",
  2084. "synstructure",
  2085. ]
  2086. [[package]]
  2087. name = "fuel-gas-price-algorithm"
  2088. version = "0.35.0"
  2089. source = "registry+https://github.com/rust-lang/crates.io-index"
  2090. checksum = "9cca4572eaa61de46ba3e78c90b27bc16d13af2da165273bee66e3ac034513e2"
  2091. dependencies = [
  2092. "proptest",
  2093. "serde",
  2094. "thiserror",
  2095. ]
  2096. [[package]]
  2097. name = "fuel-merkle"
  2098. version = "0.56.0"
  2099. source = "registry+https://github.com/rust-lang/crates.io-index"
  2100. checksum = "cf17ce8ee5e8b573ea584c223635ff09f1288ad022bcf662954fdccb907602eb"
  2101. dependencies = [
  2102. "derive_more",
  2103. "digest 0.10.7",
  2104. "fuel-storage",
  2105. "hashbrown 0.13.2",
  2106. "hex",
  2107. "serde",
  2108. "sha2 0.10.8",
  2109. ]
  2110. [[package]]
  2111. name = "fuel-storage"
  2112. version = "0.56.0"
  2113. source = "registry+https://github.com/rust-lang/crates.io-index"
  2114. checksum = "4c1b711f28553ddc5f3546711bd220e144ce4c1af7d9e9a1f70b2f20d9f5b791"
  2115. [[package]]
  2116. name = "fuel-tx"
  2117. version = "0.56.0"
  2118. source = "registry+https://github.com/rust-lang/crates.io-index"
  2119. checksum = "13aae44611588d199dd119e4a0ebd8eb7ae4cde6bf8b4d12715610b1f5e5b731"
  2120. dependencies = [
  2121. "bitflags 2.6.0",
  2122. "derivative",
  2123. "derive_more",
  2124. "fuel-asm",
  2125. "fuel-crypto",
  2126. "fuel-merkle",
  2127. "fuel-types",
  2128. "hashbrown 0.14.5",
  2129. "itertools 0.10.5",
  2130. "postcard",
  2131. "rand",
  2132. "serde",
  2133. "serde_json",
  2134. "strum 0.24.1",
  2135. "strum_macros 0.24.3",
  2136. ]
  2137. [[package]]
  2138. name = "fuel-types"
  2139. version = "0.56.0"
  2140. source = "registry+https://github.com/rust-lang/crates.io-index"
  2141. checksum = "5b6fb26bcb408b6897e603f68cf60bbbaf6d15381c99f54a69ea743a58235ac1"
  2142. dependencies = [
  2143. "fuel-derive",
  2144. "hex",
  2145. "rand",
  2146. "serde",
  2147. ]
  2148. [[package]]
  2149. name = "fuel-vm"
  2150. version = "0.56.0"
  2151. source = "registry+https://github.com/rust-lang/crates.io-index"
  2152. checksum = "64fc4695efac9207276f6229f2dd9811848b328a13604a698f7bce1d452bd986"
  2153. dependencies = [
  2154. "anyhow",
  2155. "async-trait",
  2156. "backtrace",
  2157. "bitflags 2.6.0",
  2158. "derivative",
  2159. "derive_more",
  2160. "ethnum",
  2161. "fuel-asm",
  2162. "fuel-crypto",
  2163. "fuel-merkle",
  2164. "fuel-storage",
  2165. "fuel-tx",
  2166. "fuel-types",
  2167. "hashbrown 0.14.5",
  2168. "itertools 0.10.5",
  2169. "libm",
  2170. "paste",
  2171. "percent-encoding",
  2172. "primitive-types",
  2173. "rand",
  2174. "serde",
  2175. "serde_with",
  2176. "sha3",
  2177. "static_assertions",
  2178. "strum 0.24.1",
  2179. "tai64",
  2180. ]
  2181. [[package]]
  2182. name = "fuels"
  2183. version = "0.66.4"
  2184. source = "registry+https://github.com/rust-lang/crates.io-index"
  2185. checksum = "9699101cadc9ad3f1eff2a71532d755ab5526419414b99702e89c1d8b92b5938"
  2186. dependencies = [
  2187. "fuel-core-client",
  2188. "fuel-crypto",
  2189. "fuel-tx",
  2190. "fuels-accounts",
  2191. "fuels-core",
  2192. "fuels-macros",
  2193. "fuels-programs",
  2194. "fuels-test-helpers",
  2195. ]
  2196. [[package]]
  2197. name = "fuels-accounts"
  2198. version = "0.66.4"
  2199. source = "registry+https://github.com/rust-lang/crates.io-index"
  2200. checksum = "a3e97cf3bb16c8b6436dd6e3a6f9cea5c1ffda8daf7cdb335c60b74c31572f57"
  2201. dependencies = [
  2202. "async-trait",
  2203. "chrono",
  2204. "elliptic-curve",
  2205. "eth-keystore",
  2206. "fuel-core-client",
  2207. "fuel-core-types",
  2208. "fuel-crypto",
  2209. "fuel-tx",
  2210. "fuel-types",
  2211. "fuels-core",
  2212. "itertools 0.12.1",
  2213. "rand",
  2214. "semver",
  2215. "tai64",
  2216. "thiserror",
  2217. "tokio",
  2218. "zeroize",
  2219. ]
  2220. [[package]]
  2221. name = "fuels-code-gen"
  2222. version = "0.66.4"
  2223. source = "registry+https://github.com/rust-lang/crates.io-index"
  2224. checksum = "47552a5e8b6935595131ef38b14ef4eee8db870174ea62c8db804dbfa02f57d6"
  2225. dependencies = [
  2226. "Inflector",
  2227. "fuel-abi-types",
  2228. "itertools 0.12.1",
  2229. "proc-macro2",
  2230. "quote",
  2231. "regex",
  2232. "serde_json",
  2233. "syn 2.0.75",
  2234. ]
  2235. [[package]]
  2236. name = "fuels-core"
  2237. version = "0.66.4"
  2238. source = "registry+https://github.com/rust-lang/crates.io-index"
  2239. checksum = "b687c021466238851b07e2d39f974a614ffafc7e57dc9be00840d74c74c5febd"
  2240. dependencies = [
  2241. "async-trait",
  2242. "bech32",
  2243. "chrono",
  2244. "fuel-abi-types",
  2245. "fuel-asm",
  2246. "fuel-core-chain-config",
  2247. "fuel-core-client",
  2248. "fuel-core-types",
  2249. "fuel-crypto",
  2250. "fuel-tx",
  2251. "fuel-types",
  2252. "fuel-vm",
  2253. "fuels-macros",
  2254. "hex",
  2255. "itertools 0.12.1",
  2256. "postcard",
  2257. "serde",
  2258. "serde_json",
  2259. "thiserror",
  2260. "uint",
  2261. ]
  2262. [[package]]
  2263. name = "fuels-macros"
  2264. version = "0.66.4"
  2265. source = "registry+https://github.com/rust-lang/crates.io-index"
  2266. checksum = "b9dd9359ca6c0e7ad300d487e59babe03f64c6b7b169a0743d13f5c58837b589"
  2267. dependencies = [
  2268. "fuels-code-gen",
  2269. "itertools 0.12.1",
  2270. "proc-macro2",
  2271. "quote",
  2272. "syn 2.0.75",
  2273. ]
  2274. [[package]]
  2275. name = "fuels-programs"
  2276. version = "0.66.4"
  2277. source = "registry+https://github.com/rust-lang/crates.io-index"
  2278. checksum = "3288fc4b64e8f93a39b8ffa36fcaef8753232ffda5399662d28e24c172a7d00c"
  2279. dependencies = [
  2280. "async-trait",
  2281. "fuel-abi-types",
  2282. "fuel-asm",
  2283. "fuel-tx",
  2284. "fuel-types",
  2285. "fuels-accounts",
  2286. "fuels-core",
  2287. "itertools 0.12.1",
  2288. "rand",
  2289. "serde_json",
  2290. "tokio",
  2291. ]
  2292. [[package]]
  2293. name = "fuels-test-helpers"
  2294. version = "0.66.4"
  2295. source = "registry+https://github.com/rust-lang/crates.io-index"
  2296. checksum = "11e18f84f11543ab29e787e2170eeed7f390b791f16ef8be363e3700ea21833d"
  2297. dependencies = [
  2298. "fuel-core",
  2299. "fuel-core-chain-config",
  2300. "fuel-core-client",
  2301. "fuel-core-poa",
  2302. "fuel-core-services",
  2303. "fuel-core-types",
  2304. "fuel-crypto",
  2305. "fuel-tx",
  2306. "fuel-types",
  2307. "fuels-accounts",
  2308. "fuels-core",
  2309. "futures",
  2310. "portpicker",
  2311. "rand",
  2312. "tempfile",
  2313. "tokio",
  2314. "which",
  2315. ]
  2316. [[package]]
  2317. name = "funty"
  2318. version = "2.0.0"
  2319. source = "registry+https://github.com/rust-lang/crates.io-index"
  2320. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2321. [[package]]
  2322. name = "futures"
  2323. version = "0.3.30"
  2324. source = "registry+https://github.com/rust-lang/crates.io-index"
  2325. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  2326. dependencies = [
  2327. "futures-channel",
  2328. "futures-core",
  2329. "futures-executor",
  2330. "futures-io",
  2331. "futures-sink",
  2332. "futures-task",
  2333. "futures-util",
  2334. ]
  2335. [[package]]
  2336. name = "futures-bounded"
  2337. version = "0.2.4"
  2338. source = "registry+https://github.com/rust-lang/crates.io-index"
  2339. checksum = "91f328e7fb845fc832912fb6a34f40cf6d1888c92f974d1893a54e97b5ff542e"
  2340. dependencies = [
  2341. "futures-timer",
  2342. "futures-util",
  2343. ]
  2344. [[package]]
  2345. name = "futures-channel"
  2346. version = "0.3.30"
  2347. source = "registry+https://github.com/rust-lang/crates.io-index"
  2348. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  2349. dependencies = [
  2350. "futures-core",
  2351. "futures-sink",
  2352. ]
  2353. [[package]]
  2354. name = "futures-core"
  2355. version = "0.3.30"
  2356. source = "registry+https://github.com/rust-lang/crates.io-index"
  2357. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  2358. [[package]]
  2359. name = "futures-executor"
  2360. version = "0.3.30"
  2361. source = "registry+https://github.com/rust-lang/crates.io-index"
  2362. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  2363. dependencies = [
  2364. "futures-core",
  2365. "futures-task",
  2366. "futures-util",
  2367. "num_cpus",
  2368. ]
  2369. [[package]]
  2370. name = "futures-io"
  2371. version = "0.3.30"
  2372. source = "registry+https://github.com/rust-lang/crates.io-index"
  2373. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  2374. [[package]]
  2375. name = "futures-lite"
  2376. version = "2.3.0"
  2377. source = "registry+https://github.com/rust-lang/crates.io-index"
  2378. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  2379. dependencies = [
  2380. "futures-core",
  2381. "pin-project-lite",
  2382. ]
  2383. [[package]]
  2384. name = "futures-macro"
  2385. version = "0.3.30"
  2386. source = "registry+https://github.com/rust-lang/crates.io-index"
  2387. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  2388. dependencies = [
  2389. "proc-macro2",
  2390. "quote",
  2391. "syn 2.0.75",
  2392. ]
  2393. [[package]]
  2394. name = "futures-rustls"
  2395. version = "0.26.0"
  2396. source = "registry+https://github.com/rust-lang/crates.io-index"
  2397. checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb"
  2398. dependencies = [
  2399. "futures-io",
  2400. "rustls 0.23.12",
  2401. "rustls-pki-types",
  2402. ]
  2403. [[package]]
  2404. name = "futures-sink"
  2405. version = "0.3.30"
  2406. source = "registry+https://github.com/rust-lang/crates.io-index"
  2407. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  2408. [[package]]
  2409. name = "futures-task"
  2410. version = "0.3.30"
  2411. source = "registry+https://github.com/rust-lang/crates.io-index"
  2412. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  2413. [[package]]
  2414. name = "futures-ticker"
  2415. version = "0.0.3"
  2416. source = "registry+https://github.com/rust-lang/crates.io-index"
  2417. checksum = "9763058047f713632a52e916cc7f6a4b3fc6e9fc1ff8c5b1dc49e5a89041682e"
  2418. dependencies = [
  2419. "futures",
  2420. "futures-timer",
  2421. "instant",
  2422. ]
  2423. [[package]]
  2424. name = "futures-timer"
  2425. version = "3.0.3"
  2426. source = "registry+https://github.com/rust-lang/crates.io-index"
  2427. checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
  2428. [[package]]
  2429. name = "futures-util"
  2430. version = "0.3.30"
  2431. source = "registry+https://github.com/rust-lang/crates.io-index"
  2432. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  2433. dependencies = [
  2434. "futures-channel",
  2435. "futures-core",
  2436. "futures-io",
  2437. "futures-macro",
  2438. "futures-sink",
  2439. "futures-task",
  2440. "memchr",
  2441. "pin-project-lite",
  2442. "pin-utils",
  2443. "slab",
  2444. ]
  2445. [[package]]
  2446. name = "generic-array"
  2447. version = "0.14.7"
  2448. source = "registry+https://github.com/rust-lang/crates.io-index"
  2449. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2450. dependencies = [
  2451. "typenum",
  2452. "version_check",
  2453. "zeroize",
  2454. ]
  2455. [[package]]
  2456. name = "getrandom"
  2457. version = "0.2.15"
  2458. source = "registry+https://github.com/rust-lang/crates.io-index"
  2459. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  2460. dependencies = [
  2461. "cfg-if",
  2462. "libc",
  2463. "wasi",
  2464. ]
  2465. [[package]]
  2466. name = "ghash"
  2467. version = "0.5.1"
  2468. source = "registry+https://github.com/rust-lang/crates.io-index"
  2469. checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
  2470. dependencies = [
  2471. "opaque-debug",
  2472. "polyval",
  2473. ]
  2474. [[package]]
  2475. name = "gimli"
  2476. version = "0.28.1"
  2477. source = "registry+https://github.com/rust-lang/crates.io-index"
  2478. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  2479. dependencies = [
  2480. "fallible-iterator",
  2481. "indexmap 2.4.0",
  2482. "stable_deref_trait",
  2483. ]
  2484. [[package]]
  2485. name = "gimli"
  2486. version = "0.29.0"
  2487. source = "registry+https://github.com/rust-lang/crates.io-index"
  2488. checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
  2489. [[package]]
  2490. name = "graphql-parser"
  2491. version = "0.4.0"
  2492. source = "registry+https://github.com/rust-lang/crates.io-index"
  2493. checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474"
  2494. dependencies = [
  2495. "combine",
  2496. "thiserror",
  2497. ]
  2498. [[package]]
  2499. name = "group"
  2500. version = "0.13.0"
  2501. source = "registry+https://github.com/rust-lang/crates.io-index"
  2502. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2503. dependencies = [
  2504. "ff",
  2505. "rand_core",
  2506. "subtle",
  2507. ]
  2508. [[package]]
  2509. name = "h2"
  2510. version = "0.3.26"
  2511. source = "registry+https://github.com/rust-lang/crates.io-index"
  2512. checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
  2513. dependencies = [
  2514. "bytes",
  2515. "fnv",
  2516. "futures-core",
  2517. "futures-sink",
  2518. "futures-util",
  2519. "http 0.2.12",
  2520. "indexmap 2.4.0",
  2521. "slab",
  2522. "tokio",
  2523. "tokio-util",
  2524. "tracing",
  2525. ]
  2526. [[package]]
  2527. name = "hash32"
  2528. version = "0.2.1"
  2529. source = "registry+https://github.com/rust-lang/crates.io-index"
  2530. checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
  2531. dependencies = [
  2532. "byteorder",
  2533. ]
  2534. [[package]]
  2535. name = "hashbrown"
  2536. version = "0.11.2"
  2537. source = "registry+https://github.com/rust-lang/crates.io-index"
  2538. checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
  2539. dependencies = [
  2540. "ahash 0.7.8",
  2541. ]
  2542. [[package]]
  2543. name = "hashbrown"
  2544. version = "0.12.3"
  2545. source = "registry+https://github.com/rust-lang/crates.io-index"
  2546. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2547. [[package]]
  2548. name = "hashbrown"
  2549. version = "0.13.2"
  2550. source = "registry+https://github.com/rust-lang/crates.io-index"
  2551. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  2552. dependencies = [
  2553. "ahash 0.8.11",
  2554. ]
  2555. [[package]]
  2556. name = "hashbrown"
  2557. version = "0.14.5"
  2558. source = "registry+https://github.com/rust-lang/crates.io-index"
  2559. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2560. dependencies = [
  2561. "ahash 0.8.11",
  2562. "allocator-api2",
  2563. "serde",
  2564. ]
  2565. [[package]]
  2566. name = "heapless"
  2567. version = "0.7.17"
  2568. source = "registry+https://github.com/rust-lang/crates.io-index"
  2569. checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
  2570. dependencies = [
  2571. "atomic-polyfill",
  2572. "hash32",
  2573. "rustc_version",
  2574. "serde",
  2575. "spin 0.9.8",
  2576. "stable_deref_trait",
  2577. ]
  2578. [[package]]
  2579. name = "heck"
  2580. version = "0.4.1"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2583. [[package]]
  2584. name = "heck"
  2585. version = "0.5.0"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2588. [[package]]
  2589. name = "hermit-abi"
  2590. version = "0.3.9"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  2593. [[package]]
  2594. name = "hermit-abi"
  2595. version = "0.4.0"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  2598. [[package]]
  2599. name = "hex"
  2600. version = "0.4.3"
  2601. source = "registry+https://github.com/rust-lang/crates.io-index"
  2602. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2603. dependencies = [
  2604. "serde",
  2605. ]
  2606. [[package]]
  2607. name = "hex_fmt"
  2608. version = "0.3.0"
  2609. source = "registry+https://github.com/rust-lang/crates.io-index"
  2610. checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  2611. [[package]]
  2612. name = "hickory-proto"
  2613. version = "0.24.1"
  2614. source = "registry+https://github.com/rust-lang/crates.io-index"
  2615. checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512"
  2616. dependencies = [
  2617. "async-trait",
  2618. "cfg-if",
  2619. "data-encoding",
  2620. "enum-as-inner",
  2621. "futures-channel",
  2622. "futures-io",
  2623. "futures-util",
  2624. "idna 0.4.0",
  2625. "ipnet",
  2626. "once_cell",
  2627. "rand",
  2628. "socket2",
  2629. "thiserror",
  2630. "tinyvec",
  2631. "tokio",
  2632. "tracing",
  2633. "url",
  2634. ]
  2635. [[package]]
  2636. name = "hickory-resolver"
  2637. version = "0.24.1"
  2638. source = "registry+https://github.com/rust-lang/crates.io-index"
  2639. checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243"
  2640. dependencies = [
  2641. "cfg-if",
  2642. "futures-util",
  2643. "hickory-proto",
  2644. "ipconfig",
  2645. "lru-cache",
  2646. "once_cell",
  2647. "parking_lot",
  2648. "rand",
  2649. "resolv-conf",
  2650. "smallvec",
  2651. "thiserror",
  2652. "tokio",
  2653. "tracing",
  2654. ]
  2655. [[package]]
  2656. name = "hkdf"
  2657. version = "0.12.4"
  2658. source = "registry+https://github.com/rust-lang/crates.io-index"
  2659. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2660. dependencies = [
  2661. "hmac 0.12.1",
  2662. ]
  2663. [[package]]
  2664. name = "hmac"
  2665. version = "0.8.1"
  2666. source = "registry+https://github.com/rust-lang/crates.io-index"
  2667. checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
  2668. dependencies = [
  2669. "crypto-mac",
  2670. "digest 0.9.0",
  2671. ]
  2672. [[package]]
  2673. name = "hmac"
  2674. version = "0.12.1"
  2675. source = "registry+https://github.com/rust-lang/crates.io-index"
  2676. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2677. dependencies = [
  2678. "digest 0.10.7",
  2679. ]
  2680. [[package]]
  2681. name = "hmac-drbg"
  2682. version = "0.3.0"
  2683. source = "registry+https://github.com/rust-lang/crates.io-index"
  2684. checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
  2685. dependencies = [
  2686. "digest 0.9.0",
  2687. "generic-array",
  2688. "hmac 0.8.1",
  2689. ]
  2690. [[package]]
  2691. name = "home"
  2692. version = "0.5.9"
  2693. source = "registry+https://github.com/rust-lang/crates.io-index"
  2694. checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
  2695. dependencies = [
  2696. "windows-sys 0.52.0",
  2697. ]
  2698. [[package]]
  2699. name = "hostname"
  2700. version = "0.3.1"
  2701. source = "registry+https://github.com/rust-lang/crates.io-index"
  2702. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  2703. dependencies = [
  2704. "libc",
  2705. "match_cfg",
  2706. "winapi",
  2707. ]
  2708. [[package]]
  2709. name = "http"
  2710. version = "0.2.12"
  2711. source = "registry+https://github.com/rust-lang/crates.io-index"
  2712. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  2713. dependencies = [
  2714. "bytes",
  2715. "fnv",
  2716. "itoa",
  2717. ]
  2718. [[package]]
  2719. name = "http"
  2720. version = "1.1.0"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  2723. dependencies = [
  2724. "bytes",
  2725. "fnv",
  2726. "itoa",
  2727. ]
  2728. [[package]]
  2729. name = "http-body"
  2730. version = "0.4.6"
  2731. source = "registry+https://github.com/rust-lang/crates.io-index"
  2732. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  2733. dependencies = [
  2734. "bytes",
  2735. "http 0.2.12",
  2736. "pin-project-lite",
  2737. ]
  2738. [[package]]
  2739. name = "http-range-header"
  2740. version = "0.3.1"
  2741. source = "registry+https://github.com/rust-lang/crates.io-index"
  2742. checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
  2743. [[package]]
  2744. name = "httparse"
  2745. version = "1.9.4"
  2746. source = "registry+https://github.com/rust-lang/crates.io-index"
  2747. checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
  2748. [[package]]
  2749. name = "httpdate"
  2750. version = "1.0.3"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  2753. [[package]]
  2754. name = "hyper"
  2755. version = "0.14.30"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
  2758. dependencies = [
  2759. "bytes",
  2760. "futures-channel",
  2761. "futures-core",
  2762. "futures-util",
  2763. "h2",
  2764. "http 0.2.12",
  2765. "http-body",
  2766. "httparse",
  2767. "httpdate",
  2768. "itoa",
  2769. "pin-project-lite",
  2770. "socket2",
  2771. "tokio",
  2772. "tower-service",
  2773. "tracing",
  2774. "want",
  2775. ]
  2776. [[package]]
  2777. name = "hyper-rustls"
  2778. version = "0.24.2"
  2779. source = "registry+https://github.com/rust-lang/crates.io-index"
  2780. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  2781. dependencies = [
  2782. "futures-util",
  2783. "http 0.2.12",
  2784. "hyper",
  2785. "log",
  2786. "rustls 0.21.12",
  2787. "rustls-native-certs",
  2788. "tokio",
  2789. "tokio-rustls",
  2790. "webpki-roots",
  2791. ]
  2792. [[package]]
  2793. name = "hyper-timeout"
  2794. version = "0.4.1"
  2795. source = "registry+https://github.com/rust-lang/crates.io-index"
  2796. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  2797. dependencies = [
  2798. "hyper",
  2799. "pin-project-lite",
  2800. "tokio",
  2801. "tokio-io-timeout",
  2802. ]
  2803. [[package]]
  2804. name = "hyper-tls"
  2805. version = "0.5.0"
  2806. source = "registry+https://github.com/rust-lang/crates.io-index"
  2807. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2808. dependencies = [
  2809. "bytes",
  2810. "hyper",
  2811. "native-tls",
  2812. "tokio",
  2813. "tokio-native-tls",
  2814. ]
  2815. [[package]]
  2816. name = "iana-time-zone"
  2817. version = "0.1.60"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  2820. dependencies = [
  2821. "android_system_properties",
  2822. "core-foundation-sys",
  2823. "iana-time-zone-haiku",
  2824. "js-sys",
  2825. "wasm-bindgen",
  2826. "windows-core 0.52.0",
  2827. ]
  2828. [[package]]
  2829. name = "iana-time-zone-haiku"
  2830. version = "0.1.2"
  2831. source = "registry+https://github.com/rust-lang/crates.io-index"
  2832. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2833. dependencies = [
  2834. "cc",
  2835. ]
  2836. [[package]]
  2837. name = "id-arena"
  2838. version = "2.2.1"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
  2841. [[package]]
  2842. name = "ident_case"
  2843. version = "1.0.1"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2846. [[package]]
  2847. name = "idna"
  2848. version = "0.3.0"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  2851. dependencies = [
  2852. "unicode-bidi",
  2853. "unicode-normalization",
  2854. ]
  2855. [[package]]
  2856. name = "idna"
  2857. version = "0.4.0"
  2858. source = "registry+https://github.com/rust-lang/crates.io-index"
  2859. checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
  2860. dependencies = [
  2861. "unicode-bidi",
  2862. "unicode-normalization",
  2863. ]
  2864. [[package]]
  2865. name = "idna"
  2866. version = "0.5.0"
  2867. source = "registry+https://github.com/rust-lang/crates.io-index"
  2868. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  2869. dependencies = [
  2870. "unicode-bidi",
  2871. "unicode-normalization",
  2872. ]
  2873. [[package]]
  2874. name = "ieee754"
  2875. version = "0.2.6"
  2876. source = "registry+https://github.com/rust-lang/crates.io-index"
  2877. checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
  2878. [[package]]
  2879. name = "if-addrs"
  2880. version = "0.10.2"
  2881. source = "registry+https://github.com/rust-lang/crates.io-index"
  2882. checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a"
  2883. dependencies = [
  2884. "libc",
  2885. "windows-sys 0.48.0",
  2886. ]
  2887. [[package]]
  2888. name = "if-watch"
  2889. version = "3.2.0"
  2890. source = "registry+https://github.com/rust-lang/crates.io-index"
  2891. checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e"
  2892. dependencies = [
  2893. "async-io",
  2894. "core-foundation",
  2895. "fnv",
  2896. "futures",
  2897. "if-addrs",
  2898. "ipnet",
  2899. "log",
  2900. "rtnetlink",
  2901. "system-configuration",
  2902. "tokio",
  2903. "windows",
  2904. ]
  2905. [[package]]
  2906. name = "igd-next"
  2907. version = "0.14.3"
  2908. source = "registry+https://github.com/rust-lang/crates.io-index"
  2909. checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4"
  2910. dependencies = [
  2911. "async-trait",
  2912. "attohttpc",
  2913. "bytes",
  2914. "futures",
  2915. "http 0.2.12",
  2916. "hyper",
  2917. "log",
  2918. "rand",
  2919. "tokio",
  2920. "url",
  2921. "xmltree",
  2922. ]
  2923. [[package]]
  2924. name = "impl-tools"
  2925. version = "0.10.0"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "d82c305b1081f1a99fda262883c788e50ab57d36c00830bdd7e0a82894ad965c"
  2928. dependencies = [
  2929. "autocfg",
  2930. "impl-tools-lib",
  2931. "proc-macro-error",
  2932. "syn 2.0.75",
  2933. ]
  2934. [[package]]
  2935. name = "impl-tools-lib"
  2936. version = "0.10.0"
  2937. source = "registry+https://github.com/rust-lang/crates.io-index"
  2938. checksum = "85d3946d886eaab0702fa0c6585adcced581513223fa9df7ccfabbd9fa331a88"
  2939. dependencies = [
  2940. "proc-macro-error",
  2941. "proc-macro2",
  2942. "quote",
  2943. "syn 2.0.75",
  2944. ]
  2945. [[package]]
  2946. name = "indexmap"
  2947. version = "1.9.3"
  2948. source = "registry+https://github.com/rust-lang/crates.io-index"
  2949. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2950. dependencies = [
  2951. "autocfg",
  2952. "hashbrown 0.12.3",
  2953. "serde",
  2954. ]
  2955. [[package]]
  2956. name = "indexmap"
  2957. version = "2.4.0"
  2958. source = "registry+https://github.com/rust-lang/crates.io-index"
  2959. checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
  2960. dependencies = [
  2961. "equivalent",
  2962. "hashbrown 0.14.5",
  2963. "serde",
  2964. ]
  2965. [[package]]
  2966. name = "indicatif"
  2967. version = "0.17.8"
  2968. source = "registry+https://github.com/rust-lang/crates.io-index"
  2969. checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
  2970. dependencies = [
  2971. "console",
  2972. "instant",
  2973. "number_prefix",
  2974. "portable-atomic",
  2975. "unicode-width",
  2976. ]
  2977. [[package]]
  2978. name = "inout"
  2979. version = "0.1.3"
  2980. source = "registry+https://github.com/rust-lang/crates.io-index"
  2981. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2982. dependencies = [
  2983. "generic-array",
  2984. ]
  2985. [[package]]
  2986. name = "instant"
  2987. version = "0.1.13"
  2988. source = "registry+https://github.com/rust-lang/crates.io-index"
  2989. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2990. dependencies = [
  2991. "cfg-if",
  2992. ]
  2993. [[package]]
  2994. name = "ip_network"
  2995. version = "0.4.1"
  2996. source = "registry+https://github.com/rust-lang/crates.io-index"
  2997. checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
  2998. [[package]]
  2999. name = "ipconfig"
  3000. version = "0.3.2"
  3001. source = "registry+https://github.com/rust-lang/crates.io-index"
  3002. checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
  3003. dependencies = [
  3004. "socket2",
  3005. "widestring",
  3006. "windows-sys 0.48.0",
  3007. "winreg",
  3008. ]
  3009. [[package]]
  3010. name = "ipnet"
  3011. version = "2.9.0"
  3012. source = "registry+https://github.com/rust-lang/crates.io-index"
  3013. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  3014. [[package]]
  3015. name = "is_terminal_polyfill"
  3016. version = "1.70.1"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
  3019. [[package]]
  3020. name = "itertools"
  3021. version = "0.10.5"
  3022. source = "registry+https://github.com/rust-lang/crates.io-index"
  3023. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  3024. dependencies = [
  3025. "either",
  3026. ]
  3027. [[package]]
  3028. name = "itertools"
  3029. version = "0.12.1"
  3030. source = "registry+https://github.com/rust-lang/crates.io-index"
  3031. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  3032. dependencies = [
  3033. "either",
  3034. ]
  3035. [[package]]
  3036. name = "itoa"
  3037. version = "1.0.11"
  3038. source = "registry+https://github.com/rust-lang/crates.io-index"
  3039. checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
  3040. [[package]]
  3041. name = "jobserver"
  3042. version = "0.1.32"
  3043. source = "registry+https://github.com/rust-lang/crates.io-index"
  3044. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  3045. dependencies = [
  3046. "libc",
  3047. ]
  3048. [[package]]
  3049. name = "js-sys"
  3050. version = "0.3.70"
  3051. source = "registry+https://github.com/rust-lang/crates.io-index"
  3052. checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
  3053. dependencies = [
  3054. "wasm-bindgen",
  3055. ]
  3056. [[package]]
  3057. name = "k256"
  3058. version = "0.13.3"
  3059. source = "registry+https://github.com/rust-lang/crates.io-index"
  3060. checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b"
  3061. dependencies = [
  3062. "cfg-if",
  3063. "ecdsa",
  3064. "elliptic-curve",
  3065. "once_cell",
  3066. "sha2 0.10.8",
  3067. "signature",
  3068. ]
  3069. [[package]]
  3070. name = "keccak"
  3071. version = "0.1.5"
  3072. source = "registry+https://github.com/rust-lang/crates.io-index"
  3073. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  3074. dependencies = [
  3075. "cpufeatures",
  3076. ]
  3077. [[package]]
  3078. name = "lazy_static"
  3079. version = "1.5.0"
  3080. source = "registry+https://github.com/rust-lang/crates.io-index"
  3081. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  3082. [[package]]
  3083. name = "leb128"
  3084. version = "0.2.5"
  3085. source = "registry+https://github.com/rust-lang/crates.io-index"
  3086. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  3087. [[package]]
  3088. name = "libc"
  3089. version = "0.2.158"
  3090. source = "registry+https://github.com/rust-lang/crates.io-index"
  3091. checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
  3092. [[package]]
  3093. name = "libm"
  3094. version = "0.2.8"
  3095. source = "registry+https://github.com/rust-lang/crates.io-index"
  3096. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  3097. [[package]]
  3098. name = "libp2p"
  3099. version = "0.53.2"
  3100. source = "registry+https://github.com/rust-lang/crates.io-index"
  3101. checksum = "681fb3f183edfbedd7a57d32ebe5dcdc0b9f94061185acf3c30249349cc6fc99"
  3102. dependencies = [
  3103. "bytes",
  3104. "either",
  3105. "futures",
  3106. "futures-timer",
  3107. "getrandom",
  3108. "instant",
  3109. "libp2p-allow-block-list",
  3110. "libp2p-connection-limits",
  3111. "libp2p-core",
  3112. "libp2p-dns",
  3113. "libp2p-gossipsub",
  3114. "libp2p-identify",
  3115. "libp2p-identity",
  3116. "libp2p-kad",
  3117. "libp2p-mdns",
  3118. "libp2p-metrics",
  3119. "libp2p-noise",
  3120. "libp2p-quic",
  3121. "libp2p-request-response",
  3122. "libp2p-swarm",
  3123. "libp2p-tcp",
  3124. "libp2p-upnp",
  3125. "libp2p-websocket",
  3126. "libp2p-yamux",
  3127. "multiaddr",
  3128. "pin-project",
  3129. "rw-stream-sink",
  3130. "thiserror",
  3131. ]
  3132. [[package]]
  3133. name = "libp2p-allow-block-list"
  3134. version = "0.3.0"
  3135. source = "registry+https://github.com/rust-lang/crates.io-index"
  3136. checksum = "107b238b794cb83ab53b74ad5dcf7cca3200899b72fe662840cfb52f5b0a32e6"
  3137. dependencies = [
  3138. "libp2p-core",
  3139. "libp2p-identity",
  3140. "libp2p-swarm",
  3141. "void",
  3142. ]
  3143. [[package]]
  3144. name = "libp2p-connection-limits"
  3145. version = "0.3.1"
  3146. source = "registry+https://github.com/rust-lang/crates.io-index"
  3147. checksum = "c7cd50a78ccfada14de94cbacd3ce4b0138157f376870f13d3a8422cd075b4fd"
  3148. dependencies = [
  3149. "libp2p-core",
  3150. "libp2p-identity",
  3151. "libp2p-swarm",
  3152. "void",
  3153. ]
  3154. [[package]]
  3155. name = "libp2p-core"
  3156. version = "0.41.3"
  3157. source = "registry+https://github.com/rust-lang/crates.io-index"
  3158. checksum = "a5a8920cbd8540059a01950c1e5c96ea8d89eb50c51cd366fc18bdf540a6e48f"
  3159. dependencies = [
  3160. "either",
  3161. "fnv",
  3162. "futures",
  3163. "futures-timer",
  3164. "libp2p-identity",
  3165. "multiaddr",
  3166. "multihash",
  3167. "multistream-select",
  3168. "once_cell",
  3169. "parking_lot",
  3170. "pin-project",
  3171. "quick-protobuf",
  3172. "rand",
  3173. "rw-stream-sink",
  3174. "smallvec",
  3175. "thiserror",
  3176. "tracing",
  3177. "unsigned-varint 0.8.0",
  3178. "void",
  3179. "web-time",
  3180. ]
  3181. [[package]]
  3182. name = "libp2p-dns"
  3183. version = "0.41.1"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "d17cbcf7160ff35c3e8e560de4a068fe9d6cb777ea72840e48eb76ff9576c4b6"
  3186. dependencies = [
  3187. "async-trait",
  3188. "futures",
  3189. "hickory-resolver",
  3190. "libp2p-core",
  3191. "libp2p-identity",
  3192. "parking_lot",
  3193. "smallvec",
  3194. "tracing",
  3195. ]
  3196. [[package]]
  3197. name = "libp2p-gossipsub"
  3198. version = "0.46.1"
  3199. source = "registry+https://github.com/rust-lang/crates.io-index"
  3200. checksum = "d665144a616dadebdc5fff186b1233488cdcd8bfb1223218ff084b6d052c94f7"
  3201. dependencies = [
  3202. "asynchronous-codec 0.7.0",
  3203. "base64 0.21.7",
  3204. "byteorder",
  3205. "bytes",
  3206. "either",
  3207. "fnv",
  3208. "futures",
  3209. "futures-ticker",
  3210. "getrandom",
  3211. "hex_fmt",
  3212. "instant",
  3213. "libp2p-core",
  3214. "libp2p-identity",
  3215. "libp2p-swarm",
  3216. "prometheus-client",
  3217. "quick-protobuf",
  3218. "quick-protobuf-codec",
  3219. "rand",
  3220. "regex",
  3221. "sha2 0.10.8",
  3222. "smallvec",
  3223. "tracing",
  3224. "void",
  3225. ]
  3226. [[package]]
  3227. name = "libp2p-identify"
  3228. version = "0.44.2"
  3229. source = "registry+https://github.com/rust-lang/crates.io-index"
  3230. checksum = "b5d635ebea5ca0c3c3e77d414ae9b67eccf2a822be06091b9c1a0d13029a1e2f"
  3231. dependencies = [
  3232. "asynchronous-codec 0.7.0",
  3233. "either",
  3234. "futures",
  3235. "futures-bounded",
  3236. "futures-timer",
  3237. "libp2p-core",
  3238. "libp2p-identity",
  3239. "libp2p-swarm",
  3240. "lru",
  3241. "quick-protobuf",
  3242. "quick-protobuf-codec",
  3243. "smallvec",
  3244. "thiserror",
  3245. "tracing",
  3246. "void",
  3247. ]
  3248. [[package]]
  3249. name = "libp2p-identity"
  3250. version = "0.2.9"
  3251. source = "registry+https://github.com/rust-lang/crates.io-index"
  3252. checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8"
  3253. dependencies = [
  3254. "asn1_der",
  3255. "bs58",
  3256. "ed25519-dalek",
  3257. "hkdf",
  3258. "libsecp256k1",
  3259. "multihash",
  3260. "quick-protobuf",
  3261. "rand",
  3262. "sha2 0.10.8",
  3263. "thiserror",
  3264. "tracing",
  3265. "zeroize",
  3266. ]
  3267. [[package]]
  3268. name = "libp2p-kad"
  3269. version = "0.45.3"
  3270. source = "registry+https://github.com/rust-lang/crates.io-index"
  3271. checksum = "5cc5767727d062c4eac74dd812c998f0e488008e82cce9c33b463d38423f9ad2"
  3272. dependencies = [
  3273. "arrayvec",
  3274. "asynchronous-codec 0.7.0",
  3275. "bytes",
  3276. "either",
  3277. "fnv",
  3278. "futures",
  3279. "futures-bounded",
  3280. "futures-timer",
  3281. "instant",
  3282. "libp2p-core",
  3283. "libp2p-identity",
  3284. "libp2p-swarm",
  3285. "quick-protobuf",
  3286. "quick-protobuf-codec",
  3287. "rand",
  3288. "sha2 0.10.8",
  3289. "smallvec",
  3290. "thiserror",
  3291. "tracing",
  3292. "uint",
  3293. "void",
  3294. ]
  3295. [[package]]
  3296. name = "libp2p-mdns"
  3297. version = "0.45.1"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "49007d9a339b3e1d7eeebc4d67c05dbf23d300b7d091193ec2d3f26802d7faf2"
  3300. dependencies = [
  3301. "data-encoding",
  3302. "futures",
  3303. "hickory-proto",
  3304. "if-watch",
  3305. "libp2p-core",
  3306. "libp2p-identity",
  3307. "libp2p-swarm",
  3308. "rand",
  3309. "smallvec",
  3310. "socket2",
  3311. "tokio",
  3312. "tracing",
  3313. "void",
  3314. ]
  3315. [[package]]
  3316. name = "libp2p-metrics"
  3317. version = "0.14.1"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "fdac91ae4f291046a3b2660c039a2830c931f84df2ee227989af92f7692d3357"
  3320. dependencies = [
  3321. "futures",
  3322. "instant",
  3323. "libp2p-core",
  3324. "libp2p-gossipsub",
  3325. "libp2p-identify",
  3326. "libp2p-identity",
  3327. "libp2p-kad",
  3328. "libp2p-swarm",
  3329. "pin-project",
  3330. "prometheus-client",
  3331. ]
  3332. [[package]]
  3333. name = "libp2p-mplex"
  3334. version = "0.41.0"
  3335. source = "registry+https://github.com/rust-lang/crates.io-index"
  3336. checksum = "a5e895765e27e30217b25f7cb7ac4686dad1ff80bf2fdeffd1d898566900a924"
  3337. dependencies = [
  3338. "asynchronous-codec 0.6.2",
  3339. "bytes",
  3340. "futures",
  3341. "libp2p-core",
  3342. "libp2p-identity",
  3343. "nohash-hasher",
  3344. "parking_lot",
  3345. "rand",
  3346. "smallvec",
  3347. "tracing",
  3348. "unsigned-varint 0.7.2",
  3349. ]
  3350. [[package]]
  3351. name = "libp2p-noise"
  3352. version = "0.44.0"
  3353. source = "registry+https://github.com/rust-lang/crates.io-index"
  3354. checksum = "8ecd0545ce077f6ea5434bcb76e8d0fe942693b4380aaad0d34a358c2bd05793"
  3355. dependencies = [
  3356. "asynchronous-codec 0.7.0",
  3357. "bytes",
  3358. "curve25519-dalek",
  3359. "futures",
  3360. "libp2p-core",
  3361. "libp2p-identity",
  3362. "multiaddr",
  3363. "multihash",
  3364. "once_cell",
  3365. "quick-protobuf",
  3366. "rand",
  3367. "sha2 0.10.8",
  3368. "snow",
  3369. "static_assertions",
  3370. "thiserror",
  3371. "tracing",
  3372. "x25519-dalek",
  3373. "zeroize",
  3374. ]
  3375. [[package]]
  3376. name = "libp2p-quic"
  3377. version = "0.10.3"
  3378. source = "registry+https://github.com/rust-lang/crates.io-index"
  3379. checksum = "c67296ad4e092e23f92aea3d2bdb6f24eab79c0929ed816dfb460ea2f4567d2b"
  3380. dependencies = [
  3381. "bytes",
  3382. "futures",
  3383. "futures-timer",
  3384. "if-watch",
  3385. "libp2p-core",
  3386. "libp2p-identity",
  3387. "libp2p-tls",
  3388. "parking_lot",
  3389. "quinn",
  3390. "rand",
  3391. "ring 0.17.8",
  3392. "rustls 0.23.12",
  3393. "socket2",
  3394. "thiserror",
  3395. "tokio",
  3396. "tracing",
  3397. ]
  3398. [[package]]
  3399. name = "libp2p-request-response"
  3400. version = "0.26.3"
  3401. source = "registry+https://github.com/rust-lang/crates.io-index"
  3402. checksum = "c314fe28368da5e3a262553fb0ad575c1c8934c461e10de10265551478163836"
  3403. dependencies = [
  3404. "async-trait",
  3405. "futures",
  3406. "futures-bounded",
  3407. "futures-timer",
  3408. "instant",
  3409. "libp2p-core",
  3410. "libp2p-identity",
  3411. "libp2p-swarm",
  3412. "rand",
  3413. "smallvec",
  3414. "tracing",
  3415. "void",
  3416. ]
  3417. [[package]]
  3418. name = "libp2p-swarm"
  3419. version = "0.44.2"
  3420. source = "registry+https://github.com/rust-lang/crates.io-index"
  3421. checksum = "80cae6cb75f89dbca53862f9ebe0b9f463aa7b302762fcfaafb9e51dcc9b0f7e"
  3422. dependencies = [
  3423. "either",
  3424. "fnv",
  3425. "futures",
  3426. "futures-timer",
  3427. "instant",
  3428. "libp2p-core",
  3429. "libp2p-identity",
  3430. "libp2p-swarm-derive",
  3431. "lru",
  3432. "multistream-select",
  3433. "once_cell",
  3434. "rand",
  3435. "smallvec",
  3436. "tokio",
  3437. "tracing",
  3438. "void",
  3439. ]
  3440. [[package]]
  3441. name = "libp2p-swarm-derive"
  3442. version = "0.34.2"
  3443. source = "registry+https://github.com/rust-lang/crates.io-index"
  3444. checksum = "5daceb9dd908417b6dfcfe8e94098bc4aac54500c282e78120b885dadc09b999"
  3445. dependencies = [
  3446. "heck 0.5.0",
  3447. "proc-macro2",
  3448. "quote",
  3449. "syn 2.0.75",
  3450. ]
  3451. [[package]]
  3452. name = "libp2p-tcp"
  3453. version = "0.41.0"
  3454. source = "registry+https://github.com/rust-lang/crates.io-index"
  3455. checksum = "8b2460fc2748919adff99ecbc1aab296e4579e41f374fb164149bd2c9e529d4c"
  3456. dependencies = [
  3457. "futures",
  3458. "futures-timer",
  3459. "if-watch",
  3460. "libc",
  3461. "libp2p-core",
  3462. "libp2p-identity",
  3463. "socket2",
  3464. "tokio",
  3465. "tracing",
  3466. ]
  3467. [[package]]
  3468. name = "libp2p-tls"
  3469. version = "0.4.1"
  3470. source = "registry+https://github.com/rust-lang/crates.io-index"
  3471. checksum = "72b7b831e55ce2aa6c354e6861a85fdd4dd0a2b97d5e276fabac0e4810a71776"
  3472. dependencies = [
  3473. "futures",
  3474. "futures-rustls",
  3475. "libp2p-core",
  3476. "libp2p-identity",
  3477. "rcgen",
  3478. "ring 0.17.8",
  3479. "rustls 0.23.12",
  3480. "rustls-webpki 0.101.7",
  3481. "thiserror",
  3482. "x509-parser",
  3483. "yasna",
  3484. ]
  3485. [[package]]
  3486. name = "libp2p-upnp"
  3487. version = "0.2.2"
  3488. source = "registry+https://github.com/rust-lang/crates.io-index"
  3489. checksum = "cccf04b0e3ff3de52d07d5fd6c3b061d0e7f908ffc683c32d9638caedce86fc8"
  3490. dependencies = [
  3491. "futures",
  3492. "futures-timer",
  3493. "igd-next",
  3494. "libp2p-core",
  3495. "libp2p-swarm",
  3496. "tokio",
  3497. "tracing",
  3498. "void",
  3499. ]
  3500. [[package]]
  3501. name = "libp2p-websocket"
  3502. version = "0.43.2"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "85b953b6803a1f3161a989538974d72511c4e48a4af355337b6fb90723c56c05"
  3505. dependencies = [
  3506. "either",
  3507. "futures",
  3508. "futures-rustls",
  3509. "libp2p-core",
  3510. "libp2p-identity",
  3511. "parking_lot",
  3512. "pin-project-lite",
  3513. "rw-stream-sink",
  3514. "soketto",
  3515. "thiserror",
  3516. "tracing",
  3517. "url",
  3518. "webpki-roots",
  3519. ]
  3520. [[package]]
  3521. name = "libp2p-yamux"
  3522. version = "0.45.2"
  3523. source = "registry+https://github.com/rust-lang/crates.io-index"
  3524. checksum = "ddd5265f6b80f94d48a3963541aad183cc598a645755d2f1805a373e41e0716b"
  3525. dependencies = [
  3526. "either",
  3527. "futures",
  3528. "libp2p-core",
  3529. "thiserror",
  3530. "tracing",
  3531. "yamux 0.12.1",
  3532. "yamux 0.13.3",
  3533. ]
  3534. [[package]]
  3535. name = "libredox"
  3536. version = "0.1.3"
  3537. source = "registry+https://github.com/rust-lang/crates.io-index"
  3538. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  3539. dependencies = [
  3540. "bitflags 2.6.0",
  3541. "libc",
  3542. ]
  3543. [[package]]
  3544. name = "libsecp256k1"
  3545. version = "0.7.1"
  3546. source = "registry+https://github.com/rust-lang/crates.io-index"
  3547. checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1"
  3548. dependencies = [
  3549. "arrayref",
  3550. "base64 0.13.1",
  3551. "digest 0.9.0",
  3552. "hmac-drbg",
  3553. "libsecp256k1-core",
  3554. "libsecp256k1-gen-ecmult",
  3555. "libsecp256k1-gen-genmult",
  3556. "rand",
  3557. "serde",
  3558. "sha2 0.9.9",
  3559. "typenum",
  3560. ]
  3561. [[package]]
  3562. name = "libsecp256k1-core"
  3563. version = "0.3.0"
  3564. source = "registry+https://github.com/rust-lang/crates.io-index"
  3565. checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"
  3566. dependencies = [
  3567. "crunchy",
  3568. "digest 0.9.0",
  3569. "subtle",
  3570. ]
  3571. [[package]]
  3572. name = "libsecp256k1-gen-ecmult"
  3573. version = "0.3.0"
  3574. source = "registry+https://github.com/rust-lang/crates.io-index"
  3575. checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809"
  3576. dependencies = [
  3577. "libsecp256k1-core",
  3578. ]
  3579. [[package]]
  3580. name = "libsecp256k1-gen-genmult"
  3581. version = "0.3.0"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c"
  3584. dependencies = [
  3585. "libsecp256k1-core",
  3586. ]
  3587. [[package]]
  3588. name = "linked-hash-map"
  3589. version = "0.5.6"
  3590. source = "registry+https://github.com/rust-lang/crates.io-index"
  3591. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  3592. [[package]]
  3593. name = "linux-raw-sys"
  3594. version = "0.4.14"
  3595. source = "registry+https://github.com/rust-lang/crates.io-index"
  3596. checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
  3597. [[package]]
  3598. name = "lock_api"
  3599. version = "0.4.12"
  3600. source = "registry+https://github.com/rust-lang/crates.io-index"
  3601. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  3602. dependencies = [
  3603. "autocfg",
  3604. "scopeguard",
  3605. ]
  3606. [[package]]
  3607. name = "log"
  3608. version = "0.4.22"
  3609. source = "registry+https://github.com/rust-lang/crates.io-index"
  3610. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  3611. [[package]]
  3612. name = "lru"
  3613. version = "0.12.4"
  3614. source = "registry+https://github.com/rust-lang/crates.io-index"
  3615. checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
  3616. dependencies = [
  3617. "hashbrown 0.14.5",
  3618. ]
  3619. [[package]]
  3620. name = "lru-cache"
  3621. version = "0.1.2"
  3622. source = "registry+https://github.com/rust-lang/crates.io-index"
  3623. checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  3624. dependencies = [
  3625. "linked-hash-map",
  3626. ]
  3627. [[package]]
  3628. name = "mach2"
  3629. version = "0.4.2"
  3630. source = "registry+https://github.com/rust-lang/crates.io-index"
  3631. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  3632. dependencies = [
  3633. "libc",
  3634. ]
  3635. [[package]]
  3636. name = "match_cfg"
  3637. version = "0.1.0"
  3638. source = "registry+https://github.com/rust-lang/crates.io-index"
  3639. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  3640. [[package]]
  3641. name = "matchit"
  3642. version = "0.5.0"
  3643. source = "registry+https://github.com/rust-lang/crates.io-index"
  3644. checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
  3645. [[package]]
  3646. name = "memchr"
  3647. version = "2.7.4"
  3648. source = "registry+https://github.com/rust-lang/crates.io-index"
  3649. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  3650. [[package]]
  3651. name = "memfd"
  3652. version = "0.6.4"
  3653. source = "registry+https://github.com/rust-lang/crates.io-index"
  3654. checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
  3655. dependencies = [
  3656. "rustix",
  3657. ]
  3658. [[package]]
  3659. name = "mime"
  3660. version = "0.3.17"
  3661. source = "registry+https://github.com/rust-lang/crates.io-index"
  3662. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3663. [[package]]
  3664. name = "minimal-lexical"
  3665. version = "0.2.1"
  3666. source = "registry+https://github.com/rust-lang/crates.io-index"
  3667. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3668. [[package]]
  3669. name = "miniz_oxide"
  3670. version = "0.7.4"
  3671. source = "registry+https://github.com/rust-lang/crates.io-index"
  3672. checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
  3673. dependencies = [
  3674. "adler",
  3675. ]
  3676. [[package]]
  3677. name = "mio"
  3678. version = "1.0.2"
  3679. source = "registry+https://github.com/rust-lang/crates.io-index"
  3680. checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
  3681. dependencies = [
  3682. "hermit-abi 0.3.9",
  3683. "libc",
  3684. "wasi",
  3685. "windows-sys 0.52.0",
  3686. ]
  3687. [[package]]
  3688. name = "mockall"
  3689. version = "0.11.4"
  3690. source = "registry+https://github.com/rust-lang/crates.io-index"
  3691. checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96"
  3692. dependencies = [
  3693. "cfg-if",
  3694. "downcast",
  3695. "fragile",
  3696. "lazy_static",
  3697. "mockall_derive",
  3698. "predicates",
  3699. "predicates-tree",
  3700. ]
  3701. [[package]]
  3702. name = "mockall_derive"
  3703. version = "0.11.4"
  3704. source = "registry+https://github.com/rust-lang/crates.io-index"
  3705. checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb"
  3706. dependencies = [
  3707. "cfg-if",
  3708. "proc-macro2",
  3709. "quote",
  3710. "syn 1.0.109",
  3711. ]
  3712. [[package]]
  3713. name = "multer"
  3714. version = "3.1.0"
  3715. source = "registry+https://github.com/rust-lang/crates.io-index"
  3716. checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
  3717. dependencies = [
  3718. "bytes",
  3719. "encoding_rs",
  3720. "futures-util",
  3721. "http 1.1.0",
  3722. "httparse",
  3723. "memchr",
  3724. "mime",
  3725. "spin 0.9.8",
  3726. "version_check",
  3727. ]
  3728. [[package]]
  3729. name = "multiaddr"
  3730. version = "0.18.1"
  3731. source = "registry+https://github.com/rust-lang/crates.io-index"
  3732. checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070"
  3733. dependencies = [
  3734. "arrayref",
  3735. "byteorder",
  3736. "data-encoding",
  3737. "libp2p-identity",
  3738. "multibase",
  3739. "multihash",
  3740. "percent-encoding",
  3741. "serde",
  3742. "static_assertions",
  3743. "unsigned-varint 0.7.2",
  3744. "url",
  3745. ]
  3746. [[package]]
  3747. name = "multibase"
  3748. version = "0.9.1"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404"
  3751. dependencies = [
  3752. "base-x",
  3753. "data-encoding",
  3754. "data-encoding-macro",
  3755. ]
  3756. [[package]]
  3757. name = "multihash"
  3758. version = "0.19.1"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492"
  3761. dependencies = [
  3762. "core2",
  3763. "unsigned-varint 0.7.2",
  3764. ]
  3765. [[package]]
  3766. name = "multistream-select"
  3767. version = "0.13.0"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "ea0df8e5eec2298a62b326ee4f0d7fe1a6b90a09dfcf9df37b38f947a8c42f19"
  3770. dependencies = [
  3771. "bytes",
  3772. "futures",
  3773. "log",
  3774. "pin-project",
  3775. "smallvec",
  3776. "unsigned-varint 0.7.2",
  3777. ]
  3778. [[package]]
  3779. name = "native-tls"
  3780. version = "0.2.12"
  3781. source = "registry+https://github.com/rust-lang/crates.io-index"
  3782. checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
  3783. dependencies = [
  3784. "libc",
  3785. "log",
  3786. "openssl",
  3787. "openssl-probe",
  3788. "openssl-sys",
  3789. "schannel",
  3790. "security-framework",
  3791. "security-framework-sys",
  3792. "tempfile",
  3793. ]
  3794. [[package]]
  3795. name = "netlink-packet-core"
  3796. version = "0.4.2"
  3797. source = "registry+https://github.com/rust-lang/crates.io-index"
  3798. checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297"
  3799. dependencies = [
  3800. "anyhow",
  3801. "byteorder",
  3802. "libc",
  3803. "netlink-packet-utils",
  3804. ]
  3805. [[package]]
  3806. name = "netlink-packet-route"
  3807. version = "0.12.0"
  3808. source = "registry+https://github.com/rust-lang/crates.io-index"
  3809. checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab"
  3810. dependencies = [
  3811. "anyhow",
  3812. "bitflags 1.3.2",
  3813. "byteorder",
  3814. "libc",
  3815. "netlink-packet-core",
  3816. "netlink-packet-utils",
  3817. ]
  3818. [[package]]
  3819. name = "netlink-packet-utils"
  3820. version = "0.5.2"
  3821. source = "registry+https://github.com/rust-lang/crates.io-index"
  3822. checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34"
  3823. dependencies = [
  3824. "anyhow",
  3825. "byteorder",
  3826. "paste",
  3827. "thiserror",
  3828. ]
  3829. [[package]]
  3830. name = "netlink-proto"
  3831. version = "0.10.0"
  3832. source = "registry+https://github.com/rust-lang/crates.io-index"
  3833. checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
  3834. dependencies = [
  3835. "bytes",
  3836. "futures",
  3837. "log",
  3838. "netlink-packet-core",
  3839. "netlink-sys",
  3840. "thiserror",
  3841. "tokio",
  3842. ]
  3843. [[package]]
  3844. name = "netlink-sys"
  3845. version = "0.8.6"
  3846. source = "registry+https://github.com/rust-lang/crates.io-index"
  3847. checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307"
  3848. dependencies = [
  3849. "bytes",
  3850. "futures",
  3851. "libc",
  3852. "log",
  3853. "tokio",
  3854. ]
  3855. [[package]]
  3856. name = "nix"
  3857. version = "0.24.3"
  3858. source = "registry+https://github.com/rust-lang/crates.io-index"
  3859. checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
  3860. dependencies = [
  3861. "bitflags 1.3.2",
  3862. "cfg-if",
  3863. "libc",
  3864. ]
  3865. [[package]]
  3866. name = "nohash-hasher"
  3867. version = "0.2.0"
  3868. source = "registry+https://github.com/rust-lang/crates.io-index"
  3869. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  3870. [[package]]
  3871. name = "nom"
  3872. version = "7.1.3"
  3873. source = "registry+https://github.com/rust-lang/crates.io-index"
  3874. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3875. dependencies = [
  3876. "memchr",
  3877. "minimal-lexical",
  3878. ]
  3879. [[package]]
  3880. name = "normalize-line-endings"
  3881. version = "0.3.0"
  3882. source = "registry+https://github.com/rust-lang/crates.io-index"
  3883. checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
  3884. [[package]]
  3885. name = "num"
  3886. version = "0.4.3"
  3887. source = "registry+https://github.com/rust-lang/crates.io-index"
  3888. checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
  3889. dependencies = [
  3890. "num-bigint",
  3891. "num-complex",
  3892. "num-integer",
  3893. "num-iter",
  3894. "num-rational",
  3895. "num-traits",
  3896. ]
  3897. [[package]]
  3898. name = "num-bigint"
  3899. version = "0.4.6"
  3900. source = "registry+https://github.com/rust-lang/crates.io-index"
  3901. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  3902. dependencies = [
  3903. "num-integer",
  3904. "num-traits",
  3905. ]
  3906. [[package]]
  3907. name = "num-complex"
  3908. version = "0.4.6"
  3909. source = "registry+https://github.com/rust-lang/crates.io-index"
  3910. checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
  3911. dependencies = [
  3912. "num-traits",
  3913. ]
  3914. [[package]]
  3915. name = "num-conv"
  3916. version = "0.1.0"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  3919. [[package]]
  3920. name = "num-integer"
  3921. version = "0.1.46"
  3922. source = "registry+https://github.com/rust-lang/crates.io-index"
  3923. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  3924. dependencies = [
  3925. "num-traits",
  3926. ]
  3927. [[package]]
  3928. name = "num-iter"
  3929. version = "0.1.45"
  3930. source = "registry+https://github.com/rust-lang/crates.io-index"
  3931. checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
  3932. dependencies = [
  3933. "autocfg",
  3934. "num-integer",
  3935. "num-traits",
  3936. ]
  3937. [[package]]
  3938. name = "num-rational"
  3939. version = "0.4.2"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  3942. dependencies = [
  3943. "num-bigint",
  3944. "num-integer",
  3945. "num-traits",
  3946. ]
  3947. [[package]]
  3948. name = "num-traits"
  3949. version = "0.2.19"
  3950. source = "registry+https://github.com/rust-lang/crates.io-index"
  3951. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  3952. dependencies = [
  3953. "autocfg",
  3954. "libm",
  3955. ]
  3956. [[package]]
  3957. name = "num_cpus"
  3958. version = "1.16.0"
  3959. source = "registry+https://github.com/rust-lang/crates.io-index"
  3960. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  3961. dependencies = [
  3962. "hermit-abi 0.3.9",
  3963. "libc",
  3964. ]
  3965. [[package]]
  3966. name = "num_enum"
  3967. version = "0.7.3"
  3968. source = "registry+https://github.com/rust-lang/crates.io-index"
  3969. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  3970. dependencies = [
  3971. "num_enum_derive",
  3972. ]
  3973. [[package]]
  3974. name = "num_enum_derive"
  3975. version = "0.7.3"
  3976. source = "registry+https://github.com/rust-lang/crates.io-index"
  3977. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  3978. dependencies = [
  3979. "proc-macro-crate 3.1.0",
  3980. "proc-macro2",
  3981. "quote",
  3982. "syn 2.0.75",
  3983. ]
  3984. [[package]]
  3985. name = "number_prefix"
  3986. version = "0.4.0"
  3987. source = "registry+https://github.com/rust-lang/crates.io-index"
  3988. checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
  3989. [[package]]
  3990. name = "object"
  3991. version = "0.36.3"
  3992. source = "registry+https://github.com/rust-lang/crates.io-index"
  3993. checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
  3994. dependencies = [
  3995. "crc32fast",
  3996. "hashbrown 0.14.5",
  3997. "indexmap 2.4.0",
  3998. "memchr",
  3999. ]
  4000. [[package]]
  4001. name = "oid-registry"
  4002. version = "0.7.0"
  4003. source = "registry+https://github.com/rust-lang/crates.io-index"
  4004. checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d"
  4005. dependencies = [
  4006. "asn1-rs",
  4007. ]
  4008. [[package]]
  4009. name = "once_cell"
  4010. version = "1.19.0"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  4013. [[package]]
  4014. name = "opaque-debug"
  4015. version = "0.3.1"
  4016. source = "registry+https://github.com/rust-lang/crates.io-index"
  4017. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  4018. [[package]]
  4019. name = "openssl"
  4020. version = "0.10.66"
  4021. source = "registry+https://github.com/rust-lang/crates.io-index"
  4022. checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
  4023. dependencies = [
  4024. "bitflags 2.6.0",
  4025. "cfg-if",
  4026. "foreign-types",
  4027. "libc",
  4028. "once_cell",
  4029. "openssl-macros",
  4030. "openssl-sys",
  4031. ]
  4032. [[package]]
  4033. name = "openssl-macros"
  4034. version = "0.1.1"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  4037. dependencies = [
  4038. "proc-macro2",
  4039. "quote",
  4040. "syn 2.0.75",
  4041. ]
  4042. [[package]]
  4043. name = "openssl-probe"
  4044. version = "0.1.5"
  4045. source = "registry+https://github.com/rust-lang/crates.io-index"
  4046. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  4047. [[package]]
  4048. name = "openssl-sys"
  4049. version = "0.9.103"
  4050. source = "registry+https://github.com/rust-lang/crates.io-index"
  4051. checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
  4052. dependencies = [
  4053. "cc",
  4054. "libc",
  4055. "pkg-config",
  4056. "vcpkg",
  4057. ]
  4058. [[package]]
  4059. name = "p256"
  4060. version = "0.13.2"
  4061. source = "registry+https://github.com/rust-lang/crates.io-index"
  4062. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  4063. dependencies = [
  4064. "ecdsa",
  4065. "elliptic-curve",
  4066. "primeorder",
  4067. "sha2 0.10.8",
  4068. ]
  4069. [[package]]
  4070. name = "parking"
  4071. version = "2.2.0"
  4072. source = "registry+https://github.com/rust-lang/crates.io-index"
  4073. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  4074. [[package]]
  4075. name = "parking_lot"
  4076. version = "0.12.3"
  4077. source = "registry+https://github.com/rust-lang/crates.io-index"
  4078. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  4079. dependencies = [
  4080. "lock_api",
  4081. "parking_lot_core",
  4082. ]
  4083. [[package]]
  4084. name = "parking_lot_core"
  4085. version = "0.9.10"
  4086. source = "registry+https://github.com/rust-lang/crates.io-index"
  4087. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  4088. dependencies = [
  4089. "cfg-if",
  4090. "libc",
  4091. "redox_syscall",
  4092. "smallvec",
  4093. "windows-targets 0.52.6",
  4094. ]
  4095. [[package]]
  4096. name = "paste"
  4097. version = "1.0.15"
  4098. source = "registry+https://github.com/rust-lang/crates.io-index"
  4099. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  4100. [[package]]
  4101. name = "pbkdf2"
  4102. version = "0.11.0"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  4105. dependencies = [
  4106. "digest 0.10.7",
  4107. ]
  4108. [[package]]
  4109. name = "pbkdf2"
  4110. version = "0.12.2"
  4111. source = "registry+https://github.com/rust-lang/crates.io-index"
  4112. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4113. dependencies = [
  4114. "digest 0.10.7",
  4115. "hmac 0.12.1",
  4116. ]
  4117. [[package]]
  4118. name = "pem"
  4119. version = "3.0.4"
  4120. source = "registry+https://github.com/rust-lang/crates.io-index"
  4121. checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
  4122. dependencies = [
  4123. "base64 0.22.1",
  4124. "serde",
  4125. ]
  4126. [[package]]
  4127. name = "percent-encoding"
  4128. version = "2.3.1"
  4129. source = "registry+https://github.com/rust-lang/crates.io-index"
  4130. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  4131. [[package]]
  4132. name = "pest"
  4133. version = "2.7.11"
  4134. source = "registry+https://github.com/rust-lang/crates.io-index"
  4135. checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95"
  4136. dependencies = [
  4137. "memchr",
  4138. "thiserror",
  4139. "ucd-trie",
  4140. ]
  4141. [[package]]
  4142. name = "pin-project"
  4143. version = "1.1.5"
  4144. source = "registry+https://github.com/rust-lang/crates.io-index"
  4145. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  4146. dependencies = [
  4147. "pin-project-internal",
  4148. ]
  4149. [[package]]
  4150. name = "pin-project-internal"
  4151. version = "1.1.5"
  4152. source = "registry+https://github.com/rust-lang/crates.io-index"
  4153. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  4154. dependencies = [
  4155. "proc-macro2",
  4156. "quote",
  4157. "syn 2.0.75",
  4158. ]
  4159. [[package]]
  4160. name = "pin-project-lite"
  4161. version = "0.2.14"
  4162. source = "registry+https://github.com/rust-lang/crates.io-index"
  4163. checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
  4164. [[package]]
  4165. name = "pin-utils"
  4166. version = "0.1.0"
  4167. source = "registry+https://github.com/rust-lang/crates.io-index"
  4168. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4169. [[package]]
  4170. name = "pkcs8"
  4171. version = "0.10.2"
  4172. source = "registry+https://github.com/rust-lang/crates.io-index"
  4173. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4174. dependencies = [
  4175. "der",
  4176. "spki",
  4177. ]
  4178. [[package]]
  4179. name = "pkg-config"
  4180. version = "0.3.30"
  4181. source = "registry+https://github.com/rust-lang/crates.io-index"
  4182. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  4183. [[package]]
  4184. name = "polling"
  4185. version = "3.7.3"
  4186. source = "registry+https://github.com/rust-lang/crates.io-index"
  4187. checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511"
  4188. dependencies = [
  4189. "cfg-if",
  4190. "concurrent-queue",
  4191. "hermit-abi 0.4.0",
  4192. "pin-project-lite",
  4193. "rustix",
  4194. "tracing",
  4195. "windows-sys 0.59.0",
  4196. ]
  4197. [[package]]
  4198. name = "poly1305"
  4199. version = "0.8.0"
  4200. source = "registry+https://github.com/rust-lang/crates.io-index"
  4201. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4202. dependencies = [
  4203. "cpufeatures",
  4204. "opaque-debug",
  4205. "universal-hash",
  4206. ]
  4207. [[package]]
  4208. name = "polyval"
  4209. version = "0.6.2"
  4210. source = "registry+https://github.com/rust-lang/crates.io-index"
  4211. checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
  4212. dependencies = [
  4213. "cfg-if",
  4214. "cpufeatures",
  4215. "opaque-debug",
  4216. "universal-hash",
  4217. ]
  4218. [[package]]
  4219. name = "portable-atomic"
  4220. version = "1.7.0"
  4221. source = "registry+https://github.com/rust-lang/crates.io-index"
  4222. checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
  4223. [[package]]
  4224. name = "portpicker"
  4225. version = "0.1.1"
  4226. source = "registry+https://github.com/rust-lang/crates.io-index"
  4227. checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
  4228. dependencies = [
  4229. "rand",
  4230. ]
  4231. [[package]]
  4232. name = "postcard"
  4233. version = "1.0.10"
  4234. source = "registry+https://github.com/rust-lang/crates.io-index"
  4235. checksum = "5f7f0a8d620d71c457dd1d47df76bb18960378da56af4527aaa10f515eee732e"
  4236. dependencies = [
  4237. "cobs",
  4238. "embedded-io 0.4.0",
  4239. "embedded-io 0.6.1",
  4240. "heapless",
  4241. "serde",
  4242. ]
  4243. [[package]]
  4244. name = "powerfmt"
  4245. version = "0.2.0"
  4246. source = "registry+https://github.com/rust-lang/crates.io-index"
  4247. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4248. [[package]]
  4249. name = "ppv-lite86"
  4250. version = "0.2.20"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
  4253. dependencies = [
  4254. "zerocopy",
  4255. ]
  4256. [[package]]
  4257. name = "predicates"
  4258. version = "2.1.5"
  4259. source = "registry+https://github.com/rust-lang/crates.io-index"
  4260. checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
  4261. dependencies = [
  4262. "difflib",
  4263. "float-cmp",
  4264. "itertools 0.10.5",
  4265. "normalize-line-endings",
  4266. "predicates-core",
  4267. "regex",
  4268. ]
  4269. [[package]]
  4270. name = "predicates-core"
  4271. version = "1.0.8"
  4272. source = "registry+https://github.com/rust-lang/crates.io-index"
  4273. checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
  4274. [[package]]
  4275. name = "predicates-tree"
  4276. version = "1.0.11"
  4277. source = "registry+https://github.com/rust-lang/crates.io-index"
  4278. checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
  4279. dependencies = [
  4280. "predicates-core",
  4281. "termtree",
  4282. ]
  4283. [[package]]
  4284. name = "primeorder"
  4285. version = "0.13.6"
  4286. source = "registry+https://github.com/rust-lang/crates.io-index"
  4287. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4288. dependencies = [
  4289. "elliptic-curve",
  4290. ]
  4291. [[package]]
  4292. name = "primitive-types"
  4293. version = "0.12.2"
  4294. source = "registry+https://github.com/rust-lang/crates.io-index"
  4295. checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
  4296. dependencies = [
  4297. "fixed-hash",
  4298. "uint",
  4299. ]
  4300. [[package]]
  4301. name = "proc-macro-crate"
  4302. version = "0.1.5"
  4303. source = "registry+https://github.com/rust-lang/crates.io-index"
  4304. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  4305. dependencies = [
  4306. "toml 0.5.11",
  4307. ]
  4308. [[package]]
  4309. name = "proc-macro-crate"
  4310. version = "3.1.0"
  4311. source = "registry+https://github.com/rust-lang/crates.io-index"
  4312. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  4313. dependencies = [
  4314. "toml_edit 0.21.1",
  4315. ]
  4316. [[package]]
  4317. name = "proc-macro-error"
  4318. version = "1.0.4"
  4319. source = "registry+https://github.com/rust-lang/crates.io-index"
  4320. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4321. dependencies = [
  4322. "proc-macro-error-attr",
  4323. "proc-macro2",
  4324. "quote",
  4325. "version_check",
  4326. ]
  4327. [[package]]
  4328. name = "proc-macro-error-attr"
  4329. version = "1.0.4"
  4330. source = "registry+https://github.com/rust-lang/crates.io-index"
  4331. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4332. dependencies = [
  4333. "proc-macro2",
  4334. "quote",
  4335. "version_check",
  4336. ]
  4337. [[package]]
  4338. name = "proc-macro2"
  4339. version = "1.0.86"
  4340. source = "registry+https://github.com/rust-lang/crates.io-index"
  4341. checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
  4342. dependencies = [
  4343. "unicode-ident",
  4344. ]
  4345. [[package]]
  4346. name = "prometheus-client"
  4347. version = "0.22.3"
  4348. source = "registry+https://github.com/rust-lang/crates.io-index"
  4349. checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca"
  4350. dependencies = [
  4351. "dtoa",
  4352. "itoa",
  4353. "parking_lot",
  4354. "prometheus-client-derive-encode",
  4355. ]
  4356. [[package]]
  4357. name = "prometheus-client-derive-encode"
  4358. version = "0.4.2"
  4359. source = "registry+https://github.com/rust-lang/crates.io-index"
  4360. checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8"
  4361. dependencies = [
  4362. "proc-macro2",
  4363. "quote",
  4364. "syn 2.0.75",
  4365. ]
  4366. [[package]]
  4367. name = "proptest"
  4368. version = "1.5.0"
  4369. source = "registry+https://github.com/rust-lang/crates.io-index"
  4370. checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d"
  4371. dependencies = [
  4372. "bit-set",
  4373. "bit-vec",
  4374. "bitflags 2.6.0",
  4375. "lazy_static",
  4376. "num-traits",
  4377. "rand",
  4378. "rand_chacha",
  4379. "rand_xorshift",
  4380. "regex-syntax",
  4381. "rusty-fork",
  4382. "tempfile",
  4383. "unarray",
  4384. ]
  4385. [[package]]
  4386. name = "psl-types"
  4387. version = "2.0.11"
  4388. source = "registry+https://github.com/rust-lang/crates.io-index"
  4389. checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
  4390. [[package]]
  4391. name = "psm"
  4392. version = "0.1.21"
  4393. source = "registry+https://github.com/rust-lang/crates.io-index"
  4394. checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
  4395. dependencies = [
  4396. "cc",
  4397. ]
  4398. [[package]]
  4399. name = "publicsuffix"
  4400. version = "2.2.3"
  4401. source = "registry+https://github.com/rust-lang/crates.io-index"
  4402. checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
  4403. dependencies = [
  4404. "idna 0.3.0",
  4405. "psl-types",
  4406. ]
  4407. [[package]]
  4408. name = "pyth-sdk"
  4409. version = "0.5.0"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. checksum = "f5c805ba3dfb5b7ed6a8ffa62ec38391f485a79c7cf6b3b11d3bd44fb0325824"
  4412. dependencies = [
  4413. "borsh 0.9.3",
  4414. "borsh-derive 0.9.3",
  4415. "hex",
  4416. "schemars",
  4417. "serde",
  4418. ]
  4419. [[package]]
  4420. name = "pyth_sdk"
  4421. version = "0.1.0"
  4422. dependencies = [
  4423. "base64 0.22.1",
  4424. "dotenv",
  4425. "fuels",
  4426. "hex",
  4427. "libsecp256k1",
  4428. "pythnet-sdk",
  4429. "rand",
  4430. "reqwest",
  4431. "serde",
  4432. "serde_json",
  4433. "serde_wormhole",
  4434. "sha3",
  4435. "tokio",
  4436. "wormhole-vaas-serde",
  4437. ]
  4438. [[package]]
  4439. name = "pythnet-sdk"
  4440. version = "2.3.1"
  4441. dependencies = [
  4442. "bincode",
  4443. "borsh 0.10.3",
  4444. "bytemuck",
  4445. "byteorder",
  4446. "fast-math",
  4447. "hex",
  4448. "libsecp256k1",
  4449. "pyth-sdk",
  4450. "rand",
  4451. "rustc_version",
  4452. "serde",
  4453. "serde_wormhole",
  4454. "sha3",
  4455. "slow_primes",
  4456. "thiserror",
  4457. "wormhole-vaas-serde",
  4458. ]
  4459. [[package]]
  4460. name = "quick-error"
  4461. version = "1.2.3"
  4462. source = "registry+https://github.com/rust-lang/crates.io-index"
  4463. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4464. [[package]]
  4465. name = "quick-protobuf"
  4466. version = "0.8.1"
  4467. source = "registry+https://github.com/rust-lang/crates.io-index"
  4468. checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f"
  4469. dependencies = [
  4470. "byteorder",
  4471. ]
  4472. [[package]]
  4473. name = "quick-protobuf-codec"
  4474. version = "0.3.1"
  4475. source = "registry+https://github.com/rust-lang/crates.io-index"
  4476. checksum = "15a0580ab32b169745d7a39db2ba969226ca16738931be152a3209b409de2474"
  4477. dependencies = [
  4478. "asynchronous-codec 0.7.0",
  4479. "bytes",
  4480. "quick-protobuf",
  4481. "thiserror",
  4482. "unsigned-varint 0.8.0",
  4483. ]
  4484. [[package]]
  4485. name = "quinn"
  4486. version = "0.11.3"
  4487. source = "registry+https://github.com/rust-lang/crates.io-index"
  4488. checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
  4489. dependencies = [
  4490. "bytes",
  4491. "futures-io",
  4492. "pin-project-lite",
  4493. "quinn-proto",
  4494. "quinn-udp",
  4495. "rustc-hash 2.0.0",
  4496. "rustls 0.23.12",
  4497. "socket2",
  4498. "thiserror",
  4499. "tokio",
  4500. "tracing",
  4501. ]
  4502. [[package]]
  4503. name = "quinn-proto"
  4504. version = "0.11.6"
  4505. source = "registry+https://github.com/rust-lang/crates.io-index"
  4506. checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
  4507. dependencies = [
  4508. "bytes",
  4509. "rand",
  4510. "ring 0.17.8",
  4511. "rustc-hash 2.0.0",
  4512. "rustls 0.23.12",
  4513. "slab",
  4514. "thiserror",
  4515. "tinyvec",
  4516. "tracing",
  4517. ]
  4518. [[package]]
  4519. name = "quinn-udp"
  4520. version = "0.5.4"
  4521. source = "registry+https://github.com/rust-lang/crates.io-index"
  4522. checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
  4523. dependencies = [
  4524. "libc",
  4525. "once_cell",
  4526. "socket2",
  4527. "tracing",
  4528. "windows-sys 0.52.0",
  4529. ]
  4530. [[package]]
  4531. name = "quote"
  4532. version = "1.0.36"
  4533. source = "registry+https://github.com/rust-lang/crates.io-index"
  4534. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  4535. dependencies = [
  4536. "proc-macro2",
  4537. ]
  4538. [[package]]
  4539. name = "radium"
  4540. version = "0.7.0"
  4541. source = "registry+https://github.com/rust-lang/crates.io-index"
  4542. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  4543. [[package]]
  4544. name = "rand"
  4545. version = "0.8.5"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4548. dependencies = [
  4549. "libc",
  4550. "rand_chacha",
  4551. "rand_core",
  4552. ]
  4553. [[package]]
  4554. name = "rand_chacha"
  4555. version = "0.3.1"
  4556. source = "registry+https://github.com/rust-lang/crates.io-index"
  4557. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4558. dependencies = [
  4559. "ppv-lite86",
  4560. "rand_core",
  4561. ]
  4562. [[package]]
  4563. name = "rand_core"
  4564. version = "0.6.4"
  4565. source = "registry+https://github.com/rust-lang/crates.io-index"
  4566. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4567. dependencies = [
  4568. "getrandom",
  4569. ]
  4570. [[package]]
  4571. name = "rand_xorshift"
  4572. version = "0.3.0"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  4575. dependencies = [
  4576. "rand_core",
  4577. ]
  4578. [[package]]
  4579. name = "rayon"
  4580. version = "1.10.0"
  4581. source = "registry+https://github.com/rust-lang/crates.io-index"
  4582. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  4583. dependencies = [
  4584. "either",
  4585. "rayon-core",
  4586. ]
  4587. [[package]]
  4588. name = "rayon-core"
  4589. version = "1.12.1"
  4590. source = "registry+https://github.com/rust-lang/crates.io-index"
  4591. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  4592. dependencies = [
  4593. "crossbeam-deque",
  4594. "crossbeam-utils",
  4595. ]
  4596. [[package]]
  4597. name = "rcgen"
  4598. version = "0.11.3"
  4599. source = "registry+https://github.com/rust-lang/crates.io-index"
  4600. checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6"
  4601. dependencies = [
  4602. "pem",
  4603. "ring 0.16.20",
  4604. "time",
  4605. "yasna",
  4606. ]
  4607. [[package]]
  4608. name = "redox_syscall"
  4609. version = "0.5.3"
  4610. source = "registry+https://github.com/rust-lang/crates.io-index"
  4611. checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
  4612. dependencies = [
  4613. "bitflags 2.6.0",
  4614. ]
  4615. [[package]]
  4616. name = "redox_users"
  4617. version = "0.4.6"
  4618. source = "registry+https://github.com/rust-lang/crates.io-index"
  4619. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  4620. dependencies = [
  4621. "getrandom",
  4622. "libredox",
  4623. "thiserror",
  4624. ]
  4625. [[package]]
  4626. name = "regalloc2"
  4627. version = "0.9.3"
  4628. source = "registry+https://github.com/rust-lang/crates.io-index"
  4629. checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
  4630. dependencies = [
  4631. "hashbrown 0.13.2",
  4632. "log",
  4633. "rustc-hash 1.1.0",
  4634. "slice-group-by",
  4635. "smallvec",
  4636. ]
  4637. [[package]]
  4638. name = "regex"
  4639. version = "1.10.6"
  4640. source = "registry+https://github.com/rust-lang/crates.io-index"
  4641. checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
  4642. dependencies = [
  4643. "aho-corasick",
  4644. "memchr",
  4645. "regex-automata",
  4646. "regex-syntax",
  4647. ]
  4648. [[package]]
  4649. name = "regex-automata"
  4650. version = "0.4.7"
  4651. source = "registry+https://github.com/rust-lang/crates.io-index"
  4652. checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
  4653. dependencies = [
  4654. "aho-corasick",
  4655. "memchr",
  4656. "regex-syntax",
  4657. ]
  4658. [[package]]
  4659. name = "regex-syntax"
  4660. version = "0.8.4"
  4661. source = "registry+https://github.com/rust-lang/crates.io-index"
  4662. checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
  4663. [[package]]
  4664. name = "reqwest"
  4665. version = "0.11.27"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
  4668. dependencies = [
  4669. "base64 0.21.7",
  4670. "bytes",
  4671. "cookie",
  4672. "cookie_store",
  4673. "encoding_rs",
  4674. "futures-core",
  4675. "futures-util",
  4676. "h2",
  4677. "http 0.2.12",
  4678. "http-body",
  4679. "hyper",
  4680. "hyper-rustls",
  4681. "hyper-tls",
  4682. "ipnet",
  4683. "js-sys",
  4684. "log",
  4685. "mime",
  4686. "native-tls",
  4687. "once_cell",
  4688. "percent-encoding",
  4689. "pin-project-lite",
  4690. "rustls 0.21.12",
  4691. "rustls-pemfile",
  4692. "serde",
  4693. "serde_json",
  4694. "serde_urlencoded",
  4695. "sync_wrapper",
  4696. "system-configuration",
  4697. "tokio",
  4698. "tokio-native-tls",
  4699. "tokio-rustls",
  4700. "tower-service",
  4701. "url",
  4702. "wasm-bindgen",
  4703. "wasm-bindgen-futures",
  4704. "web-sys",
  4705. "webpki-roots",
  4706. "winreg",
  4707. ]
  4708. [[package]]
  4709. name = "resolv-conf"
  4710. version = "0.7.0"
  4711. source = "registry+https://github.com/rust-lang/crates.io-index"
  4712. checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
  4713. dependencies = [
  4714. "hostname",
  4715. "quick-error",
  4716. ]
  4717. [[package]]
  4718. name = "rfc6979"
  4719. version = "0.4.0"
  4720. source = "registry+https://github.com/rust-lang/crates.io-index"
  4721. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  4722. dependencies = [
  4723. "hmac 0.12.1",
  4724. "subtle",
  4725. ]
  4726. [[package]]
  4727. name = "ring"
  4728. version = "0.16.20"
  4729. source = "registry+https://github.com/rust-lang/crates.io-index"
  4730. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4731. dependencies = [
  4732. "cc",
  4733. "libc",
  4734. "once_cell",
  4735. "spin 0.5.2",
  4736. "untrusted 0.7.1",
  4737. "web-sys",
  4738. "winapi",
  4739. ]
  4740. [[package]]
  4741. name = "ring"
  4742. version = "0.17.8"
  4743. source = "registry+https://github.com/rust-lang/crates.io-index"
  4744. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  4745. dependencies = [
  4746. "cc",
  4747. "cfg-if",
  4748. "getrandom",
  4749. "libc",
  4750. "spin 0.9.8",
  4751. "untrusted 0.9.0",
  4752. "windows-sys 0.52.0",
  4753. ]
  4754. [[package]]
  4755. name = "ripemd"
  4756. version = "0.1.3"
  4757. source = "registry+https://github.com/rust-lang/crates.io-index"
  4758. checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
  4759. dependencies = [
  4760. "digest 0.10.7",
  4761. ]
  4762. [[package]]
  4763. name = "rtnetlink"
  4764. version = "0.10.1"
  4765. source = "registry+https://github.com/rust-lang/crates.io-index"
  4766. checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
  4767. dependencies = [
  4768. "futures",
  4769. "log",
  4770. "netlink-packet-route",
  4771. "netlink-proto",
  4772. "nix",
  4773. "thiserror",
  4774. "tokio",
  4775. ]
  4776. [[package]]
  4777. name = "rustc-demangle"
  4778. version = "0.1.24"
  4779. source = "registry+https://github.com/rust-lang/crates.io-index"
  4780. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  4781. [[package]]
  4782. name = "rustc-hash"
  4783. version = "1.1.0"
  4784. source = "registry+https://github.com/rust-lang/crates.io-index"
  4785. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4786. [[package]]
  4787. name = "rustc-hash"
  4788. version = "2.0.0"
  4789. source = "registry+https://github.com/rust-lang/crates.io-index"
  4790. checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
  4791. [[package]]
  4792. name = "rustc_version"
  4793. version = "0.4.0"
  4794. source = "registry+https://github.com/rust-lang/crates.io-index"
  4795. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4796. dependencies = [
  4797. "semver",
  4798. ]
  4799. [[package]]
  4800. name = "rusticata-macros"
  4801. version = "4.1.0"
  4802. source = "registry+https://github.com/rust-lang/crates.io-index"
  4803. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  4804. dependencies = [
  4805. "nom",
  4806. ]
  4807. [[package]]
  4808. name = "rustix"
  4809. version = "0.38.34"
  4810. source = "registry+https://github.com/rust-lang/crates.io-index"
  4811. checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
  4812. dependencies = [
  4813. "bitflags 2.6.0",
  4814. "errno",
  4815. "libc",
  4816. "linux-raw-sys",
  4817. "windows-sys 0.52.0",
  4818. ]
  4819. [[package]]
  4820. name = "rustls"
  4821. version = "0.21.12"
  4822. source = "registry+https://github.com/rust-lang/crates.io-index"
  4823. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  4824. dependencies = [
  4825. "log",
  4826. "ring 0.17.8",
  4827. "rustls-webpki 0.101.7",
  4828. "sct",
  4829. ]
  4830. [[package]]
  4831. name = "rustls"
  4832. version = "0.23.12"
  4833. source = "registry+https://github.com/rust-lang/crates.io-index"
  4834. checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
  4835. dependencies = [
  4836. "once_cell",
  4837. "ring 0.17.8",
  4838. "rustls-pki-types",
  4839. "rustls-webpki 0.102.6",
  4840. "subtle",
  4841. "zeroize",
  4842. ]
  4843. [[package]]
  4844. name = "rustls-native-certs"
  4845. version = "0.6.3"
  4846. source = "registry+https://github.com/rust-lang/crates.io-index"
  4847. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  4848. dependencies = [
  4849. "openssl-probe",
  4850. "rustls-pemfile",
  4851. "schannel",
  4852. "security-framework",
  4853. ]
  4854. [[package]]
  4855. name = "rustls-pemfile"
  4856. version = "1.0.4"
  4857. source = "registry+https://github.com/rust-lang/crates.io-index"
  4858. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  4859. dependencies = [
  4860. "base64 0.21.7",
  4861. ]
  4862. [[package]]
  4863. name = "rustls-pki-types"
  4864. version = "1.8.0"
  4865. source = "registry+https://github.com/rust-lang/crates.io-index"
  4866. checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
  4867. [[package]]
  4868. name = "rustls-webpki"
  4869. version = "0.101.7"
  4870. source = "registry+https://github.com/rust-lang/crates.io-index"
  4871. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  4872. dependencies = [
  4873. "ring 0.17.8",
  4874. "untrusted 0.9.0",
  4875. ]
  4876. [[package]]
  4877. name = "rustls-webpki"
  4878. version = "0.102.6"
  4879. source = "registry+https://github.com/rust-lang/crates.io-index"
  4880. checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
  4881. dependencies = [
  4882. "ring 0.17.8",
  4883. "rustls-pki-types",
  4884. "untrusted 0.9.0",
  4885. ]
  4886. [[package]]
  4887. name = "rustversion"
  4888. version = "1.0.17"
  4889. source = "registry+https://github.com/rust-lang/crates.io-index"
  4890. checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
  4891. [[package]]
  4892. name = "rusty-fork"
  4893. version = "0.3.0"
  4894. source = "registry+https://github.com/rust-lang/crates.io-index"
  4895. checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
  4896. dependencies = [
  4897. "fnv",
  4898. "quick-error",
  4899. "tempfile",
  4900. "wait-timeout",
  4901. ]
  4902. [[package]]
  4903. name = "rw-stream-sink"
  4904. version = "0.4.0"
  4905. source = "registry+https://github.com/rust-lang/crates.io-index"
  4906. checksum = "d8c9026ff5d2f23da5e45bbc283f156383001bfb09c4e44256d02c1a685fe9a1"
  4907. dependencies = [
  4908. "futures",
  4909. "pin-project",
  4910. "static_assertions",
  4911. ]
  4912. [[package]]
  4913. name = "ryu"
  4914. version = "1.0.18"
  4915. source = "registry+https://github.com/rust-lang/crates.io-index"
  4916. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  4917. [[package]]
  4918. name = "salsa20"
  4919. version = "0.10.2"
  4920. source = "registry+https://github.com/rust-lang/crates.io-index"
  4921. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  4922. dependencies = [
  4923. "cipher",
  4924. ]
  4925. [[package]]
  4926. name = "schannel"
  4927. version = "0.1.23"
  4928. source = "registry+https://github.com/rust-lang/crates.io-index"
  4929. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  4930. dependencies = [
  4931. "windows-sys 0.52.0",
  4932. ]
  4933. [[package]]
  4934. name = "schemafy_core"
  4935. version = "0.5.2"
  4936. source = "registry+https://github.com/rust-lang/crates.io-index"
  4937. checksum = "41781ae092f4fd52c9287efb74456aea0d3b90032d2ecad272bd14dbbcb0511b"
  4938. dependencies = [
  4939. "serde",
  4940. "serde_json",
  4941. ]
  4942. [[package]]
  4943. name = "schemafy_lib"
  4944. version = "0.5.2"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "e953db32579999ca98c451d80801b6f6a7ecba6127196c5387ec0774c528befa"
  4947. dependencies = [
  4948. "Inflector",
  4949. "proc-macro2",
  4950. "quote",
  4951. "schemafy_core",
  4952. "serde",
  4953. "serde_derive",
  4954. "serde_json",
  4955. "syn 1.0.109",
  4956. ]
  4957. [[package]]
  4958. name = "schemars"
  4959. version = "0.8.21"
  4960. source = "registry+https://github.com/rust-lang/crates.io-index"
  4961. checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
  4962. dependencies = [
  4963. "dyn-clone",
  4964. "schemars_derive",
  4965. "serde",
  4966. "serde_json",
  4967. ]
  4968. [[package]]
  4969. name = "schemars_derive"
  4970. version = "0.8.21"
  4971. source = "registry+https://github.com/rust-lang/crates.io-index"
  4972. checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
  4973. dependencies = [
  4974. "proc-macro2",
  4975. "quote",
  4976. "serde_derive_internals",
  4977. "syn 2.0.75",
  4978. ]
  4979. [[package]]
  4980. name = "scopeguard"
  4981. version = "1.2.0"
  4982. source = "registry+https://github.com/rust-lang/crates.io-index"
  4983. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4984. [[package]]
  4985. name = "scrypt"
  4986. version = "0.10.0"
  4987. source = "registry+https://github.com/rust-lang/crates.io-index"
  4988. checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d"
  4989. dependencies = [
  4990. "hmac 0.12.1",
  4991. "pbkdf2 0.11.0",
  4992. "salsa20",
  4993. "sha2 0.10.8",
  4994. ]
  4995. [[package]]
  4996. name = "sct"
  4997. version = "0.7.1"
  4998. source = "registry+https://github.com/rust-lang/crates.io-index"
  4999. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  5000. dependencies = [
  5001. "ring 0.17.8",
  5002. "untrusted 0.9.0",
  5003. ]
  5004. [[package]]
  5005. name = "sec1"
  5006. version = "0.7.3"
  5007. source = "registry+https://github.com/rust-lang/crates.io-index"
  5008. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  5009. dependencies = [
  5010. "base16ct",
  5011. "der",
  5012. "generic-array",
  5013. "pkcs8",
  5014. "subtle",
  5015. "zeroize",
  5016. ]
  5017. [[package]]
  5018. name = "secp256k1"
  5019. version = "0.26.0"
  5020. source = "registry+https://github.com/rust-lang/crates.io-index"
  5021. checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894"
  5022. dependencies = [
  5023. "rand",
  5024. "secp256k1-sys",
  5025. ]
  5026. [[package]]
  5027. name = "secp256k1-sys"
  5028. version = "0.8.1"
  5029. source = "registry+https://github.com/rust-lang/crates.io-index"
  5030. checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
  5031. dependencies = [
  5032. "cc",
  5033. ]
  5034. [[package]]
  5035. name = "secrecy"
  5036. version = "0.8.0"
  5037. source = "registry+https://github.com/rust-lang/crates.io-index"
  5038. checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
  5039. dependencies = [
  5040. "zeroize",
  5041. ]
  5042. [[package]]
  5043. name = "security-framework"
  5044. version = "2.11.1"
  5045. source = "registry+https://github.com/rust-lang/crates.io-index"
  5046. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  5047. dependencies = [
  5048. "bitflags 2.6.0",
  5049. "core-foundation",
  5050. "core-foundation-sys",
  5051. "libc",
  5052. "security-framework-sys",
  5053. ]
  5054. [[package]]
  5055. name = "security-framework-sys"
  5056. version = "2.11.1"
  5057. source = "registry+https://github.com/rust-lang/crates.io-index"
  5058. checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
  5059. dependencies = [
  5060. "core-foundation-sys",
  5061. "libc",
  5062. ]
  5063. [[package]]
  5064. name = "semver"
  5065. version = "1.0.23"
  5066. source = "registry+https://github.com/rust-lang/crates.io-index"
  5067. checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
  5068. [[package]]
  5069. name = "serde"
  5070. version = "1.0.208"
  5071. source = "registry+https://github.com/rust-lang/crates.io-index"
  5072. checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2"
  5073. dependencies = [
  5074. "serde_derive",
  5075. ]
  5076. [[package]]
  5077. name = "serde_bytes"
  5078. version = "0.11.15"
  5079. source = "registry+https://github.com/rust-lang/crates.io-index"
  5080. checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
  5081. dependencies = [
  5082. "serde",
  5083. ]
  5084. [[package]]
  5085. name = "serde_derive"
  5086. version = "1.0.208"
  5087. source = "registry+https://github.com/rust-lang/crates.io-index"
  5088. checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf"
  5089. dependencies = [
  5090. "proc-macro2",
  5091. "quote",
  5092. "syn 2.0.75",
  5093. ]
  5094. [[package]]
  5095. name = "serde_derive_internals"
  5096. version = "0.29.1"
  5097. source = "registry+https://github.com/rust-lang/crates.io-index"
  5098. checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
  5099. dependencies = [
  5100. "proc-macro2",
  5101. "quote",
  5102. "syn 2.0.75",
  5103. ]
  5104. [[package]]
  5105. name = "serde_json"
  5106. version = "1.0.125"
  5107. source = "registry+https://github.com/rust-lang/crates.io-index"
  5108. checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed"
  5109. dependencies = [
  5110. "itoa",
  5111. "memchr",
  5112. "ryu",
  5113. "serde",
  5114. ]
  5115. [[package]]
  5116. name = "serde_spanned"
  5117. version = "0.6.7"
  5118. source = "registry+https://github.com/rust-lang/crates.io-index"
  5119. checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
  5120. dependencies = [
  5121. "serde",
  5122. ]
  5123. [[package]]
  5124. name = "serde_urlencoded"
  5125. version = "0.7.1"
  5126. source = "registry+https://github.com/rust-lang/crates.io-index"
  5127. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  5128. dependencies = [
  5129. "form_urlencoded",
  5130. "itoa",
  5131. "ryu",
  5132. "serde",
  5133. ]
  5134. [[package]]
  5135. name = "serde_with"
  5136. version = "3.9.0"
  5137. source = "registry+https://github.com/rust-lang/crates.io-index"
  5138. checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
  5139. dependencies = [
  5140. "base64 0.22.1",
  5141. "chrono",
  5142. "hex",
  5143. "indexmap 1.9.3",
  5144. "indexmap 2.4.0",
  5145. "serde",
  5146. "serde_derive",
  5147. "serde_json",
  5148. "serde_with_macros",
  5149. "time",
  5150. ]
  5151. [[package]]
  5152. name = "serde_with_macros"
  5153. version = "3.9.0"
  5154. source = "registry+https://github.com/rust-lang/crates.io-index"
  5155. checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
  5156. dependencies = [
  5157. "darling 0.20.10",
  5158. "proc-macro2",
  5159. "quote",
  5160. "syn 2.0.75",
  5161. ]
  5162. [[package]]
  5163. name = "serde_wormhole"
  5164. version = "0.1.0"
  5165. source = "registry+https://github.com/rust-lang/crates.io-index"
  5166. checksum = "24b022bf813578a06341fd453c3fd6e64945d9975191193d5d45e8dbd97d1d84"
  5167. dependencies = [
  5168. "base64 0.13.1",
  5169. "itoa",
  5170. "serde",
  5171. "serde_bytes",
  5172. "thiserror",
  5173. ]
  5174. [[package]]
  5175. name = "sha1"
  5176. version = "0.10.6"
  5177. source = "registry+https://github.com/rust-lang/crates.io-index"
  5178. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  5179. dependencies = [
  5180. "cfg-if",
  5181. "cpufeatures",
  5182. "digest 0.10.7",
  5183. ]
  5184. [[package]]
  5185. name = "sha2"
  5186. version = "0.9.9"
  5187. source = "registry+https://github.com/rust-lang/crates.io-index"
  5188. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  5189. dependencies = [
  5190. "block-buffer 0.9.0",
  5191. "cfg-if",
  5192. "cpufeatures",
  5193. "digest 0.9.0",
  5194. "opaque-debug",
  5195. ]
  5196. [[package]]
  5197. name = "sha2"
  5198. version = "0.10.8"
  5199. source = "registry+https://github.com/rust-lang/crates.io-index"
  5200. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  5201. dependencies = [
  5202. "cfg-if",
  5203. "cpufeatures",
  5204. "digest 0.10.7",
  5205. ]
  5206. [[package]]
  5207. name = "sha3"
  5208. version = "0.10.8"
  5209. source = "registry+https://github.com/rust-lang/crates.io-index"
  5210. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  5211. dependencies = [
  5212. "digest 0.10.7",
  5213. "keccak",
  5214. ]
  5215. [[package]]
  5216. name = "shlex"
  5217. version = "1.3.0"
  5218. source = "registry+https://github.com/rust-lang/crates.io-index"
  5219. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  5220. [[package]]
  5221. name = "signal-hook-registry"
  5222. version = "1.4.2"
  5223. source = "registry+https://github.com/rust-lang/crates.io-index"
  5224. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  5225. dependencies = [
  5226. "libc",
  5227. ]
  5228. [[package]]
  5229. name = "signature"
  5230. version = "2.2.0"
  5231. source = "registry+https://github.com/rust-lang/crates.io-index"
  5232. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  5233. dependencies = [
  5234. "digest 0.10.7",
  5235. "rand_core",
  5236. ]
  5237. [[package]]
  5238. name = "slab"
  5239. version = "0.4.9"
  5240. source = "registry+https://github.com/rust-lang/crates.io-index"
  5241. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  5242. dependencies = [
  5243. "autocfg",
  5244. ]
  5245. [[package]]
  5246. name = "slice-group-by"
  5247. version = "0.3.1"
  5248. source = "registry+https://github.com/rust-lang/crates.io-index"
  5249. checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
  5250. [[package]]
  5251. name = "slow_primes"
  5252. version = "0.1.14"
  5253. source = "registry+https://github.com/rust-lang/crates.io-index"
  5254. checksum = "58267dd2fbaa6dceecba9e3e106d2d90a2b02497c0e8b01b8759beccf5113938"
  5255. dependencies = [
  5256. "num",
  5257. ]
  5258. [[package]]
  5259. name = "smallvec"
  5260. version = "1.13.2"
  5261. source = "registry+https://github.com/rust-lang/crates.io-index"
  5262. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  5263. dependencies = [
  5264. "serde",
  5265. ]
  5266. [[package]]
  5267. name = "snow"
  5268. version = "0.9.6"
  5269. source = "registry+https://github.com/rust-lang/crates.io-index"
  5270. checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85"
  5271. dependencies = [
  5272. "aes-gcm",
  5273. "blake2",
  5274. "chacha20poly1305",
  5275. "curve25519-dalek",
  5276. "rand_core",
  5277. "ring 0.17.8",
  5278. "rustc_version",
  5279. "sha2 0.10.8",
  5280. "subtle",
  5281. ]
  5282. [[package]]
  5283. name = "socket2"
  5284. version = "0.5.7"
  5285. source = "registry+https://github.com/rust-lang/crates.io-index"
  5286. checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
  5287. dependencies = [
  5288. "libc",
  5289. "windows-sys 0.52.0",
  5290. ]
  5291. [[package]]
  5292. name = "soketto"
  5293. version = "0.8.0"
  5294. source = "registry+https://github.com/rust-lang/crates.io-index"
  5295. checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53"
  5296. dependencies = [
  5297. "base64 0.22.1",
  5298. "bytes",
  5299. "futures",
  5300. "httparse",
  5301. "log",
  5302. "rand",
  5303. "sha1",
  5304. ]
  5305. [[package]]
  5306. name = "spin"
  5307. version = "0.5.2"
  5308. source = "registry+https://github.com/rust-lang/crates.io-index"
  5309. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5310. [[package]]
  5311. name = "spin"
  5312. version = "0.9.8"
  5313. source = "registry+https://github.com/rust-lang/crates.io-index"
  5314. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  5315. dependencies = [
  5316. "lock_api",
  5317. ]
  5318. [[package]]
  5319. name = "spki"
  5320. version = "0.7.3"
  5321. source = "registry+https://github.com/rust-lang/crates.io-index"
  5322. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  5323. dependencies = [
  5324. "base64ct",
  5325. "der",
  5326. ]
  5327. [[package]]
  5328. name = "sptr"
  5329. version = "0.3.2"
  5330. source = "registry+https://github.com/rust-lang/crates.io-index"
  5331. checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
  5332. [[package]]
  5333. name = "stable_deref_trait"
  5334. version = "1.2.0"
  5335. source = "registry+https://github.com/rust-lang/crates.io-index"
  5336. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5337. [[package]]
  5338. name = "static_assertions"
  5339. version = "1.1.0"
  5340. source = "registry+https://github.com/rust-lang/crates.io-index"
  5341. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5342. [[package]]
  5343. name = "static_assertions_next"
  5344. version = "1.1.2"
  5345. source = "registry+https://github.com/rust-lang/crates.io-index"
  5346. checksum = "d7beae5182595e9a8b683fa98c4317f956c9a2dec3b9716990d20023cc60c766"
  5347. [[package]]
  5348. name = "strsim"
  5349. version = "0.10.0"
  5350. source = "registry+https://github.com/rust-lang/crates.io-index"
  5351. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  5352. [[package]]
  5353. name = "strsim"
  5354. version = "0.11.1"
  5355. source = "registry+https://github.com/rust-lang/crates.io-index"
  5356. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  5357. [[package]]
  5358. name = "strum"
  5359. version = "0.24.1"
  5360. source = "registry+https://github.com/rust-lang/crates.io-index"
  5361. checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
  5362. dependencies = [
  5363. "strum_macros 0.24.3",
  5364. ]
  5365. [[package]]
  5366. name = "strum"
  5367. version = "0.25.0"
  5368. source = "registry+https://github.com/rust-lang/crates.io-index"
  5369. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  5370. dependencies = [
  5371. "strum_macros 0.25.3",
  5372. ]
  5373. [[package]]
  5374. name = "strum"
  5375. version = "0.26.3"
  5376. source = "registry+https://github.com/rust-lang/crates.io-index"
  5377. checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
  5378. dependencies = [
  5379. "strum_macros 0.26.4",
  5380. ]
  5381. [[package]]
  5382. name = "strum_macros"
  5383. version = "0.24.3"
  5384. source = "registry+https://github.com/rust-lang/crates.io-index"
  5385. checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
  5386. dependencies = [
  5387. "heck 0.4.1",
  5388. "proc-macro2",
  5389. "quote",
  5390. "rustversion",
  5391. "syn 1.0.109",
  5392. ]
  5393. [[package]]
  5394. name = "strum_macros"
  5395. version = "0.25.3"
  5396. source = "registry+https://github.com/rust-lang/crates.io-index"
  5397. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  5398. dependencies = [
  5399. "heck 0.4.1",
  5400. "proc-macro2",
  5401. "quote",
  5402. "rustversion",
  5403. "syn 2.0.75",
  5404. ]
  5405. [[package]]
  5406. name = "strum_macros"
  5407. version = "0.26.4"
  5408. source = "registry+https://github.com/rust-lang/crates.io-index"
  5409. checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
  5410. dependencies = [
  5411. "heck 0.5.0",
  5412. "proc-macro2",
  5413. "quote",
  5414. "rustversion",
  5415. "syn 2.0.75",
  5416. ]
  5417. [[package]]
  5418. name = "subtle"
  5419. version = "2.6.1"
  5420. source = "registry+https://github.com/rust-lang/crates.io-index"
  5421. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  5422. [[package]]
  5423. name = "syn"
  5424. version = "1.0.109"
  5425. source = "registry+https://github.com/rust-lang/crates.io-index"
  5426. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  5427. dependencies = [
  5428. "proc-macro2",
  5429. "quote",
  5430. "unicode-ident",
  5431. ]
  5432. [[package]]
  5433. name = "syn"
  5434. version = "2.0.75"
  5435. source = "registry+https://github.com/rust-lang/crates.io-index"
  5436. checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
  5437. dependencies = [
  5438. "proc-macro2",
  5439. "quote",
  5440. "unicode-ident",
  5441. ]
  5442. [[package]]
  5443. name = "sync_wrapper"
  5444. version = "0.1.2"
  5445. source = "registry+https://github.com/rust-lang/crates.io-index"
  5446. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  5447. [[package]]
  5448. name = "synstructure"
  5449. version = "0.13.1"
  5450. source = "registry+https://github.com/rust-lang/crates.io-index"
  5451. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  5452. dependencies = [
  5453. "proc-macro2",
  5454. "quote",
  5455. "syn 2.0.75",
  5456. ]
  5457. [[package]]
  5458. name = "system-configuration"
  5459. version = "0.5.1"
  5460. source = "registry+https://github.com/rust-lang/crates.io-index"
  5461. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  5462. dependencies = [
  5463. "bitflags 1.3.2",
  5464. "core-foundation",
  5465. "system-configuration-sys",
  5466. ]
  5467. [[package]]
  5468. name = "system-configuration-sys"
  5469. version = "0.5.0"
  5470. source = "registry+https://github.com/rust-lang/crates.io-index"
  5471. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  5472. dependencies = [
  5473. "core-foundation-sys",
  5474. "libc",
  5475. ]
  5476. [[package]]
  5477. name = "tai64"
  5478. version = "4.0.0"
  5479. source = "registry+https://github.com/rust-lang/crates.io-index"
  5480. checksum = "ed7401421025f4132e6c1f7af5e7f8287383969f36e6628016cd509b8d3da9dc"
  5481. dependencies = [
  5482. "serde",
  5483. ]
  5484. [[package]]
  5485. name = "tap"
  5486. version = "1.0.1"
  5487. source = "registry+https://github.com/rust-lang/crates.io-index"
  5488. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5489. [[package]]
  5490. name = "target-lexicon"
  5491. version = "0.12.16"
  5492. source = "registry+https://github.com/rust-lang/crates.io-index"
  5493. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  5494. [[package]]
  5495. name = "tempfile"
  5496. version = "3.12.0"
  5497. source = "registry+https://github.com/rust-lang/crates.io-index"
  5498. checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
  5499. dependencies = [
  5500. "cfg-if",
  5501. "fastrand",
  5502. "once_cell",
  5503. "rustix",
  5504. "windows-sys 0.59.0",
  5505. ]
  5506. [[package]]
  5507. name = "termcolor"
  5508. version = "1.4.1"
  5509. source = "registry+https://github.com/rust-lang/crates.io-index"
  5510. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  5511. dependencies = [
  5512. "winapi-util",
  5513. ]
  5514. [[package]]
  5515. name = "termtree"
  5516. version = "0.4.1"
  5517. source = "registry+https://github.com/rust-lang/crates.io-index"
  5518. checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
  5519. [[package]]
  5520. name = "thiserror"
  5521. version = "1.0.63"
  5522. source = "registry+https://github.com/rust-lang/crates.io-index"
  5523. checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
  5524. dependencies = [
  5525. "thiserror-impl",
  5526. ]
  5527. [[package]]
  5528. name = "thiserror-impl"
  5529. version = "1.0.63"
  5530. source = "registry+https://github.com/rust-lang/crates.io-index"
  5531. checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
  5532. dependencies = [
  5533. "proc-macro2",
  5534. "quote",
  5535. "syn 2.0.75",
  5536. ]
  5537. [[package]]
  5538. name = "time"
  5539. version = "0.3.36"
  5540. source = "registry+https://github.com/rust-lang/crates.io-index"
  5541. checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
  5542. dependencies = [
  5543. "deranged",
  5544. "itoa",
  5545. "num-conv",
  5546. "powerfmt",
  5547. "serde",
  5548. "time-core",
  5549. "time-macros",
  5550. ]
  5551. [[package]]
  5552. name = "time-core"
  5553. version = "0.1.2"
  5554. source = "registry+https://github.com/rust-lang/crates.io-index"
  5555. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  5556. [[package]]
  5557. name = "time-macros"
  5558. version = "0.2.18"
  5559. source = "registry+https://github.com/rust-lang/crates.io-index"
  5560. checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
  5561. dependencies = [
  5562. "num-conv",
  5563. "time-core",
  5564. ]
  5565. [[package]]
  5566. name = "tinyvec"
  5567. version = "1.8.0"
  5568. source = "registry+https://github.com/rust-lang/crates.io-index"
  5569. checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
  5570. dependencies = [
  5571. "tinyvec_macros",
  5572. ]
  5573. [[package]]
  5574. name = "tinyvec_macros"
  5575. version = "0.1.1"
  5576. source = "registry+https://github.com/rust-lang/crates.io-index"
  5577. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  5578. [[package]]
  5579. name = "tokio"
  5580. version = "1.39.3"
  5581. source = "registry+https://github.com/rust-lang/crates.io-index"
  5582. checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5"
  5583. dependencies = [
  5584. "backtrace",
  5585. "bytes",
  5586. "libc",
  5587. "mio",
  5588. "parking_lot",
  5589. "pin-project-lite",
  5590. "signal-hook-registry",
  5591. "socket2",
  5592. "tokio-macros",
  5593. "windows-sys 0.52.0",
  5594. ]
  5595. [[package]]
  5596. name = "tokio-io-timeout"
  5597. version = "1.2.0"
  5598. source = "registry+https://github.com/rust-lang/crates.io-index"
  5599. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  5600. dependencies = [
  5601. "pin-project-lite",
  5602. "tokio",
  5603. ]
  5604. [[package]]
  5605. name = "tokio-macros"
  5606. version = "2.4.0"
  5607. source = "registry+https://github.com/rust-lang/crates.io-index"
  5608. checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
  5609. dependencies = [
  5610. "proc-macro2",
  5611. "quote",
  5612. "syn 2.0.75",
  5613. ]
  5614. [[package]]
  5615. name = "tokio-native-tls"
  5616. version = "0.3.1"
  5617. source = "registry+https://github.com/rust-lang/crates.io-index"
  5618. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  5619. dependencies = [
  5620. "native-tls",
  5621. "tokio",
  5622. ]
  5623. [[package]]
  5624. name = "tokio-rayon"
  5625. version = "2.1.0"
  5626. source = "registry+https://github.com/rust-lang/crates.io-index"
  5627. checksum = "7cf33a76e0b1dd03b778f83244137bd59887abf25c0e87bc3e7071105f457693"
  5628. dependencies = [
  5629. "rayon",
  5630. "tokio",
  5631. ]
  5632. [[package]]
  5633. name = "tokio-rustls"
  5634. version = "0.24.1"
  5635. source = "registry+https://github.com/rust-lang/crates.io-index"
  5636. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  5637. dependencies = [
  5638. "rustls 0.21.12",
  5639. "tokio",
  5640. ]
  5641. [[package]]
  5642. name = "tokio-stream"
  5643. version = "0.1.15"
  5644. source = "registry+https://github.com/rust-lang/crates.io-index"
  5645. checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
  5646. dependencies = [
  5647. "futures-core",
  5648. "pin-project-lite",
  5649. "tokio",
  5650. "tokio-util",
  5651. ]
  5652. [[package]]
  5653. name = "tokio-util"
  5654. version = "0.7.11"
  5655. source = "registry+https://github.com/rust-lang/crates.io-index"
  5656. checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
  5657. dependencies = [
  5658. "bytes",
  5659. "futures-core",
  5660. "futures-sink",
  5661. "pin-project-lite",
  5662. "tokio",
  5663. ]
  5664. [[package]]
  5665. name = "toml"
  5666. version = "0.5.11"
  5667. source = "registry+https://github.com/rust-lang/crates.io-index"
  5668. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  5669. dependencies = [
  5670. "serde",
  5671. ]
  5672. [[package]]
  5673. name = "toml"
  5674. version = "0.8.19"
  5675. source = "registry+https://github.com/rust-lang/crates.io-index"
  5676. checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
  5677. dependencies = [
  5678. "serde",
  5679. "serde_spanned",
  5680. "toml_datetime",
  5681. "toml_edit 0.22.20",
  5682. ]
  5683. [[package]]
  5684. name = "toml_datetime"
  5685. version = "0.6.8"
  5686. source = "registry+https://github.com/rust-lang/crates.io-index"
  5687. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  5688. dependencies = [
  5689. "serde",
  5690. ]
  5691. [[package]]
  5692. name = "toml_edit"
  5693. version = "0.21.1"
  5694. source = "registry+https://github.com/rust-lang/crates.io-index"
  5695. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  5696. dependencies = [
  5697. "indexmap 2.4.0",
  5698. "toml_datetime",
  5699. "winnow 0.5.40",
  5700. ]
  5701. [[package]]
  5702. name = "toml_edit"
  5703. version = "0.22.20"
  5704. source = "registry+https://github.com/rust-lang/crates.io-index"
  5705. checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
  5706. dependencies = [
  5707. "indexmap 2.4.0",
  5708. "serde",
  5709. "serde_spanned",
  5710. "toml_datetime",
  5711. "winnow 0.6.18",
  5712. ]
  5713. [[package]]
  5714. name = "tower"
  5715. version = "0.4.13"
  5716. source = "registry+https://github.com/rust-lang/crates.io-index"
  5717. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  5718. dependencies = [
  5719. "futures-core",
  5720. "futures-util",
  5721. "pin-project",
  5722. "pin-project-lite",
  5723. "tokio",
  5724. "tower-layer",
  5725. "tower-service",
  5726. "tracing",
  5727. ]
  5728. [[package]]
  5729. name = "tower-http"
  5730. version = "0.3.5"
  5731. source = "registry+https://github.com/rust-lang/crates.io-index"
  5732. checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
  5733. dependencies = [
  5734. "bitflags 1.3.2",
  5735. "bytes",
  5736. "futures-core",
  5737. "futures-util",
  5738. "http 0.2.12",
  5739. "http-body",
  5740. "http-range-header",
  5741. "pin-project-lite",
  5742. "tokio",
  5743. "tower",
  5744. "tower-layer",
  5745. "tower-service",
  5746. "tracing",
  5747. ]
  5748. [[package]]
  5749. name = "tower-layer"
  5750. version = "0.3.3"
  5751. source = "registry+https://github.com/rust-lang/crates.io-index"
  5752. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  5753. [[package]]
  5754. name = "tower-service"
  5755. version = "0.3.3"
  5756. source = "registry+https://github.com/rust-lang/crates.io-index"
  5757. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  5758. [[package]]
  5759. name = "tracing"
  5760. version = "0.1.40"
  5761. source = "registry+https://github.com/rust-lang/crates.io-index"
  5762. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  5763. dependencies = [
  5764. "log",
  5765. "pin-project-lite",
  5766. "tracing-attributes",
  5767. "tracing-core",
  5768. ]
  5769. [[package]]
  5770. name = "tracing-attributes"
  5771. version = "0.1.27"
  5772. source = "registry+https://github.com/rust-lang/crates.io-index"
  5773. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  5774. dependencies = [
  5775. "proc-macro2",
  5776. "quote",
  5777. "syn 2.0.75",
  5778. ]
  5779. [[package]]
  5780. name = "tracing-core"
  5781. version = "0.1.32"
  5782. source = "registry+https://github.com/rust-lang/crates.io-index"
  5783. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  5784. dependencies = [
  5785. "once_cell",
  5786. ]
  5787. [[package]]
  5788. name = "tracing-futures"
  5789. version = "0.2.5"
  5790. source = "registry+https://github.com/rust-lang/crates.io-index"
  5791. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  5792. dependencies = [
  5793. "futures",
  5794. "futures-task",
  5795. "pin-project",
  5796. "tracing",
  5797. ]
  5798. [[package]]
  5799. name = "try-lock"
  5800. version = "0.2.5"
  5801. source = "registry+https://github.com/rust-lang/crates.io-index"
  5802. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  5803. [[package]]
  5804. name = "typenum"
  5805. version = "1.17.0"
  5806. source = "registry+https://github.com/rust-lang/crates.io-index"
  5807. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  5808. [[package]]
  5809. name = "ucd-trie"
  5810. version = "0.1.6"
  5811. source = "registry+https://github.com/rust-lang/crates.io-index"
  5812. checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
  5813. [[package]]
  5814. name = "uint"
  5815. version = "0.9.5"
  5816. source = "registry+https://github.com/rust-lang/crates.io-index"
  5817. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5818. dependencies = [
  5819. "byteorder",
  5820. "crunchy",
  5821. "hex",
  5822. "static_assertions",
  5823. ]
  5824. [[package]]
  5825. name = "unarray"
  5826. version = "0.1.4"
  5827. source = "registry+https://github.com/rust-lang/crates.io-index"
  5828. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  5829. [[package]]
  5830. name = "unicode-bidi"
  5831. version = "0.3.15"
  5832. source = "registry+https://github.com/rust-lang/crates.io-index"
  5833. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  5834. [[package]]
  5835. name = "unicode-ident"
  5836. version = "1.0.12"
  5837. source = "registry+https://github.com/rust-lang/crates.io-index"
  5838. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  5839. [[package]]
  5840. name = "unicode-normalization"
  5841. version = "0.1.23"
  5842. source = "registry+https://github.com/rust-lang/crates.io-index"
  5843. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  5844. dependencies = [
  5845. "tinyvec",
  5846. ]
  5847. [[package]]
  5848. name = "unicode-width"
  5849. version = "0.1.13"
  5850. source = "registry+https://github.com/rust-lang/crates.io-index"
  5851. checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
  5852. [[package]]
  5853. name = "unicode-xid"
  5854. version = "0.2.5"
  5855. source = "registry+https://github.com/rust-lang/crates.io-index"
  5856. checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a"
  5857. [[package]]
  5858. name = "universal-hash"
  5859. version = "0.5.1"
  5860. source = "registry+https://github.com/rust-lang/crates.io-index"
  5861. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  5862. dependencies = [
  5863. "crypto-common",
  5864. "subtle",
  5865. ]
  5866. [[package]]
  5867. name = "unreachable"
  5868. version = "1.0.0"
  5869. source = "registry+https://github.com/rust-lang/crates.io-index"
  5870. checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
  5871. dependencies = [
  5872. "void",
  5873. ]
  5874. [[package]]
  5875. name = "unsigned-varint"
  5876. version = "0.7.2"
  5877. source = "registry+https://github.com/rust-lang/crates.io-index"
  5878. checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105"
  5879. dependencies = [
  5880. "asynchronous-codec 0.6.2",
  5881. "bytes",
  5882. ]
  5883. [[package]]
  5884. name = "unsigned-varint"
  5885. version = "0.8.0"
  5886. source = "registry+https://github.com/rust-lang/crates.io-index"
  5887. checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
  5888. [[package]]
  5889. name = "untrusted"
  5890. version = "0.7.1"
  5891. source = "registry+https://github.com/rust-lang/crates.io-index"
  5892. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  5893. [[package]]
  5894. name = "untrusted"
  5895. version = "0.9.0"
  5896. source = "registry+https://github.com/rust-lang/crates.io-index"
  5897. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5898. [[package]]
  5899. name = "url"
  5900. version = "2.5.2"
  5901. source = "registry+https://github.com/rust-lang/crates.io-index"
  5902. checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
  5903. dependencies = [
  5904. "form_urlencoded",
  5905. "idna 0.5.0",
  5906. "percent-encoding",
  5907. ]
  5908. [[package]]
  5909. name = "utf8parse"
  5910. version = "0.2.2"
  5911. source = "registry+https://github.com/rust-lang/crates.io-index"
  5912. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  5913. [[package]]
  5914. name = "uuid"
  5915. version = "0.8.2"
  5916. source = "registry+https://github.com/rust-lang/crates.io-index"
  5917. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  5918. dependencies = [
  5919. "getrandom",
  5920. "serde",
  5921. ]
  5922. [[package]]
  5923. name = "uuid"
  5924. version = "1.10.0"
  5925. source = "registry+https://github.com/rust-lang/crates.io-index"
  5926. checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
  5927. dependencies = [
  5928. "getrandom",
  5929. ]
  5930. [[package]]
  5931. name = "vcpkg"
  5932. version = "0.2.15"
  5933. source = "registry+https://github.com/rust-lang/crates.io-index"
  5934. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5935. [[package]]
  5936. name = "version_check"
  5937. version = "0.9.5"
  5938. source = "registry+https://github.com/rust-lang/crates.io-index"
  5939. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  5940. [[package]]
  5941. name = "void"
  5942. version = "1.0.2"
  5943. source = "registry+https://github.com/rust-lang/crates.io-index"
  5944. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5945. [[package]]
  5946. name = "wait-timeout"
  5947. version = "0.2.0"
  5948. source = "registry+https://github.com/rust-lang/crates.io-index"
  5949. checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  5950. dependencies = [
  5951. "libc",
  5952. ]
  5953. [[package]]
  5954. name = "want"
  5955. version = "0.3.1"
  5956. source = "registry+https://github.com/rust-lang/crates.io-index"
  5957. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  5958. dependencies = [
  5959. "try-lock",
  5960. ]
  5961. [[package]]
  5962. name = "wasi"
  5963. version = "0.11.0+wasi-snapshot-preview1"
  5964. source = "registry+https://github.com/rust-lang/crates.io-index"
  5965. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5966. [[package]]
  5967. name = "wasm-bindgen"
  5968. version = "0.2.93"
  5969. source = "registry+https://github.com/rust-lang/crates.io-index"
  5970. checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
  5971. dependencies = [
  5972. "cfg-if",
  5973. "once_cell",
  5974. "wasm-bindgen-macro",
  5975. ]
  5976. [[package]]
  5977. name = "wasm-bindgen-backend"
  5978. version = "0.2.93"
  5979. source = "registry+https://github.com/rust-lang/crates.io-index"
  5980. checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
  5981. dependencies = [
  5982. "bumpalo",
  5983. "log",
  5984. "once_cell",
  5985. "proc-macro2",
  5986. "quote",
  5987. "syn 2.0.75",
  5988. "wasm-bindgen-shared",
  5989. ]
  5990. [[package]]
  5991. name = "wasm-bindgen-futures"
  5992. version = "0.4.43"
  5993. source = "registry+https://github.com/rust-lang/crates.io-index"
  5994. checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
  5995. dependencies = [
  5996. "cfg-if",
  5997. "js-sys",
  5998. "wasm-bindgen",
  5999. "web-sys",
  6000. ]
  6001. [[package]]
  6002. name = "wasm-bindgen-macro"
  6003. version = "0.2.93"
  6004. source = "registry+https://github.com/rust-lang/crates.io-index"
  6005. checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
  6006. dependencies = [
  6007. "quote",
  6008. "wasm-bindgen-macro-support",
  6009. ]
  6010. [[package]]
  6011. name = "wasm-bindgen-macro-support"
  6012. version = "0.2.93"
  6013. source = "registry+https://github.com/rust-lang/crates.io-index"
  6014. checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
  6015. dependencies = [
  6016. "proc-macro2",
  6017. "quote",
  6018. "syn 2.0.75",
  6019. "wasm-bindgen-backend",
  6020. "wasm-bindgen-shared",
  6021. ]
  6022. [[package]]
  6023. name = "wasm-bindgen-shared"
  6024. version = "0.2.93"
  6025. source = "registry+https://github.com/rust-lang/crates.io-index"
  6026. checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
  6027. [[package]]
  6028. name = "wasm-encoder"
  6029. version = "0.212.0"
  6030. source = "registry+https://github.com/rust-lang/crates.io-index"
  6031. checksum = "501940df4418b8929eb6d52f1aade1fdd15a5b86c92453cb696e3c906bd3fc33"
  6032. dependencies = [
  6033. "leb128",
  6034. ]
  6035. [[package]]
  6036. name = "wasmparser"
  6037. version = "0.212.0"
  6038. source = "registry+https://github.com/rust-lang/crates.io-index"
  6039. checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8"
  6040. dependencies = [
  6041. "ahash 0.8.11",
  6042. "bitflags 2.6.0",
  6043. "hashbrown 0.14.5",
  6044. "indexmap 2.4.0",
  6045. "semver",
  6046. "serde",
  6047. ]
  6048. [[package]]
  6049. name = "wasmprinter"
  6050. version = "0.212.0"
  6051. source = "registry+https://github.com/rust-lang/crates.io-index"
  6052. checksum = "dfac65326cc561112af88c3028f6dfdb140acff67ede33a8e86be2dc6b8956f7"
  6053. dependencies = [
  6054. "anyhow",
  6055. "termcolor",
  6056. "wasmparser",
  6057. ]
  6058. [[package]]
  6059. name = "wasmtime"
  6060. version = "23.0.2"
  6061. source = "registry+https://github.com/rust-lang/crates.io-index"
  6062. checksum = "07232e0b473af36112da7348f51e73fa8b11047a6cb546096da3812930b7c93a"
  6063. dependencies = [
  6064. "anyhow",
  6065. "bitflags 2.6.0",
  6066. "bumpalo",
  6067. "cc",
  6068. "cfg-if",
  6069. "hashbrown 0.14.5",
  6070. "indexmap 2.4.0",
  6071. "libc",
  6072. "libm",
  6073. "log",
  6074. "mach2",
  6075. "memfd",
  6076. "object",
  6077. "once_cell",
  6078. "paste",
  6079. "postcard",
  6080. "psm",
  6081. "rayon",
  6082. "rustix",
  6083. "serde",
  6084. "serde_derive",
  6085. "smallvec",
  6086. "sptr",
  6087. "target-lexicon",
  6088. "wasmparser",
  6089. "wasmtime-asm-macros",
  6090. "wasmtime-cache",
  6091. "wasmtime-component-macro",
  6092. "wasmtime-cranelift",
  6093. "wasmtime-environ",
  6094. "wasmtime-jit-icache-coherence",
  6095. "wasmtime-slab",
  6096. "wasmtime-versioned-export-macros",
  6097. "windows-sys 0.52.0",
  6098. ]
  6099. [[package]]
  6100. name = "wasmtime-asm-macros"
  6101. version = "23.0.2"
  6102. source = "registry+https://github.com/rust-lang/crates.io-index"
  6103. checksum = "e5a9c42562d879c749288d9a26acc0d95d2ca069e30c2ec2efce84461c4d62b3"
  6104. dependencies = [
  6105. "cfg-if",
  6106. ]
  6107. [[package]]
  6108. name = "wasmtime-cache"
  6109. version = "23.0.2"
  6110. source = "registry+https://github.com/rust-lang/crates.io-index"
  6111. checksum = "38d5d5aac98c8ae87cf5244495da7722e3fa022aa6f3f4fcd5e3d6e5699ce422"
  6112. dependencies = [
  6113. "anyhow",
  6114. "base64 0.21.7",
  6115. "directories-next",
  6116. "log",
  6117. "postcard",
  6118. "rustix",
  6119. "serde",
  6120. "serde_derive",
  6121. "sha2 0.10.8",
  6122. "toml 0.8.19",
  6123. "windows-sys 0.52.0",
  6124. "zstd",
  6125. ]
  6126. [[package]]
  6127. name = "wasmtime-component-macro"
  6128. version = "23.0.2"
  6129. source = "registry+https://github.com/rust-lang/crates.io-index"
  6130. checksum = "c0c3f57c4bc96f9b4a6ff4d6cb6e837913eff32e98d09e2b6d79b5c4647b415b"
  6131. dependencies = [
  6132. "anyhow",
  6133. "proc-macro2",
  6134. "quote",
  6135. "syn 2.0.75",
  6136. "wasmtime-component-util",
  6137. "wasmtime-wit-bindgen",
  6138. "wit-parser",
  6139. ]
  6140. [[package]]
  6141. name = "wasmtime-component-util"
  6142. version = "23.0.2"
  6143. source = "registry+https://github.com/rust-lang/crates.io-index"
  6144. checksum = "1da707969bc31a565da9b32d087eb2370c95c6f2087c5539a15f2e3b27e77203"
  6145. [[package]]
  6146. name = "wasmtime-cranelift"
  6147. version = "23.0.2"
  6148. source = "registry+https://github.com/rust-lang/crates.io-index"
  6149. checksum = "62cb6135ec46994299be711b78b03acaa9480de3715f827d450f0c947a84977c"
  6150. dependencies = [
  6151. "anyhow",
  6152. "cfg-if",
  6153. "cranelift-codegen",
  6154. "cranelift-control",
  6155. "cranelift-entity",
  6156. "cranelift-frontend",
  6157. "cranelift-native",
  6158. "cranelift-wasm",
  6159. "gimli 0.28.1",
  6160. "log",
  6161. "object",
  6162. "target-lexicon",
  6163. "thiserror",
  6164. "wasmparser",
  6165. "wasmtime-environ",
  6166. "wasmtime-versioned-export-macros",
  6167. ]
  6168. [[package]]
  6169. name = "wasmtime-environ"
  6170. version = "23.0.2"
  6171. source = "registry+https://github.com/rust-lang/crates.io-index"
  6172. checksum = "9bcaa3b42a0718e9123da7fb75e8e13fc95df7db2a7e32e2f2f4f0d3333b7d6f"
  6173. dependencies = [
  6174. "anyhow",
  6175. "cranelift-bitset",
  6176. "cranelift-entity",
  6177. "gimli 0.28.1",
  6178. "indexmap 2.4.0",
  6179. "log",
  6180. "object",
  6181. "postcard",
  6182. "serde",
  6183. "serde_derive",
  6184. "target-lexicon",
  6185. "wasm-encoder",
  6186. "wasmparser",
  6187. "wasmprinter",
  6188. "wasmtime-types",
  6189. ]
  6190. [[package]]
  6191. name = "wasmtime-jit-icache-coherence"
  6192. version = "23.0.2"
  6193. source = "registry+https://github.com/rust-lang/crates.io-index"
  6194. checksum = "2cfee42dac5148fc2664ab1f5cb8d7fa77a28d1a2cf1d9483abc2c3d751a58b9"
  6195. dependencies = [
  6196. "anyhow",
  6197. "cfg-if",
  6198. "libc",
  6199. "windows-sys 0.52.0",
  6200. ]
  6201. [[package]]
  6202. name = "wasmtime-slab"
  6203. version = "23.0.2"
  6204. source = "registry+https://github.com/rust-lang/crates.io-index"
  6205. checksum = "42eb8f6515708ec67974998c3e644101db4186308985f5ef7c2ef324ff33c948"
  6206. [[package]]
  6207. name = "wasmtime-types"
  6208. version = "23.0.2"
  6209. source = "registry+https://github.com/rust-lang/crates.io-index"
  6210. checksum = "046873fb8fb3e9652f3fd76fe99c8c8129007695c3d73b2e307fdae40f6e324c"
  6211. dependencies = [
  6212. "anyhow",
  6213. "cranelift-entity",
  6214. "serde",
  6215. "serde_derive",
  6216. "smallvec",
  6217. "wasmparser",
  6218. ]
  6219. [[package]]
  6220. name = "wasmtime-versioned-export-macros"
  6221. version = "23.0.2"
  6222. source = "registry+https://github.com/rust-lang/crates.io-index"
  6223. checksum = "99c02af2e9dbeb427304d1a08787d70ed0dbfec1af2236616f84c9f1f03e7969"
  6224. dependencies = [
  6225. "proc-macro2",
  6226. "quote",
  6227. "syn 2.0.75",
  6228. ]
  6229. [[package]]
  6230. name = "wasmtime-wit-bindgen"
  6231. version = "23.0.2"
  6232. source = "registry+https://github.com/rust-lang/crates.io-index"
  6233. checksum = "75f528f8b8a2376a3dacaf497d960216dd466d324425361e1e00e26de0a7705c"
  6234. dependencies = [
  6235. "anyhow",
  6236. "heck 0.4.1",
  6237. "indexmap 2.4.0",
  6238. "wit-parser",
  6239. ]
  6240. [[package]]
  6241. name = "web-sys"
  6242. version = "0.3.70"
  6243. source = "registry+https://github.com/rust-lang/crates.io-index"
  6244. checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
  6245. dependencies = [
  6246. "js-sys",
  6247. "wasm-bindgen",
  6248. ]
  6249. [[package]]
  6250. name = "web-time"
  6251. version = "1.1.0"
  6252. source = "registry+https://github.com/rust-lang/crates.io-index"
  6253. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  6254. dependencies = [
  6255. "js-sys",
  6256. "wasm-bindgen",
  6257. ]
  6258. [[package]]
  6259. name = "webpki-roots"
  6260. version = "0.25.4"
  6261. source = "registry+https://github.com/rust-lang/crates.io-index"
  6262. checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
  6263. [[package]]
  6264. name = "which"
  6265. version = "6.0.3"
  6266. source = "registry+https://github.com/rust-lang/crates.io-index"
  6267. checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
  6268. dependencies = [
  6269. "either",
  6270. "home",
  6271. "rustix",
  6272. "winsafe",
  6273. ]
  6274. [[package]]
  6275. name = "widestring"
  6276. version = "1.1.0"
  6277. source = "registry+https://github.com/rust-lang/crates.io-index"
  6278. checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
  6279. [[package]]
  6280. name = "winapi"
  6281. version = "0.3.9"
  6282. source = "registry+https://github.com/rust-lang/crates.io-index"
  6283. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6284. dependencies = [
  6285. "winapi-i686-pc-windows-gnu",
  6286. "winapi-x86_64-pc-windows-gnu",
  6287. ]
  6288. [[package]]
  6289. name = "winapi-i686-pc-windows-gnu"
  6290. version = "0.4.0"
  6291. source = "registry+https://github.com/rust-lang/crates.io-index"
  6292. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6293. [[package]]
  6294. name = "winapi-util"
  6295. version = "0.1.9"
  6296. source = "registry+https://github.com/rust-lang/crates.io-index"
  6297. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  6298. dependencies = [
  6299. "windows-sys 0.59.0",
  6300. ]
  6301. [[package]]
  6302. name = "winapi-x86_64-pc-windows-gnu"
  6303. version = "0.4.0"
  6304. source = "registry+https://github.com/rust-lang/crates.io-index"
  6305. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6306. [[package]]
  6307. name = "windows"
  6308. version = "0.51.1"
  6309. source = "registry+https://github.com/rust-lang/crates.io-index"
  6310. checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
  6311. dependencies = [
  6312. "windows-core 0.51.1",
  6313. "windows-targets 0.48.5",
  6314. ]
  6315. [[package]]
  6316. name = "windows-core"
  6317. version = "0.51.1"
  6318. source = "registry+https://github.com/rust-lang/crates.io-index"
  6319. checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
  6320. dependencies = [
  6321. "windows-targets 0.48.5",
  6322. ]
  6323. [[package]]
  6324. name = "windows-core"
  6325. version = "0.52.0"
  6326. source = "registry+https://github.com/rust-lang/crates.io-index"
  6327. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  6328. dependencies = [
  6329. "windows-targets 0.52.6",
  6330. ]
  6331. [[package]]
  6332. name = "windows-sys"
  6333. version = "0.48.0"
  6334. source = "registry+https://github.com/rust-lang/crates.io-index"
  6335. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6336. dependencies = [
  6337. "windows-targets 0.48.5",
  6338. ]
  6339. [[package]]
  6340. name = "windows-sys"
  6341. version = "0.52.0"
  6342. source = "registry+https://github.com/rust-lang/crates.io-index"
  6343. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  6344. dependencies = [
  6345. "windows-targets 0.52.6",
  6346. ]
  6347. [[package]]
  6348. name = "windows-sys"
  6349. version = "0.59.0"
  6350. source = "registry+https://github.com/rust-lang/crates.io-index"
  6351. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  6352. dependencies = [
  6353. "windows-targets 0.52.6",
  6354. ]
  6355. [[package]]
  6356. name = "windows-targets"
  6357. version = "0.48.5"
  6358. source = "registry+https://github.com/rust-lang/crates.io-index"
  6359. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  6360. dependencies = [
  6361. "windows_aarch64_gnullvm 0.48.5",
  6362. "windows_aarch64_msvc 0.48.5",
  6363. "windows_i686_gnu 0.48.5",
  6364. "windows_i686_msvc 0.48.5",
  6365. "windows_x86_64_gnu 0.48.5",
  6366. "windows_x86_64_gnullvm 0.48.5",
  6367. "windows_x86_64_msvc 0.48.5",
  6368. ]
  6369. [[package]]
  6370. name = "windows-targets"
  6371. version = "0.52.6"
  6372. source = "registry+https://github.com/rust-lang/crates.io-index"
  6373. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  6374. dependencies = [
  6375. "windows_aarch64_gnullvm 0.52.6",
  6376. "windows_aarch64_msvc 0.52.6",
  6377. "windows_i686_gnu 0.52.6",
  6378. "windows_i686_gnullvm",
  6379. "windows_i686_msvc 0.52.6",
  6380. "windows_x86_64_gnu 0.52.6",
  6381. "windows_x86_64_gnullvm 0.52.6",
  6382. "windows_x86_64_msvc 0.52.6",
  6383. ]
  6384. [[package]]
  6385. name = "windows_aarch64_gnullvm"
  6386. version = "0.48.5"
  6387. source = "registry+https://github.com/rust-lang/crates.io-index"
  6388. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  6389. [[package]]
  6390. name = "windows_aarch64_gnullvm"
  6391. version = "0.52.6"
  6392. source = "registry+https://github.com/rust-lang/crates.io-index"
  6393. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  6394. [[package]]
  6395. name = "windows_aarch64_msvc"
  6396. version = "0.48.5"
  6397. source = "registry+https://github.com/rust-lang/crates.io-index"
  6398. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  6399. [[package]]
  6400. name = "windows_aarch64_msvc"
  6401. version = "0.52.6"
  6402. source = "registry+https://github.com/rust-lang/crates.io-index"
  6403. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  6404. [[package]]
  6405. name = "windows_i686_gnu"
  6406. version = "0.48.5"
  6407. source = "registry+https://github.com/rust-lang/crates.io-index"
  6408. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  6409. [[package]]
  6410. name = "windows_i686_gnu"
  6411. version = "0.52.6"
  6412. source = "registry+https://github.com/rust-lang/crates.io-index"
  6413. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  6414. [[package]]
  6415. name = "windows_i686_gnullvm"
  6416. version = "0.52.6"
  6417. source = "registry+https://github.com/rust-lang/crates.io-index"
  6418. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  6419. [[package]]
  6420. name = "windows_i686_msvc"
  6421. version = "0.48.5"
  6422. source = "registry+https://github.com/rust-lang/crates.io-index"
  6423. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  6424. [[package]]
  6425. name = "windows_i686_msvc"
  6426. version = "0.52.6"
  6427. source = "registry+https://github.com/rust-lang/crates.io-index"
  6428. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  6429. [[package]]
  6430. name = "windows_x86_64_gnu"
  6431. version = "0.48.5"
  6432. source = "registry+https://github.com/rust-lang/crates.io-index"
  6433. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  6434. [[package]]
  6435. name = "windows_x86_64_gnu"
  6436. version = "0.52.6"
  6437. source = "registry+https://github.com/rust-lang/crates.io-index"
  6438. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  6439. [[package]]
  6440. name = "windows_x86_64_gnullvm"
  6441. version = "0.48.5"
  6442. source = "registry+https://github.com/rust-lang/crates.io-index"
  6443. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  6444. [[package]]
  6445. name = "windows_x86_64_gnullvm"
  6446. version = "0.52.6"
  6447. source = "registry+https://github.com/rust-lang/crates.io-index"
  6448. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  6449. [[package]]
  6450. name = "windows_x86_64_msvc"
  6451. version = "0.48.5"
  6452. source = "registry+https://github.com/rust-lang/crates.io-index"
  6453. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  6454. [[package]]
  6455. name = "windows_x86_64_msvc"
  6456. version = "0.52.6"
  6457. source = "registry+https://github.com/rust-lang/crates.io-index"
  6458. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  6459. [[package]]
  6460. name = "winnow"
  6461. version = "0.5.40"
  6462. source = "registry+https://github.com/rust-lang/crates.io-index"
  6463. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  6464. dependencies = [
  6465. "memchr",
  6466. ]
  6467. [[package]]
  6468. name = "winnow"
  6469. version = "0.6.18"
  6470. source = "registry+https://github.com/rust-lang/crates.io-index"
  6471. checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
  6472. dependencies = [
  6473. "memchr",
  6474. ]
  6475. [[package]]
  6476. name = "winreg"
  6477. version = "0.50.0"
  6478. source = "registry+https://github.com/rust-lang/crates.io-index"
  6479. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  6480. dependencies = [
  6481. "cfg-if",
  6482. "windows-sys 0.48.0",
  6483. ]
  6484. [[package]]
  6485. name = "winsafe"
  6486. version = "0.0.19"
  6487. source = "registry+https://github.com/rust-lang/crates.io-index"
  6488. checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
  6489. [[package]]
  6490. name = "wit-parser"
  6491. version = "0.212.0"
  6492. source = "registry+https://github.com/rust-lang/crates.io-index"
  6493. checksum = "ceeb0424aa8679f3fcf2d6e3cfa381f3d6fa6179976a2c05a6249dd2bb426716"
  6494. dependencies = [
  6495. "anyhow",
  6496. "id-arena",
  6497. "indexmap 2.4.0",
  6498. "log",
  6499. "semver",
  6500. "serde",
  6501. "serde_derive",
  6502. "serde_json",
  6503. "unicode-xid",
  6504. "wasmparser",
  6505. ]
  6506. [[package]]
  6507. name = "wormhole-supported-chains"
  6508. version = "0.1.0"
  6509. source = "registry+https://github.com/rust-lang/crates.io-index"
  6510. checksum = "3f42a80a24212937cc7d7b0ab8115bb87d82f949a1a42f75d500807072c94ba4"
  6511. dependencies = [
  6512. "serde",
  6513. "thiserror",
  6514. ]
  6515. [[package]]
  6516. name = "wormhole-vaas-serde"
  6517. version = "0.1.0"
  6518. source = "registry+https://github.com/rust-lang/crates.io-index"
  6519. checksum = "240c5a6136dc66ecc65097bb6d159e849b5df4ecbbbb220868d0edbdcc568ed3"
  6520. dependencies = [
  6521. "anyhow",
  6522. "bstr",
  6523. "schemars",
  6524. "serde",
  6525. "serde_wormhole",
  6526. "sha3",
  6527. "thiserror",
  6528. "wormhole-supported-chains",
  6529. ]
  6530. [[package]]
  6531. name = "wyz"
  6532. version = "0.5.1"
  6533. source = "registry+https://github.com/rust-lang/crates.io-index"
  6534. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6535. dependencies = [
  6536. "tap",
  6537. ]
  6538. [[package]]
  6539. name = "x25519-dalek"
  6540. version = "2.0.1"
  6541. source = "registry+https://github.com/rust-lang/crates.io-index"
  6542. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  6543. dependencies = [
  6544. "curve25519-dalek",
  6545. "rand_core",
  6546. "serde",
  6547. "zeroize",
  6548. ]
  6549. [[package]]
  6550. name = "x509-parser"
  6551. version = "0.16.0"
  6552. source = "registry+https://github.com/rust-lang/crates.io-index"
  6553. checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
  6554. dependencies = [
  6555. "asn1-rs",
  6556. "data-encoding",
  6557. "der-parser",
  6558. "lazy_static",
  6559. "nom",
  6560. "oid-registry",
  6561. "rusticata-macros",
  6562. "thiserror",
  6563. "time",
  6564. ]
  6565. [[package]]
  6566. name = "xml-rs"
  6567. version = "0.8.21"
  6568. source = "registry+https://github.com/rust-lang/crates.io-index"
  6569. checksum = "539a77ee7c0de333dcc6da69b177380a0b81e0dacfa4f7344c465a36871ee601"
  6570. [[package]]
  6571. name = "xmltree"
  6572. version = "0.10.3"
  6573. source = "registry+https://github.com/rust-lang/crates.io-index"
  6574. checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
  6575. dependencies = [
  6576. "xml-rs",
  6577. ]
  6578. [[package]]
  6579. name = "yamux"
  6580. version = "0.12.1"
  6581. source = "registry+https://github.com/rust-lang/crates.io-index"
  6582. checksum = "9ed0164ae619f2dc144909a9f082187ebb5893693d8c0196e8085283ccd4b776"
  6583. dependencies = [
  6584. "futures",
  6585. "log",
  6586. "nohash-hasher",
  6587. "parking_lot",
  6588. "pin-project",
  6589. "rand",
  6590. "static_assertions",
  6591. ]
  6592. [[package]]
  6593. name = "yamux"
  6594. version = "0.13.3"
  6595. source = "registry+https://github.com/rust-lang/crates.io-index"
  6596. checksum = "a31b5e376a8b012bee9c423acdbb835fc34d45001cfa3106236a624e4b738028"
  6597. dependencies = [
  6598. "futures",
  6599. "log",
  6600. "nohash-hasher",
  6601. "parking_lot",
  6602. "pin-project",
  6603. "rand",
  6604. "static_assertions",
  6605. "web-time",
  6606. ]
  6607. [[package]]
  6608. name = "yasna"
  6609. version = "0.5.2"
  6610. source = "registry+https://github.com/rust-lang/crates.io-index"
  6611. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6612. dependencies = [
  6613. "time",
  6614. ]
  6615. [[package]]
  6616. name = "zerocopy"
  6617. version = "0.7.35"
  6618. source = "registry+https://github.com/rust-lang/crates.io-index"
  6619. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  6620. dependencies = [
  6621. "byteorder",
  6622. "zerocopy-derive",
  6623. ]
  6624. [[package]]
  6625. name = "zerocopy-derive"
  6626. version = "0.7.35"
  6627. source = "registry+https://github.com/rust-lang/crates.io-index"
  6628. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  6629. dependencies = [
  6630. "proc-macro2",
  6631. "quote",
  6632. "syn 2.0.75",
  6633. ]
  6634. [[package]]
  6635. name = "zeroize"
  6636. version = "1.8.1"
  6637. source = "registry+https://github.com/rust-lang/crates.io-index"
  6638. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  6639. dependencies = [
  6640. "zeroize_derive",
  6641. ]
  6642. [[package]]
  6643. name = "zeroize_derive"
  6644. version = "1.4.2"
  6645. source = "registry+https://github.com/rust-lang/crates.io-index"
  6646. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6647. dependencies = [
  6648. "proc-macro2",
  6649. "quote",
  6650. "syn 2.0.75",
  6651. ]
  6652. [[package]]
  6653. name = "zstd"
  6654. version = "0.13.2"
  6655. source = "registry+https://github.com/rust-lang/crates.io-index"
  6656. checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
  6657. dependencies = [
  6658. "zstd-safe",
  6659. ]
  6660. [[package]]
  6661. name = "zstd-safe"
  6662. version = "7.2.1"
  6663. source = "registry+https://github.com/rust-lang/crates.io-index"
  6664. checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
  6665. dependencies = [
  6666. "zstd-sys",
  6667. ]
  6668. [[package]]
  6669. name = "zstd-sys"
  6670. version = "2.0.13+zstd.1.5.6"
  6671. source = "registry+https://github.com/rust-lang/crates.io-index"
  6672. checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
  6673. dependencies = [
  6674. "cc",
  6675. "pkg-config",
  6676. ]