Cargo.lock 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  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 = "adler"
  15. version = "1.0.2"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  18. [[package]]
  19. name = "aead"
  20. version = "0.4.3"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
  23. dependencies = [
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "aes"
  28. version = "0.7.5"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher 0.3.0",
  34. "cpufeatures",
  35. "opaque-debug",
  36. ]
  37. [[package]]
  38. name = "aes-gcm"
  39. version = "0.9.4"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
  42. dependencies = [
  43. "aead",
  44. "aes",
  45. "cipher 0.3.0",
  46. "ctr",
  47. "ghash",
  48. "subtle",
  49. ]
  50. [[package]]
  51. name = "aes-gcm-siv"
  52. version = "0.10.3"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "589c637f0e68c877bbd59a4599bbe849cac8e5f3e4b5a3ebae8f528cd218dcdc"
  55. dependencies = [
  56. "aead",
  57. "aes",
  58. "cipher 0.3.0",
  59. "ctr",
  60. "polyval",
  61. "subtle",
  62. "zeroize",
  63. ]
  64. [[package]]
  65. name = "ahash"
  66. version = "0.7.6"
  67. source = "registry+https://github.com/rust-lang/crates.io-index"
  68. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  69. dependencies = [
  70. "getrandom 0.2.9",
  71. "once_cell",
  72. "version_check",
  73. ]
  74. [[package]]
  75. name = "aho-corasick"
  76. version = "1.0.1"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
  79. dependencies = [
  80. "memchr",
  81. ]
  82. [[package]]
  83. name = "alloc-no-stdlib"
  84. version = "2.0.4"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  87. [[package]]
  88. name = "alloc-stdlib"
  89. version = "0.2.2"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  92. dependencies = [
  93. "alloc-no-stdlib",
  94. ]
  95. [[package]]
  96. name = "android_system_properties"
  97. version = "0.1.5"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  100. dependencies = [
  101. "libc",
  102. ]
  103. [[package]]
  104. name = "ansi_term"
  105. version = "0.12.1"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  108. dependencies = [
  109. "winapi",
  110. ]
  111. [[package]]
  112. name = "anyhow"
  113. version = "1.0.71"
  114. source = "registry+https://github.com/rust-lang/crates.io-index"
  115. checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
  116. [[package]]
  117. name = "arrayref"
  118. version = "0.3.7"
  119. source = "registry+https://github.com/rust-lang/crates.io-index"
  120. checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
  121. [[package]]
  122. name = "arrayvec"
  123. version = "0.5.2"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  126. [[package]]
  127. name = "arrayvec"
  128. version = "0.7.2"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  131. [[package]]
  132. name = "asn1-rs"
  133. version = "0.5.2"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
  136. dependencies = [
  137. "asn1-rs-derive",
  138. "asn1-rs-impl",
  139. "displaydoc",
  140. "nom",
  141. "num-traits",
  142. "rusticata-macros",
  143. "thiserror",
  144. "time 0.3.21",
  145. ]
  146. [[package]]
  147. name = "asn1-rs-derive"
  148. version = "0.4.0"
  149. source = "registry+https://github.com/rust-lang/crates.io-index"
  150. checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
  151. dependencies = [
  152. "proc-macro2 1.0.56",
  153. "quote 1.0.27",
  154. "syn 1.0.109",
  155. "synstructure",
  156. ]
  157. [[package]]
  158. name = "asn1-rs-impl"
  159. version = "0.1.0"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
  162. dependencies = [
  163. "proc-macro2 1.0.56",
  164. "quote 1.0.27",
  165. "syn 1.0.109",
  166. ]
  167. [[package]]
  168. name = "asn1_der"
  169. version = "0.7.6"
  170. source = "registry+https://github.com/rust-lang/crates.io-index"
  171. checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247"
  172. [[package]]
  173. name = "assert_matches"
  174. version = "1.5.0"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
  177. [[package]]
  178. name = "async-channel"
  179. version = "1.8.0"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
  182. dependencies = [
  183. "concurrent-queue",
  184. "event-listener",
  185. "futures-core",
  186. ]
  187. [[package]]
  188. name = "async-compression"
  189. version = "0.3.15"
  190. source = "registry+https://github.com/rust-lang/crates.io-index"
  191. checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
  192. dependencies = [
  193. "brotli",
  194. "flate2",
  195. "futures-core",
  196. "memchr",
  197. "pin-project-lite 0.2.9",
  198. "tokio",
  199. ]
  200. [[package]]
  201. name = "async-executor"
  202. version = "1.5.1"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
  205. dependencies = [
  206. "async-lock",
  207. "async-task",
  208. "concurrent-queue",
  209. "fastrand",
  210. "futures-lite",
  211. "slab",
  212. ]
  213. [[package]]
  214. name = "async-global-executor"
  215. version = "2.3.1"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
  218. dependencies = [
  219. "async-channel",
  220. "async-executor",
  221. "async-io",
  222. "async-lock",
  223. "blocking",
  224. "futures-lite",
  225. "once_cell",
  226. ]
  227. [[package]]
  228. name = "async-io"
  229. version = "1.13.0"
  230. source = "registry+https://github.com/rust-lang/crates.io-index"
  231. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  232. dependencies = [
  233. "async-lock",
  234. "autocfg",
  235. "cfg-if",
  236. "concurrent-queue",
  237. "futures-lite",
  238. "log",
  239. "parking",
  240. "polling",
  241. "rustix",
  242. "slab",
  243. "socket2 0.4.9",
  244. "waker-fn",
  245. ]
  246. [[package]]
  247. name = "async-lock"
  248. version = "2.7.0"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
  251. dependencies = [
  252. "event-listener",
  253. ]
  254. [[package]]
  255. name = "async-mutex"
  256. version = "1.4.0"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
  259. dependencies = [
  260. "event-listener",
  261. ]
  262. [[package]]
  263. name = "async-std"
  264. version = "1.12.0"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
  267. dependencies = [
  268. "async-channel",
  269. "async-global-executor",
  270. "async-io",
  271. "async-lock",
  272. "crossbeam-utils",
  273. "futures-channel",
  274. "futures-core",
  275. "futures-io",
  276. "futures-lite",
  277. "gloo-timers",
  278. "kv-log-macro",
  279. "log",
  280. "memchr",
  281. "once_cell",
  282. "pin-project-lite 0.2.9",
  283. "pin-utils",
  284. "slab",
  285. "wasm-bindgen-futures",
  286. ]
  287. [[package]]
  288. name = "async-std-resolver"
  289. version = "0.20.4"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "dbf3e776afdf3a2477ef4854b85ba0dff3bd85792f685fb3c68948b4d304e4f0"
  292. dependencies = [
  293. "async-std",
  294. "async-trait",
  295. "futures-io",
  296. "futures-util",
  297. "pin-utils",
  298. "trust-dns-resolver",
  299. ]
  300. [[package]]
  301. name = "async-task"
  302. version = "4.4.0"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
  305. [[package]]
  306. name = "async-trait"
  307. version = "0.1.68"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
  310. dependencies = [
  311. "proc-macro2 1.0.56",
  312. "quote 1.0.27",
  313. "syn 2.0.15",
  314. ]
  315. [[package]]
  316. name = "asynchronous-codec"
  317. version = "0.6.1"
  318. source = "registry+https://github.com/rust-lang/crates.io-index"
  319. checksum = "06a0daa378f5fd10634e44b0a29b2a87b890657658e072a30d6f26e57ddee182"
  320. dependencies = [
  321. "bytes",
  322. "futures-sink",
  323. "futures-util",
  324. "memchr",
  325. "pin-project-lite 0.2.9",
  326. ]
  327. [[package]]
  328. name = "atomic"
  329. version = "0.5.1"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
  332. dependencies = [
  333. "autocfg",
  334. ]
  335. [[package]]
  336. name = "atomic-waker"
  337. version = "1.1.1"
  338. source = "registry+https://github.com/rust-lang/crates.io-index"
  339. checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
  340. [[package]]
  341. name = "atty"
  342. version = "0.2.14"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  345. dependencies = [
  346. "hermit-abi 0.1.19",
  347. "libc",
  348. "winapi",
  349. ]
  350. [[package]]
  351. name = "autocfg"
  352. version = "1.1.0"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  355. [[package]]
  356. name = "axum"
  357. version = "0.6.18"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "f8175979259124331c1d7bf6586ee7e0da434155e4b2d48ec2c8386281d8df39"
  360. dependencies = [
  361. "async-trait",
  362. "axum-core",
  363. "axum-macros",
  364. "base64 0.21.0",
  365. "bitflags",
  366. "bytes",
  367. "futures-util",
  368. "http",
  369. "http-body",
  370. "hyper",
  371. "itoa",
  372. "matchit",
  373. "memchr",
  374. "mime",
  375. "percent-encoding",
  376. "pin-project-lite 0.2.9",
  377. "rustversion",
  378. "serde",
  379. "serde_json",
  380. "serde_path_to_error",
  381. "serde_urlencoded",
  382. "sha1",
  383. "sync_wrapper",
  384. "tokio",
  385. "tokio-tungstenite 0.18.0",
  386. "tower",
  387. "tower-layer",
  388. "tower-service",
  389. ]
  390. [[package]]
  391. name = "axum-core"
  392. version = "0.3.4"
  393. source = "registry+https://github.com/rust-lang/crates.io-index"
  394. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  395. dependencies = [
  396. "async-trait",
  397. "bytes",
  398. "futures-util",
  399. "http",
  400. "http-body",
  401. "mime",
  402. "rustversion",
  403. "tower-layer",
  404. "tower-service",
  405. ]
  406. [[package]]
  407. name = "axum-macros"
  408. version = "0.3.7"
  409. source = "registry+https://github.com/rust-lang/crates.io-index"
  410. checksum = "2bb524613be645939e280b7279f7b017f98cf7f5ef084ec374df373530e73277"
  411. dependencies = [
  412. "heck 0.4.1",
  413. "proc-macro2 1.0.56",
  414. "quote 1.0.27",
  415. "syn 2.0.15",
  416. ]
  417. [[package]]
  418. name = "base64"
  419. version = "0.12.3"
  420. source = "registry+https://github.com/rust-lang/crates.io-index"
  421. checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
  422. [[package]]
  423. name = "base64"
  424. version = "0.13.1"
  425. source = "registry+https://github.com/rust-lang/crates.io-index"
  426. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  427. [[package]]
  428. name = "base64"
  429. version = "0.21.0"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
  432. [[package]]
  433. name = "base64ct"
  434. version = "1.6.0"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  437. [[package]]
  438. name = "bimap"
  439. version = "0.6.3"
  440. source = "registry+https://github.com/rust-lang/crates.io-index"
  441. checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
  442. [[package]]
  443. name = "bincode"
  444. version = "1.3.3"
  445. source = "registry+https://github.com/rust-lang/crates.io-index"
  446. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  447. dependencies = [
  448. "serde",
  449. ]
  450. [[package]]
  451. name = "bindgen"
  452. version = "0.60.1"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
  455. dependencies = [
  456. "bitflags",
  457. "cexpr",
  458. "clang-sys",
  459. "clap 3.2.25",
  460. "env_logger 0.9.3",
  461. "lazy_static",
  462. "lazycell",
  463. "log",
  464. "peeking_take_while",
  465. "proc-macro2 1.0.56",
  466. "quote 1.0.27",
  467. "regex",
  468. "rustc-hash",
  469. "shlex",
  470. "which",
  471. ]
  472. [[package]]
  473. name = "bitflags"
  474. version = "1.3.2"
  475. source = "registry+https://github.com/rust-lang/crates.io-index"
  476. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  477. [[package]]
  478. name = "bitmaps"
  479. version = "2.1.0"
  480. source = "registry+https://github.com/rust-lang/crates.io-index"
  481. checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
  482. dependencies = [
  483. "typenum",
  484. ]
  485. [[package]]
  486. name = "bitvec"
  487. version = "1.0.1"
  488. source = "registry+https://github.com/rust-lang/crates.io-index"
  489. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  490. dependencies = [
  491. "funty",
  492. "radium",
  493. "tap",
  494. "wyz",
  495. ]
  496. [[package]]
  497. name = "blake2"
  498. version = "0.9.2"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "0a4e37d16930f5459780f5621038b6382b9bb37c19016f39fb6b5808d831f174"
  501. dependencies = [
  502. "crypto-mac",
  503. "digest 0.9.0",
  504. "opaque-debug",
  505. ]
  506. [[package]]
  507. name = "blake3"
  508. version = "1.3.3"
  509. source = "registry+https://github.com/rust-lang/crates.io-index"
  510. checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
  511. dependencies = [
  512. "arrayref",
  513. "arrayvec 0.7.2",
  514. "cc",
  515. "cfg-if",
  516. "constant_time_eq",
  517. "digest 0.10.6",
  518. ]
  519. [[package]]
  520. name = "block-buffer"
  521. version = "0.9.0"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  524. dependencies = [
  525. "block-padding",
  526. "generic-array",
  527. ]
  528. [[package]]
  529. name = "block-buffer"
  530. version = "0.10.4"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  533. dependencies = [
  534. "generic-array",
  535. ]
  536. [[package]]
  537. name = "block-padding"
  538. version = "0.2.1"
  539. source = "registry+https://github.com/rust-lang/crates.io-index"
  540. checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
  541. [[package]]
  542. name = "blocking"
  543. version = "1.3.1"
  544. source = "registry+https://github.com/rust-lang/crates.io-index"
  545. checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
  546. dependencies = [
  547. "async-channel",
  548. "async-lock",
  549. "async-task",
  550. "atomic-waker",
  551. "fastrand",
  552. "futures-lite",
  553. "log",
  554. ]
  555. [[package]]
  556. name = "borsh"
  557. version = "0.9.3"
  558. source = "registry+https://github.com/rust-lang/crates.io-index"
  559. checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
  560. dependencies = [
  561. "borsh-derive",
  562. "hashbrown 0.11.2",
  563. ]
  564. [[package]]
  565. name = "borsh-derive"
  566. version = "0.9.3"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
  569. dependencies = [
  570. "borsh-derive-internal",
  571. "borsh-schema-derive-internal",
  572. "proc-macro-crate 0.1.5",
  573. "proc-macro2 1.0.56",
  574. "syn 1.0.109",
  575. ]
  576. [[package]]
  577. name = "borsh-derive-internal"
  578. version = "0.9.3"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
  581. dependencies = [
  582. "proc-macro2 1.0.56",
  583. "quote 1.0.27",
  584. "syn 1.0.109",
  585. ]
  586. [[package]]
  587. name = "borsh-schema-derive-internal"
  588. version = "0.9.3"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
  591. dependencies = [
  592. "proc-macro2 1.0.56",
  593. "quote 1.0.27",
  594. "syn 1.0.109",
  595. ]
  596. [[package]]
  597. name = "brotli"
  598. version = "3.3.4"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  601. dependencies = [
  602. "alloc-no-stdlib",
  603. "alloc-stdlib",
  604. "brotli-decompressor",
  605. ]
  606. [[package]]
  607. name = "brotli-decompressor"
  608. version = "2.3.4"
  609. source = "registry+https://github.com/rust-lang/crates.io-index"
  610. checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
  611. dependencies = [
  612. "alloc-no-stdlib",
  613. "alloc-stdlib",
  614. ]
  615. [[package]]
  616. name = "bs58"
  617. version = "0.4.0"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
  620. [[package]]
  621. name = "bstr"
  622. version = "1.4.0"
  623. source = "registry+https://github.com/rust-lang/crates.io-index"
  624. checksum = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
  625. dependencies = [
  626. "memchr",
  627. "once_cell",
  628. "regex-automata",
  629. "serde",
  630. ]
  631. [[package]]
  632. name = "bumpalo"
  633. version = "3.12.2"
  634. source = "registry+https://github.com/rust-lang/crates.io-index"
  635. checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
  636. [[package]]
  637. name = "bv"
  638. version = "0.11.1"
  639. source = "registry+https://github.com/rust-lang/crates.io-index"
  640. checksum = "8834bb1d8ee5dc048ee3124f2c7c1afcc6bc9aed03f11e9dfd8c69470a5db340"
  641. dependencies = [
  642. "feature-probe",
  643. "serde",
  644. ]
  645. [[package]]
  646. name = "byte-slice-cast"
  647. version = "1.2.2"
  648. source = "registry+https://github.com/rust-lang/crates.io-index"
  649. checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c"
  650. [[package]]
  651. name = "bytecount"
  652. version = "0.6.3"
  653. source = "registry+https://github.com/rust-lang/crates.io-index"
  654. checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
  655. [[package]]
  656. name = "bytemuck"
  657. version = "1.13.1"
  658. source = "registry+https://github.com/rust-lang/crates.io-index"
  659. checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
  660. dependencies = [
  661. "bytemuck_derive",
  662. ]
  663. [[package]]
  664. name = "bytemuck_derive"
  665. version = "1.4.1"
  666. source = "registry+https://github.com/rust-lang/crates.io-index"
  667. checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192"
  668. dependencies = [
  669. "proc-macro2 1.0.56",
  670. "quote 1.0.27",
  671. "syn 2.0.15",
  672. ]
  673. [[package]]
  674. name = "byteorder"
  675. version = "1.4.3"
  676. source = "registry+https://github.com/rust-lang/crates.io-index"
  677. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  678. [[package]]
  679. name = "bytes"
  680. version = "1.4.0"
  681. source = "registry+https://github.com/rust-lang/crates.io-index"
  682. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  683. [[package]]
  684. name = "camino"
  685. version = "1.1.4"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2"
  688. dependencies = [
  689. "serde",
  690. ]
  691. [[package]]
  692. name = "caps"
  693. version = "0.5.5"
  694. source = "registry+https://github.com/rust-lang/crates.io-index"
  695. checksum = "190baaad529bcfbde9e1a19022c42781bdb6ff9de25721abdb8fd98c0807730b"
  696. dependencies = [
  697. "libc",
  698. "thiserror",
  699. ]
  700. [[package]]
  701. name = "cargo-platform"
  702. version = "0.1.2"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
  705. dependencies = [
  706. "serde",
  707. ]
  708. [[package]]
  709. name = "cargo_metadata"
  710. version = "0.14.2"
  711. source = "registry+https://github.com/rust-lang/crates.io-index"
  712. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  713. dependencies = [
  714. "camino",
  715. "cargo-platform",
  716. "semver 1.0.17",
  717. "serde",
  718. "serde_json",
  719. ]
  720. [[package]]
  721. name = "cc"
  722. version = "1.0.79"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  725. dependencies = [
  726. "jobserver",
  727. ]
  728. [[package]]
  729. name = "cexpr"
  730. version = "0.6.0"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  733. dependencies = [
  734. "nom",
  735. ]
  736. [[package]]
  737. name = "cfg-if"
  738. version = "1.0.0"
  739. source = "registry+https://github.com/rust-lang/crates.io-index"
  740. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  741. [[package]]
  742. name = "chacha20"
  743. version = "0.7.3"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "f08493fa7707effc63254c66c6ea908675912493cd67952eda23c09fae2610b1"
  746. dependencies = [
  747. "cfg-if",
  748. "cipher 0.3.0",
  749. "cpufeatures",
  750. "zeroize",
  751. ]
  752. [[package]]
  753. name = "chacha20poly1305"
  754. version = "0.8.2"
  755. source = "registry+https://github.com/rust-lang/crates.io-index"
  756. checksum = "b6547abe025f4027edacd9edaa357aded014eecec42a5070d9b885c3c334aba2"
  757. dependencies = [
  758. "aead",
  759. "chacha20",
  760. "cipher 0.3.0",
  761. "poly1305",
  762. "zeroize",
  763. ]
  764. [[package]]
  765. name = "chrono"
  766. version = "0.4.24"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
  769. dependencies = [
  770. "iana-time-zone",
  771. "js-sys",
  772. "num-integer",
  773. "num-traits",
  774. "serde",
  775. "time 0.1.45",
  776. "wasm-bindgen",
  777. "winapi",
  778. ]
  779. [[package]]
  780. name = "cipher"
  781. version = "0.3.0"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
  784. dependencies = [
  785. "generic-array",
  786. ]
  787. [[package]]
  788. name = "cipher"
  789. version = "0.4.4"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  792. dependencies = [
  793. "crypto-common",
  794. "inout",
  795. ]
  796. [[package]]
  797. name = "clang-sys"
  798. version = "1.6.1"
  799. source = "registry+https://github.com/rust-lang/crates.io-index"
  800. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  801. dependencies = [
  802. "glob",
  803. "libc",
  804. "libloading",
  805. ]
  806. [[package]]
  807. name = "clap"
  808. version = "2.34.0"
  809. source = "registry+https://github.com/rust-lang/crates.io-index"
  810. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  811. dependencies = [
  812. "ansi_term",
  813. "atty",
  814. "bitflags",
  815. "strsim 0.8.0",
  816. "textwrap 0.11.0",
  817. "unicode-width",
  818. "vec_map",
  819. ]
  820. [[package]]
  821. name = "clap"
  822. version = "3.2.25"
  823. source = "registry+https://github.com/rust-lang/crates.io-index"
  824. checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
  825. dependencies = [
  826. "atty",
  827. "bitflags",
  828. "clap_lex",
  829. "indexmap",
  830. "strsim 0.10.0",
  831. "termcolor",
  832. "textwrap 0.16.0",
  833. ]
  834. [[package]]
  835. name = "clap_lex"
  836. version = "0.2.4"
  837. source = "registry+https://github.com/rust-lang/crates.io-index"
  838. checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
  839. dependencies = [
  840. "os_str_bytes",
  841. ]
  842. [[package]]
  843. name = "concurrent-queue"
  844. version = "2.2.0"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
  847. dependencies = [
  848. "crossbeam-utils",
  849. ]
  850. [[package]]
  851. name = "console"
  852. version = "0.15.5"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
  855. dependencies = [
  856. "encode_unicode",
  857. "lazy_static",
  858. "libc",
  859. "unicode-width",
  860. "windows-sys 0.42.0",
  861. ]
  862. [[package]]
  863. name = "console_error_panic_hook"
  864. version = "0.1.7"
  865. source = "registry+https://github.com/rust-lang/crates.io-index"
  866. checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
  867. dependencies = [
  868. "cfg-if",
  869. "wasm-bindgen",
  870. ]
  871. [[package]]
  872. name = "console_log"
  873. version = "0.2.2"
  874. source = "registry+https://github.com/rust-lang/crates.io-index"
  875. checksum = "e89f72f65e8501878b8a004d5a1afb780987e2ce2b4532c562e367a72c57499f"
  876. dependencies = [
  877. "log",
  878. "web-sys",
  879. ]
  880. [[package]]
  881. name = "const-oid"
  882. version = "0.7.1"
  883. source = "registry+https://github.com/rust-lang/crates.io-index"
  884. checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3"
  885. [[package]]
  886. name = "constant_time_eq"
  887. version = "0.2.5"
  888. source = "registry+https://github.com/rust-lang/crates.io-index"
  889. checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b"
  890. [[package]]
  891. name = "convert_case"
  892. version = "0.4.0"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  895. [[package]]
  896. name = "core-foundation"
  897. version = "0.9.3"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  900. dependencies = [
  901. "core-foundation-sys",
  902. "libc",
  903. ]
  904. [[package]]
  905. name = "core-foundation-sys"
  906. version = "0.8.4"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
  909. [[package]]
  910. name = "cpufeatures"
  911. version = "0.2.7"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
  914. dependencies = [
  915. "libc",
  916. ]
  917. [[package]]
  918. name = "crc32fast"
  919. version = "1.3.2"
  920. source = "registry+https://github.com/rust-lang/crates.io-index"
  921. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  922. dependencies = [
  923. "cfg-if",
  924. ]
  925. [[package]]
  926. name = "crossbeam-channel"
  927. version = "0.5.8"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
  930. dependencies = [
  931. "cfg-if",
  932. "crossbeam-utils",
  933. ]
  934. [[package]]
  935. name = "crossbeam-deque"
  936. version = "0.8.3"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  939. dependencies = [
  940. "cfg-if",
  941. "crossbeam-epoch",
  942. "crossbeam-utils",
  943. ]
  944. [[package]]
  945. name = "crossbeam-epoch"
  946. version = "0.9.14"
  947. source = "registry+https://github.com/rust-lang/crates.io-index"
  948. checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
  949. dependencies = [
  950. "autocfg",
  951. "cfg-if",
  952. "crossbeam-utils",
  953. "memoffset 0.8.0",
  954. "scopeguard",
  955. ]
  956. [[package]]
  957. name = "crossbeam-utils"
  958. version = "0.8.15"
  959. source = "registry+https://github.com/rust-lang/crates.io-index"
  960. checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
  961. dependencies = [
  962. "cfg-if",
  963. ]
  964. [[package]]
  965. name = "crunchy"
  966. version = "0.2.2"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  969. [[package]]
  970. name = "crypto-common"
  971. version = "0.1.6"
  972. source = "registry+https://github.com/rust-lang/crates.io-index"
  973. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  974. dependencies = [
  975. "generic-array",
  976. "typenum",
  977. ]
  978. [[package]]
  979. name = "crypto-mac"
  980. version = "0.8.0"
  981. source = "registry+https://github.com/rust-lang/crates.io-index"
  982. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  983. dependencies = [
  984. "generic-array",
  985. "subtle",
  986. ]
  987. [[package]]
  988. name = "ctor"
  989. version = "0.1.26"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
  992. dependencies = [
  993. "quote 1.0.27",
  994. "syn 1.0.109",
  995. ]
  996. [[package]]
  997. name = "ctr"
  998. version = "0.8.0"
  999. source = "registry+https://github.com/rust-lang/crates.io-index"
  1000. checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
  1001. dependencies = [
  1002. "cipher 0.3.0",
  1003. ]
  1004. [[package]]
  1005. name = "cuckoofilter"
  1006. version = "0.5.0"
  1007. source = "registry+https://github.com/rust-lang/crates.io-index"
  1008. checksum = "b810a8449931679f64cd7eef1bbd0fa315801b6d5d9cdc1ace2804d6529eee18"
  1009. dependencies = [
  1010. "byteorder",
  1011. "fnv",
  1012. "rand 0.7.3",
  1013. ]
  1014. [[package]]
  1015. name = "curve25519-dalek"
  1016. version = "3.2.1"
  1017. source = "registry+https://github.com/rust-lang/crates.io-index"
  1018. checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0"
  1019. dependencies = [
  1020. "byteorder",
  1021. "digest 0.9.0",
  1022. "rand_core 0.5.1",
  1023. "serde",
  1024. "subtle",
  1025. "zeroize",
  1026. ]
  1027. [[package]]
  1028. name = "darling"
  1029. version = "0.13.4"
  1030. source = "registry+https://github.com/rust-lang/crates.io-index"
  1031. checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
  1032. dependencies = [
  1033. "darling_core",
  1034. "darling_macro",
  1035. ]
  1036. [[package]]
  1037. name = "darling_core"
  1038. version = "0.13.4"
  1039. source = "registry+https://github.com/rust-lang/crates.io-index"
  1040. checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
  1041. dependencies = [
  1042. "fnv",
  1043. "ident_case",
  1044. "proc-macro2 1.0.56",
  1045. "quote 1.0.27",
  1046. "strsim 0.10.0",
  1047. "syn 1.0.109",
  1048. ]
  1049. [[package]]
  1050. name = "darling_macro"
  1051. version = "0.13.4"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
  1054. dependencies = [
  1055. "darling_core",
  1056. "quote 1.0.27",
  1057. "syn 1.0.109",
  1058. ]
  1059. [[package]]
  1060. name = "dashmap"
  1061. version = "5.4.0"
  1062. source = "registry+https://github.com/rust-lang/crates.io-index"
  1063. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  1064. dependencies = [
  1065. "cfg-if",
  1066. "hashbrown 0.12.3",
  1067. "lock_api",
  1068. "once_cell",
  1069. "parking_lot_core 0.9.7",
  1070. ]
  1071. [[package]]
  1072. name = "data-encoding"
  1073. version = "2.3.3"
  1074. source = "registry+https://github.com/rust-lang/crates.io-index"
  1075. checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
  1076. [[package]]
  1077. name = "der"
  1078. version = "0.5.1"
  1079. source = "registry+https://github.com/rust-lang/crates.io-index"
  1080. checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c"
  1081. dependencies = [
  1082. "const-oid",
  1083. ]
  1084. [[package]]
  1085. name = "der"
  1086. version = "0.7.5"
  1087. source = "registry+https://github.com/rust-lang/crates.io-index"
  1088. checksum = "05e58dffcdcc8ee7b22f0c1f71a69243d7c2d9ad87b5a14361f2424a1565c219"
  1089. [[package]]
  1090. name = "der-parser"
  1091. version = "8.2.0"
  1092. source = "registry+https://github.com/rust-lang/crates.io-index"
  1093. checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
  1094. dependencies = [
  1095. "asn1-rs",
  1096. "displaydoc",
  1097. "nom",
  1098. "num-bigint 0.4.3",
  1099. "num-traits",
  1100. "rusticata-macros",
  1101. ]
  1102. [[package]]
  1103. name = "derivation-path"
  1104. version = "0.2.0"
  1105. source = "registry+https://github.com/rust-lang/crates.io-index"
  1106. checksum = "6e5c37193a1db1d8ed868c03ec7b152175f26160a5b740e5e484143877e0adf0"
  1107. [[package]]
  1108. name = "derive_more"
  1109. version = "0.99.17"
  1110. source = "registry+https://github.com/rust-lang/crates.io-index"
  1111. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  1112. dependencies = [
  1113. "convert_case",
  1114. "proc-macro2 1.0.56",
  1115. "quote 1.0.27",
  1116. "rustc_version 0.4.0",
  1117. "syn 1.0.109",
  1118. ]
  1119. [[package]]
  1120. name = "dialoguer"
  1121. version = "0.10.4"
  1122. source = "registry+https://github.com/rust-lang/crates.io-index"
  1123. checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87"
  1124. dependencies = [
  1125. "console",
  1126. "shell-words",
  1127. "tempfile",
  1128. "zeroize",
  1129. ]
  1130. [[package]]
  1131. name = "digest"
  1132. version = "0.9.0"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1135. dependencies = [
  1136. "generic-array",
  1137. ]
  1138. [[package]]
  1139. name = "digest"
  1140. version = "0.10.6"
  1141. source = "registry+https://github.com/rust-lang/crates.io-index"
  1142. checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
  1143. dependencies = [
  1144. "block-buffer 0.10.4",
  1145. "crypto-common",
  1146. "subtle",
  1147. ]
  1148. [[package]]
  1149. name = "dirs-next"
  1150. version = "2.0.0"
  1151. source = "registry+https://github.com/rust-lang/crates.io-index"
  1152. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1153. dependencies = [
  1154. "cfg-if",
  1155. "dirs-sys-next",
  1156. ]
  1157. [[package]]
  1158. name = "dirs-sys-next"
  1159. version = "0.1.2"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1162. dependencies = [
  1163. "libc",
  1164. "redox_users",
  1165. "winapi",
  1166. ]
  1167. [[package]]
  1168. name = "displaydoc"
  1169. version = "0.2.4"
  1170. source = "registry+https://github.com/rust-lang/crates.io-index"
  1171. checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
  1172. dependencies = [
  1173. "proc-macro2 1.0.56",
  1174. "quote 1.0.27",
  1175. "syn 2.0.15",
  1176. ]
  1177. [[package]]
  1178. name = "dlopen"
  1179. version = "0.1.8"
  1180. source = "registry+https://github.com/rust-lang/crates.io-index"
  1181. checksum = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937"
  1182. dependencies = [
  1183. "dlopen_derive",
  1184. "lazy_static",
  1185. "libc",
  1186. "winapi",
  1187. ]
  1188. [[package]]
  1189. name = "dlopen_derive"
  1190. version = "0.1.4"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581"
  1193. dependencies = [
  1194. "libc",
  1195. "quote 0.6.13",
  1196. "syn 0.15.44",
  1197. ]
  1198. [[package]]
  1199. name = "dns-parser"
  1200. version = "0.8.0"
  1201. source = "registry+https://github.com/rust-lang/crates.io-index"
  1202. checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"
  1203. dependencies = [
  1204. "byteorder",
  1205. "quick-error",
  1206. ]
  1207. [[package]]
  1208. name = "dtoa"
  1209. version = "1.0.6"
  1210. source = "registry+https://github.com/rust-lang/crates.io-index"
  1211. checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169"
  1212. [[package]]
  1213. name = "dyn-clone"
  1214. version = "1.0.11"
  1215. source = "registry+https://github.com/rust-lang/crates.io-index"
  1216. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  1217. [[package]]
  1218. name = "ed25519"
  1219. version = "1.5.3"
  1220. source = "registry+https://github.com/rust-lang/crates.io-index"
  1221. checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7"
  1222. dependencies = [
  1223. "signature",
  1224. ]
  1225. [[package]]
  1226. name = "ed25519-dalek"
  1227. version = "1.0.1"
  1228. source = "registry+https://github.com/rust-lang/crates.io-index"
  1229. checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
  1230. dependencies = [
  1231. "curve25519-dalek",
  1232. "ed25519",
  1233. "rand 0.7.3",
  1234. "serde",
  1235. "sha2 0.9.9",
  1236. "zeroize",
  1237. ]
  1238. [[package]]
  1239. name = "ed25519-dalek-bip32"
  1240. version = "0.2.0"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "9d2be62a4061b872c8c0873ee4fc6f101ce7b889d039f019c5fa2af471a59908"
  1243. dependencies = [
  1244. "derivation-path",
  1245. "ed25519-dalek",
  1246. "hmac 0.12.1",
  1247. "sha2 0.10.6",
  1248. ]
  1249. [[package]]
  1250. name = "either"
  1251. version = "1.8.1"
  1252. source = "registry+https://github.com/rust-lang/crates.io-index"
  1253. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1254. [[package]]
  1255. name = "encode_unicode"
  1256. version = "0.3.6"
  1257. source = "registry+https://github.com/rust-lang/crates.io-index"
  1258. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1259. [[package]]
  1260. name = "encoding_rs"
  1261. version = "0.8.32"
  1262. source = "registry+https://github.com/rust-lang/crates.io-index"
  1263. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1264. dependencies = [
  1265. "cfg-if",
  1266. ]
  1267. [[package]]
  1268. name = "enum-as-inner"
  1269. version = "0.3.4"
  1270. source = "registry+https://github.com/rust-lang/crates.io-index"
  1271. checksum = "570d109b813e904becc80d8d5da38376818a143348413f7149f1340fe04754d4"
  1272. dependencies = [
  1273. "heck 0.4.1",
  1274. "proc-macro2 1.0.56",
  1275. "quote 1.0.27",
  1276. "syn 1.0.109",
  1277. ]
  1278. [[package]]
  1279. name = "enum-iterator"
  1280. version = "0.7.0"
  1281. source = "registry+https://github.com/rust-lang/crates.io-index"
  1282. checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
  1283. dependencies = [
  1284. "enum-iterator-derive",
  1285. ]
  1286. [[package]]
  1287. name = "enum-iterator-derive"
  1288. version = "0.7.0"
  1289. source = "registry+https://github.com/rust-lang/crates.io-index"
  1290. checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
  1291. dependencies = [
  1292. "proc-macro2 1.0.56",
  1293. "quote 1.0.27",
  1294. "syn 1.0.109",
  1295. ]
  1296. [[package]]
  1297. name = "enum_dispatch"
  1298. version = "0.3.11"
  1299. source = "registry+https://github.com/rust-lang/crates.io-index"
  1300. checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
  1301. dependencies = [
  1302. "once_cell",
  1303. "proc-macro2 1.0.56",
  1304. "quote 1.0.27",
  1305. "syn 1.0.109",
  1306. ]
  1307. [[package]]
  1308. name = "env_logger"
  1309. version = "0.9.3"
  1310. source = "registry+https://github.com/rust-lang/crates.io-index"
  1311. checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
  1312. dependencies = [
  1313. "atty",
  1314. "humantime",
  1315. "log",
  1316. "regex",
  1317. "termcolor",
  1318. ]
  1319. [[package]]
  1320. name = "env_logger"
  1321. version = "0.10.0"
  1322. source = "registry+https://github.com/rust-lang/crates.io-index"
  1323. checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
  1324. dependencies = [
  1325. "humantime",
  1326. "is-terminal",
  1327. "log",
  1328. "regex",
  1329. "termcolor",
  1330. ]
  1331. [[package]]
  1332. name = "errno"
  1333. version = "0.3.1"
  1334. source = "registry+https://github.com/rust-lang/crates.io-index"
  1335. checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
  1336. dependencies = [
  1337. "errno-dragonfly",
  1338. "libc",
  1339. "windows-sys 0.48.0",
  1340. ]
  1341. [[package]]
  1342. name = "errno-dragonfly"
  1343. version = "0.1.2"
  1344. source = "registry+https://github.com/rust-lang/crates.io-index"
  1345. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1346. dependencies = [
  1347. "cc",
  1348. "libc",
  1349. ]
  1350. [[package]]
  1351. name = "error-chain"
  1352. version = "0.12.4"
  1353. source = "registry+https://github.com/rust-lang/crates.io-index"
  1354. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1355. dependencies = [
  1356. "version_check",
  1357. ]
  1358. [[package]]
  1359. name = "ethabi"
  1360. version = "18.0.0"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898"
  1363. dependencies = [
  1364. "ethereum-types",
  1365. "hex",
  1366. "once_cell",
  1367. "regex",
  1368. "serde",
  1369. "serde_json",
  1370. "sha3 0.10.8",
  1371. "thiserror",
  1372. "uint",
  1373. ]
  1374. [[package]]
  1375. name = "ethbloom"
  1376. version = "0.13.0"
  1377. source = "registry+https://github.com/rust-lang/crates.io-index"
  1378. checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60"
  1379. dependencies = [
  1380. "crunchy",
  1381. "fixed-hash",
  1382. "impl-rlp",
  1383. "impl-serde",
  1384. "tiny-keccak",
  1385. ]
  1386. [[package]]
  1387. name = "ethereum-types"
  1388. version = "0.14.1"
  1389. source = "registry+https://github.com/rust-lang/crates.io-index"
  1390. checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee"
  1391. dependencies = [
  1392. "ethbloom",
  1393. "fixed-hash",
  1394. "impl-rlp",
  1395. "impl-serde",
  1396. "primitive-types",
  1397. "uint",
  1398. ]
  1399. [[package]]
  1400. name = "event-listener"
  1401. version = "2.5.3"
  1402. source = "registry+https://github.com/rust-lang/crates.io-index"
  1403. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1404. [[package]]
  1405. name = "fallible-iterator"
  1406. version = "0.2.0"
  1407. source = "registry+https://github.com/rust-lang/crates.io-index"
  1408. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1409. [[package]]
  1410. name = "fallible-streaming-iterator"
  1411. version = "0.1.9"
  1412. source = "registry+https://github.com/rust-lang/crates.io-index"
  1413. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  1414. [[package]]
  1415. name = "fast-math"
  1416. version = "0.1.1"
  1417. source = "registry+https://github.com/rust-lang/crates.io-index"
  1418. checksum = "2465292146cdfc2011350fe3b1c616ac83cf0faeedb33463ba1c332ed8948d66"
  1419. dependencies = [
  1420. "ieee754",
  1421. ]
  1422. [[package]]
  1423. name = "fastrand"
  1424. version = "1.9.0"
  1425. source = "registry+https://github.com/rust-lang/crates.io-index"
  1426. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1427. dependencies = [
  1428. "instant",
  1429. ]
  1430. [[package]]
  1431. name = "feature-probe"
  1432. version = "0.1.1"
  1433. source = "registry+https://github.com/rust-lang/crates.io-index"
  1434. checksum = "835a3dc7d1ec9e75e2b5fb4ba75396837112d2060b03f7d43bc1897c7f7211da"
  1435. [[package]]
  1436. name = "fixed-hash"
  1437. version = "0.8.0"
  1438. source = "registry+https://github.com/rust-lang/crates.io-index"
  1439. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  1440. dependencies = [
  1441. "byteorder",
  1442. "rand 0.8.5",
  1443. "rustc-hex",
  1444. "static_assertions",
  1445. ]
  1446. [[package]]
  1447. name = "fixedbitset"
  1448. version = "0.4.2"
  1449. source = "registry+https://github.com/rust-lang/crates.io-index"
  1450. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  1451. [[package]]
  1452. name = "flate2"
  1453. version = "1.0.26"
  1454. source = "registry+https://github.com/rust-lang/crates.io-index"
  1455. checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
  1456. dependencies = [
  1457. "crc32fast",
  1458. "libz-sys",
  1459. "miniz_oxide",
  1460. ]
  1461. [[package]]
  1462. name = "fnv"
  1463. version = "1.0.7"
  1464. source = "registry+https://github.com/rust-lang/crates.io-index"
  1465. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1466. [[package]]
  1467. name = "foreign-types"
  1468. version = "0.3.2"
  1469. source = "registry+https://github.com/rust-lang/crates.io-index"
  1470. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1471. dependencies = [
  1472. "foreign-types-shared",
  1473. ]
  1474. [[package]]
  1475. name = "foreign-types-shared"
  1476. version = "0.1.1"
  1477. source = "registry+https://github.com/rust-lang/crates.io-index"
  1478. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1479. [[package]]
  1480. name = "form_urlencoded"
  1481. version = "1.1.0"
  1482. source = "registry+https://github.com/rust-lang/crates.io-index"
  1483. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1484. dependencies = [
  1485. "percent-encoding",
  1486. ]
  1487. [[package]]
  1488. name = "funty"
  1489. version = "2.0.0"
  1490. source = "registry+https://github.com/rust-lang/crates.io-index"
  1491. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  1492. [[package]]
  1493. name = "futures"
  1494. version = "0.3.28"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
  1497. dependencies = [
  1498. "futures-channel",
  1499. "futures-core",
  1500. "futures-executor",
  1501. "futures-io",
  1502. "futures-sink",
  1503. "futures-task",
  1504. "futures-util",
  1505. ]
  1506. [[package]]
  1507. name = "futures-channel"
  1508. version = "0.3.28"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
  1511. dependencies = [
  1512. "futures-core",
  1513. "futures-sink",
  1514. ]
  1515. [[package]]
  1516. name = "futures-core"
  1517. version = "0.3.28"
  1518. source = "registry+https://github.com/rust-lang/crates.io-index"
  1519. checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
  1520. [[package]]
  1521. name = "futures-executor"
  1522. version = "0.3.28"
  1523. source = "registry+https://github.com/rust-lang/crates.io-index"
  1524. checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
  1525. dependencies = [
  1526. "futures-core",
  1527. "futures-task",
  1528. "futures-util",
  1529. "num_cpus",
  1530. ]
  1531. [[package]]
  1532. name = "futures-io"
  1533. version = "0.3.28"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
  1536. [[package]]
  1537. name = "futures-lite"
  1538. version = "1.13.0"
  1539. source = "registry+https://github.com/rust-lang/crates.io-index"
  1540. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  1541. dependencies = [
  1542. "fastrand",
  1543. "futures-core",
  1544. "futures-io",
  1545. "memchr",
  1546. "parking",
  1547. "pin-project-lite 0.2.9",
  1548. "waker-fn",
  1549. ]
  1550. [[package]]
  1551. name = "futures-macro"
  1552. version = "0.3.28"
  1553. source = "registry+https://github.com/rust-lang/crates.io-index"
  1554. checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
  1555. dependencies = [
  1556. "proc-macro2 1.0.56",
  1557. "quote 1.0.27",
  1558. "syn 2.0.15",
  1559. ]
  1560. [[package]]
  1561. name = "futures-rustls"
  1562. version = "0.22.2"
  1563. source = "registry+https://github.com/rust-lang/crates.io-index"
  1564. checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
  1565. dependencies = [
  1566. "futures-io",
  1567. "rustls",
  1568. "webpki",
  1569. ]
  1570. [[package]]
  1571. name = "futures-sink"
  1572. version = "0.3.28"
  1573. source = "registry+https://github.com/rust-lang/crates.io-index"
  1574. checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
  1575. [[package]]
  1576. name = "futures-task"
  1577. version = "0.3.28"
  1578. source = "registry+https://github.com/rust-lang/crates.io-index"
  1579. checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
  1580. [[package]]
  1581. name = "futures-timer"
  1582. version = "3.0.2"
  1583. source = "registry+https://github.com/rust-lang/crates.io-index"
  1584. checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
  1585. [[package]]
  1586. name = "futures-util"
  1587. version = "0.3.28"
  1588. source = "registry+https://github.com/rust-lang/crates.io-index"
  1589. checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
  1590. dependencies = [
  1591. "futures-channel",
  1592. "futures-core",
  1593. "futures-io",
  1594. "futures-macro",
  1595. "futures-sink",
  1596. "futures-task",
  1597. "memchr",
  1598. "pin-project-lite 0.2.9",
  1599. "pin-utils",
  1600. "slab",
  1601. ]
  1602. [[package]]
  1603. name = "fxhash"
  1604. version = "0.2.1"
  1605. source = "registry+https://github.com/rust-lang/crates.io-index"
  1606. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  1607. dependencies = [
  1608. "byteorder",
  1609. ]
  1610. [[package]]
  1611. name = "generic-array"
  1612. version = "0.14.7"
  1613. source = "registry+https://github.com/rust-lang/crates.io-index"
  1614. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1615. dependencies = [
  1616. "serde",
  1617. "typenum",
  1618. "version_check",
  1619. ]
  1620. [[package]]
  1621. name = "gethostname"
  1622. version = "0.2.3"
  1623. source = "registry+https://github.com/rust-lang/crates.io-index"
  1624. checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
  1625. dependencies = [
  1626. "libc",
  1627. "winapi",
  1628. ]
  1629. [[package]]
  1630. name = "getrandom"
  1631. version = "0.1.16"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  1634. dependencies = [
  1635. "cfg-if",
  1636. "js-sys",
  1637. "libc",
  1638. "wasi 0.9.0+wasi-snapshot-preview1",
  1639. "wasm-bindgen",
  1640. ]
  1641. [[package]]
  1642. name = "getrandom"
  1643. version = "0.2.9"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
  1646. dependencies = [
  1647. "cfg-if",
  1648. "libc",
  1649. "wasi 0.11.0+wasi-snapshot-preview1",
  1650. ]
  1651. [[package]]
  1652. name = "ghash"
  1653. version = "0.4.4"
  1654. source = "registry+https://github.com/rust-lang/crates.io-index"
  1655. checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
  1656. dependencies = [
  1657. "opaque-debug",
  1658. "polyval",
  1659. ]
  1660. [[package]]
  1661. name = "glob"
  1662. version = "0.3.1"
  1663. source = "registry+https://github.com/rust-lang/crates.io-index"
  1664. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  1665. [[package]]
  1666. name = "gloo-timers"
  1667. version = "0.2.6"
  1668. source = "registry+https://github.com/rust-lang/crates.io-index"
  1669. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  1670. dependencies = [
  1671. "futures-channel",
  1672. "futures-core",
  1673. "js-sys",
  1674. "wasm-bindgen",
  1675. ]
  1676. [[package]]
  1677. name = "h2"
  1678. version = "0.3.18"
  1679. source = "registry+https://github.com/rust-lang/crates.io-index"
  1680. checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21"
  1681. dependencies = [
  1682. "bytes",
  1683. "fnv",
  1684. "futures-core",
  1685. "futures-sink",
  1686. "futures-util",
  1687. "http",
  1688. "indexmap",
  1689. "slab",
  1690. "tokio",
  1691. "tokio-util",
  1692. "tracing",
  1693. ]
  1694. [[package]]
  1695. name = "half"
  1696. version = "1.8.2"
  1697. source = "registry+https://github.com/rust-lang/crates.io-index"
  1698. checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
  1699. [[package]]
  1700. name = "hashbrown"
  1701. version = "0.11.2"
  1702. source = "registry+https://github.com/rust-lang/crates.io-index"
  1703. checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
  1704. dependencies = [
  1705. "ahash",
  1706. ]
  1707. [[package]]
  1708. name = "hashbrown"
  1709. version = "0.12.3"
  1710. source = "registry+https://github.com/rust-lang/crates.io-index"
  1711. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1712. dependencies = [
  1713. "ahash",
  1714. ]
  1715. [[package]]
  1716. name = "hashlink"
  1717. version = "0.8.1"
  1718. source = "registry+https://github.com/rust-lang/crates.io-index"
  1719. checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
  1720. dependencies = [
  1721. "hashbrown 0.12.3",
  1722. ]
  1723. [[package]]
  1724. name = "heck"
  1725. version = "0.3.3"
  1726. source = "registry+https://github.com/rust-lang/crates.io-index"
  1727. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1728. dependencies = [
  1729. "unicode-segmentation",
  1730. ]
  1731. [[package]]
  1732. name = "heck"
  1733. version = "0.4.1"
  1734. source = "registry+https://github.com/rust-lang/crates.io-index"
  1735. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1736. [[package]]
  1737. name = "hermes"
  1738. version = "0.1.1"
  1739. dependencies = [
  1740. "anyhow",
  1741. "async-trait",
  1742. "axum",
  1743. "axum-macros",
  1744. "base64 0.21.0",
  1745. "borsh",
  1746. "bs58",
  1747. "byteorder",
  1748. "dashmap",
  1749. "der 0.7.5",
  1750. "derive_more",
  1751. "env_logger 0.10.0",
  1752. "ethabi",
  1753. "futures",
  1754. "hex",
  1755. "humantime",
  1756. "lazy_static",
  1757. "libc",
  1758. "libp2p",
  1759. "log",
  1760. "moka",
  1761. "pyth-oracle",
  1762. "pyth-sdk",
  1763. "pythnet-sdk",
  1764. "rand 0.8.5",
  1765. "reqwest",
  1766. "ring",
  1767. "rusqlite",
  1768. "secp256k1",
  1769. "serde",
  1770. "serde_arrays",
  1771. "serde_cbor",
  1772. "serde_json",
  1773. "serde_qs",
  1774. "serde_wormhole",
  1775. "sha256",
  1776. "sha3 0.10.8",
  1777. "solana-account-decoder",
  1778. "solana-client",
  1779. "solana-sdk",
  1780. "structopt",
  1781. "strum",
  1782. "tokio",
  1783. "typescript-type-def",
  1784. "wormhole-sdk",
  1785. ]
  1786. [[package]]
  1787. name = "hermit-abi"
  1788. version = "0.1.19"
  1789. source = "registry+https://github.com/rust-lang/crates.io-index"
  1790. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  1791. dependencies = [
  1792. "libc",
  1793. ]
  1794. [[package]]
  1795. name = "hermit-abi"
  1796. version = "0.2.6"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  1799. dependencies = [
  1800. "libc",
  1801. ]
  1802. [[package]]
  1803. name = "hermit-abi"
  1804. version = "0.3.1"
  1805. source = "registry+https://github.com/rust-lang/crates.io-index"
  1806. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  1807. [[package]]
  1808. name = "hex"
  1809. version = "0.4.3"
  1810. source = "registry+https://github.com/rust-lang/crates.io-index"
  1811. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1812. dependencies = [
  1813. "serde",
  1814. ]
  1815. [[package]]
  1816. name = "hex_fmt"
  1817. version = "0.3.0"
  1818. source = "registry+https://github.com/rust-lang/crates.io-index"
  1819. checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  1820. [[package]]
  1821. name = "histogram"
  1822. version = "0.6.9"
  1823. source = "registry+https://github.com/rust-lang/crates.io-index"
  1824. checksum = "12cb882ccb290b8646e554b157ab0b71e64e8d5bef775cd66b6531e52d302669"
  1825. [[package]]
  1826. name = "hmac"
  1827. version = "0.8.1"
  1828. source = "registry+https://github.com/rust-lang/crates.io-index"
  1829. checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
  1830. dependencies = [
  1831. "crypto-mac",
  1832. "digest 0.9.0",
  1833. ]
  1834. [[package]]
  1835. name = "hmac"
  1836. version = "0.12.1"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1839. dependencies = [
  1840. "digest 0.10.6",
  1841. ]
  1842. [[package]]
  1843. name = "hmac-drbg"
  1844. version = "0.3.0"
  1845. source = "registry+https://github.com/rust-lang/crates.io-index"
  1846. checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
  1847. dependencies = [
  1848. "digest 0.9.0",
  1849. "generic-array",
  1850. "hmac 0.8.1",
  1851. ]
  1852. [[package]]
  1853. name = "hostname"
  1854. version = "0.3.1"
  1855. source = "registry+https://github.com/rust-lang/crates.io-index"
  1856. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  1857. dependencies = [
  1858. "libc",
  1859. "match_cfg",
  1860. "winapi",
  1861. ]
  1862. [[package]]
  1863. name = "http"
  1864. version = "0.2.9"
  1865. source = "registry+https://github.com/rust-lang/crates.io-index"
  1866. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  1867. dependencies = [
  1868. "bytes",
  1869. "fnv",
  1870. "itoa",
  1871. ]
  1872. [[package]]
  1873. name = "http-body"
  1874. version = "0.4.5"
  1875. source = "registry+https://github.com/rust-lang/crates.io-index"
  1876. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  1877. dependencies = [
  1878. "bytes",
  1879. "http",
  1880. "pin-project-lite 0.2.9",
  1881. ]
  1882. [[package]]
  1883. name = "httparse"
  1884. version = "1.8.0"
  1885. source = "registry+https://github.com/rust-lang/crates.io-index"
  1886. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  1887. [[package]]
  1888. name = "httpdate"
  1889. version = "1.0.2"
  1890. source = "registry+https://github.com/rust-lang/crates.io-index"
  1891. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  1892. [[package]]
  1893. name = "humantime"
  1894. version = "2.1.0"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  1897. [[package]]
  1898. name = "hyper"
  1899. version = "0.14.26"
  1900. source = "registry+https://github.com/rust-lang/crates.io-index"
  1901. checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
  1902. dependencies = [
  1903. "bytes",
  1904. "futures-channel",
  1905. "futures-core",
  1906. "futures-util",
  1907. "h2",
  1908. "http",
  1909. "http-body",
  1910. "httparse",
  1911. "httpdate",
  1912. "itoa",
  1913. "pin-project-lite 0.2.9",
  1914. "socket2 0.4.9",
  1915. "tokio",
  1916. "tower-service",
  1917. "tracing",
  1918. "want",
  1919. ]
  1920. [[package]]
  1921. name = "hyper-rustls"
  1922. version = "0.23.2"
  1923. source = "registry+https://github.com/rust-lang/crates.io-index"
  1924. checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
  1925. dependencies = [
  1926. "http",
  1927. "hyper",
  1928. "rustls",
  1929. "tokio",
  1930. "tokio-rustls",
  1931. ]
  1932. [[package]]
  1933. name = "hyper-tls"
  1934. version = "0.5.0"
  1935. source = "registry+https://github.com/rust-lang/crates.io-index"
  1936. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  1937. dependencies = [
  1938. "bytes",
  1939. "hyper",
  1940. "native-tls",
  1941. "tokio",
  1942. "tokio-native-tls",
  1943. ]
  1944. [[package]]
  1945. name = "iana-time-zone"
  1946. version = "0.1.56"
  1947. source = "registry+https://github.com/rust-lang/crates.io-index"
  1948. checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c"
  1949. dependencies = [
  1950. "android_system_properties",
  1951. "core-foundation-sys",
  1952. "iana-time-zone-haiku",
  1953. "js-sys",
  1954. "wasm-bindgen",
  1955. "windows 0.48.0",
  1956. ]
  1957. [[package]]
  1958. name = "iana-time-zone-haiku"
  1959. version = "0.1.2"
  1960. source = "registry+https://github.com/rust-lang/crates.io-index"
  1961. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  1962. dependencies = [
  1963. "cc",
  1964. ]
  1965. [[package]]
  1966. name = "ident_case"
  1967. version = "1.0.1"
  1968. source = "registry+https://github.com/rust-lang/crates.io-index"
  1969. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  1970. [[package]]
  1971. name = "idna"
  1972. version = "0.2.3"
  1973. source = "registry+https://github.com/rust-lang/crates.io-index"
  1974. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  1975. dependencies = [
  1976. "matches",
  1977. "unicode-bidi",
  1978. "unicode-normalization",
  1979. ]
  1980. [[package]]
  1981. name = "idna"
  1982. version = "0.3.0"
  1983. source = "registry+https://github.com/rust-lang/crates.io-index"
  1984. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  1985. dependencies = [
  1986. "unicode-bidi",
  1987. "unicode-normalization",
  1988. ]
  1989. [[package]]
  1990. name = "ieee754"
  1991. version = "0.2.6"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
  1994. [[package]]
  1995. name = "if-addrs"
  1996. version = "0.7.0"
  1997. source = "registry+https://github.com/rust-lang/crates.io-index"
  1998. checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9"
  1999. dependencies = [
  2000. "libc",
  2001. "winapi",
  2002. ]
  2003. [[package]]
  2004. name = "if-watch"
  2005. version = "1.1.1"
  2006. source = "registry+https://github.com/rust-lang/crates.io-index"
  2007. checksum = "015a7df1eb6dda30df37f34b63ada9b7b352984b0e84de2a20ed526345000791"
  2008. dependencies = [
  2009. "async-io",
  2010. "core-foundation",
  2011. "fnv",
  2012. "futures",
  2013. "if-addrs",
  2014. "ipnet",
  2015. "log",
  2016. "rtnetlink",
  2017. "system-configuration",
  2018. "windows 0.34.0",
  2019. ]
  2020. [[package]]
  2021. name = "im"
  2022. version = "15.1.0"
  2023. source = "registry+https://github.com/rust-lang/crates.io-index"
  2024. checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9"
  2025. dependencies = [
  2026. "bitmaps",
  2027. "rand_core 0.6.4",
  2028. "rand_xoshiro",
  2029. "rayon",
  2030. "serde",
  2031. "sized-chunks",
  2032. "typenum",
  2033. "version_check",
  2034. ]
  2035. [[package]]
  2036. name = "impl-codec"
  2037. version = "0.6.0"
  2038. source = "registry+https://github.com/rust-lang/crates.io-index"
  2039. checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
  2040. dependencies = [
  2041. "parity-scale-codec",
  2042. ]
  2043. [[package]]
  2044. name = "impl-rlp"
  2045. version = "0.3.0"
  2046. source = "registry+https://github.com/rust-lang/crates.io-index"
  2047. checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808"
  2048. dependencies = [
  2049. "rlp",
  2050. ]
  2051. [[package]]
  2052. name = "impl-serde"
  2053. version = "0.4.0"
  2054. source = "registry+https://github.com/rust-lang/crates.io-index"
  2055. checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd"
  2056. dependencies = [
  2057. "serde",
  2058. ]
  2059. [[package]]
  2060. name = "impl-trait-for-tuples"
  2061. version = "0.2.2"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb"
  2064. dependencies = [
  2065. "proc-macro2 1.0.56",
  2066. "quote 1.0.27",
  2067. "syn 1.0.109",
  2068. ]
  2069. [[package]]
  2070. name = "indexmap"
  2071. version = "1.9.3"
  2072. source = "registry+https://github.com/rust-lang/crates.io-index"
  2073. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2074. dependencies = [
  2075. "autocfg",
  2076. "hashbrown 0.12.3",
  2077. ]
  2078. [[package]]
  2079. name = "indicatif"
  2080. version = "0.16.2"
  2081. source = "registry+https://github.com/rust-lang/crates.io-index"
  2082. checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
  2083. dependencies = [
  2084. "console",
  2085. "lazy_static",
  2086. "number_prefix",
  2087. "regex",
  2088. ]
  2089. [[package]]
  2090. name = "inout"
  2091. version = "0.1.3"
  2092. source = "registry+https://github.com/rust-lang/crates.io-index"
  2093. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2094. dependencies = [
  2095. "generic-array",
  2096. ]
  2097. [[package]]
  2098. name = "instant"
  2099. version = "0.1.12"
  2100. source = "registry+https://github.com/rust-lang/crates.io-index"
  2101. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2102. dependencies = [
  2103. "cfg-if",
  2104. ]
  2105. [[package]]
  2106. name = "io-lifetimes"
  2107. version = "1.0.10"
  2108. source = "registry+https://github.com/rust-lang/crates.io-index"
  2109. checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
  2110. dependencies = [
  2111. "hermit-abi 0.3.1",
  2112. "libc",
  2113. "windows-sys 0.48.0",
  2114. ]
  2115. [[package]]
  2116. name = "ipconfig"
  2117. version = "0.2.2"
  2118. source = "registry+https://github.com/rust-lang/crates.io-index"
  2119. checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
  2120. dependencies = [
  2121. "socket2 0.3.19",
  2122. "widestring",
  2123. "winapi",
  2124. "winreg 0.6.2",
  2125. ]
  2126. [[package]]
  2127. name = "ipnet"
  2128. version = "2.7.2"
  2129. source = "registry+https://github.com/rust-lang/crates.io-index"
  2130. checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
  2131. [[package]]
  2132. name = "is-terminal"
  2133. version = "0.4.7"
  2134. source = "registry+https://github.com/rust-lang/crates.io-index"
  2135. checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
  2136. dependencies = [
  2137. "hermit-abi 0.3.1",
  2138. "io-lifetimes",
  2139. "rustix",
  2140. "windows-sys 0.48.0",
  2141. ]
  2142. [[package]]
  2143. name = "itertools"
  2144. version = "0.10.5"
  2145. source = "registry+https://github.com/rust-lang/crates.io-index"
  2146. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2147. dependencies = [
  2148. "either",
  2149. ]
  2150. [[package]]
  2151. name = "itoa"
  2152. version = "1.0.6"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  2155. [[package]]
  2156. name = "jobserver"
  2157. version = "0.1.26"
  2158. source = "registry+https://github.com/rust-lang/crates.io-index"
  2159. checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
  2160. dependencies = [
  2161. "libc",
  2162. ]
  2163. [[package]]
  2164. name = "js-sys"
  2165. version = "0.3.62"
  2166. source = "registry+https://github.com/rust-lang/crates.io-index"
  2167. checksum = "68c16e1bfd491478ab155fd8b4896b86f9ede344949b641e61501e07c2b8b4d5"
  2168. dependencies = [
  2169. "wasm-bindgen",
  2170. ]
  2171. [[package]]
  2172. name = "jsonrpc-core"
  2173. version = "18.0.0"
  2174. source = "registry+https://github.com/rust-lang/crates.io-index"
  2175. checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb"
  2176. dependencies = [
  2177. "futures",
  2178. "futures-executor",
  2179. "futures-util",
  2180. "log",
  2181. "serde",
  2182. "serde_derive",
  2183. "serde_json",
  2184. ]
  2185. [[package]]
  2186. name = "keccak"
  2187. version = "0.1.4"
  2188. source = "registry+https://github.com/rust-lang/crates.io-index"
  2189. checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940"
  2190. dependencies = [
  2191. "cpufeatures",
  2192. ]
  2193. [[package]]
  2194. name = "kv-log-macro"
  2195. version = "1.0.7"
  2196. source = "registry+https://github.com/rust-lang/crates.io-index"
  2197. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2198. dependencies = [
  2199. "log",
  2200. ]
  2201. [[package]]
  2202. name = "lazy_static"
  2203. version = "1.4.0"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2206. [[package]]
  2207. name = "lazycell"
  2208. version = "1.3.0"
  2209. source = "registry+https://github.com/rust-lang/crates.io-index"
  2210. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2211. [[package]]
  2212. name = "libc"
  2213. version = "0.2.144"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
  2216. [[package]]
  2217. name = "libloading"
  2218. version = "0.7.4"
  2219. source = "registry+https://github.com/rust-lang/crates.io-index"
  2220. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  2221. dependencies = [
  2222. "cfg-if",
  2223. "winapi",
  2224. ]
  2225. [[package]]
  2226. name = "libp2p"
  2227. version = "0.42.2"
  2228. source = "registry+https://github.com/rust-lang/crates.io-index"
  2229. checksum = "0f592f1b06f12a5686a5de7be9f289a161c96d5f89f12b04b7d14cf3d61d7381"
  2230. dependencies = [
  2231. "atomic",
  2232. "bytes",
  2233. "futures",
  2234. "futures-timer",
  2235. "getrandom 0.2.9",
  2236. "instant",
  2237. "lazy_static",
  2238. "libp2p-autonat",
  2239. "libp2p-core",
  2240. "libp2p-deflate",
  2241. "libp2p-dns",
  2242. "libp2p-floodsub",
  2243. "libp2p-gossipsub",
  2244. "libp2p-identify",
  2245. "libp2p-kad",
  2246. "libp2p-mdns",
  2247. "libp2p-metrics",
  2248. "libp2p-mplex",
  2249. "libp2p-noise",
  2250. "libp2p-ping",
  2251. "libp2p-plaintext",
  2252. "libp2p-pnet",
  2253. "libp2p-relay",
  2254. "libp2p-rendezvous",
  2255. "libp2p-request-response",
  2256. "libp2p-swarm",
  2257. "libp2p-swarm-derive",
  2258. "libp2p-tcp",
  2259. "libp2p-uds",
  2260. "libp2p-wasm-ext",
  2261. "libp2p-websocket",
  2262. "libp2p-yamux",
  2263. "multiaddr",
  2264. "parking_lot 0.11.2",
  2265. "pin-project 1.0.12",
  2266. "rand 0.7.3",
  2267. "smallvec",
  2268. ]
  2269. [[package]]
  2270. name = "libp2p-autonat"
  2271. version = "0.1.0"
  2272. source = "registry+https://github.com/rust-lang/crates.io-index"
  2273. checksum = "0c0e6bbc00385edde71430e7d261d13edebcf0e52aecac8f0081a299f960c545"
  2274. dependencies = [
  2275. "async-trait",
  2276. "futures",
  2277. "futures-timer",
  2278. "instant",
  2279. "libp2p-core",
  2280. "libp2p-request-response",
  2281. "libp2p-swarm",
  2282. "log",
  2283. "prost",
  2284. "prost-build",
  2285. "rand 0.8.5",
  2286. ]
  2287. [[package]]
  2288. name = "libp2p-core"
  2289. version = "0.31.1"
  2290. source = "registry+https://github.com/rust-lang/crates.io-index"
  2291. checksum = "77c4178afd65bf7c56744b4e0a6cfa6e9b694fe666efba596e03a46f79454d8d"
  2292. dependencies = [
  2293. "asn1_der",
  2294. "bs58",
  2295. "ed25519-dalek",
  2296. "either",
  2297. "fnv",
  2298. "futures",
  2299. "futures-timer",
  2300. "instant",
  2301. "lazy_static",
  2302. "libsecp256k1 0.7.1",
  2303. "log",
  2304. "multiaddr",
  2305. "multihash",
  2306. "multistream-select",
  2307. "parking_lot 0.11.2",
  2308. "pin-project 1.0.12",
  2309. "prost",
  2310. "prost-build",
  2311. "rand 0.8.5",
  2312. "ring",
  2313. "rw-stream-sink",
  2314. "sha2 0.10.6",
  2315. "smallvec",
  2316. "thiserror",
  2317. "unsigned-varint",
  2318. "void",
  2319. "zeroize",
  2320. ]
  2321. [[package]]
  2322. name = "libp2p-deflate"
  2323. version = "0.31.0"
  2324. source = "registry+https://github.com/rust-lang/crates.io-index"
  2325. checksum = "9d56c68b9c5d435bbd8cdd20101348194b18d1e6ff29ece7a223734aa7eb695c"
  2326. dependencies = [
  2327. "flate2",
  2328. "futures",
  2329. "libp2p-core",
  2330. ]
  2331. [[package]]
  2332. name = "libp2p-dns"
  2333. version = "0.31.0"
  2334. source = "registry+https://github.com/rust-lang/crates.io-index"
  2335. checksum = "39d4a2e7efe62c738833b6be6c0f158cf7ffccba462320f4b3bebe43e1050e7b"
  2336. dependencies = [
  2337. "async-std-resolver",
  2338. "futures",
  2339. "libp2p-core",
  2340. "log",
  2341. "smallvec",
  2342. "trust-dns-resolver",
  2343. ]
  2344. [[package]]
  2345. name = "libp2p-floodsub"
  2346. version = "0.33.0"
  2347. source = "registry+https://github.com/rust-lang/crates.io-index"
  2348. checksum = "604b6ad64c07a49a9e5e78d4f25c9ad28a17d5fefb1384d7ea35b3201e4aeed3"
  2349. dependencies = [
  2350. "cuckoofilter",
  2351. "fnv",
  2352. "futures",
  2353. "libp2p-core",
  2354. "libp2p-swarm",
  2355. "log",
  2356. "prost",
  2357. "prost-build",
  2358. "rand 0.7.3",
  2359. "smallvec",
  2360. ]
  2361. [[package]]
  2362. name = "libp2p-gossipsub"
  2363. version = "0.35.0"
  2364. source = "registry+https://github.com/rust-lang/crates.io-index"
  2365. checksum = "385ae5f44e84f51e17014c9f1d98464121d3b1b182c167a0b4482d6250c61926"
  2366. dependencies = [
  2367. "asynchronous-codec",
  2368. "base64 0.13.1",
  2369. "byteorder",
  2370. "bytes",
  2371. "fnv",
  2372. "futures",
  2373. "futures-timer",
  2374. "hex_fmt",
  2375. "instant",
  2376. "libp2p-core",
  2377. "libp2p-swarm",
  2378. "log",
  2379. "open-metrics-client",
  2380. "pin-project 1.0.12",
  2381. "prost",
  2382. "prost-build",
  2383. "rand 0.7.3",
  2384. "regex",
  2385. "sha2 0.10.6",
  2386. "smallvec",
  2387. "unsigned-varint",
  2388. ]
  2389. [[package]]
  2390. name = "libp2p-identify"
  2391. version = "0.33.0"
  2392. source = "registry+https://github.com/rust-lang/crates.io-index"
  2393. checksum = "ae5d84b4e57cb66abb9dd28ea36f69620816e004a7479c0ad76f45002820f99b"
  2394. dependencies = [
  2395. "futures",
  2396. "futures-timer",
  2397. "libp2p-core",
  2398. "libp2p-swarm",
  2399. "log",
  2400. "lru",
  2401. "prost",
  2402. "prost-build",
  2403. "smallvec",
  2404. ]
  2405. [[package]]
  2406. name = "libp2p-kad"
  2407. version = "0.34.0"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "0eeaa28a4c7a8c574874e090c2a731ecc7b81595911fee425b552c799a20abbb"
  2410. dependencies = [
  2411. "arrayvec 0.5.2",
  2412. "asynchronous-codec",
  2413. "bytes",
  2414. "either",
  2415. "fnv",
  2416. "futures",
  2417. "futures-timer",
  2418. "instant",
  2419. "libp2p-core",
  2420. "libp2p-swarm",
  2421. "log",
  2422. "prost",
  2423. "prost-build",
  2424. "rand 0.7.3",
  2425. "sha2 0.10.6",
  2426. "smallvec",
  2427. "thiserror",
  2428. "uint",
  2429. "unsigned-varint",
  2430. "void",
  2431. ]
  2432. [[package]]
  2433. name = "libp2p-mdns"
  2434. version = "0.34.0"
  2435. source = "registry+https://github.com/rust-lang/crates.io-index"
  2436. checksum = "1d5904049ad1fee7f2c2c792be892f3dde8ff5c21213d55702a35e777311326f"
  2437. dependencies = [
  2438. "async-io",
  2439. "data-encoding",
  2440. "dns-parser",
  2441. "futures",
  2442. "if-watch",
  2443. "lazy_static",
  2444. "libp2p-core",
  2445. "libp2p-swarm",
  2446. "log",
  2447. "rand 0.8.5",
  2448. "smallvec",
  2449. "socket2 0.4.9",
  2450. "void",
  2451. ]
  2452. [[package]]
  2453. name = "libp2p-metrics"
  2454. version = "0.3.0"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. checksum = "0791098ddec13b0c2f9ed37a29175f7c712ce8804ebaba7cbd8bddbc83120190"
  2457. dependencies = [
  2458. "libp2p-core",
  2459. "libp2p-gossipsub",
  2460. "libp2p-identify",
  2461. "libp2p-kad",
  2462. "libp2p-ping",
  2463. "libp2p-relay",
  2464. "libp2p-swarm",
  2465. "open-metrics-client",
  2466. ]
  2467. [[package]]
  2468. name = "libp2p-mplex"
  2469. version = "0.31.0"
  2470. source = "registry+https://github.com/rust-lang/crates.io-index"
  2471. checksum = "49d470ee73a74340e429fa278469ed274a648738e3fb8de2e8d113482441732f"
  2472. dependencies = [
  2473. "asynchronous-codec",
  2474. "bytes",
  2475. "futures",
  2476. "libp2p-core",
  2477. "log",
  2478. "nohash-hasher",
  2479. "parking_lot 0.11.2",
  2480. "rand 0.7.3",
  2481. "smallvec",
  2482. "unsigned-varint",
  2483. ]
  2484. [[package]]
  2485. name = "libp2p-noise"
  2486. version = "0.34.0"
  2487. source = "registry+https://github.com/rust-lang/crates.io-index"
  2488. checksum = "3676dc2df10a7f4f6a80fbeaf2ce4168a0ca6567273e3105b21fa4c877be9017"
  2489. dependencies = [
  2490. "bytes",
  2491. "curve25519-dalek",
  2492. "futures",
  2493. "lazy_static",
  2494. "libp2p-core",
  2495. "log",
  2496. "prost",
  2497. "prost-build",
  2498. "rand 0.8.5",
  2499. "sha2 0.10.6",
  2500. "snow",
  2501. "static_assertions",
  2502. "x25519-dalek",
  2503. "zeroize",
  2504. ]
  2505. [[package]]
  2506. name = "libp2p-ping"
  2507. version = "0.33.0"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "d384b30135f122a59bf0d186647ad307da0878a9563232cb382d9dbded6a393e"
  2510. dependencies = [
  2511. "futures",
  2512. "futures-timer",
  2513. "instant",
  2514. "libp2p-core",
  2515. "libp2p-swarm",
  2516. "log",
  2517. "rand 0.7.3",
  2518. "void",
  2519. ]
  2520. [[package]]
  2521. name = "libp2p-plaintext"
  2522. version = "0.31.0"
  2523. source = "registry+https://github.com/rust-lang/crates.io-index"
  2524. checksum = "83203abb14ae77de42c49be8dbed7ea8dfb83e76773226aa664a96e6c5e18c5d"
  2525. dependencies = [
  2526. "asynchronous-codec",
  2527. "bytes",
  2528. "futures",
  2529. "libp2p-core",
  2530. "log",
  2531. "prost",
  2532. "prost-build",
  2533. "unsigned-varint",
  2534. "void",
  2535. ]
  2536. [[package]]
  2537. name = "libp2p-pnet"
  2538. version = "0.22.3"
  2539. source = "registry+https://github.com/rust-lang/crates.io-index"
  2540. checksum = "6468f382568da936b4fa1cff273ce59b1debf873ff5f4ca412c3b91d0b37442c"
  2541. dependencies = [
  2542. "futures",
  2543. "log",
  2544. "pin-project 1.0.12",
  2545. "rand 0.8.5",
  2546. "salsa20",
  2547. "sha3 0.10.8",
  2548. ]
  2549. [[package]]
  2550. name = "libp2p-relay"
  2551. version = "0.6.1"
  2552. source = "registry+https://github.com/rust-lang/crates.io-index"
  2553. checksum = "adb41d0408839f0975af3e5820bdc3ceea308a7282785d7ca77d28ea33dbb62a"
  2554. dependencies = [
  2555. "asynchronous-codec",
  2556. "bytes",
  2557. "either",
  2558. "futures",
  2559. "futures-timer",
  2560. "instant",
  2561. "libp2p-core",
  2562. "libp2p-swarm",
  2563. "log",
  2564. "pin-project 1.0.12",
  2565. "prost",
  2566. "prost-build",
  2567. "rand 0.8.5",
  2568. "smallvec",
  2569. "static_assertions",
  2570. "thiserror",
  2571. "unsigned-varint",
  2572. "void",
  2573. ]
  2574. [[package]]
  2575. name = "libp2p-rendezvous"
  2576. version = "0.3.0"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "ec166a822f4167929c8e1673c05106f7c86a42b8e9e917b569e1d86f06b9d8b5"
  2579. dependencies = [
  2580. "asynchronous-codec",
  2581. "bimap",
  2582. "futures",
  2583. "futures-timer",
  2584. "instant",
  2585. "libp2p-core",
  2586. "libp2p-swarm",
  2587. "log",
  2588. "prost",
  2589. "prost-build",
  2590. "rand 0.8.5",
  2591. "sha2 0.10.6",
  2592. "thiserror",
  2593. "unsigned-varint",
  2594. "void",
  2595. ]
  2596. [[package]]
  2597. name = "libp2p-request-response"
  2598. version = "0.15.0"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "36194499f5b03d66d56badbed430d93bf1bfd9cec80311e03280de130fbe3d5e"
  2601. dependencies = [
  2602. "async-trait",
  2603. "bytes",
  2604. "futures",
  2605. "instant",
  2606. "libp2p-core",
  2607. "libp2p-swarm",
  2608. "log",
  2609. "rand 0.7.3",
  2610. "smallvec",
  2611. "unsigned-varint",
  2612. ]
  2613. [[package]]
  2614. name = "libp2p-swarm"
  2615. version = "0.33.0"
  2616. source = "registry+https://github.com/rust-lang/crates.io-index"
  2617. checksum = "db8ae0811c7a05b6edc6684eb5cc69b055cbb715ad780e6b97872d90308503c1"
  2618. dependencies = [
  2619. "either",
  2620. "futures",
  2621. "futures-timer",
  2622. "instant",
  2623. "libp2p-core",
  2624. "log",
  2625. "rand 0.7.3",
  2626. "smallvec",
  2627. "void",
  2628. ]
  2629. [[package]]
  2630. name = "libp2p-swarm-derive"
  2631. version = "0.26.1"
  2632. source = "registry+https://github.com/rust-lang/crates.io-index"
  2633. checksum = "33b4d0acd47739fe0b570728d8d11bbb535050d84c0cf05d6477a4891fceae10"
  2634. dependencies = [
  2635. "quote 1.0.27",
  2636. "syn 1.0.109",
  2637. ]
  2638. [[package]]
  2639. name = "libp2p-tcp"
  2640. version = "0.31.1"
  2641. source = "registry+https://github.com/rust-lang/crates.io-index"
  2642. checksum = "52042e8796c5b58d0415bceb1bcb1bcca28b222339978e52b1a0305800bb5199"
  2643. dependencies = [
  2644. "async-io",
  2645. "futures",
  2646. "futures-timer",
  2647. "if-watch",
  2648. "ipnet",
  2649. "libc",
  2650. "libp2p-core",
  2651. "log",
  2652. "socket2 0.4.9",
  2653. ]
  2654. [[package]]
  2655. name = "libp2p-uds"
  2656. version = "0.31.0"
  2657. source = "registry+https://github.com/rust-lang/crates.io-index"
  2658. checksum = "098f90cb3a0273a830d2595ca7f4de6ca848530ee42324f5c660e2b8955211df"
  2659. dependencies = [
  2660. "async-std",
  2661. "futures",
  2662. "libp2p-core",
  2663. "log",
  2664. ]
  2665. [[package]]
  2666. name = "libp2p-wasm-ext"
  2667. version = "0.31.0"
  2668. source = "registry+https://github.com/rust-lang/crates.io-index"
  2669. checksum = "be0e8a3817fc156752f6695e57630a9bceb6ae92e9b9f0a161552702fd76ad45"
  2670. dependencies = [
  2671. "futures",
  2672. "js-sys",
  2673. "libp2p-core",
  2674. "parity-send-wrapper",
  2675. "wasm-bindgen",
  2676. "wasm-bindgen-futures",
  2677. ]
  2678. [[package]]
  2679. name = "libp2p-websocket"
  2680. version = "0.33.0"
  2681. source = "registry+https://github.com/rust-lang/crates.io-index"
  2682. checksum = "83d788da0ab952632d6ead2486baf38a98db92907d4bc5d0f324af0d0fab803d"
  2683. dependencies = [
  2684. "either",
  2685. "futures",
  2686. "futures-rustls",
  2687. "libp2p-core",
  2688. "log",
  2689. "quicksink",
  2690. "rw-stream-sink",
  2691. "soketto",
  2692. "url",
  2693. "webpki-roots",
  2694. ]
  2695. [[package]]
  2696. name = "libp2p-yamux"
  2697. version = "0.35.0"
  2698. source = "registry+https://github.com/rust-lang/crates.io-index"
  2699. checksum = "053d13ce0670d29f9c5a974cf371e6cc4d2d864da1c72bf6870ac5d5e45e2036"
  2700. dependencies = [
  2701. "futures",
  2702. "libp2p-core",
  2703. "parking_lot 0.11.2",
  2704. "thiserror",
  2705. "yamux",
  2706. ]
  2707. [[package]]
  2708. name = "libsecp256k1"
  2709. version = "0.6.0"
  2710. source = "registry+https://github.com/rust-lang/crates.io-index"
  2711. checksum = "c9d220bc1feda2ac231cb78c3d26f27676b8cf82c96971f7aeef3d0cf2797c73"
  2712. dependencies = [
  2713. "arrayref",
  2714. "base64 0.12.3",
  2715. "digest 0.9.0",
  2716. "hmac-drbg",
  2717. "libsecp256k1-core 0.2.2",
  2718. "libsecp256k1-gen-ecmult 0.2.1",
  2719. "libsecp256k1-gen-genmult 0.2.1",
  2720. "rand 0.7.3",
  2721. "serde",
  2722. "sha2 0.9.9",
  2723. "typenum",
  2724. ]
  2725. [[package]]
  2726. name = "libsecp256k1"
  2727. version = "0.7.1"
  2728. source = "registry+https://github.com/rust-lang/crates.io-index"
  2729. checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1"
  2730. dependencies = [
  2731. "arrayref",
  2732. "base64 0.13.1",
  2733. "digest 0.9.0",
  2734. "hmac-drbg",
  2735. "libsecp256k1-core 0.3.0",
  2736. "libsecp256k1-gen-ecmult 0.3.0",
  2737. "libsecp256k1-gen-genmult 0.3.0",
  2738. "rand 0.8.5",
  2739. "serde",
  2740. "sha2 0.9.9",
  2741. "typenum",
  2742. ]
  2743. [[package]]
  2744. name = "libsecp256k1-core"
  2745. version = "0.2.2"
  2746. source = "registry+https://github.com/rust-lang/crates.io-index"
  2747. checksum = "d0f6ab710cec28cef759c5f18671a27dae2a5f952cdaaee1d8e2908cb2478a80"
  2748. dependencies = [
  2749. "crunchy",
  2750. "digest 0.9.0",
  2751. "subtle",
  2752. ]
  2753. [[package]]
  2754. name = "libsecp256k1-core"
  2755. version = "0.3.0"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"
  2758. dependencies = [
  2759. "crunchy",
  2760. "digest 0.9.0",
  2761. "subtle",
  2762. ]
  2763. [[package]]
  2764. name = "libsecp256k1-gen-ecmult"
  2765. version = "0.2.1"
  2766. source = "registry+https://github.com/rust-lang/crates.io-index"
  2767. checksum = "ccab96b584d38fac86a83f07e659f0deafd0253dc096dab5a36d53efe653c5c3"
  2768. dependencies = [
  2769. "libsecp256k1-core 0.2.2",
  2770. ]
  2771. [[package]]
  2772. name = "libsecp256k1-gen-ecmult"
  2773. version = "0.3.0"
  2774. source = "registry+https://github.com/rust-lang/crates.io-index"
  2775. checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809"
  2776. dependencies = [
  2777. "libsecp256k1-core 0.3.0",
  2778. ]
  2779. [[package]]
  2780. name = "libsecp256k1-gen-genmult"
  2781. version = "0.2.1"
  2782. source = "registry+https://github.com/rust-lang/crates.io-index"
  2783. checksum = "67abfe149395e3aa1c48a2beb32b068e2334402df8181f818d3aee2b304c4f5d"
  2784. dependencies = [
  2785. "libsecp256k1-core 0.2.2",
  2786. ]
  2787. [[package]]
  2788. name = "libsecp256k1-gen-genmult"
  2789. version = "0.3.0"
  2790. source = "registry+https://github.com/rust-lang/crates.io-index"
  2791. checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c"
  2792. dependencies = [
  2793. "libsecp256k1-core 0.3.0",
  2794. ]
  2795. [[package]]
  2796. name = "libsqlite3-sys"
  2797. version = "0.25.2"
  2798. source = "registry+https://github.com/rust-lang/crates.io-index"
  2799. checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa"
  2800. dependencies = [
  2801. "cc",
  2802. "pkg-config",
  2803. "vcpkg",
  2804. ]
  2805. [[package]]
  2806. name = "libz-sys"
  2807. version = "1.1.9"
  2808. source = "registry+https://github.com/rust-lang/crates.io-index"
  2809. checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
  2810. dependencies = [
  2811. "cc",
  2812. "pkg-config",
  2813. "vcpkg",
  2814. ]
  2815. [[package]]
  2816. name = "linked-hash-map"
  2817. version = "0.5.6"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2820. [[package]]
  2821. name = "linux-raw-sys"
  2822. version = "0.3.7"
  2823. source = "registry+https://github.com/rust-lang/crates.io-index"
  2824. checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f"
  2825. [[package]]
  2826. name = "lock_api"
  2827. version = "0.4.9"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2830. dependencies = [
  2831. "autocfg",
  2832. "scopeguard",
  2833. ]
  2834. [[package]]
  2835. name = "log"
  2836. version = "0.4.17"
  2837. source = "registry+https://github.com/rust-lang/crates.io-index"
  2838. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2839. dependencies = [
  2840. "cfg-if",
  2841. "value-bag",
  2842. ]
  2843. [[package]]
  2844. name = "lru"
  2845. version = "0.7.8"
  2846. source = "registry+https://github.com/rust-lang/crates.io-index"
  2847. checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
  2848. dependencies = [
  2849. "hashbrown 0.12.3",
  2850. ]
  2851. [[package]]
  2852. name = "lru-cache"
  2853. version = "0.1.2"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  2856. dependencies = [
  2857. "linked-hash-map",
  2858. ]
  2859. [[package]]
  2860. name = "mach2"
  2861. version = "0.4.1"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8"
  2864. dependencies = [
  2865. "libc",
  2866. ]
  2867. [[package]]
  2868. name = "match_cfg"
  2869. version = "0.1.0"
  2870. source = "registry+https://github.com/rust-lang/crates.io-index"
  2871. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  2872. [[package]]
  2873. name = "matches"
  2874. version = "0.1.10"
  2875. source = "registry+https://github.com/rust-lang/crates.io-index"
  2876. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  2877. [[package]]
  2878. name = "matchit"
  2879. version = "0.7.0"
  2880. source = "registry+https://github.com/rust-lang/crates.io-index"
  2881. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2882. [[package]]
  2883. name = "memchr"
  2884. version = "2.5.0"
  2885. source = "registry+https://github.com/rust-lang/crates.io-index"
  2886. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2887. [[package]]
  2888. name = "memmap2"
  2889. version = "0.5.10"
  2890. source = "registry+https://github.com/rust-lang/crates.io-index"
  2891. checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
  2892. dependencies = [
  2893. "libc",
  2894. ]
  2895. [[package]]
  2896. name = "memoffset"
  2897. version = "0.6.5"
  2898. source = "registry+https://github.com/rust-lang/crates.io-index"
  2899. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  2900. dependencies = [
  2901. "autocfg",
  2902. ]
  2903. [[package]]
  2904. name = "memoffset"
  2905. version = "0.8.0"
  2906. source = "registry+https://github.com/rust-lang/crates.io-index"
  2907. checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
  2908. dependencies = [
  2909. "autocfg",
  2910. ]
  2911. [[package]]
  2912. name = "merlin"
  2913. version = "3.0.0"
  2914. source = "registry+https://github.com/rust-lang/crates.io-index"
  2915. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  2916. dependencies = [
  2917. "byteorder",
  2918. "keccak",
  2919. "rand_core 0.6.4",
  2920. "zeroize",
  2921. ]
  2922. [[package]]
  2923. name = "mime"
  2924. version = "0.3.17"
  2925. source = "registry+https://github.com/rust-lang/crates.io-index"
  2926. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2927. [[package]]
  2928. name = "minimal-lexical"
  2929. version = "0.2.1"
  2930. source = "registry+https://github.com/rust-lang/crates.io-index"
  2931. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2932. [[package]]
  2933. name = "miniz_oxide"
  2934. version = "0.7.1"
  2935. source = "registry+https://github.com/rust-lang/crates.io-index"
  2936. checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
  2937. dependencies = [
  2938. "adler",
  2939. ]
  2940. [[package]]
  2941. name = "mio"
  2942. version = "0.8.6"
  2943. source = "registry+https://github.com/rust-lang/crates.io-index"
  2944. checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
  2945. dependencies = [
  2946. "libc",
  2947. "log",
  2948. "wasi 0.11.0+wasi-snapshot-preview1",
  2949. "windows-sys 0.45.0",
  2950. ]
  2951. [[package]]
  2952. name = "moka"
  2953. version = "0.11.0"
  2954. source = "registry+https://github.com/rust-lang/crates.io-index"
  2955. checksum = "934030d03f6191edbb4ba16835ccdb80d560788ac686570a8e2986a0fb59ded8"
  2956. dependencies = [
  2957. "async-io",
  2958. "async-lock",
  2959. "crossbeam-channel",
  2960. "crossbeam-epoch",
  2961. "crossbeam-utils",
  2962. "futures-util",
  2963. "num_cpus",
  2964. "once_cell",
  2965. "parking_lot 0.12.1",
  2966. "quanta",
  2967. "rustc_version 0.4.0",
  2968. "scheduled-thread-pool",
  2969. "skeptic",
  2970. "smallvec",
  2971. "tagptr",
  2972. "thiserror",
  2973. "triomphe",
  2974. "uuid",
  2975. ]
  2976. [[package]]
  2977. name = "multiaddr"
  2978. version = "0.13.0"
  2979. source = "registry+https://github.com/rust-lang/crates.io-index"
  2980. checksum = "48ee4ea82141951ac6379f964f71b20876d43712bea8faf6dd1a375e08a46499"
  2981. dependencies = [
  2982. "arrayref",
  2983. "bs58",
  2984. "byteorder",
  2985. "data-encoding",
  2986. "multihash",
  2987. "percent-encoding",
  2988. "serde",
  2989. "static_assertions",
  2990. "unsigned-varint",
  2991. "url",
  2992. ]
  2993. [[package]]
  2994. name = "multihash"
  2995. version = "0.14.0"
  2996. source = "registry+https://github.com/rust-lang/crates.io-index"
  2997. checksum = "752a61cd890ff691b4411423d23816d5866dd5621e4d1c5687a53b94b5a979d8"
  2998. dependencies = [
  2999. "digest 0.9.0",
  3000. "generic-array",
  3001. "multihash-derive",
  3002. "sha2 0.9.9",
  3003. "unsigned-varint",
  3004. ]
  3005. [[package]]
  3006. name = "multihash-derive"
  3007. version = "0.7.2"
  3008. source = "registry+https://github.com/rust-lang/crates.io-index"
  3009. checksum = "424f6e86263cd5294cbd7f1e95746b95aca0e0d66bff31e5a40d6baa87b4aa99"
  3010. dependencies = [
  3011. "proc-macro-crate 1.3.1",
  3012. "proc-macro-error",
  3013. "proc-macro2 1.0.56",
  3014. "quote 1.0.27",
  3015. "syn 1.0.109",
  3016. "synstructure",
  3017. ]
  3018. [[package]]
  3019. name = "multimap"
  3020. version = "0.8.3"
  3021. source = "registry+https://github.com/rust-lang/crates.io-index"
  3022. checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
  3023. [[package]]
  3024. name = "multistream-select"
  3025. version = "0.11.0"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "363a84be6453a70e63513660f4894ef815daf88e3356bffcda9ca27d810ce83b"
  3028. dependencies = [
  3029. "bytes",
  3030. "futures",
  3031. "log",
  3032. "pin-project 1.0.12",
  3033. "smallvec",
  3034. "unsigned-varint",
  3035. ]
  3036. [[package]]
  3037. name = "native-tls"
  3038. version = "0.2.11"
  3039. source = "registry+https://github.com/rust-lang/crates.io-index"
  3040. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  3041. dependencies = [
  3042. "lazy_static",
  3043. "libc",
  3044. "log",
  3045. "openssl",
  3046. "openssl-probe",
  3047. "openssl-sys",
  3048. "schannel",
  3049. "security-framework",
  3050. "security-framework-sys",
  3051. "tempfile",
  3052. ]
  3053. [[package]]
  3054. name = "netlink-packet-core"
  3055. version = "0.4.2"
  3056. source = "registry+https://github.com/rust-lang/crates.io-index"
  3057. checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297"
  3058. dependencies = [
  3059. "anyhow",
  3060. "byteorder",
  3061. "libc",
  3062. "netlink-packet-utils",
  3063. ]
  3064. [[package]]
  3065. name = "netlink-packet-route"
  3066. version = "0.12.0"
  3067. source = "registry+https://github.com/rust-lang/crates.io-index"
  3068. checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab"
  3069. dependencies = [
  3070. "anyhow",
  3071. "bitflags",
  3072. "byteorder",
  3073. "libc",
  3074. "netlink-packet-core",
  3075. "netlink-packet-utils",
  3076. ]
  3077. [[package]]
  3078. name = "netlink-packet-utils"
  3079. version = "0.5.2"
  3080. source = "registry+https://github.com/rust-lang/crates.io-index"
  3081. checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34"
  3082. dependencies = [
  3083. "anyhow",
  3084. "byteorder",
  3085. "paste",
  3086. "thiserror",
  3087. ]
  3088. [[package]]
  3089. name = "netlink-proto"
  3090. version = "0.10.0"
  3091. source = "registry+https://github.com/rust-lang/crates.io-index"
  3092. checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
  3093. dependencies = [
  3094. "bytes",
  3095. "futures",
  3096. "log",
  3097. "netlink-packet-core",
  3098. "netlink-sys",
  3099. "thiserror",
  3100. "tokio",
  3101. ]
  3102. [[package]]
  3103. name = "netlink-sys"
  3104. version = "0.8.5"
  3105. source = "registry+https://github.com/rust-lang/crates.io-index"
  3106. checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411"
  3107. dependencies = [
  3108. "async-io",
  3109. "bytes",
  3110. "futures",
  3111. "libc",
  3112. "log",
  3113. ]
  3114. [[package]]
  3115. name = "nix"
  3116. version = "0.23.2"
  3117. source = "registry+https://github.com/rust-lang/crates.io-index"
  3118. checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
  3119. dependencies = [
  3120. "bitflags",
  3121. "cc",
  3122. "cfg-if",
  3123. "libc",
  3124. "memoffset 0.6.5",
  3125. ]
  3126. [[package]]
  3127. name = "nix"
  3128. version = "0.24.3"
  3129. source = "registry+https://github.com/rust-lang/crates.io-index"
  3130. checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
  3131. dependencies = [
  3132. "bitflags",
  3133. "cfg-if",
  3134. "libc",
  3135. ]
  3136. [[package]]
  3137. name = "nohash-hasher"
  3138. version = "0.2.0"
  3139. source = "registry+https://github.com/rust-lang/crates.io-index"
  3140. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  3141. [[package]]
  3142. name = "nom"
  3143. version = "7.1.3"
  3144. source = "registry+https://github.com/rust-lang/crates.io-index"
  3145. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3146. dependencies = [
  3147. "memchr",
  3148. "minimal-lexical",
  3149. ]
  3150. [[package]]
  3151. name = "num"
  3152. version = "0.2.1"
  3153. source = "registry+https://github.com/rust-lang/crates.io-index"
  3154. checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
  3155. dependencies = [
  3156. "num-bigint 0.2.6",
  3157. "num-complex",
  3158. "num-integer",
  3159. "num-iter",
  3160. "num-rational",
  3161. "num-traits",
  3162. ]
  3163. [[package]]
  3164. name = "num-bigint"
  3165. version = "0.2.6"
  3166. source = "registry+https://github.com/rust-lang/crates.io-index"
  3167. checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
  3168. dependencies = [
  3169. "autocfg",
  3170. "num-integer",
  3171. "num-traits",
  3172. ]
  3173. [[package]]
  3174. name = "num-bigint"
  3175. version = "0.4.3"
  3176. source = "registry+https://github.com/rust-lang/crates.io-index"
  3177. checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
  3178. dependencies = [
  3179. "autocfg",
  3180. "num-integer",
  3181. "num-traits",
  3182. ]
  3183. [[package]]
  3184. name = "num-complex"
  3185. version = "0.2.4"
  3186. source = "registry+https://github.com/rust-lang/crates.io-index"
  3187. checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
  3188. dependencies = [
  3189. "autocfg",
  3190. "num-traits",
  3191. ]
  3192. [[package]]
  3193. name = "num-derive"
  3194. version = "0.3.3"
  3195. source = "registry+https://github.com/rust-lang/crates.io-index"
  3196. checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
  3197. dependencies = [
  3198. "proc-macro2 1.0.56",
  3199. "quote 1.0.27",
  3200. "syn 1.0.109",
  3201. ]
  3202. [[package]]
  3203. name = "num-integer"
  3204. version = "0.1.45"
  3205. source = "registry+https://github.com/rust-lang/crates.io-index"
  3206. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  3207. dependencies = [
  3208. "autocfg",
  3209. "num-traits",
  3210. ]
  3211. [[package]]
  3212. name = "num-iter"
  3213. version = "0.1.43"
  3214. source = "registry+https://github.com/rust-lang/crates.io-index"
  3215. checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
  3216. dependencies = [
  3217. "autocfg",
  3218. "num-integer",
  3219. "num-traits",
  3220. ]
  3221. [[package]]
  3222. name = "num-rational"
  3223. version = "0.2.4"
  3224. source = "registry+https://github.com/rust-lang/crates.io-index"
  3225. checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
  3226. dependencies = [
  3227. "autocfg",
  3228. "num-bigint 0.2.6",
  3229. "num-integer",
  3230. "num-traits",
  3231. ]
  3232. [[package]]
  3233. name = "num-traits"
  3234. version = "0.2.15"
  3235. source = "registry+https://github.com/rust-lang/crates.io-index"
  3236. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  3237. dependencies = [
  3238. "autocfg",
  3239. ]
  3240. [[package]]
  3241. name = "num_cpus"
  3242. version = "1.15.0"
  3243. source = "registry+https://github.com/rust-lang/crates.io-index"
  3244. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  3245. dependencies = [
  3246. "hermit-abi 0.2.6",
  3247. "libc",
  3248. ]
  3249. [[package]]
  3250. name = "num_enum"
  3251. version = "0.5.11"
  3252. source = "registry+https://github.com/rust-lang/crates.io-index"
  3253. checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
  3254. dependencies = [
  3255. "num_enum_derive",
  3256. ]
  3257. [[package]]
  3258. name = "num_enum_derive"
  3259. version = "0.5.11"
  3260. source = "registry+https://github.com/rust-lang/crates.io-index"
  3261. checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
  3262. dependencies = [
  3263. "proc-macro-crate 1.3.1",
  3264. "proc-macro2 1.0.56",
  3265. "quote 1.0.27",
  3266. "syn 1.0.109",
  3267. ]
  3268. [[package]]
  3269. name = "number_prefix"
  3270. version = "0.4.0"
  3271. source = "registry+https://github.com/rust-lang/crates.io-index"
  3272. checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
  3273. [[package]]
  3274. name = "oid-registry"
  3275. version = "0.6.1"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
  3278. dependencies = [
  3279. "asn1-rs",
  3280. ]
  3281. [[package]]
  3282. name = "once_cell"
  3283. version = "1.17.1"
  3284. source = "registry+https://github.com/rust-lang/crates.io-index"
  3285. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  3286. [[package]]
  3287. name = "opaque-debug"
  3288. version = "0.3.0"
  3289. source = "registry+https://github.com/rust-lang/crates.io-index"
  3290. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  3291. [[package]]
  3292. name = "open-metrics-client"
  3293. version = "0.14.0"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "f85842b073145726190373213c63f852020fb884c841a3a1f390637267a2fb8c"
  3296. dependencies = [
  3297. "dtoa",
  3298. "itoa",
  3299. "open-metrics-client-derive-text-encode",
  3300. "owning_ref",
  3301. ]
  3302. [[package]]
  3303. name = "open-metrics-client-derive-text-encode"
  3304. version = "0.1.1"
  3305. source = "registry+https://github.com/rust-lang/crates.io-index"
  3306. checksum = "a15c83b586f00268c619c1cb3340ec1a6f59dd9ba1d9833a273a68e6d5cd8ffc"
  3307. dependencies = [
  3308. "proc-macro2 1.0.56",
  3309. "quote 1.0.27",
  3310. "syn 1.0.109",
  3311. ]
  3312. [[package]]
  3313. name = "openssl"
  3314. version = "0.10.52"
  3315. source = "registry+https://github.com/rust-lang/crates.io-index"
  3316. checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56"
  3317. dependencies = [
  3318. "bitflags",
  3319. "cfg-if",
  3320. "foreign-types",
  3321. "libc",
  3322. "once_cell",
  3323. "openssl-macros",
  3324. "openssl-sys",
  3325. ]
  3326. [[package]]
  3327. name = "openssl-macros"
  3328. version = "0.1.1"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  3331. dependencies = [
  3332. "proc-macro2 1.0.56",
  3333. "quote 1.0.27",
  3334. "syn 2.0.15",
  3335. ]
  3336. [[package]]
  3337. name = "openssl-probe"
  3338. version = "0.1.5"
  3339. source = "registry+https://github.com/rust-lang/crates.io-index"
  3340. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  3341. [[package]]
  3342. name = "openssl-sys"
  3343. version = "0.9.87"
  3344. source = "registry+https://github.com/rust-lang/crates.io-index"
  3345. checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e"
  3346. dependencies = [
  3347. "cc",
  3348. "libc",
  3349. "pkg-config",
  3350. "vcpkg",
  3351. ]
  3352. [[package]]
  3353. name = "os_str_bytes"
  3354. version = "6.5.0"
  3355. source = "registry+https://github.com/rust-lang/crates.io-index"
  3356. checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267"
  3357. [[package]]
  3358. name = "owning_ref"
  3359. version = "0.4.1"
  3360. source = "registry+https://github.com/rust-lang/crates.io-index"
  3361. checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"
  3362. dependencies = [
  3363. "stable_deref_trait",
  3364. ]
  3365. [[package]]
  3366. name = "parity-scale-codec"
  3367. version = "3.5.0"
  3368. source = "registry+https://github.com/rust-lang/crates.io-index"
  3369. checksum = "5ddb756ca205bd108aee3c62c6d3c994e1df84a59b9d6d4a5ea42ee1fd5a9a28"
  3370. dependencies = [
  3371. "arrayvec 0.7.2",
  3372. "bitvec",
  3373. "byte-slice-cast",
  3374. "impl-trait-for-tuples",
  3375. "parity-scale-codec-derive",
  3376. "serde",
  3377. ]
  3378. [[package]]
  3379. name = "parity-scale-codec-derive"
  3380. version = "3.1.4"
  3381. source = "registry+https://github.com/rust-lang/crates.io-index"
  3382. checksum = "86b26a931f824dd4eca30b3e43bb4f31cd5f0d3a403c5f5ff27106b805bfde7b"
  3383. dependencies = [
  3384. "proc-macro-crate 1.3.1",
  3385. "proc-macro2 1.0.56",
  3386. "quote 1.0.27",
  3387. "syn 1.0.109",
  3388. ]
  3389. [[package]]
  3390. name = "parity-send-wrapper"
  3391. version = "0.1.0"
  3392. source = "registry+https://github.com/rust-lang/crates.io-index"
  3393. checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"
  3394. [[package]]
  3395. name = "parking"
  3396. version = "2.1.0"
  3397. source = "registry+https://github.com/rust-lang/crates.io-index"
  3398. checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
  3399. [[package]]
  3400. name = "parking_lot"
  3401. version = "0.11.2"
  3402. source = "registry+https://github.com/rust-lang/crates.io-index"
  3403. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3404. dependencies = [
  3405. "instant",
  3406. "lock_api",
  3407. "parking_lot_core 0.8.6",
  3408. ]
  3409. [[package]]
  3410. name = "parking_lot"
  3411. version = "0.12.1"
  3412. source = "registry+https://github.com/rust-lang/crates.io-index"
  3413. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  3414. dependencies = [
  3415. "lock_api",
  3416. "parking_lot_core 0.9.7",
  3417. ]
  3418. [[package]]
  3419. name = "parking_lot_core"
  3420. version = "0.8.6"
  3421. source = "registry+https://github.com/rust-lang/crates.io-index"
  3422. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3423. dependencies = [
  3424. "cfg-if",
  3425. "instant",
  3426. "libc",
  3427. "redox_syscall 0.2.16",
  3428. "smallvec",
  3429. "winapi",
  3430. ]
  3431. [[package]]
  3432. name = "parking_lot_core"
  3433. version = "0.9.7"
  3434. source = "registry+https://github.com/rust-lang/crates.io-index"
  3435. checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
  3436. dependencies = [
  3437. "cfg-if",
  3438. "libc",
  3439. "redox_syscall 0.2.16",
  3440. "smallvec",
  3441. "windows-sys 0.45.0",
  3442. ]
  3443. [[package]]
  3444. name = "paste"
  3445. version = "1.0.12"
  3446. source = "registry+https://github.com/rust-lang/crates.io-index"
  3447. checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
  3448. [[package]]
  3449. name = "pbkdf2"
  3450. version = "0.4.0"
  3451. source = "registry+https://github.com/rust-lang/crates.io-index"
  3452. checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"
  3453. dependencies = [
  3454. "crypto-mac",
  3455. ]
  3456. [[package]]
  3457. name = "pbkdf2"
  3458. version = "0.10.1"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
  3461. dependencies = [
  3462. "digest 0.10.6",
  3463. ]
  3464. [[package]]
  3465. name = "peeking_take_while"
  3466. version = "0.1.2"
  3467. source = "registry+https://github.com/rust-lang/crates.io-index"
  3468. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  3469. [[package]]
  3470. name = "pem"
  3471. version = "1.1.1"
  3472. source = "registry+https://github.com/rust-lang/crates.io-index"
  3473. checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
  3474. dependencies = [
  3475. "base64 0.13.1",
  3476. ]
  3477. [[package]]
  3478. name = "percent-encoding"
  3479. version = "2.2.0"
  3480. source = "registry+https://github.com/rust-lang/crates.io-index"
  3481. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  3482. [[package]]
  3483. name = "percentage"
  3484. version = "0.1.0"
  3485. source = "registry+https://github.com/rust-lang/crates.io-index"
  3486. checksum = "2fd23b938276f14057220b707937bcb42fa76dda7560e57a2da30cb52d557937"
  3487. dependencies = [
  3488. "num",
  3489. ]
  3490. [[package]]
  3491. name = "pest"
  3492. version = "2.6.0"
  3493. source = "registry+https://github.com/rust-lang/crates.io-index"
  3494. checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70"
  3495. dependencies = [
  3496. "thiserror",
  3497. "ucd-trie",
  3498. ]
  3499. [[package]]
  3500. name = "petgraph"
  3501. version = "0.6.3"
  3502. source = "registry+https://github.com/rust-lang/crates.io-index"
  3503. checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
  3504. dependencies = [
  3505. "fixedbitset",
  3506. "indexmap",
  3507. ]
  3508. [[package]]
  3509. name = "pin-project"
  3510. version = "0.4.30"
  3511. source = "registry+https://github.com/rust-lang/crates.io-index"
  3512. checksum = "3ef0f924a5ee7ea9cbcea77529dba45f8a9ba9f622419fe3386ca581a3ae9d5a"
  3513. dependencies = [
  3514. "pin-project-internal 0.4.30",
  3515. ]
  3516. [[package]]
  3517. name = "pin-project"
  3518. version = "1.0.12"
  3519. source = "registry+https://github.com/rust-lang/crates.io-index"
  3520. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  3521. dependencies = [
  3522. "pin-project-internal 1.0.12",
  3523. ]
  3524. [[package]]
  3525. name = "pin-project-internal"
  3526. version = "0.4.30"
  3527. source = "registry+https://github.com/rust-lang/crates.io-index"
  3528. checksum = "851c8d0ce9bebe43790dedfc86614c23494ac9f423dd618d3a61fc693eafe61e"
  3529. dependencies = [
  3530. "proc-macro2 1.0.56",
  3531. "quote 1.0.27",
  3532. "syn 1.0.109",
  3533. ]
  3534. [[package]]
  3535. name = "pin-project-internal"
  3536. version = "1.0.12"
  3537. source = "registry+https://github.com/rust-lang/crates.io-index"
  3538. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  3539. dependencies = [
  3540. "proc-macro2 1.0.56",
  3541. "quote 1.0.27",
  3542. "syn 1.0.109",
  3543. ]
  3544. [[package]]
  3545. name = "pin-project-lite"
  3546. version = "0.1.12"
  3547. source = "registry+https://github.com/rust-lang/crates.io-index"
  3548. checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
  3549. [[package]]
  3550. name = "pin-project-lite"
  3551. version = "0.2.9"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  3554. [[package]]
  3555. name = "pin-utils"
  3556. version = "0.1.0"
  3557. source = "registry+https://github.com/rust-lang/crates.io-index"
  3558. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3559. [[package]]
  3560. name = "pkcs8"
  3561. version = "0.8.0"
  3562. source = "registry+https://github.com/rust-lang/crates.io-index"
  3563. checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0"
  3564. dependencies = [
  3565. "der 0.5.1",
  3566. "spki",
  3567. "zeroize",
  3568. ]
  3569. [[package]]
  3570. name = "pkg-config"
  3571. version = "0.3.27"
  3572. source = "registry+https://github.com/rust-lang/crates.io-index"
  3573. checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
  3574. [[package]]
  3575. name = "polling"
  3576. version = "2.8.0"
  3577. source = "registry+https://github.com/rust-lang/crates.io-index"
  3578. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  3579. dependencies = [
  3580. "autocfg",
  3581. "bitflags",
  3582. "cfg-if",
  3583. "concurrent-queue",
  3584. "libc",
  3585. "log",
  3586. "pin-project-lite 0.2.9",
  3587. "windows-sys 0.48.0",
  3588. ]
  3589. [[package]]
  3590. name = "poly1305"
  3591. version = "0.7.2"
  3592. source = "registry+https://github.com/rust-lang/crates.io-index"
  3593. checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
  3594. dependencies = [
  3595. "cpufeatures",
  3596. "opaque-debug",
  3597. "universal-hash",
  3598. ]
  3599. [[package]]
  3600. name = "polyval"
  3601. version = "0.5.3"
  3602. source = "registry+https://github.com/rust-lang/crates.io-index"
  3603. checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
  3604. dependencies = [
  3605. "cfg-if",
  3606. "cpufeatures",
  3607. "opaque-debug",
  3608. "universal-hash",
  3609. ]
  3610. [[package]]
  3611. name = "ppv-lite86"
  3612. version = "0.2.17"
  3613. source = "registry+https://github.com/rust-lang/crates.io-index"
  3614. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  3615. [[package]]
  3616. name = "primitive-types"
  3617. version = "0.12.1"
  3618. source = "registry+https://github.com/rust-lang/crates.io-index"
  3619. checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66"
  3620. dependencies = [
  3621. "fixed-hash",
  3622. "impl-codec",
  3623. "impl-rlp",
  3624. "impl-serde",
  3625. "uint",
  3626. ]
  3627. [[package]]
  3628. name = "proc-macro-crate"
  3629. version = "0.1.5"
  3630. source = "registry+https://github.com/rust-lang/crates.io-index"
  3631. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  3632. dependencies = [
  3633. "toml",
  3634. ]
  3635. [[package]]
  3636. name = "proc-macro-crate"
  3637. version = "1.3.1"
  3638. source = "registry+https://github.com/rust-lang/crates.io-index"
  3639. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  3640. dependencies = [
  3641. "once_cell",
  3642. "toml_edit",
  3643. ]
  3644. [[package]]
  3645. name = "proc-macro-error"
  3646. version = "1.0.4"
  3647. source = "registry+https://github.com/rust-lang/crates.io-index"
  3648. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3649. dependencies = [
  3650. "proc-macro-error-attr",
  3651. "proc-macro2 1.0.56",
  3652. "quote 1.0.27",
  3653. "syn 1.0.109",
  3654. "version_check",
  3655. ]
  3656. [[package]]
  3657. name = "proc-macro-error-attr"
  3658. version = "1.0.4"
  3659. source = "registry+https://github.com/rust-lang/crates.io-index"
  3660. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3661. dependencies = [
  3662. "proc-macro2 1.0.56",
  3663. "quote 1.0.27",
  3664. "version_check",
  3665. ]
  3666. [[package]]
  3667. name = "proc-macro2"
  3668. version = "0.4.30"
  3669. source = "registry+https://github.com/rust-lang/crates.io-index"
  3670. checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
  3671. dependencies = [
  3672. "unicode-xid 0.1.0",
  3673. ]
  3674. [[package]]
  3675. name = "proc-macro2"
  3676. version = "1.0.56"
  3677. source = "registry+https://github.com/rust-lang/crates.io-index"
  3678. checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
  3679. dependencies = [
  3680. "unicode-ident",
  3681. ]
  3682. [[package]]
  3683. name = "prost"
  3684. version = "0.9.0"
  3685. source = "registry+https://github.com/rust-lang/crates.io-index"
  3686. checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
  3687. dependencies = [
  3688. "bytes",
  3689. "prost-derive",
  3690. ]
  3691. [[package]]
  3692. name = "prost-build"
  3693. version = "0.9.0"
  3694. source = "registry+https://github.com/rust-lang/crates.io-index"
  3695. checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
  3696. dependencies = [
  3697. "bytes",
  3698. "heck 0.3.3",
  3699. "itertools",
  3700. "lazy_static",
  3701. "log",
  3702. "multimap",
  3703. "petgraph",
  3704. "prost",
  3705. "prost-types",
  3706. "regex",
  3707. "tempfile",
  3708. "which",
  3709. ]
  3710. [[package]]
  3711. name = "prost-derive"
  3712. version = "0.9.0"
  3713. source = "registry+https://github.com/rust-lang/crates.io-index"
  3714. checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
  3715. dependencies = [
  3716. "anyhow",
  3717. "itertools",
  3718. "proc-macro2 1.0.56",
  3719. "quote 1.0.27",
  3720. "syn 1.0.109",
  3721. ]
  3722. [[package]]
  3723. name = "prost-types"
  3724. version = "0.9.0"
  3725. source = "registry+https://github.com/rust-lang/crates.io-index"
  3726. checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
  3727. dependencies = [
  3728. "bytes",
  3729. "prost",
  3730. ]
  3731. [[package]]
  3732. name = "pulldown-cmark"
  3733. version = "0.9.2"
  3734. source = "registry+https://github.com/rust-lang/crates.io-index"
  3735. checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
  3736. dependencies = [
  3737. "bitflags",
  3738. "memchr",
  3739. "unicase",
  3740. ]
  3741. [[package]]
  3742. name = "pyth-oracle"
  3743. version = "2.21.0"
  3744. source = "git+https://github.com/pyth-network/pyth-client?rev=1bdac0d2ee39a5a9f27eb86e4fd01229bd68aa5a#1bdac0d2ee39a5a9f27eb86e4fd01229bd68aa5a"
  3745. dependencies = [
  3746. "bindgen",
  3747. "bytemuck",
  3748. "byteorder",
  3749. "num-derive",
  3750. "num-traits",
  3751. "serde",
  3752. "solana-program",
  3753. "strum",
  3754. "thiserror",
  3755. ]
  3756. [[package]]
  3757. name = "pyth-sdk"
  3758. version = "0.7.0"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "00bf2540203ca3c7a5712fdb8b5897534b7f6a0b6e7b0923ff00466c5f9efcb3"
  3761. dependencies = [
  3762. "borsh",
  3763. "borsh-derive",
  3764. "hex",
  3765. "schemars",
  3766. "serde",
  3767. ]
  3768. [[package]]
  3769. name = "pythnet-sdk"
  3770. version = "1.13.6"
  3771. dependencies = [
  3772. "bincode",
  3773. "borsh",
  3774. "bytemuck",
  3775. "byteorder",
  3776. "fast-math",
  3777. "hex",
  3778. "rustc_version 0.4.0",
  3779. "serde",
  3780. "sha3 0.10.8",
  3781. "slow_primes",
  3782. "thiserror",
  3783. ]
  3784. [[package]]
  3785. name = "qstring"
  3786. version = "0.7.2"
  3787. source = "registry+https://github.com/rust-lang/crates.io-index"
  3788. checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e"
  3789. dependencies = [
  3790. "percent-encoding",
  3791. ]
  3792. [[package]]
  3793. name = "quanta"
  3794. version = "0.11.0"
  3795. source = "registry+https://github.com/rust-lang/crates.io-index"
  3796. checksum = "8cc73c42f9314c4bdce450c77e6f09ecbddefbeddb1b5979ded332a3913ded33"
  3797. dependencies = [
  3798. "crossbeam-utils",
  3799. "libc",
  3800. "mach2",
  3801. "once_cell",
  3802. "raw-cpuid",
  3803. "wasi 0.11.0+wasi-snapshot-preview1",
  3804. "web-sys",
  3805. "winapi",
  3806. ]
  3807. [[package]]
  3808. name = "quick-error"
  3809. version = "1.2.3"
  3810. source = "registry+https://github.com/rust-lang/crates.io-index"
  3811. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  3812. [[package]]
  3813. name = "quicksink"
  3814. version = "0.1.2"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"
  3817. dependencies = [
  3818. "futures-core",
  3819. "futures-sink",
  3820. "pin-project-lite 0.1.12",
  3821. ]
  3822. [[package]]
  3823. name = "quinn"
  3824. version = "0.8.5"
  3825. source = "registry+https://github.com/rust-lang/crates.io-index"
  3826. checksum = "5b435e71d9bfa0d8889927231970c51fb89c58fa63bffcab117c9c7a41e5ef8f"
  3827. dependencies = [
  3828. "bytes",
  3829. "futures-channel",
  3830. "futures-util",
  3831. "fxhash",
  3832. "quinn-proto",
  3833. "quinn-udp",
  3834. "rustls",
  3835. "thiserror",
  3836. "tokio",
  3837. "tracing",
  3838. "webpki",
  3839. ]
  3840. [[package]]
  3841. name = "quinn-proto"
  3842. version = "0.8.4"
  3843. source = "registry+https://github.com/rust-lang/crates.io-index"
  3844. checksum = "3fce546b9688f767a57530652488420d419a8b1f44a478b451c3d1ab6d992a55"
  3845. dependencies = [
  3846. "bytes",
  3847. "fxhash",
  3848. "rand 0.8.5",
  3849. "ring",
  3850. "rustls",
  3851. "rustls-native-certs",
  3852. "rustls-pemfile 0.2.1",
  3853. "slab",
  3854. "thiserror",
  3855. "tinyvec",
  3856. "tracing",
  3857. "webpki",
  3858. ]
  3859. [[package]]
  3860. name = "quinn-udp"
  3861. version = "0.1.4"
  3862. source = "registry+https://github.com/rust-lang/crates.io-index"
  3863. checksum = "b07946277141531aea269befd949ed16b2c85a780ba1043244eda0969e538e54"
  3864. dependencies = [
  3865. "futures-util",
  3866. "libc",
  3867. "quinn-proto",
  3868. "socket2 0.4.9",
  3869. "tokio",
  3870. "tracing",
  3871. ]
  3872. [[package]]
  3873. name = "quote"
  3874. version = "0.6.13"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
  3877. dependencies = [
  3878. "proc-macro2 0.4.30",
  3879. ]
  3880. [[package]]
  3881. name = "quote"
  3882. version = "1.0.27"
  3883. source = "registry+https://github.com/rust-lang/crates.io-index"
  3884. checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
  3885. dependencies = [
  3886. "proc-macro2 1.0.56",
  3887. ]
  3888. [[package]]
  3889. name = "radium"
  3890. version = "0.7.0"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  3893. [[package]]
  3894. name = "rand"
  3895. version = "0.7.3"
  3896. source = "registry+https://github.com/rust-lang/crates.io-index"
  3897. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3898. dependencies = [
  3899. "getrandom 0.1.16",
  3900. "libc",
  3901. "rand_chacha 0.2.2",
  3902. "rand_core 0.5.1",
  3903. "rand_hc",
  3904. ]
  3905. [[package]]
  3906. name = "rand"
  3907. version = "0.8.5"
  3908. source = "registry+https://github.com/rust-lang/crates.io-index"
  3909. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3910. dependencies = [
  3911. "libc",
  3912. "rand_chacha 0.3.1",
  3913. "rand_core 0.6.4",
  3914. ]
  3915. [[package]]
  3916. name = "rand_chacha"
  3917. version = "0.2.2"
  3918. source = "registry+https://github.com/rust-lang/crates.io-index"
  3919. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  3920. dependencies = [
  3921. "ppv-lite86",
  3922. "rand_core 0.5.1",
  3923. ]
  3924. [[package]]
  3925. name = "rand_chacha"
  3926. version = "0.3.1"
  3927. source = "registry+https://github.com/rust-lang/crates.io-index"
  3928. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3929. dependencies = [
  3930. "ppv-lite86",
  3931. "rand_core 0.6.4",
  3932. ]
  3933. [[package]]
  3934. name = "rand_core"
  3935. version = "0.5.1"
  3936. source = "registry+https://github.com/rust-lang/crates.io-index"
  3937. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  3938. dependencies = [
  3939. "getrandom 0.1.16",
  3940. ]
  3941. [[package]]
  3942. name = "rand_core"
  3943. version = "0.6.4"
  3944. source = "registry+https://github.com/rust-lang/crates.io-index"
  3945. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3946. dependencies = [
  3947. "getrandom 0.2.9",
  3948. ]
  3949. [[package]]
  3950. name = "rand_hc"
  3951. version = "0.2.0"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  3954. dependencies = [
  3955. "rand_core 0.5.1",
  3956. ]
  3957. [[package]]
  3958. name = "rand_xoshiro"
  3959. version = "0.6.0"
  3960. source = "registry+https://github.com/rust-lang/crates.io-index"
  3961. checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
  3962. dependencies = [
  3963. "rand_core 0.6.4",
  3964. ]
  3965. [[package]]
  3966. name = "raw-cpuid"
  3967. version = "10.7.0"
  3968. source = "registry+https://github.com/rust-lang/crates.io-index"
  3969. checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
  3970. dependencies = [
  3971. "bitflags",
  3972. ]
  3973. [[package]]
  3974. name = "rayon"
  3975. version = "1.7.0"
  3976. source = "registry+https://github.com/rust-lang/crates.io-index"
  3977. checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
  3978. dependencies = [
  3979. "either",
  3980. "rayon-core",
  3981. ]
  3982. [[package]]
  3983. name = "rayon-core"
  3984. version = "1.11.0"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
  3987. dependencies = [
  3988. "crossbeam-channel",
  3989. "crossbeam-deque",
  3990. "crossbeam-utils",
  3991. "num_cpus",
  3992. ]
  3993. [[package]]
  3994. name = "rcgen"
  3995. version = "0.9.3"
  3996. source = "registry+https://github.com/rust-lang/crates.io-index"
  3997. checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
  3998. dependencies = [
  3999. "pem",
  4000. "ring",
  4001. "time 0.3.21",
  4002. "yasna",
  4003. ]
  4004. [[package]]
  4005. name = "redox_syscall"
  4006. version = "0.2.16"
  4007. source = "registry+https://github.com/rust-lang/crates.io-index"
  4008. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  4009. dependencies = [
  4010. "bitflags",
  4011. ]
  4012. [[package]]
  4013. name = "redox_syscall"
  4014. version = "0.3.5"
  4015. source = "registry+https://github.com/rust-lang/crates.io-index"
  4016. checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
  4017. dependencies = [
  4018. "bitflags",
  4019. ]
  4020. [[package]]
  4021. name = "redox_users"
  4022. version = "0.4.3"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  4025. dependencies = [
  4026. "getrandom 0.2.9",
  4027. "redox_syscall 0.2.16",
  4028. "thiserror",
  4029. ]
  4030. [[package]]
  4031. name = "regex"
  4032. version = "1.8.1"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
  4035. dependencies = [
  4036. "aho-corasick",
  4037. "memchr",
  4038. "regex-syntax",
  4039. ]
  4040. [[package]]
  4041. name = "regex-automata"
  4042. version = "0.1.10"
  4043. source = "registry+https://github.com/rust-lang/crates.io-index"
  4044. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  4045. [[package]]
  4046. name = "regex-syntax"
  4047. version = "0.7.1"
  4048. source = "registry+https://github.com/rust-lang/crates.io-index"
  4049. checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
  4050. [[package]]
  4051. name = "reqwest"
  4052. version = "0.11.17"
  4053. source = "registry+https://github.com/rust-lang/crates.io-index"
  4054. checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
  4055. dependencies = [
  4056. "async-compression",
  4057. "base64 0.21.0",
  4058. "bytes",
  4059. "encoding_rs",
  4060. "futures-core",
  4061. "futures-util",
  4062. "h2",
  4063. "http",
  4064. "http-body",
  4065. "hyper",
  4066. "hyper-rustls",
  4067. "hyper-tls",
  4068. "ipnet",
  4069. "js-sys",
  4070. "log",
  4071. "mime",
  4072. "native-tls",
  4073. "once_cell",
  4074. "percent-encoding",
  4075. "pin-project-lite 0.2.9",
  4076. "rustls",
  4077. "rustls-pemfile 1.0.2",
  4078. "serde",
  4079. "serde_json",
  4080. "serde_urlencoded",
  4081. "tokio",
  4082. "tokio-native-tls",
  4083. "tokio-rustls",
  4084. "tokio-util",
  4085. "tower-service",
  4086. "url",
  4087. "wasm-bindgen",
  4088. "wasm-bindgen-futures",
  4089. "web-sys",
  4090. "webpki-roots",
  4091. "winreg 0.10.1",
  4092. ]
  4093. [[package]]
  4094. name = "resolv-conf"
  4095. version = "0.7.0"
  4096. source = "registry+https://github.com/rust-lang/crates.io-index"
  4097. checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
  4098. dependencies = [
  4099. "hostname",
  4100. "quick-error",
  4101. ]
  4102. [[package]]
  4103. name = "ring"
  4104. version = "0.16.20"
  4105. source = "registry+https://github.com/rust-lang/crates.io-index"
  4106. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4107. dependencies = [
  4108. "cc",
  4109. "libc",
  4110. "once_cell",
  4111. "spin",
  4112. "untrusted",
  4113. "web-sys",
  4114. "winapi",
  4115. ]
  4116. [[package]]
  4117. name = "rlp"
  4118. version = "0.5.2"
  4119. source = "registry+https://github.com/rust-lang/crates.io-index"
  4120. checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
  4121. dependencies = [
  4122. "bytes",
  4123. "rustc-hex",
  4124. ]
  4125. [[package]]
  4126. name = "rpassword"
  4127. version = "6.0.1"
  4128. source = "registry+https://github.com/rust-lang/crates.io-index"
  4129. checksum = "2bf099a1888612545b683d2661a1940089f6c2e5a8e38979b2159da876bfd956"
  4130. dependencies = [
  4131. "libc",
  4132. "serde",
  4133. "serde_json",
  4134. "winapi",
  4135. ]
  4136. [[package]]
  4137. name = "rtnetlink"
  4138. version = "0.10.1"
  4139. source = "registry+https://github.com/rust-lang/crates.io-index"
  4140. checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
  4141. dependencies = [
  4142. "async-global-executor",
  4143. "futures",
  4144. "log",
  4145. "netlink-packet-route",
  4146. "netlink-proto",
  4147. "nix 0.24.3",
  4148. "thiserror",
  4149. ]
  4150. [[package]]
  4151. name = "rusqlite"
  4152. version = "0.28.0"
  4153. source = "registry+https://github.com/rust-lang/crates.io-index"
  4154. checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
  4155. dependencies = [
  4156. "bitflags",
  4157. "fallible-iterator",
  4158. "fallible-streaming-iterator",
  4159. "hashlink",
  4160. "libsqlite3-sys",
  4161. "smallvec",
  4162. ]
  4163. [[package]]
  4164. name = "rustc-hash"
  4165. version = "1.1.0"
  4166. source = "registry+https://github.com/rust-lang/crates.io-index"
  4167. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4168. [[package]]
  4169. name = "rustc-hex"
  4170. version = "2.1.0"
  4171. source = "registry+https://github.com/rust-lang/crates.io-index"
  4172. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  4173. [[package]]
  4174. name = "rustc_version"
  4175. version = "0.3.3"
  4176. source = "registry+https://github.com/rust-lang/crates.io-index"
  4177. checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
  4178. dependencies = [
  4179. "semver 0.11.0",
  4180. ]
  4181. [[package]]
  4182. name = "rustc_version"
  4183. version = "0.4.0"
  4184. source = "registry+https://github.com/rust-lang/crates.io-index"
  4185. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4186. dependencies = [
  4187. "semver 1.0.17",
  4188. ]
  4189. [[package]]
  4190. name = "rusticata-macros"
  4191. version = "4.1.0"
  4192. source = "registry+https://github.com/rust-lang/crates.io-index"
  4193. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  4194. dependencies = [
  4195. "nom",
  4196. ]
  4197. [[package]]
  4198. name = "rustix"
  4199. version = "0.37.19"
  4200. source = "registry+https://github.com/rust-lang/crates.io-index"
  4201. checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
  4202. dependencies = [
  4203. "bitflags",
  4204. "errno",
  4205. "io-lifetimes",
  4206. "libc",
  4207. "linux-raw-sys",
  4208. "windows-sys 0.48.0",
  4209. ]
  4210. [[package]]
  4211. name = "rustls"
  4212. version = "0.20.8"
  4213. source = "registry+https://github.com/rust-lang/crates.io-index"
  4214. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  4215. dependencies = [
  4216. "log",
  4217. "ring",
  4218. "sct",
  4219. "webpki",
  4220. ]
  4221. [[package]]
  4222. name = "rustls-native-certs"
  4223. version = "0.6.2"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
  4226. dependencies = [
  4227. "openssl-probe",
  4228. "rustls-pemfile 1.0.2",
  4229. "schannel",
  4230. "security-framework",
  4231. ]
  4232. [[package]]
  4233. name = "rustls-pemfile"
  4234. version = "0.2.1"
  4235. source = "registry+https://github.com/rust-lang/crates.io-index"
  4236. checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
  4237. dependencies = [
  4238. "base64 0.13.1",
  4239. ]
  4240. [[package]]
  4241. name = "rustls-pemfile"
  4242. version = "1.0.2"
  4243. source = "registry+https://github.com/rust-lang/crates.io-index"
  4244. checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
  4245. dependencies = [
  4246. "base64 0.21.0",
  4247. ]
  4248. [[package]]
  4249. name = "rustversion"
  4250. version = "1.0.12"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
  4253. [[package]]
  4254. name = "rw-stream-sink"
  4255. version = "0.2.1"
  4256. source = "registry+https://github.com/rust-lang/crates.io-index"
  4257. checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"
  4258. dependencies = [
  4259. "futures",
  4260. "pin-project 0.4.30",
  4261. "static_assertions",
  4262. ]
  4263. [[package]]
  4264. name = "ryu"
  4265. version = "1.0.13"
  4266. source = "registry+https://github.com/rust-lang/crates.io-index"
  4267. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  4268. [[package]]
  4269. name = "salsa20"
  4270. version = "0.10.2"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  4273. dependencies = [
  4274. "cipher 0.4.4",
  4275. ]
  4276. [[package]]
  4277. name = "same-file"
  4278. version = "1.0.6"
  4279. source = "registry+https://github.com/rust-lang/crates.io-index"
  4280. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  4281. dependencies = [
  4282. "winapi-util",
  4283. ]
  4284. [[package]]
  4285. name = "schannel"
  4286. version = "0.1.21"
  4287. source = "registry+https://github.com/rust-lang/crates.io-index"
  4288. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  4289. dependencies = [
  4290. "windows-sys 0.42.0",
  4291. ]
  4292. [[package]]
  4293. name = "scheduled-thread-pool"
  4294. version = "0.2.7"
  4295. source = "registry+https://github.com/rust-lang/crates.io-index"
  4296. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  4297. dependencies = [
  4298. "parking_lot 0.12.1",
  4299. ]
  4300. [[package]]
  4301. name = "schemars"
  4302. version = "0.8.12"
  4303. source = "registry+https://github.com/rust-lang/crates.io-index"
  4304. checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f"
  4305. dependencies = [
  4306. "dyn-clone",
  4307. "schemars_derive",
  4308. "serde",
  4309. "serde_json",
  4310. ]
  4311. [[package]]
  4312. name = "schemars_derive"
  4313. version = "0.8.12"
  4314. source = "registry+https://github.com/rust-lang/crates.io-index"
  4315. checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c"
  4316. dependencies = [
  4317. "proc-macro2 1.0.56",
  4318. "quote 1.0.27",
  4319. "serde_derive_internals",
  4320. "syn 1.0.109",
  4321. ]
  4322. [[package]]
  4323. name = "scopeguard"
  4324. version = "1.1.0"
  4325. source = "registry+https://github.com/rust-lang/crates.io-index"
  4326. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  4327. [[package]]
  4328. name = "sct"
  4329. version = "0.7.0"
  4330. source = "registry+https://github.com/rust-lang/crates.io-index"
  4331. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  4332. dependencies = [
  4333. "ring",
  4334. "untrusted",
  4335. ]
  4336. [[package]]
  4337. name = "secp256k1"
  4338. version = "0.26.0"
  4339. source = "registry+https://github.com/rust-lang/crates.io-index"
  4340. checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894"
  4341. dependencies = [
  4342. "rand 0.8.5",
  4343. "secp256k1-sys",
  4344. "serde",
  4345. ]
  4346. [[package]]
  4347. name = "secp256k1-sys"
  4348. version = "0.8.1"
  4349. source = "registry+https://github.com/rust-lang/crates.io-index"
  4350. checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
  4351. dependencies = [
  4352. "cc",
  4353. ]
  4354. [[package]]
  4355. name = "security-framework"
  4356. version = "2.8.2"
  4357. source = "registry+https://github.com/rust-lang/crates.io-index"
  4358. checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
  4359. dependencies = [
  4360. "bitflags",
  4361. "core-foundation",
  4362. "core-foundation-sys",
  4363. "libc",
  4364. "security-framework-sys",
  4365. ]
  4366. [[package]]
  4367. name = "security-framework-sys"
  4368. version = "2.8.0"
  4369. source = "registry+https://github.com/rust-lang/crates.io-index"
  4370. checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
  4371. dependencies = [
  4372. "core-foundation-sys",
  4373. "libc",
  4374. ]
  4375. [[package]]
  4376. name = "semver"
  4377. version = "0.11.0"
  4378. source = "registry+https://github.com/rust-lang/crates.io-index"
  4379. checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
  4380. dependencies = [
  4381. "semver-parser",
  4382. ]
  4383. [[package]]
  4384. name = "semver"
  4385. version = "1.0.17"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
  4388. dependencies = [
  4389. "serde",
  4390. ]
  4391. [[package]]
  4392. name = "semver-parser"
  4393. version = "0.10.2"
  4394. source = "registry+https://github.com/rust-lang/crates.io-index"
  4395. checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
  4396. dependencies = [
  4397. "pest",
  4398. ]
  4399. [[package]]
  4400. name = "serde"
  4401. version = "1.0.163"
  4402. source = "registry+https://github.com/rust-lang/crates.io-index"
  4403. checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
  4404. dependencies = [
  4405. "serde_derive",
  4406. ]
  4407. [[package]]
  4408. name = "serde_arrays"
  4409. version = "0.1.0"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. checksum = "38636132857f68ec3d5f3eb121166d2af33cb55174c4d5ff645db6165cbef0fd"
  4412. dependencies = [
  4413. "serde",
  4414. ]
  4415. [[package]]
  4416. name = "serde_bytes"
  4417. version = "0.11.9"
  4418. source = "registry+https://github.com/rust-lang/crates.io-index"
  4419. checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294"
  4420. dependencies = [
  4421. "serde",
  4422. ]
  4423. [[package]]
  4424. name = "serde_cbor"
  4425. version = "0.11.2"
  4426. source = "registry+https://github.com/rust-lang/crates.io-index"
  4427. checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
  4428. dependencies = [
  4429. "half",
  4430. "serde",
  4431. ]
  4432. [[package]]
  4433. name = "serde_derive"
  4434. version = "1.0.163"
  4435. source = "registry+https://github.com/rust-lang/crates.io-index"
  4436. checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
  4437. dependencies = [
  4438. "proc-macro2 1.0.56",
  4439. "quote 1.0.27",
  4440. "syn 2.0.15",
  4441. ]
  4442. [[package]]
  4443. name = "serde_derive_internals"
  4444. version = "0.26.0"
  4445. source = "registry+https://github.com/rust-lang/crates.io-index"
  4446. checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
  4447. dependencies = [
  4448. "proc-macro2 1.0.56",
  4449. "quote 1.0.27",
  4450. "syn 1.0.109",
  4451. ]
  4452. [[package]]
  4453. name = "serde_json"
  4454. version = "1.0.96"
  4455. source = "registry+https://github.com/rust-lang/crates.io-index"
  4456. checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
  4457. dependencies = [
  4458. "itoa",
  4459. "ryu",
  4460. "serde",
  4461. ]
  4462. [[package]]
  4463. name = "serde_path_to_error"
  4464. version = "0.1.11"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0"
  4467. dependencies = [
  4468. "serde",
  4469. ]
  4470. [[package]]
  4471. name = "serde_qs"
  4472. version = "0.12.0"
  4473. source = "registry+https://github.com/rust-lang/crates.io-index"
  4474. checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
  4475. dependencies = [
  4476. "axum",
  4477. "futures",
  4478. "percent-encoding",
  4479. "serde",
  4480. "thiserror",
  4481. ]
  4482. [[package]]
  4483. name = "serde_urlencoded"
  4484. version = "0.7.1"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  4487. dependencies = [
  4488. "form_urlencoded",
  4489. "itoa",
  4490. "ryu",
  4491. "serde",
  4492. ]
  4493. [[package]]
  4494. name = "serde_wormhole"
  4495. version = "0.1.0"
  4496. source = "git+https://github.com/wormhole-foundation/wormhole?tag=v2.17.1#3e423a75180f9da69263279e9ffce47b1858ae78"
  4497. dependencies = [
  4498. "base64 0.13.1",
  4499. "itoa",
  4500. "serde",
  4501. "serde_bytes",
  4502. "thiserror",
  4503. ]
  4504. [[package]]
  4505. name = "serde_yaml"
  4506. version = "0.8.26"
  4507. source = "registry+https://github.com/rust-lang/crates.io-index"
  4508. checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
  4509. dependencies = [
  4510. "indexmap",
  4511. "ryu",
  4512. "serde",
  4513. "yaml-rust",
  4514. ]
  4515. [[package]]
  4516. name = "sha-1"
  4517. version = "0.9.8"
  4518. source = "registry+https://github.com/rust-lang/crates.io-index"
  4519. checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
  4520. dependencies = [
  4521. "block-buffer 0.9.0",
  4522. "cfg-if",
  4523. "cpufeatures",
  4524. "digest 0.9.0",
  4525. "opaque-debug",
  4526. ]
  4527. [[package]]
  4528. name = "sha-1"
  4529. version = "0.10.1"
  4530. source = "registry+https://github.com/rust-lang/crates.io-index"
  4531. checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
  4532. dependencies = [
  4533. "cfg-if",
  4534. "cpufeatures",
  4535. "digest 0.10.6",
  4536. ]
  4537. [[package]]
  4538. name = "sha1"
  4539. version = "0.10.5"
  4540. source = "registry+https://github.com/rust-lang/crates.io-index"
  4541. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  4542. dependencies = [
  4543. "cfg-if",
  4544. "cpufeatures",
  4545. "digest 0.10.6",
  4546. ]
  4547. [[package]]
  4548. name = "sha2"
  4549. version = "0.9.9"
  4550. source = "registry+https://github.com/rust-lang/crates.io-index"
  4551. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  4552. dependencies = [
  4553. "block-buffer 0.9.0",
  4554. "cfg-if",
  4555. "cpufeatures",
  4556. "digest 0.9.0",
  4557. "opaque-debug",
  4558. ]
  4559. [[package]]
  4560. name = "sha2"
  4561. version = "0.10.6"
  4562. source = "registry+https://github.com/rust-lang/crates.io-index"
  4563. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  4564. dependencies = [
  4565. "cfg-if",
  4566. "cpufeatures",
  4567. "digest 0.10.6",
  4568. ]
  4569. [[package]]
  4570. name = "sha256"
  4571. version = "1.1.3"
  4572. source = "registry+https://github.com/rust-lang/crates.io-index"
  4573. checksum = "5f9f8b5de2bac3a4ae28e9b611072a8e326d9b26c8189c0972d4c321fa684f1f"
  4574. dependencies = [
  4575. "hex",
  4576. "sha2 0.10.6",
  4577. ]
  4578. [[package]]
  4579. name = "sha3"
  4580. version = "0.9.1"
  4581. source = "registry+https://github.com/rust-lang/crates.io-index"
  4582. checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
  4583. dependencies = [
  4584. "block-buffer 0.9.0",
  4585. "digest 0.9.0",
  4586. "keccak",
  4587. "opaque-debug",
  4588. ]
  4589. [[package]]
  4590. name = "sha3"
  4591. version = "0.10.8"
  4592. source = "registry+https://github.com/rust-lang/crates.io-index"
  4593. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  4594. dependencies = [
  4595. "digest 0.10.6",
  4596. "keccak",
  4597. ]
  4598. [[package]]
  4599. name = "shell-words"
  4600. version = "1.1.0"
  4601. source = "registry+https://github.com/rust-lang/crates.io-index"
  4602. checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
  4603. [[package]]
  4604. name = "shlex"
  4605. version = "1.1.0"
  4606. source = "registry+https://github.com/rust-lang/crates.io-index"
  4607. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  4608. [[package]]
  4609. name = "signal-hook-registry"
  4610. version = "1.4.1"
  4611. source = "registry+https://github.com/rust-lang/crates.io-index"
  4612. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  4613. dependencies = [
  4614. "libc",
  4615. ]
  4616. [[package]]
  4617. name = "signature"
  4618. version = "1.6.4"
  4619. source = "registry+https://github.com/rust-lang/crates.io-index"
  4620. checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
  4621. [[package]]
  4622. name = "sized-chunks"
  4623. version = "0.6.5"
  4624. source = "registry+https://github.com/rust-lang/crates.io-index"
  4625. checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
  4626. dependencies = [
  4627. "bitmaps",
  4628. "typenum",
  4629. ]
  4630. [[package]]
  4631. name = "skeptic"
  4632. version = "0.13.7"
  4633. source = "registry+https://github.com/rust-lang/crates.io-index"
  4634. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  4635. dependencies = [
  4636. "bytecount",
  4637. "cargo_metadata",
  4638. "error-chain",
  4639. "glob",
  4640. "pulldown-cmark",
  4641. "tempfile",
  4642. "walkdir",
  4643. ]
  4644. [[package]]
  4645. name = "slab"
  4646. version = "0.4.8"
  4647. source = "registry+https://github.com/rust-lang/crates.io-index"
  4648. checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
  4649. dependencies = [
  4650. "autocfg",
  4651. ]
  4652. [[package]]
  4653. name = "slow_primes"
  4654. version = "0.1.14"
  4655. source = "registry+https://github.com/rust-lang/crates.io-index"
  4656. checksum = "58267dd2fbaa6dceecba9e3e106d2d90a2b02497c0e8b01b8759beccf5113938"
  4657. dependencies = [
  4658. "num",
  4659. ]
  4660. [[package]]
  4661. name = "smallvec"
  4662. version = "1.10.0"
  4663. source = "registry+https://github.com/rust-lang/crates.io-index"
  4664. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  4665. [[package]]
  4666. name = "snow"
  4667. version = "0.8.0"
  4668. source = "registry+https://github.com/rust-lang/crates.io-index"
  4669. checksum = "6142f7c25e94f6fd25a32c3348ec230df9109b463f59c8c7acc4bd34936babb7"
  4670. dependencies = [
  4671. "aes-gcm",
  4672. "blake2",
  4673. "chacha20poly1305",
  4674. "rand 0.8.5",
  4675. "rand_core 0.6.4",
  4676. "ring",
  4677. "rustc_version 0.3.3",
  4678. "sha2 0.9.9",
  4679. "subtle",
  4680. "x25519-dalek",
  4681. ]
  4682. [[package]]
  4683. name = "socket2"
  4684. version = "0.3.19"
  4685. source = "registry+https://github.com/rust-lang/crates.io-index"
  4686. checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
  4687. dependencies = [
  4688. "cfg-if",
  4689. "libc",
  4690. "winapi",
  4691. ]
  4692. [[package]]
  4693. name = "socket2"
  4694. version = "0.4.9"
  4695. source = "registry+https://github.com/rust-lang/crates.io-index"
  4696. checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
  4697. dependencies = [
  4698. "libc",
  4699. "winapi",
  4700. ]
  4701. [[package]]
  4702. name = "soketto"
  4703. version = "0.7.1"
  4704. source = "registry+https://github.com/rust-lang/crates.io-index"
  4705. checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2"
  4706. dependencies = [
  4707. "base64 0.13.1",
  4708. "bytes",
  4709. "flate2",
  4710. "futures",
  4711. "httparse",
  4712. "log",
  4713. "rand 0.8.5",
  4714. "sha-1 0.9.8",
  4715. ]
  4716. [[package]]
  4717. name = "solana-account-decoder"
  4718. version = "1.13.3"
  4719. source = "registry+https://github.com/rust-lang/crates.io-index"
  4720. checksum = "42bf996a6f6063f8dc883b27c1b166de10461b3653d3213165174682855b7f1c"
  4721. dependencies = [
  4722. "Inflector",
  4723. "base64 0.13.1",
  4724. "bincode",
  4725. "bs58",
  4726. "bv",
  4727. "lazy_static",
  4728. "serde",
  4729. "serde_derive",
  4730. "serde_json",
  4731. "solana-config-program",
  4732. "solana-sdk",
  4733. "solana-vote-program",
  4734. "spl-token",
  4735. "spl-token-2022",
  4736. "thiserror",
  4737. "zstd",
  4738. ]
  4739. [[package]]
  4740. name = "solana-clap-utils"
  4741. version = "1.13.3"
  4742. source = "registry+https://github.com/rust-lang/crates.io-index"
  4743. checksum = "76b0c923e89c64ed398964ec2a3ddecacb5a712664d19812ebbf65eefd599145"
  4744. dependencies = [
  4745. "chrono",
  4746. "clap 2.34.0",
  4747. "rpassword",
  4748. "solana-perf",
  4749. "solana-remote-wallet",
  4750. "solana-sdk",
  4751. "thiserror",
  4752. "tiny-bip39",
  4753. "uriparse",
  4754. "url",
  4755. ]
  4756. [[package]]
  4757. name = "solana-cli-config"
  4758. version = "1.13.3"
  4759. source = "registry+https://github.com/rust-lang/crates.io-index"
  4760. checksum = "8a11154a239590693f0d6b0b4d69193dc98ca21b3e8cc4d1d8d9b326311f520a"
  4761. dependencies = [
  4762. "dirs-next",
  4763. "lazy_static",
  4764. "serde",
  4765. "serde_derive",
  4766. "serde_yaml",
  4767. "solana-clap-utils",
  4768. "solana-sdk",
  4769. "url",
  4770. ]
  4771. [[package]]
  4772. name = "solana-client"
  4773. version = "1.13.3"
  4774. source = "registry+https://github.com/rust-lang/crates.io-index"
  4775. checksum = "0aba6eeb10249c986b335dd1c684f7353c3e48eeec3259550fcd3b79685013f2"
  4776. dependencies = [
  4777. "async-mutex",
  4778. "async-trait",
  4779. "base64 0.13.1",
  4780. "bincode",
  4781. "bs58",
  4782. "bytes",
  4783. "clap 2.34.0",
  4784. "crossbeam-channel",
  4785. "enum_dispatch",
  4786. "futures",
  4787. "futures-util",
  4788. "indexmap",
  4789. "indicatif",
  4790. "itertools",
  4791. "jsonrpc-core",
  4792. "lazy_static",
  4793. "log",
  4794. "lru",
  4795. "quinn",
  4796. "quinn-proto",
  4797. "rand 0.7.3",
  4798. "rand_chacha 0.2.2",
  4799. "rayon",
  4800. "reqwest",
  4801. "rustls",
  4802. "semver 1.0.17",
  4803. "serde",
  4804. "serde_derive",
  4805. "serde_json",
  4806. "solana-account-decoder",
  4807. "solana-clap-utils",
  4808. "solana-faucet",
  4809. "solana-measure",
  4810. "solana-metrics",
  4811. "solana-net-utils",
  4812. "solana-sdk",
  4813. "solana-streamer",
  4814. "solana-transaction-status",
  4815. "solana-version",
  4816. "solana-vote-program",
  4817. "spl-token-2022",
  4818. "thiserror",
  4819. "tokio",
  4820. "tokio-stream",
  4821. "tokio-tungstenite 0.17.2",
  4822. "tungstenite 0.17.3",
  4823. "url",
  4824. ]
  4825. [[package]]
  4826. name = "solana-config-program"
  4827. version = "1.13.3"
  4828. source = "registry+https://github.com/rust-lang/crates.io-index"
  4829. checksum = "20f530aab2e7933539698196e9c2c41521355cdd72ee270e9ec4b3154556dc9e"
  4830. dependencies = [
  4831. "bincode",
  4832. "chrono",
  4833. "serde",
  4834. "serde_derive",
  4835. "solana-program-runtime",
  4836. "solana-sdk",
  4837. ]
  4838. [[package]]
  4839. name = "solana-faucet"
  4840. version = "1.13.3"
  4841. source = "registry+https://github.com/rust-lang/crates.io-index"
  4842. checksum = "c9aae7a9b16c3e81b6532c3a5d886c58ee0cb518ee6b417f28ea0cfee972ac60"
  4843. dependencies = [
  4844. "bincode",
  4845. "byteorder",
  4846. "clap 2.34.0",
  4847. "crossbeam-channel",
  4848. "log",
  4849. "serde",
  4850. "serde_derive",
  4851. "solana-clap-utils",
  4852. "solana-cli-config",
  4853. "solana-logger",
  4854. "solana-metrics",
  4855. "solana-sdk",
  4856. "solana-version",
  4857. "spl-memo",
  4858. "thiserror",
  4859. "tokio",
  4860. ]
  4861. [[package]]
  4862. name = "solana-frozen-abi"
  4863. version = "1.13.3"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "c80650015acc4634f2bbb9a6c1a76c740a6f12854539103f3c13345b1e285b86"
  4866. dependencies = [
  4867. "bs58",
  4868. "bv",
  4869. "generic-array",
  4870. "im",
  4871. "lazy_static",
  4872. "log",
  4873. "memmap2",
  4874. "rustc_version 0.4.0",
  4875. "serde",
  4876. "serde_bytes",
  4877. "serde_derive",
  4878. "sha2 0.10.6",
  4879. "solana-frozen-abi-macro",
  4880. "thiserror",
  4881. ]
  4882. [[package]]
  4883. name = "solana-frozen-abi-macro"
  4884. version = "1.13.3"
  4885. source = "registry+https://github.com/rust-lang/crates.io-index"
  4886. checksum = "439f7e3b931ff5ec531164f01c3eb8897c0ae72f7d537294e67b81029fa8e89f"
  4887. dependencies = [
  4888. "proc-macro2 1.0.56",
  4889. "quote 1.0.27",
  4890. "rustc_version 0.4.0",
  4891. "syn 1.0.109",
  4892. ]
  4893. [[package]]
  4894. name = "solana-logger"
  4895. version = "1.13.3"
  4896. source = "registry+https://github.com/rust-lang/crates.io-index"
  4897. checksum = "27888ef86f0e2ea9b55be9e94f08e785c4d810b89d9d6597c9f590fdf605cd7a"
  4898. dependencies = [
  4899. "env_logger 0.9.3",
  4900. "lazy_static",
  4901. "log",
  4902. ]
  4903. [[package]]
  4904. name = "solana-measure"
  4905. version = "1.13.3"
  4906. source = "registry+https://github.com/rust-lang/crates.io-index"
  4907. checksum = "66772934ed60505434586cf6e1b7133c266a36501c201aca1d26fff3b54e84ef"
  4908. dependencies = [
  4909. "log",
  4910. "solana-sdk",
  4911. ]
  4912. [[package]]
  4913. name = "solana-metrics"
  4914. version = "1.13.3"
  4915. source = "registry+https://github.com/rust-lang/crates.io-index"
  4916. checksum = "ef37aa2167fffa33c6c97f9aa804ba155b16cc6ae4aac89bf1a5aca00939bce5"
  4917. dependencies = [
  4918. "crossbeam-channel",
  4919. "gethostname",
  4920. "lazy_static",
  4921. "log",
  4922. "reqwest",
  4923. "solana-sdk",
  4924. ]
  4925. [[package]]
  4926. name = "solana-net-utils"
  4927. version = "1.13.3"
  4928. source = "registry+https://github.com/rust-lang/crates.io-index"
  4929. checksum = "3093c7701cc7d3603a32aec204e5a2e4935f71b37eabd7302d5b67bdb4ea0a02"
  4930. dependencies = [
  4931. "bincode",
  4932. "clap 2.34.0",
  4933. "crossbeam-channel",
  4934. "log",
  4935. "nix 0.23.2",
  4936. "rand 0.7.3",
  4937. "serde",
  4938. "serde_derive",
  4939. "socket2 0.4.9",
  4940. "solana-logger",
  4941. "solana-sdk",
  4942. "solana-version",
  4943. "tokio",
  4944. "url",
  4945. ]
  4946. [[package]]
  4947. name = "solana-perf"
  4948. version = "1.13.3"
  4949. source = "registry+https://github.com/rust-lang/crates.io-index"
  4950. checksum = "2d2f5821cb3d6b17319663d5344639a8ea5eba049fcf144b839ecb4673ad2d62"
  4951. dependencies = [
  4952. "ahash",
  4953. "bincode",
  4954. "bv",
  4955. "caps",
  4956. "curve25519-dalek",
  4957. "dlopen",
  4958. "dlopen_derive",
  4959. "fnv",
  4960. "lazy_static",
  4961. "libc",
  4962. "log",
  4963. "nix 0.23.2",
  4964. "rand 0.7.3",
  4965. "rayon",
  4966. "serde",
  4967. "solana-metrics",
  4968. "solana-rayon-threadlimit",
  4969. "solana-sdk",
  4970. "solana-vote-program",
  4971. ]
  4972. [[package]]
  4973. name = "solana-program"
  4974. version = "1.13.3"
  4975. source = "registry+https://github.com/rust-lang/crates.io-index"
  4976. checksum = "792814be1ae8ea58a43ae3cd51578517ec0d9c42c6241c9c0dc71a83d7e0e314"
  4977. dependencies = [
  4978. "base64 0.13.1",
  4979. "bincode",
  4980. "bitflags",
  4981. "blake3",
  4982. "borsh",
  4983. "borsh-derive",
  4984. "bs58",
  4985. "bv",
  4986. "bytemuck",
  4987. "console_error_panic_hook",
  4988. "console_log",
  4989. "curve25519-dalek",
  4990. "getrandom 0.1.16",
  4991. "itertools",
  4992. "js-sys",
  4993. "lazy_static",
  4994. "libsecp256k1 0.6.0",
  4995. "log",
  4996. "num-derive",
  4997. "num-traits",
  4998. "parking_lot 0.12.1",
  4999. "rand 0.7.3",
  5000. "rustc_version 0.4.0",
  5001. "rustversion",
  5002. "serde",
  5003. "serde_bytes",
  5004. "serde_derive",
  5005. "sha2 0.10.6",
  5006. "sha3 0.10.8",
  5007. "solana-frozen-abi",
  5008. "solana-frozen-abi-macro",
  5009. "solana-sdk-macro",
  5010. "thiserror",
  5011. "wasm-bindgen",
  5012. ]
  5013. [[package]]
  5014. name = "solana-program-runtime"
  5015. version = "1.13.3"
  5016. source = "registry+https://github.com/rust-lang/crates.io-index"
  5017. checksum = "ef724d482da6354e6f2519ae17847ad383ba1e55b525899503ab13e2c97bd740"
  5018. dependencies = [
  5019. "base64 0.13.1",
  5020. "bincode",
  5021. "enum-iterator",
  5022. "itertools",
  5023. "libc",
  5024. "libloading",
  5025. "log",
  5026. "num-derive",
  5027. "num-traits",
  5028. "rustc_version 0.4.0",
  5029. "serde",
  5030. "solana-frozen-abi",
  5031. "solana-frozen-abi-macro",
  5032. "solana-measure",
  5033. "solana-sdk",
  5034. "thiserror",
  5035. ]
  5036. [[package]]
  5037. name = "solana-rayon-threadlimit"
  5038. version = "1.13.3"
  5039. source = "registry+https://github.com/rust-lang/crates.io-index"
  5040. checksum = "41b5e1e75dbbde7ac578bb8e712de8d0408e299a220b50c3316b08654f5fb628"
  5041. dependencies = [
  5042. "lazy_static",
  5043. "num_cpus",
  5044. ]
  5045. [[package]]
  5046. name = "solana-remote-wallet"
  5047. version = "1.13.3"
  5048. source = "registry+https://github.com/rust-lang/crates.io-index"
  5049. checksum = "11989d097d9d47ee433a85714ff8a9ca940847b441dffdc78f3d0e17147da208"
  5050. dependencies = [
  5051. "console",
  5052. "dialoguer",
  5053. "log",
  5054. "num-derive",
  5055. "num-traits",
  5056. "parking_lot 0.12.1",
  5057. "qstring",
  5058. "semver 1.0.17",
  5059. "solana-sdk",
  5060. "thiserror",
  5061. "uriparse",
  5062. ]
  5063. [[package]]
  5064. name = "solana-sdk"
  5065. version = "1.13.3"
  5066. source = "registry+https://github.com/rust-lang/crates.io-index"
  5067. checksum = "9e54361f5faf0696f6f41a8f57e49ec9d99e80c333e2f5466f8501bc67313a0f"
  5068. dependencies = [
  5069. "assert_matches",
  5070. "base64 0.13.1",
  5071. "bincode",
  5072. "bitflags",
  5073. "borsh",
  5074. "bs58",
  5075. "bytemuck",
  5076. "byteorder",
  5077. "chrono",
  5078. "derivation-path",
  5079. "digest 0.10.6",
  5080. "ed25519-dalek",
  5081. "ed25519-dalek-bip32",
  5082. "generic-array",
  5083. "hmac 0.12.1",
  5084. "itertools",
  5085. "js-sys",
  5086. "lazy_static",
  5087. "libsecp256k1 0.6.0",
  5088. "log",
  5089. "memmap2",
  5090. "num-derive",
  5091. "num-traits",
  5092. "pbkdf2 0.10.1",
  5093. "qstring",
  5094. "rand 0.7.3",
  5095. "rand_chacha 0.2.2",
  5096. "rustc_version 0.4.0",
  5097. "rustversion",
  5098. "serde",
  5099. "serde_bytes",
  5100. "serde_derive",
  5101. "serde_json",
  5102. "sha2 0.10.6",
  5103. "sha3 0.10.8",
  5104. "solana-frozen-abi",
  5105. "solana-frozen-abi-macro",
  5106. "solana-logger",
  5107. "solana-program",
  5108. "solana-sdk-macro",
  5109. "thiserror",
  5110. "uriparse",
  5111. "wasm-bindgen",
  5112. ]
  5113. [[package]]
  5114. name = "solana-sdk-macro"
  5115. version = "1.13.3"
  5116. source = "registry+https://github.com/rust-lang/crates.io-index"
  5117. checksum = "bd9ca4f24a272f09377a0b594e6cfa809247c8f8e6ab188928fa0072b6803543"
  5118. dependencies = [
  5119. "bs58",
  5120. "proc-macro2 1.0.56",
  5121. "quote 1.0.27",
  5122. "rustversion",
  5123. "syn 1.0.109",
  5124. ]
  5125. [[package]]
  5126. name = "solana-streamer"
  5127. version = "1.13.3"
  5128. source = "registry+https://github.com/rust-lang/crates.io-index"
  5129. checksum = "9fdc52c3945a4d4fd9012e6c0c3d1a95f00ec51555e09ce6fef4806d7259c9ba"
  5130. dependencies = [
  5131. "crossbeam-channel",
  5132. "futures-util",
  5133. "histogram",
  5134. "indexmap",
  5135. "itertools",
  5136. "libc",
  5137. "log",
  5138. "nix 0.23.2",
  5139. "pem",
  5140. "percentage",
  5141. "pkcs8",
  5142. "quinn",
  5143. "rand 0.7.3",
  5144. "rcgen",
  5145. "rustls",
  5146. "solana-metrics",
  5147. "solana-perf",
  5148. "solana-sdk",
  5149. "thiserror",
  5150. "tokio",
  5151. "x509-parser",
  5152. ]
  5153. [[package]]
  5154. name = "solana-transaction-status"
  5155. version = "1.13.3"
  5156. source = "registry+https://github.com/rust-lang/crates.io-index"
  5157. checksum = "9287c2199bd71b577641f00d1e4023e4908f59050a83fb14a1fd19327537d289"
  5158. dependencies = [
  5159. "Inflector",
  5160. "base64 0.13.1",
  5161. "bincode",
  5162. "borsh",
  5163. "bs58",
  5164. "lazy_static",
  5165. "log",
  5166. "serde",
  5167. "serde_derive",
  5168. "serde_json",
  5169. "solana-account-decoder",
  5170. "solana-measure",
  5171. "solana-metrics",
  5172. "solana-sdk",
  5173. "solana-vote-program",
  5174. "spl-associated-token-account",
  5175. "spl-memo",
  5176. "spl-token",
  5177. "spl-token-2022",
  5178. "thiserror",
  5179. ]
  5180. [[package]]
  5181. name = "solana-version"
  5182. version = "1.13.3"
  5183. source = "registry+https://github.com/rust-lang/crates.io-index"
  5184. checksum = "b0312c45b6b94e220c5cc9ec1de4fa0fedf21c33ccb17d932ff6191ac237f405"
  5185. dependencies = [
  5186. "log",
  5187. "rustc_version 0.4.0",
  5188. "semver 1.0.17",
  5189. "serde",
  5190. "serde_derive",
  5191. "solana-frozen-abi",
  5192. "solana-frozen-abi-macro",
  5193. "solana-sdk",
  5194. ]
  5195. [[package]]
  5196. name = "solana-vote-program"
  5197. version = "1.13.3"
  5198. source = "registry+https://github.com/rust-lang/crates.io-index"
  5199. checksum = "f93db350f670ad166107e4a241a1e9f1deff65fc17402900b443275e2fd8834c"
  5200. dependencies = [
  5201. "bincode",
  5202. "log",
  5203. "num-derive",
  5204. "num-traits",
  5205. "rustc_version 0.4.0",
  5206. "serde",
  5207. "serde_derive",
  5208. "solana-frozen-abi",
  5209. "solana-frozen-abi-macro",
  5210. "solana-metrics",
  5211. "solana-program-runtime",
  5212. "solana-sdk",
  5213. "thiserror",
  5214. ]
  5215. [[package]]
  5216. name = "solana-zk-token-sdk"
  5217. version = "1.13.3"
  5218. source = "registry+https://github.com/rust-lang/crates.io-index"
  5219. checksum = "1d8a148ec781994129fea0ede0628131a8f78bc1aaa28fd7d14d72aacdd065c1"
  5220. dependencies = [
  5221. "aes-gcm-siv",
  5222. "arrayref",
  5223. "base64 0.13.1",
  5224. "bincode",
  5225. "bytemuck",
  5226. "byteorder",
  5227. "cipher 0.4.4",
  5228. "curve25519-dalek",
  5229. "getrandom 0.1.16",
  5230. "lazy_static",
  5231. "merlin",
  5232. "num-derive",
  5233. "num-traits",
  5234. "rand 0.7.3",
  5235. "serde",
  5236. "serde_json",
  5237. "sha3 0.9.1",
  5238. "solana-program",
  5239. "solana-sdk",
  5240. "subtle",
  5241. "thiserror",
  5242. "zeroize",
  5243. ]
  5244. [[package]]
  5245. name = "spin"
  5246. version = "0.5.2"
  5247. source = "registry+https://github.com/rust-lang/crates.io-index"
  5248. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5249. [[package]]
  5250. name = "spki"
  5251. version = "0.5.4"
  5252. source = "registry+https://github.com/rust-lang/crates.io-index"
  5253. checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27"
  5254. dependencies = [
  5255. "base64ct",
  5256. "der 0.5.1",
  5257. ]
  5258. [[package]]
  5259. name = "spl-associated-token-account"
  5260. version = "1.1.1"
  5261. source = "registry+https://github.com/rust-lang/crates.io-index"
  5262. checksum = "16a33ecc83137583902c3e13c02f34151c8b2f2b74120f9c2b3ff841953e083d"
  5263. dependencies = [
  5264. "assert_matches",
  5265. "borsh",
  5266. "num-derive",
  5267. "num-traits",
  5268. "solana-program",
  5269. "spl-token",
  5270. "spl-token-2022",
  5271. "thiserror",
  5272. ]
  5273. [[package]]
  5274. name = "spl-memo"
  5275. version = "3.0.1"
  5276. source = "registry+https://github.com/rust-lang/crates.io-index"
  5277. checksum = "bd0dc6f70db6bacea7ff25870b016a65ba1d1b6013536f08e4fd79a8f9005325"
  5278. dependencies = [
  5279. "solana-program",
  5280. ]
  5281. [[package]]
  5282. name = "spl-token"
  5283. version = "3.5.0"
  5284. source = "registry+https://github.com/rust-lang/crates.io-index"
  5285. checksum = "8e85e168a785e82564160dcb87b2a8e04cee9bfd1f4d488c729d53d6a4bd300d"
  5286. dependencies = [
  5287. "arrayref",
  5288. "bytemuck",
  5289. "num-derive",
  5290. "num-traits",
  5291. "num_enum",
  5292. "solana-program",
  5293. "thiserror",
  5294. ]
  5295. [[package]]
  5296. name = "spl-token-2022"
  5297. version = "0.4.2"
  5298. source = "registry+https://github.com/rust-lang/crates.io-index"
  5299. checksum = "f0a97cbf60b91b610c846ccf8eecca96d92a24a19ffbf9fe06cd0c84e76ec45e"
  5300. dependencies = [
  5301. "arrayref",
  5302. "bytemuck",
  5303. "num-derive",
  5304. "num-traits",
  5305. "num_enum",
  5306. "solana-program",
  5307. "solana-zk-token-sdk",
  5308. "spl-memo",
  5309. "spl-token",
  5310. "thiserror",
  5311. ]
  5312. [[package]]
  5313. name = "stable_deref_trait"
  5314. version = "1.2.0"
  5315. source = "registry+https://github.com/rust-lang/crates.io-index"
  5316. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5317. [[package]]
  5318. name = "static_assertions"
  5319. version = "1.1.0"
  5320. source = "registry+https://github.com/rust-lang/crates.io-index"
  5321. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5322. [[package]]
  5323. name = "strsim"
  5324. version = "0.8.0"
  5325. source = "registry+https://github.com/rust-lang/crates.io-index"
  5326. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  5327. [[package]]
  5328. name = "strsim"
  5329. version = "0.10.0"
  5330. source = "registry+https://github.com/rust-lang/crates.io-index"
  5331. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  5332. [[package]]
  5333. name = "structopt"
  5334. version = "0.3.26"
  5335. source = "registry+https://github.com/rust-lang/crates.io-index"
  5336. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  5337. dependencies = [
  5338. "clap 2.34.0",
  5339. "lazy_static",
  5340. "structopt-derive",
  5341. ]
  5342. [[package]]
  5343. name = "structopt-derive"
  5344. version = "0.4.18"
  5345. source = "registry+https://github.com/rust-lang/crates.io-index"
  5346. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  5347. dependencies = [
  5348. "heck 0.3.3",
  5349. "proc-macro-error",
  5350. "proc-macro2 1.0.56",
  5351. "quote 1.0.27",
  5352. "syn 1.0.109",
  5353. ]
  5354. [[package]]
  5355. name = "strum"
  5356. version = "0.24.1"
  5357. source = "registry+https://github.com/rust-lang/crates.io-index"
  5358. checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
  5359. dependencies = [
  5360. "strum_macros",
  5361. ]
  5362. [[package]]
  5363. name = "strum_macros"
  5364. version = "0.24.3"
  5365. source = "registry+https://github.com/rust-lang/crates.io-index"
  5366. checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
  5367. dependencies = [
  5368. "heck 0.4.1",
  5369. "proc-macro2 1.0.56",
  5370. "quote 1.0.27",
  5371. "rustversion",
  5372. "syn 1.0.109",
  5373. ]
  5374. [[package]]
  5375. name = "subtle"
  5376. version = "2.4.1"
  5377. source = "registry+https://github.com/rust-lang/crates.io-index"
  5378. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  5379. [[package]]
  5380. name = "syn"
  5381. version = "0.15.44"
  5382. source = "registry+https://github.com/rust-lang/crates.io-index"
  5383. checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
  5384. dependencies = [
  5385. "proc-macro2 0.4.30",
  5386. "quote 0.6.13",
  5387. "unicode-xid 0.1.0",
  5388. ]
  5389. [[package]]
  5390. name = "syn"
  5391. version = "1.0.109"
  5392. source = "registry+https://github.com/rust-lang/crates.io-index"
  5393. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  5394. dependencies = [
  5395. "proc-macro2 1.0.56",
  5396. "quote 1.0.27",
  5397. "unicode-ident",
  5398. ]
  5399. [[package]]
  5400. name = "syn"
  5401. version = "2.0.15"
  5402. source = "registry+https://github.com/rust-lang/crates.io-index"
  5403. checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
  5404. dependencies = [
  5405. "proc-macro2 1.0.56",
  5406. "quote 1.0.27",
  5407. "unicode-ident",
  5408. ]
  5409. [[package]]
  5410. name = "sync_wrapper"
  5411. version = "0.1.2"
  5412. source = "registry+https://github.com/rust-lang/crates.io-index"
  5413. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  5414. [[package]]
  5415. name = "synstructure"
  5416. version = "0.12.6"
  5417. source = "registry+https://github.com/rust-lang/crates.io-index"
  5418. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  5419. dependencies = [
  5420. "proc-macro2 1.0.56",
  5421. "quote 1.0.27",
  5422. "syn 1.0.109",
  5423. "unicode-xid 0.2.4",
  5424. ]
  5425. [[package]]
  5426. name = "system-configuration"
  5427. version = "0.5.0"
  5428. source = "registry+https://github.com/rust-lang/crates.io-index"
  5429. checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd"
  5430. dependencies = [
  5431. "bitflags",
  5432. "core-foundation",
  5433. "system-configuration-sys",
  5434. ]
  5435. [[package]]
  5436. name = "system-configuration-sys"
  5437. version = "0.5.0"
  5438. source = "registry+https://github.com/rust-lang/crates.io-index"
  5439. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  5440. dependencies = [
  5441. "core-foundation-sys",
  5442. "libc",
  5443. ]
  5444. [[package]]
  5445. name = "tagptr"
  5446. version = "0.2.0"
  5447. source = "registry+https://github.com/rust-lang/crates.io-index"
  5448. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  5449. [[package]]
  5450. name = "tap"
  5451. version = "1.0.1"
  5452. source = "registry+https://github.com/rust-lang/crates.io-index"
  5453. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5454. [[package]]
  5455. name = "tempfile"
  5456. version = "3.5.0"
  5457. source = "registry+https://github.com/rust-lang/crates.io-index"
  5458. checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
  5459. dependencies = [
  5460. "cfg-if",
  5461. "fastrand",
  5462. "redox_syscall 0.3.5",
  5463. "rustix",
  5464. "windows-sys 0.45.0",
  5465. ]
  5466. [[package]]
  5467. name = "termcolor"
  5468. version = "1.2.0"
  5469. source = "registry+https://github.com/rust-lang/crates.io-index"
  5470. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  5471. dependencies = [
  5472. "winapi-util",
  5473. ]
  5474. [[package]]
  5475. name = "textwrap"
  5476. version = "0.11.0"
  5477. source = "registry+https://github.com/rust-lang/crates.io-index"
  5478. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  5479. dependencies = [
  5480. "unicode-width",
  5481. ]
  5482. [[package]]
  5483. name = "textwrap"
  5484. version = "0.16.0"
  5485. source = "registry+https://github.com/rust-lang/crates.io-index"
  5486. checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
  5487. [[package]]
  5488. name = "thiserror"
  5489. version = "1.0.40"
  5490. source = "registry+https://github.com/rust-lang/crates.io-index"
  5491. checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
  5492. dependencies = [
  5493. "thiserror-impl",
  5494. ]
  5495. [[package]]
  5496. name = "thiserror-impl"
  5497. version = "1.0.40"
  5498. source = "registry+https://github.com/rust-lang/crates.io-index"
  5499. checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
  5500. dependencies = [
  5501. "proc-macro2 1.0.56",
  5502. "quote 1.0.27",
  5503. "syn 2.0.15",
  5504. ]
  5505. [[package]]
  5506. name = "time"
  5507. version = "0.1.45"
  5508. source = "registry+https://github.com/rust-lang/crates.io-index"
  5509. checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
  5510. dependencies = [
  5511. "libc",
  5512. "wasi 0.10.0+wasi-snapshot-preview1",
  5513. "winapi",
  5514. ]
  5515. [[package]]
  5516. name = "time"
  5517. version = "0.3.21"
  5518. source = "registry+https://github.com/rust-lang/crates.io-index"
  5519. checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc"
  5520. dependencies = [
  5521. "itoa",
  5522. "serde",
  5523. "time-core",
  5524. "time-macros",
  5525. ]
  5526. [[package]]
  5527. name = "time-core"
  5528. version = "0.1.1"
  5529. source = "registry+https://github.com/rust-lang/crates.io-index"
  5530. checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
  5531. [[package]]
  5532. name = "time-macros"
  5533. version = "0.2.9"
  5534. source = "registry+https://github.com/rust-lang/crates.io-index"
  5535. checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
  5536. dependencies = [
  5537. "time-core",
  5538. ]
  5539. [[package]]
  5540. name = "tiny-bip39"
  5541. version = "0.8.2"
  5542. source = "registry+https://github.com/rust-lang/crates.io-index"
  5543. checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d"
  5544. dependencies = [
  5545. "anyhow",
  5546. "hmac 0.8.1",
  5547. "once_cell",
  5548. "pbkdf2 0.4.0",
  5549. "rand 0.7.3",
  5550. "rustc-hash",
  5551. "sha2 0.9.9",
  5552. "thiserror",
  5553. "unicode-normalization",
  5554. "wasm-bindgen",
  5555. "zeroize",
  5556. ]
  5557. [[package]]
  5558. name = "tiny-keccak"
  5559. version = "2.0.2"
  5560. source = "registry+https://github.com/rust-lang/crates.io-index"
  5561. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  5562. dependencies = [
  5563. "crunchy",
  5564. ]
  5565. [[package]]
  5566. name = "tinyvec"
  5567. version = "1.6.0"
  5568. source = "registry+https://github.com/rust-lang/crates.io-index"
  5569. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  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.28.1"
  5581. source = "registry+https://github.com/rust-lang/crates.io-index"
  5582. checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105"
  5583. dependencies = [
  5584. "autocfg",
  5585. "bytes",
  5586. "libc",
  5587. "mio",
  5588. "num_cpus",
  5589. "parking_lot 0.12.1",
  5590. "pin-project-lite 0.2.9",
  5591. "signal-hook-registry",
  5592. "socket2 0.4.9",
  5593. "tokio-macros",
  5594. "windows-sys 0.48.0",
  5595. ]
  5596. [[package]]
  5597. name = "tokio-macros"
  5598. version = "2.1.0"
  5599. source = "registry+https://github.com/rust-lang/crates.io-index"
  5600. checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
  5601. dependencies = [
  5602. "proc-macro2 1.0.56",
  5603. "quote 1.0.27",
  5604. "syn 2.0.15",
  5605. ]
  5606. [[package]]
  5607. name = "tokio-native-tls"
  5608. version = "0.3.1"
  5609. source = "registry+https://github.com/rust-lang/crates.io-index"
  5610. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  5611. dependencies = [
  5612. "native-tls",
  5613. "tokio",
  5614. ]
  5615. [[package]]
  5616. name = "tokio-rustls"
  5617. version = "0.23.4"
  5618. source = "registry+https://github.com/rust-lang/crates.io-index"
  5619. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  5620. dependencies = [
  5621. "rustls",
  5622. "tokio",
  5623. "webpki",
  5624. ]
  5625. [[package]]
  5626. name = "tokio-stream"
  5627. version = "0.1.14"
  5628. source = "registry+https://github.com/rust-lang/crates.io-index"
  5629. checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
  5630. dependencies = [
  5631. "futures-core",
  5632. "pin-project-lite 0.2.9",
  5633. "tokio",
  5634. ]
  5635. [[package]]
  5636. name = "tokio-tungstenite"
  5637. version = "0.17.2"
  5638. source = "registry+https://github.com/rust-lang/crates.io-index"
  5639. checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181"
  5640. dependencies = [
  5641. "futures-util",
  5642. "log",
  5643. "rustls",
  5644. "tokio",
  5645. "tokio-rustls",
  5646. "tungstenite 0.17.3",
  5647. "webpki",
  5648. "webpki-roots",
  5649. ]
  5650. [[package]]
  5651. name = "tokio-tungstenite"
  5652. version = "0.18.0"
  5653. source = "registry+https://github.com/rust-lang/crates.io-index"
  5654. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  5655. dependencies = [
  5656. "futures-util",
  5657. "log",
  5658. "tokio",
  5659. "tungstenite 0.18.0",
  5660. ]
  5661. [[package]]
  5662. name = "tokio-util"
  5663. version = "0.7.8"
  5664. source = "registry+https://github.com/rust-lang/crates.io-index"
  5665. checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
  5666. dependencies = [
  5667. "bytes",
  5668. "futures-core",
  5669. "futures-sink",
  5670. "pin-project-lite 0.2.9",
  5671. "tokio",
  5672. "tracing",
  5673. ]
  5674. [[package]]
  5675. name = "toml"
  5676. version = "0.5.11"
  5677. source = "registry+https://github.com/rust-lang/crates.io-index"
  5678. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  5679. dependencies = [
  5680. "serde",
  5681. ]
  5682. [[package]]
  5683. name = "toml_datetime"
  5684. version = "0.6.1"
  5685. source = "registry+https://github.com/rust-lang/crates.io-index"
  5686. checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
  5687. [[package]]
  5688. name = "toml_edit"
  5689. version = "0.19.8"
  5690. source = "registry+https://github.com/rust-lang/crates.io-index"
  5691. checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
  5692. dependencies = [
  5693. "indexmap",
  5694. "toml_datetime",
  5695. "winnow",
  5696. ]
  5697. [[package]]
  5698. name = "tower"
  5699. version = "0.4.13"
  5700. source = "registry+https://github.com/rust-lang/crates.io-index"
  5701. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  5702. dependencies = [
  5703. "futures-core",
  5704. "futures-util",
  5705. "pin-project 1.0.12",
  5706. "pin-project-lite 0.2.9",
  5707. "tokio",
  5708. "tower-layer",
  5709. "tower-service",
  5710. "tracing",
  5711. ]
  5712. [[package]]
  5713. name = "tower-layer"
  5714. version = "0.3.2"
  5715. source = "registry+https://github.com/rust-lang/crates.io-index"
  5716. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  5717. [[package]]
  5718. name = "tower-service"
  5719. version = "0.3.2"
  5720. source = "registry+https://github.com/rust-lang/crates.io-index"
  5721. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  5722. [[package]]
  5723. name = "tracing"
  5724. version = "0.1.37"
  5725. source = "registry+https://github.com/rust-lang/crates.io-index"
  5726. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  5727. dependencies = [
  5728. "cfg-if",
  5729. "log",
  5730. "pin-project-lite 0.2.9",
  5731. "tracing-attributes",
  5732. "tracing-core",
  5733. ]
  5734. [[package]]
  5735. name = "tracing-attributes"
  5736. version = "0.1.24"
  5737. source = "registry+https://github.com/rust-lang/crates.io-index"
  5738. checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
  5739. dependencies = [
  5740. "proc-macro2 1.0.56",
  5741. "quote 1.0.27",
  5742. "syn 2.0.15",
  5743. ]
  5744. [[package]]
  5745. name = "tracing-core"
  5746. version = "0.1.31"
  5747. source = "registry+https://github.com/rust-lang/crates.io-index"
  5748. checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
  5749. dependencies = [
  5750. "once_cell",
  5751. ]
  5752. [[package]]
  5753. name = "triomphe"
  5754. version = "0.1.8"
  5755. source = "registry+https://github.com/rust-lang/crates.io-index"
  5756. checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
  5757. [[package]]
  5758. name = "trust-dns-proto"
  5759. version = "0.20.4"
  5760. source = "registry+https://github.com/rust-lang/crates.io-index"
  5761. checksum = "ca94d4e9feb6a181c690c4040d7a24ef34018d8313ac5044a61d21222ae24e31"
  5762. dependencies = [
  5763. "async-trait",
  5764. "cfg-if",
  5765. "data-encoding",
  5766. "enum-as-inner",
  5767. "futures-channel",
  5768. "futures-io",
  5769. "futures-util",
  5770. "idna 0.2.3",
  5771. "ipnet",
  5772. "lazy_static",
  5773. "log",
  5774. "rand 0.8.5",
  5775. "smallvec",
  5776. "thiserror",
  5777. "tinyvec",
  5778. "url",
  5779. ]
  5780. [[package]]
  5781. name = "trust-dns-resolver"
  5782. version = "0.20.4"
  5783. source = "registry+https://github.com/rust-lang/crates.io-index"
  5784. checksum = "ecae383baad9995efaa34ce8e57d12c3f305e545887472a492b838f4b5cfb77a"
  5785. dependencies = [
  5786. "cfg-if",
  5787. "futures-util",
  5788. "ipconfig",
  5789. "lazy_static",
  5790. "log",
  5791. "lru-cache",
  5792. "parking_lot 0.11.2",
  5793. "resolv-conf",
  5794. "smallvec",
  5795. "thiserror",
  5796. "trust-dns-proto",
  5797. ]
  5798. [[package]]
  5799. name = "try-lock"
  5800. version = "0.2.4"
  5801. source = "registry+https://github.com/rust-lang/crates.io-index"
  5802. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  5803. [[package]]
  5804. name = "tungstenite"
  5805. version = "0.17.3"
  5806. source = "registry+https://github.com/rust-lang/crates.io-index"
  5807. checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0"
  5808. dependencies = [
  5809. "base64 0.13.1",
  5810. "byteorder",
  5811. "bytes",
  5812. "http",
  5813. "httparse",
  5814. "log",
  5815. "rand 0.8.5",
  5816. "rustls",
  5817. "sha-1 0.10.1",
  5818. "thiserror",
  5819. "url",
  5820. "utf-8",
  5821. "webpki",
  5822. "webpki-roots",
  5823. ]
  5824. [[package]]
  5825. name = "tungstenite"
  5826. version = "0.18.0"
  5827. source = "registry+https://github.com/rust-lang/crates.io-index"
  5828. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  5829. dependencies = [
  5830. "base64 0.13.1",
  5831. "byteorder",
  5832. "bytes",
  5833. "http",
  5834. "httparse",
  5835. "log",
  5836. "rand 0.8.5",
  5837. "sha1",
  5838. "thiserror",
  5839. "url",
  5840. "utf-8",
  5841. ]
  5842. [[package]]
  5843. name = "typenum"
  5844. version = "1.16.0"
  5845. source = "registry+https://github.com/rust-lang/crates.io-index"
  5846. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  5847. [[package]]
  5848. name = "typescript-type-def"
  5849. version = "0.5.6"
  5850. source = "registry+https://github.com/rust-lang/crates.io-index"
  5851. checksum = "4e6b74ffbd5684d318252bb7182051df8c4ecc098b542f63fddf792e7f42aa02"
  5852. dependencies = [
  5853. "typescript-type-def-derive",
  5854. ]
  5855. [[package]]
  5856. name = "typescript-type-def-derive"
  5857. version = "0.5.6"
  5858. source = "registry+https://github.com/rust-lang/crates.io-index"
  5859. checksum = "b10a4f5dd87c279f90beef31edb7055bfd1ceb66e73148de107a5c9005e9f864"
  5860. dependencies = [
  5861. "darling",
  5862. "ident_case",
  5863. "proc-macro-error",
  5864. "proc-macro2 1.0.56",
  5865. "quote 1.0.27",
  5866. "syn 1.0.109",
  5867. ]
  5868. [[package]]
  5869. name = "ucd-trie"
  5870. version = "0.1.5"
  5871. source = "registry+https://github.com/rust-lang/crates.io-index"
  5872. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  5873. [[package]]
  5874. name = "uint"
  5875. version = "0.9.5"
  5876. source = "registry+https://github.com/rust-lang/crates.io-index"
  5877. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5878. dependencies = [
  5879. "byteorder",
  5880. "crunchy",
  5881. "hex",
  5882. "static_assertions",
  5883. ]
  5884. [[package]]
  5885. name = "unicase"
  5886. version = "2.6.0"
  5887. source = "registry+https://github.com/rust-lang/crates.io-index"
  5888. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  5889. dependencies = [
  5890. "version_check",
  5891. ]
  5892. [[package]]
  5893. name = "unicode-bidi"
  5894. version = "0.3.13"
  5895. source = "registry+https://github.com/rust-lang/crates.io-index"
  5896. checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
  5897. [[package]]
  5898. name = "unicode-ident"
  5899. version = "1.0.8"
  5900. source = "registry+https://github.com/rust-lang/crates.io-index"
  5901. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  5902. [[package]]
  5903. name = "unicode-normalization"
  5904. version = "0.1.22"
  5905. source = "registry+https://github.com/rust-lang/crates.io-index"
  5906. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  5907. dependencies = [
  5908. "tinyvec",
  5909. ]
  5910. [[package]]
  5911. name = "unicode-segmentation"
  5912. version = "1.10.1"
  5913. source = "registry+https://github.com/rust-lang/crates.io-index"
  5914. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  5915. [[package]]
  5916. name = "unicode-width"
  5917. version = "0.1.10"
  5918. source = "registry+https://github.com/rust-lang/crates.io-index"
  5919. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  5920. [[package]]
  5921. name = "unicode-xid"
  5922. version = "0.1.0"
  5923. source = "registry+https://github.com/rust-lang/crates.io-index"
  5924. checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
  5925. [[package]]
  5926. name = "unicode-xid"
  5927. version = "0.2.4"
  5928. source = "registry+https://github.com/rust-lang/crates.io-index"
  5929. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  5930. [[package]]
  5931. name = "universal-hash"
  5932. version = "0.4.1"
  5933. source = "registry+https://github.com/rust-lang/crates.io-index"
  5934. checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
  5935. dependencies = [
  5936. "generic-array",
  5937. "subtle",
  5938. ]
  5939. [[package]]
  5940. name = "unsigned-varint"
  5941. version = "0.7.1"
  5942. source = "registry+https://github.com/rust-lang/crates.io-index"
  5943. checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836"
  5944. dependencies = [
  5945. "asynchronous-codec",
  5946. "bytes",
  5947. "futures-io",
  5948. "futures-util",
  5949. ]
  5950. [[package]]
  5951. name = "untrusted"
  5952. version = "0.7.1"
  5953. source = "registry+https://github.com/rust-lang/crates.io-index"
  5954. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  5955. [[package]]
  5956. name = "uriparse"
  5957. version = "0.6.4"
  5958. source = "registry+https://github.com/rust-lang/crates.io-index"
  5959. checksum = "0200d0fc04d809396c2ad43f3c95da3582a2556eba8d453c1087f4120ee352ff"
  5960. dependencies = [
  5961. "fnv",
  5962. "lazy_static",
  5963. ]
  5964. [[package]]
  5965. name = "url"
  5966. version = "2.3.1"
  5967. source = "registry+https://github.com/rust-lang/crates.io-index"
  5968. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  5969. dependencies = [
  5970. "form_urlencoded",
  5971. "idna 0.3.0",
  5972. "percent-encoding",
  5973. ]
  5974. [[package]]
  5975. name = "utf-8"
  5976. version = "0.7.6"
  5977. source = "registry+https://github.com/rust-lang/crates.io-index"
  5978. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  5979. [[package]]
  5980. name = "uuid"
  5981. version = "1.3.3"
  5982. source = "registry+https://github.com/rust-lang/crates.io-index"
  5983. checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
  5984. dependencies = [
  5985. "getrandom 0.2.9",
  5986. ]
  5987. [[package]]
  5988. name = "value-bag"
  5989. version = "1.0.0-alpha.9"
  5990. source = "registry+https://github.com/rust-lang/crates.io-index"
  5991. checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
  5992. dependencies = [
  5993. "ctor",
  5994. "version_check",
  5995. ]
  5996. [[package]]
  5997. name = "vcpkg"
  5998. version = "0.2.15"
  5999. source = "registry+https://github.com/rust-lang/crates.io-index"
  6000. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  6001. [[package]]
  6002. name = "vec_map"
  6003. version = "0.8.2"
  6004. source = "registry+https://github.com/rust-lang/crates.io-index"
  6005. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  6006. [[package]]
  6007. name = "version_check"
  6008. version = "0.9.4"
  6009. source = "registry+https://github.com/rust-lang/crates.io-index"
  6010. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  6011. [[package]]
  6012. name = "void"
  6013. version = "1.0.2"
  6014. source = "registry+https://github.com/rust-lang/crates.io-index"
  6015. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  6016. [[package]]
  6017. name = "waker-fn"
  6018. version = "1.1.0"
  6019. source = "registry+https://github.com/rust-lang/crates.io-index"
  6020. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  6021. [[package]]
  6022. name = "walkdir"
  6023. version = "2.3.3"
  6024. source = "registry+https://github.com/rust-lang/crates.io-index"
  6025. checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
  6026. dependencies = [
  6027. "same-file",
  6028. "winapi-util",
  6029. ]
  6030. [[package]]
  6031. name = "want"
  6032. version = "0.3.0"
  6033. source = "registry+https://github.com/rust-lang/crates.io-index"
  6034. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  6035. dependencies = [
  6036. "log",
  6037. "try-lock",
  6038. ]
  6039. [[package]]
  6040. name = "wasi"
  6041. version = "0.9.0+wasi-snapshot-preview1"
  6042. source = "registry+https://github.com/rust-lang/crates.io-index"
  6043. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  6044. [[package]]
  6045. name = "wasi"
  6046. version = "0.10.0+wasi-snapshot-preview1"
  6047. source = "registry+https://github.com/rust-lang/crates.io-index"
  6048. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  6049. [[package]]
  6050. name = "wasi"
  6051. version = "0.11.0+wasi-snapshot-preview1"
  6052. source = "registry+https://github.com/rust-lang/crates.io-index"
  6053. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  6054. [[package]]
  6055. name = "wasm-bindgen"
  6056. version = "0.2.85"
  6057. source = "registry+https://github.com/rust-lang/crates.io-index"
  6058. checksum = "5b6cb788c4e39112fbe1822277ef6fb3c55cd86b95cb3d3c4c1c9597e4ac74b4"
  6059. dependencies = [
  6060. "cfg-if",
  6061. "wasm-bindgen-macro",
  6062. ]
  6063. [[package]]
  6064. name = "wasm-bindgen-backend"
  6065. version = "0.2.85"
  6066. source = "registry+https://github.com/rust-lang/crates.io-index"
  6067. checksum = "35e522ed4105a9d626d885b35d62501b30d9666283a5c8be12c14a8bdafe7822"
  6068. dependencies = [
  6069. "bumpalo",
  6070. "log",
  6071. "once_cell",
  6072. "proc-macro2 1.0.56",
  6073. "quote 1.0.27",
  6074. "syn 2.0.15",
  6075. "wasm-bindgen-shared",
  6076. ]
  6077. [[package]]
  6078. name = "wasm-bindgen-futures"
  6079. version = "0.4.35"
  6080. source = "registry+https://github.com/rust-lang/crates.io-index"
  6081. checksum = "083abe15c5d88556b77bdf7aef403625be9e327ad37c62c4e4129af740168163"
  6082. dependencies = [
  6083. "cfg-if",
  6084. "js-sys",
  6085. "wasm-bindgen",
  6086. "web-sys",
  6087. ]
  6088. [[package]]
  6089. name = "wasm-bindgen-macro"
  6090. version = "0.2.85"
  6091. source = "registry+https://github.com/rust-lang/crates.io-index"
  6092. checksum = "358a79a0cb89d21db8120cbfb91392335913e4890665b1a7981d9e956903b434"
  6093. dependencies = [
  6094. "quote 1.0.27",
  6095. "wasm-bindgen-macro-support",
  6096. ]
  6097. [[package]]
  6098. name = "wasm-bindgen-macro-support"
  6099. version = "0.2.85"
  6100. source = "registry+https://github.com/rust-lang/crates.io-index"
  6101. checksum = "4783ce29f09b9d93134d41297aded3a712b7b979e9c6f28c32cb88c973a94869"
  6102. dependencies = [
  6103. "proc-macro2 1.0.56",
  6104. "quote 1.0.27",
  6105. "syn 2.0.15",
  6106. "wasm-bindgen-backend",
  6107. "wasm-bindgen-shared",
  6108. ]
  6109. [[package]]
  6110. name = "wasm-bindgen-shared"
  6111. version = "0.2.85"
  6112. source = "registry+https://github.com/rust-lang/crates.io-index"
  6113. checksum = "a901d592cafaa4d711bc324edfaff879ac700b19c3dfd60058d2b445be2691eb"
  6114. [[package]]
  6115. name = "web-sys"
  6116. version = "0.3.62"
  6117. source = "registry+https://github.com/rust-lang/crates.io-index"
  6118. checksum = "16b5f940c7edfdc6d12126d98c9ef4d1b3d470011c47c76a6581df47ad9ba721"
  6119. dependencies = [
  6120. "js-sys",
  6121. "wasm-bindgen",
  6122. ]
  6123. [[package]]
  6124. name = "webpki"
  6125. version = "0.22.0"
  6126. source = "registry+https://github.com/rust-lang/crates.io-index"
  6127. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  6128. dependencies = [
  6129. "ring",
  6130. "untrusted",
  6131. ]
  6132. [[package]]
  6133. name = "webpki-roots"
  6134. version = "0.22.6"
  6135. source = "registry+https://github.com/rust-lang/crates.io-index"
  6136. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  6137. dependencies = [
  6138. "webpki",
  6139. ]
  6140. [[package]]
  6141. name = "which"
  6142. version = "4.4.0"
  6143. source = "registry+https://github.com/rust-lang/crates.io-index"
  6144. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  6145. dependencies = [
  6146. "either",
  6147. "libc",
  6148. "once_cell",
  6149. ]
  6150. [[package]]
  6151. name = "widestring"
  6152. version = "0.4.3"
  6153. source = "registry+https://github.com/rust-lang/crates.io-index"
  6154. checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
  6155. [[package]]
  6156. name = "winapi"
  6157. version = "0.3.9"
  6158. source = "registry+https://github.com/rust-lang/crates.io-index"
  6159. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6160. dependencies = [
  6161. "winapi-i686-pc-windows-gnu",
  6162. "winapi-x86_64-pc-windows-gnu",
  6163. ]
  6164. [[package]]
  6165. name = "winapi-i686-pc-windows-gnu"
  6166. version = "0.4.0"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6169. [[package]]
  6170. name = "winapi-util"
  6171. version = "0.1.5"
  6172. source = "registry+https://github.com/rust-lang/crates.io-index"
  6173. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  6174. dependencies = [
  6175. "winapi",
  6176. ]
  6177. [[package]]
  6178. name = "winapi-x86_64-pc-windows-gnu"
  6179. version = "0.4.0"
  6180. source = "registry+https://github.com/rust-lang/crates.io-index"
  6181. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6182. [[package]]
  6183. name = "windows"
  6184. version = "0.34.0"
  6185. source = "registry+https://github.com/rust-lang/crates.io-index"
  6186. checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f"
  6187. dependencies = [
  6188. "windows_aarch64_msvc 0.34.0",
  6189. "windows_i686_gnu 0.34.0",
  6190. "windows_i686_msvc 0.34.0",
  6191. "windows_x86_64_gnu 0.34.0",
  6192. "windows_x86_64_msvc 0.34.0",
  6193. ]
  6194. [[package]]
  6195. name = "windows"
  6196. version = "0.48.0"
  6197. source = "registry+https://github.com/rust-lang/crates.io-index"
  6198. checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
  6199. dependencies = [
  6200. "windows-targets 0.48.0",
  6201. ]
  6202. [[package]]
  6203. name = "windows-sys"
  6204. version = "0.42.0"
  6205. source = "registry+https://github.com/rust-lang/crates.io-index"
  6206. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  6207. dependencies = [
  6208. "windows_aarch64_gnullvm 0.42.2",
  6209. "windows_aarch64_msvc 0.42.2",
  6210. "windows_i686_gnu 0.42.2",
  6211. "windows_i686_msvc 0.42.2",
  6212. "windows_x86_64_gnu 0.42.2",
  6213. "windows_x86_64_gnullvm 0.42.2",
  6214. "windows_x86_64_msvc 0.42.2",
  6215. ]
  6216. [[package]]
  6217. name = "windows-sys"
  6218. version = "0.45.0"
  6219. source = "registry+https://github.com/rust-lang/crates.io-index"
  6220. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  6221. dependencies = [
  6222. "windows-targets 0.42.2",
  6223. ]
  6224. [[package]]
  6225. name = "windows-sys"
  6226. version = "0.48.0"
  6227. source = "registry+https://github.com/rust-lang/crates.io-index"
  6228. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6229. dependencies = [
  6230. "windows-targets 0.48.0",
  6231. ]
  6232. [[package]]
  6233. name = "windows-targets"
  6234. version = "0.42.2"
  6235. source = "registry+https://github.com/rust-lang/crates.io-index"
  6236. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  6237. dependencies = [
  6238. "windows_aarch64_gnullvm 0.42.2",
  6239. "windows_aarch64_msvc 0.42.2",
  6240. "windows_i686_gnu 0.42.2",
  6241. "windows_i686_msvc 0.42.2",
  6242. "windows_x86_64_gnu 0.42.2",
  6243. "windows_x86_64_gnullvm 0.42.2",
  6244. "windows_x86_64_msvc 0.42.2",
  6245. ]
  6246. [[package]]
  6247. name = "windows-targets"
  6248. version = "0.48.0"
  6249. source = "registry+https://github.com/rust-lang/crates.io-index"
  6250. checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
  6251. dependencies = [
  6252. "windows_aarch64_gnullvm 0.48.0",
  6253. "windows_aarch64_msvc 0.48.0",
  6254. "windows_i686_gnu 0.48.0",
  6255. "windows_i686_msvc 0.48.0",
  6256. "windows_x86_64_gnu 0.48.0",
  6257. "windows_x86_64_gnullvm 0.48.0",
  6258. "windows_x86_64_msvc 0.48.0",
  6259. ]
  6260. [[package]]
  6261. name = "windows_aarch64_gnullvm"
  6262. version = "0.42.2"
  6263. source = "registry+https://github.com/rust-lang/crates.io-index"
  6264. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  6265. [[package]]
  6266. name = "windows_aarch64_gnullvm"
  6267. version = "0.48.0"
  6268. source = "registry+https://github.com/rust-lang/crates.io-index"
  6269. checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
  6270. [[package]]
  6271. name = "windows_aarch64_msvc"
  6272. version = "0.34.0"
  6273. source = "registry+https://github.com/rust-lang/crates.io-index"
  6274. checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
  6275. [[package]]
  6276. name = "windows_aarch64_msvc"
  6277. version = "0.42.2"
  6278. source = "registry+https://github.com/rust-lang/crates.io-index"
  6279. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  6280. [[package]]
  6281. name = "windows_aarch64_msvc"
  6282. version = "0.48.0"
  6283. source = "registry+https://github.com/rust-lang/crates.io-index"
  6284. checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
  6285. [[package]]
  6286. name = "windows_i686_gnu"
  6287. version = "0.34.0"
  6288. source = "registry+https://github.com/rust-lang/crates.io-index"
  6289. checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
  6290. [[package]]
  6291. name = "windows_i686_gnu"
  6292. version = "0.42.2"
  6293. source = "registry+https://github.com/rust-lang/crates.io-index"
  6294. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  6295. [[package]]
  6296. name = "windows_i686_gnu"
  6297. version = "0.48.0"
  6298. source = "registry+https://github.com/rust-lang/crates.io-index"
  6299. checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
  6300. [[package]]
  6301. name = "windows_i686_msvc"
  6302. version = "0.34.0"
  6303. source = "registry+https://github.com/rust-lang/crates.io-index"
  6304. checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
  6305. [[package]]
  6306. name = "windows_i686_msvc"
  6307. version = "0.42.2"
  6308. source = "registry+https://github.com/rust-lang/crates.io-index"
  6309. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  6310. [[package]]
  6311. name = "windows_i686_msvc"
  6312. version = "0.48.0"
  6313. source = "registry+https://github.com/rust-lang/crates.io-index"
  6314. checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
  6315. [[package]]
  6316. name = "windows_x86_64_gnu"
  6317. version = "0.34.0"
  6318. source = "registry+https://github.com/rust-lang/crates.io-index"
  6319. checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
  6320. [[package]]
  6321. name = "windows_x86_64_gnu"
  6322. version = "0.42.2"
  6323. source = "registry+https://github.com/rust-lang/crates.io-index"
  6324. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  6325. [[package]]
  6326. name = "windows_x86_64_gnu"
  6327. version = "0.48.0"
  6328. source = "registry+https://github.com/rust-lang/crates.io-index"
  6329. checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
  6330. [[package]]
  6331. name = "windows_x86_64_gnullvm"
  6332. version = "0.42.2"
  6333. source = "registry+https://github.com/rust-lang/crates.io-index"
  6334. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  6335. [[package]]
  6336. name = "windows_x86_64_gnullvm"
  6337. version = "0.48.0"
  6338. source = "registry+https://github.com/rust-lang/crates.io-index"
  6339. checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
  6340. [[package]]
  6341. name = "windows_x86_64_msvc"
  6342. version = "0.34.0"
  6343. source = "registry+https://github.com/rust-lang/crates.io-index"
  6344. checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
  6345. [[package]]
  6346. name = "windows_x86_64_msvc"
  6347. version = "0.42.2"
  6348. source = "registry+https://github.com/rust-lang/crates.io-index"
  6349. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  6350. [[package]]
  6351. name = "windows_x86_64_msvc"
  6352. version = "0.48.0"
  6353. source = "registry+https://github.com/rust-lang/crates.io-index"
  6354. checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
  6355. [[package]]
  6356. name = "winnow"
  6357. version = "0.4.6"
  6358. source = "registry+https://github.com/rust-lang/crates.io-index"
  6359. checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699"
  6360. dependencies = [
  6361. "memchr",
  6362. ]
  6363. [[package]]
  6364. name = "winreg"
  6365. version = "0.6.2"
  6366. source = "registry+https://github.com/rust-lang/crates.io-index"
  6367. checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  6368. dependencies = [
  6369. "winapi",
  6370. ]
  6371. [[package]]
  6372. name = "winreg"
  6373. version = "0.10.1"
  6374. source = "registry+https://github.com/rust-lang/crates.io-index"
  6375. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  6376. dependencies = [
  6377. "winapi",
  6378. ]
  6379. [[package]]
  6380. name = "wormhole-sdk"
  6381. version = "0.1.0"
  6382. source = "git+https://github.com/wormhole-foundation/wormhole?tag=v2.17.1#3e423a75180f9da69263279e9ffce47b1858ae78"
  6383. dependencies = [
  6384. "anyhow",
  6385. "bstr",
  6386. "schemars",
  6387. "serde",
  6388. "serde_wormhole",
  6389. "sha3 0.10.8",
  6390. "thiserror",
  6391. ]
  6392. [[package]]
  6393. name = "wyz"
  6394. version = "0.5.1"
  6395. source = "registry+https://github.com/rust-lang/crates.io-index"
  6396. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6397. dependencies = [
  6398. "tap",
  6399. ]
  6400. [[package]]
  6401. name = "x25519-dalek"
  6402. version = "1.2.0"
  6403. source = "registry+https://github.com/rust-lang/crates.io-index"
  6404. checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077"
  6405. dependencies = [
  6406. "curve25519-dalek",
  6407. "rand_core 0.5.1",
  6408. "zeroize",
  6409. ]
  6410. [[package]]
  6411. name = "x509-parser"
  6412. version = "0.14.0"
  6413. source = "registry+https://github.com/rust-lang/crates.io-index"
  6414. checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"
  6415. dependencies = [
  6416. "asn1-rs",
  6417. "base64 0.13.1",
  6418. "data-encoding",
  6419. "der-parser",
  6420. "lazy_static",
  6421. "nom",
  6422. "oid-registry",
  6423. "rusticata-macros",
  6424. "thiserror",
  6425. "time 0.3.21",
  6426. ]
  6427. [[package]]
  6428. name = "yaml-rust"
  6429. version = "0.4.5"
  6430. source = "registry+https://github.com/rust-lang/crates.io-index"
  6431. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  6432. dependencies = [
  6433. "linked-hash-map",
  6434. ]
  6435. [[package]]
  6436. name = "yamux"
  6437. version = "0.10.2"
  6438. source = "registry+https://github.com/rust-lang/crates.io-index"
  6439. checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5"
  6440. dependencies = [
  6441. "futures",
  6442. "log",
  6443. "nohash-hasher",
  6444. "parking_lot 0.12.1",
  6445. "rand 0.8.5",
  6446. "static_assertions",
  6447. ]
  6448. [[package]]
  6449. name = "yasna"
  6450. version = "0.5.2"
  6451. source = "registry+https://github.com/rust-lang/crates.io-index"
  6452. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6453. dependencies = [
  6454. "time 0.3.21",
  6455. ]
  6456. [[package]]
  6457. name = "zeroize"
  6458. version = "1.3.0"
  6459. source = "registry+https://github.com/rust-lang/crates.io-index"
  6460. checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd"
  6461. dependencies = [
  6462. "zeroize_derive",
  6463. ]
  6464. [[package]]
  6465. name = "zeroize_derive"
  6466. version = "1.4.2"
  6467. source = "registry+https://github.com/rust-lang/crates.io-index"
  6468. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6469. dependencies = [
  6470. "proc-macro2 1.0.56",
  6471. "quote 1.0.27",
  6472. "syn 2.0.15",
  6473. ]
  6474. [[package]]
  6475. name = "zstd"
  6476. version = "0.11.2+zstd.1.5.2"
  6477. source = "registry+https://github.com/rust-lang/crates.io-index"
  6478. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  6479. dependencies = [
  6480. "zstd-safe",
  6481. ]
  6482. [[package]]
  6483. name = "zstd-safe"
  6484. version = "5.0.2+zstd.1.5.2"
  6485. source = "registry+https://github.com/rust-lang/crates.io-index"
  6486. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  6487. dependencies = [
  6488. "libc",
  6489. "zstd-sys",
  6490. ]
  6491. [[package]]
  6492. name = "zstd-sys"
  6493. version = "2.0.8+zstd.1.5.5"
  6494. source = "registry+https://github.com/rust-lang/crates.io-index"
  6495. checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
  6496. dependencies = [
  6497. "cc",
  6498. "libc",
  6499. "pkg-config",
  6500. ]