Cargo.lock 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562
  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 = "addr2line"
  15. version = "0.21.0"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
  18. dependencies = [
  19. "gimli 0.28.1",
  20. ]
  21. [[package]]
  22. name = "adler"
  23. version = "1.0.2"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  26. [[package]]
  27. name = "aead"
  28. version = "0.5.2"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  31. dependencies = [
  32. "crypto-common",
  33. "generic-array",
  34. ]
  35. [[package]]
  36. name = "aes"
  37. version = "0.8.4"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  40. dependencies = [
  41. "cfg-if",
  42. "cipher",
  43. "cpufeatures",
  44. "zeroize",
  45. ]
  46. [[package]]
  47. name = "ahash"
  48. version = "0.7.8"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
  51. dependencies = [
  52. "getrandom",
  53. "once_cell",
  54. "version_check",
  55. ]
  56. [[package]]
  57. name = "ahash"
  58. version = "0.8.11"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  61. dependencies = [
  62. "cfg-if",
  63. "once_cell",
  64. "version_check",
  65. "zerocopy",
  66. ]
  67. [[package]]
  68. name = "aho-corasick"
  69. version = "1.1.3"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  72. dependencies = [
  73. "memchr",
  74. ]
  75. [[package]]
  76. name = "allocator-api2"
  77. version = "0.2.16"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
  80. [[package]]
  81. name = "alsa"
  82. version = "0.9.0"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "37fe60779335388a88c01ac6c3be40304d1e349de3ada3b15f7808bb90fa9dce"
  85. dependencies = [
  86. "alsa-sys",
  87. "bitflags 2.5.0",
  88. "libc",
  89. ]
  90. [[package]]
  91. name = "alsa-sys"
  92. version = "0.3.1"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
  95. dependencies = [
  96. "libc",
  97. "pkg-config",
  98. ]
  99. [[package]]
  100. name = "amplify"
  101. version = "4.6.0"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "9e711289a6cb28171b4f0e6c8019c69ff9476050508dc082167575d458ff74d0"
  104. dependencies = [
  105. "amplify_derive",
  106. "amplify_num",
  107. "ascii",
  108. "wasm-bindgen",
  109. ]
  110. [[package]]
  111. name = "amplify_derive"
  112. version = "4.0.0"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. checksum = "759dcbfaf94d838367a86d493ec34ccc8aa6fe365cb7880d6bf89006de24d9c1"
  115. dependencies = [
  116. "amplify_syn",
  117. "proc-macro2",
  118. "quote",
  119. "syn 1.0.109",
  120. ]
  121. [[package]]
  122. name = "amplify_num"
  123. version = "0.5.2"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "04c009c5c4de814911b177e2ea59e4930bb918978ed3cce4900d846a6ceb0838"
  126. dependencies = [
  127. "wasm-bindgen",
  128. ]
  129. [[package]]
  130. name = "amplify_syn"
  131. version = "2.0.1"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  134. dependencies = [
  135. "proc-macro2",
  136. "quote",
  137. "syn 1.0.109",
  138. ]
  139. [[package]]
  140. name = "android-tzdata"
  141. version = "0.1.1"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  144. [[package]]
  145. name = "android_system_properties"
  146. version = "0.1.5"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  149. dependencies = [
  150. "libc",
  151. ]
  152. [[package]]
  153. name = "ansi_term"
  154. version = "0.12.1"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  157. dependencies = [
  158. "winapi",
  159. ]
  160. [[package]]
  161. name = "anyhow"
  162. version = "1.0.81"
  163. source = "registry+https://github.com/rust-lang/crates.io-index"
  164. checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
  165. [[package]]
  166. name = "arrayref"
  167. version = "0.3.7"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
  170. [[package]]
  171. name = "arrayvec"
  172. version = "0.7.4"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  175. [[package]]
  176. name = "arti-client"
  177. version = "0.14.1"
  178. source = "registry+https://github.com/rust-lang/crates.io-index"
  179. checksum = "e1e5ce0af09766442f95df8b66e26498a9270ba613f2a31cb30dc79d301bdae6"
  180. dependencies = [
  181. "cfg-if",
  182. "derive_builder_fork_arti",
  183. "derive_more",
  184. "directories",
  185. "educe",
  186. "fs-mistrust",
  187. "futures",
  188. "hostname-validator",
  189. "humantime-serde",
  190. "libc",
  191. "pin-project",
  192. "postage",
  193. "safelog",
  194. "serde",
  195. "thiserror",
  196. "tor-async-utils",
  197. "tor-basic-utils",
  198. "tor-cell",
  199. "tor-chanmgr",
  200. "tor-checkable",
  201. "tor-circmgr",
  202. "tor-config",
  203. "tor-dirmgr",
  204. "tor-error",
  205. "tor-guardmgr",
  206. "tor-hsclient",
  207. "tor-hscrypto",
  208. "tor-hsservice",
  209. "tor-keymgr",
  210. "tor-linkspec",
  211. "tor-llcrypto",
  212. "tor-netdir",
  213. "tor-netdoc",
  214. "tor-persist",
  215. "tor-proto",
  216. "tor-rtcompat",
  217. "tracing",
  218. "void",
  219. ]
  220. [[package]]
  221. name = "ascii"
  222. version = "1.1.0"
  223. source = "registry+https://github.com/rust-lang/crates.io-index"
  224. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  225. [[package]]
  226. name = "ascii-canvas"
  227. version = "3.0.0"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
  230. dependencies = [
  231. "term",
  232. ]
  233. [[package]]
  234. name = "asn1-rs"
  235. version = "0.6.1"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d"
  238. dependencies = [
  239. "asn1-rs-derive",
  240. "asn1-rs-impl",
  241. "displaydoc",
  242. "nom",
  243. "num-traits",
  244. "rusticata-macros",
  245. "thiserror",
  246. "time",
  247. ]
  248. [[package]]
  249. name = "asn1-rs-derive"
  250. version = "0.5.0"
  251. source = "registry+https://github.com/rust-lang/crates.io-index"
  252. checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1"
  253. dependencies = [
  254. "proc-macro2",
  255. "quote",
  256. "syn 2.0.53",
  257. "synstructure",
  258. ]
  259. [[package]]
  260. name = "asn1-rs-impl"
  261. version = "0.2.0"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  264. dependencies = [
  265. "proc-macro2",
  266. "quote",
  267. "syn 2.0.53",
  268. ]
  269. [[package]]
  270. name = "async-attributes"
  271. version = "1.1.2"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
  274. dependencies = [
  275. "quote",
  276. "syn 1.0.109",
  277. ]
  278. [[package]]
  279. name = "async-channel"
  280. version = "1.9.0"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
  283. dependencies = [
  284. "concurrent-queue",
  285. "event-listener 2.5.3",
  286. "futures-core",
  287. ]
  288. [[package]]
  289. name = "async-channel"
  290. version = "2.2.0"
  291. source = "registry+https://github.com/rust-lang/crates.io-index"
  292. checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3"
  293. dependencies = [
  294. "concurrent-queue",
  295. "event-listener 5.2.0",
  296. "event-listener-strategy 0.5.0",
  297. "futures-core",
  298. "pin-project-lite",
  299. ]
  300. [[package]]
  301. name = "async-compression"
  302. version = "0.4.6"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c"
  305. dependencies = [
  306. "flate2",
  307. "futures-core",
  308. "futures-io",
  309. "memchr",
  310. "pin-project-lite",
  311. "xz2",
  312. "zstd 0.13.0",
  313. "zstd-safe 7.0.0",
  314. ]
  315. [[package]]
  316. name = "async-executor"
  317. version = "1.8.0"
  318. source = "registry+https://github.com/rust-lang/crates.io-index"
  319. checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
  320. dependencies = [
  321. "async-lock 3.3.0",
  322. "async-task",
  323. "concurrent-queue",
  324. "fastrand 2.0.1",
  325. "futures-lite 2.3.0",
  326. "slab",
  327. ]
  328. [[package]]
  329. name = "async-fs"
  330. version = "1.6.0"
  331. source = "registry+https://github.com/rust-lang/crates.io-index"
  332. checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
  333. dependencies = [
  334. "async-lock 2.8.0",
  335. "autocfg",
  336. "blocking",
  337. "futures-lite 1.13.0",
  338. ]
  339. [[package]]
  340. name = "async-global-executor"
  341. version = "2.4.1"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
  344. dependencies = [
  345. "async-channel 2.2.0",
  346. "async-executor",
  347. "async-io 2.3.2",
  348. "async-lock 3.3.0",
  349. "blocking",
  350. "futures-lite 2.3.0",
  351. "once_cell",
  352. "tokio",
  353. ]
  354. [[package]]
  355. name = "async-io"
  356. version = "1.13.0"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  359. dependencies = [
  360. "async-lock 2.8.0",
  361. "autocfg",
  362. "cfg-if",
  363. "concurrent-queue",
  364. "futures-lite 1.13.0",
  365. "log",
  366. "parking",
  367. "polling 2.8.0",
  368. "rustix 0.37.27",
  369. "slab",
  370. "socket2 0.4.10",
  371. "waker-fn",
  372. ]
  373. [[package]]
  374. name = "async-io"
  375. version = "2.3.2"
  376. source = "registry+https://github.com/rust-lang/crates.io-index"
  377. checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884"
  378. dependencies = [
  379. "async-lock 3.3.0",
  380. "cfg-if",
  381. "concurrent-queue",
  382. "futures-io",
  383. "futures-lite 2.3.0",
  384. "parking",
  385. "polling 3.5.0",
  386. "rustix 0.38.32",
  387. "slab",
  388. "tracing",
  389. "windows-sys 0.52.0",
  390. ]
  391. [[package]]
  392. name = "async-lock"
  393. version = "2.8.0"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  396. dependencies = [
  397. "event-listener 2.5.3",
  398. ]
  399. [[package]]
  400. name = "async-lock"
  401. version = "3.3.0"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
  404. dependencies = [
  405. "event-listener 4.0.3",
  406. "event-listener-strategy 0.4.0",
  407. "pin-project-lite",
  408. ]
  409. [[package]]
  410. name = "async-net"
  411. version = "1.8.0"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
  414. dependencies = [
  415. "async-io 1.13.0",
  416. "blocking",
  417. "futures-lite 1.13.0",
  418. ]
  419. [[package]]
  420. name = "async-process"
  421. version = "1.8.1"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
  424. dependencies = [
  425. "async-io 1.13.0",
  426. "async-lock 2.8.0",
  427. "async-signal",
  428. "blocking",
  429. "cfg-if",
  430. "event-listener 3.1.0",
  431. "futures-lite 1.13.0",
  432. "rustix 0.38.32",
  433. "windows-sys 0.48.0",
  434. ]
  435. [[package]]
  436. name = "async-signal"
  437. version = "0.2.5"
  438. source = "registry+https://github.com/rust-lang/crates.io-index"
  439. checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
  440. dependencies = [
  441. "async-io 2.3.2",
  442. "async-lock 2.8.0",
  443. "atomic-waker",
  444. "cfg-if",
  445. "futures-core",
  446. "futures-io",
  447. "rustix 0.38.32",
  448. "signal-hook-registry",
  449. "slab",
  450. "windows-sys 0.48.0",
  451. ]
  452. [[package]]
  453. name = "async-std"
  454. version = "1.12.0"
  455. source = "registry+https://github.com/rust-lang/crates.io-index"
  456. checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
  457. dependencies = [
  458. "async-attributes",
  459. "async-channel 1.9.0",
  460. "async-global-executor",
  461. "async-io 1.13.0",
  462. "async-lock 2.8.0",
  463. "async-process",
  464. "crossbeam-utils",
  465. "futures-channel",
  466. "futures-core",
  467. "futures-io",
  468. "futures-lite 1.13.0",
  469. "gloo-timers",
  470. "kv-log-macro",
  471. "log",
  472. "memchr",
  473. "once_cell",
  474. "pin-project-lite",
  475. "pin-utils",
  476. "slab",
  477. "wasm-bindgen-futures",
  478. ]
  479. [[package]]
  480. name = "async-task"
  481. version = "4.7.0"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
  484. [[package]]
  485. name = "async-trait"
  486. version = "0.1.78"
  487. source = "registry+https://github.com/rust-lang/crates.io-index"
  488. checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85"
  489. dependencies = [
  490. "proc-macro2",
  491. "quote",
  492. "syn 2.0.53",
  493. ]
  494. [[package]]
  495. name = "async-watch"
  496. version = "0.3.1"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "a078faf4e27c0c6cc0efb20e5da59dcccc04968ebf2801d8e0b2195124cdcdb2"
  499. dependencies = [
  500. "event-listener 2.5.3",
  501. ]
  502. [[package]]
  503. name = "async_executors"
  504. version = "0.7.0"
  505. source = "registry+https://github.com/rust-lang/crates.io-index"
  506. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  507. dependencies = [
  508. "async-std",
  509. "blanket",
  510. "futures-core",
  511. "futures-task",
  512. "futures-util",
  513. "pin-project",
  514. "rustc_version",
  515. ]
  516. [[package]]
  517. name = "async_io_stream"
  518. version = "0.3.3"
  519. source = "registry+https://github.com/rust-lang/crates.io-index"
  520. checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
  521. dependencies = [
  522. "futures",
  523. "pharos",
  524. "rustc_version",
  525. ]
  526. [[package]]
  527. name = "asynchronous-codec"
  528. version = "0.7.0"
  529. source = "registry+https://github.com/rust-lang/crates.io-index"
  530. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  531. dependencies = [
  532. "bytes",
  533. "futures-sink",
  534. "futures-util",
  535. "memchr",
  536. "pin-project-lite",
  537. ]
  538. [[package]]
  539. name = "atomic"
  540. version = "0.5.3"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  543. [[package]]
  544. name = "atomic-waker"
  545. version = "1.1.2"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  548. [[package]]
  549. name = "atty"
  550. version = "0.2.14"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  553. dependencies = [
  554. "hermit-abi 0.1.19",
  555. "libc",
  556. "winapi",
  557. ]
  558. [[package]]
  559. name = "auto_impl"
  560. version = "1.2.0"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42"
  563. dependencies = [
  564. "proc-macro2",
  565. "quote",
  566. "syn 2.0.53",
  567. ]
  568. [[package]]
  569. name = "autocfg"
  570. version = "1.1.0"
  571. source = "registry+https://github.com/rust-lang/crates.io-index"
  572. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  573. [[package]]
  574. name = "backtrace"
  575. version = "0.3.69"
  576. source = "registry+https://github.com/rust-lang/crates.io-index"
  577. checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
  578. dependencies = [
  579. "addr2line",
  580. "cc",
  581. "cfg-if",
  582. "libc",
  583. "miniz_oxide",
  584. "object",
  585. "rustc-demangle",
  586. ]
  587. [[package]]
  588. name = "base16ct"
  589. version = "0.2.0"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  592. [[package]]
  593. name = "base64"
  594. version = "0.13.1"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  597. [[package]]
  598. name = "base64"
  599. version = "0.21.7"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  602. [[package]]
  603. name = "base64ct"
  604. version = "1.6.0"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  607. [[package]]
  608. name = "bech32"
  609. version = "0.9.1"
  610. source = "registry+https://github.com/rust-lang/crates.io-index"
  611. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  612. [[package]]
  613. name = "bindgen"
  614. version = "0.66.1"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
  617. dependencies = [
  618. "bitflags 2.5.0",
  619. "cexpr",
  620. "clang-sys",
  621. "lazy_static",
  622. "lazycell",
  623. "log",
  624. "peeking_take_while",
  625. "prettyplease",
  626. "proc-macro2",
  627. "quote",
  628. "regex",
  629. "rustc-hash",
  630. "shlex",
  631. "syn 2.0.53",
  632. "which",
  633. ]
  634. [[package]]
  635. name = "bindgen"
  636. version = "0.69.4"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
  639. dependencies = [
  640. "bitflags 2.5.0",
  641. "cexpr",
  642. "clang-sys",
  643. "itertools 0.12.1",
  644. "lazy_static",
  645. "lazycell",
  646. "proc-macro2",
  647. "quote",
  648. "regex",
  649. "rustc-hash",
  650. "shlex",
  651. "syn 2.0.53",
  652. ]
  653. [[package]]
  654. name = "bit-set"
  655. version = "0.5.3"
  656. source = "registry+https://github.com/rust-lang/crates.io-index"
  657. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  658. dependencies = [
  659. "bit-vec",
  660. ]
  661. [[package]]
  662. name = "bit-vec"
  663. version = "0.6.3"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  666. [[package]]
  667. name = "bitflags"
  668. version = "1.3.2"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  671. [[package]]
  672. name = "bitflags"
  673. version = "2.5.0"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
  676. [[package]]
  677. name = "bitvec"
  678. version = "1.0.1"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  681. dependencies = [
  682. "funty",
  683. "radium",
  684. "tap",
  685. "wyz",
  686. ]
  687. [[package]]
  688. name = "blake2b_simd"
  689. version = "1.0.2"
  690. source = "registry+https://github.com/rust-lang/crates.io-index"
  691. checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780"
  692. dependencies = [
  693. "arrayref",
  694. "arrayvec",
  695. "constant_time_eq 0.3.0",
  696. ]
  697. [[package]]
  698. name = "blake3"
  699. version = "1.5.1"
  700. source = "registry+https://github.com/rust-lang/crates.io-index"
  701. checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52"
  702. dependencies = [
  703. "arrayref",
  704. "arrayvec",
  705. "cc",
  706. "cfg-if",
  707. "constant_time_eq 0.3.0",
  708. "rayon",
  709. ]
  710. [[package]]
  711. name = "blanket"
  712. version = "0.3.0"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  715. dependencies = [
  716. "proc-macro2",
  717. "quote",
  718. "syn 2.0.53",
  719. ]
  720. [[package]]
  721. name = "block-buffer"
  722. version = "0.10.4"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  725. dependencies = [
  726. "generic-array",
  727. ]
  728. [[package]]
  729. name = "blocking"
  730. version = "1.5.1"
  731. source = "registry+https://github.com/rust-lang/crates.io-index"
  732. checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
  733. dependencies = [
  734. "async-channel 2.2.0",
  735. "async-lock 3.3.0",
  736. "async-task",
  737. "fastrand 2.0.1",
  738. "futures-io",
  739. "futures-lite 2.3.0",
  740. "piper",
  741. "tracing",
  742. ]
  743. [[package]]
  744. name = "bounded-vec-deque"
  745. version = "0.1.1"
  746. source = "registry+https://github.com/rust-lang/crates.io-index"
  747. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  748. [[package]]
  749. name = "bridgetree"
  750. version = "0.4.0"
  751. source = "registry+https://github.com/rust-lang/crates.io-index"
  752. checksum = "fbfcb6c5a091e80cb3d3b0c1a7f126af4631cd5065b1f9929b139f1be8f3fb62"
  753. dependencies = [
  754. "incrementalmerkletree",
  755. ]
  756. [[package]]
  757. name = "bs58"
  758. version = "0.5.1"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  761. dependencies = [
  762. "sha2",
  763. "tinyvec",
  764. ]
  765. [[package]]
  766. name = "bumpalo"
  767. version = "3.15.4"
  768. source = "registry+https://github.com/rust-lang/crates.io-index"
  769. checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
  770. [[package]]
  771. name = "by_address"
  772. version = "1.1.0"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0"
  775. [[package]]
  776. name = "byte-slice-cast"
  777. version = "1.2.2"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c"
  780. [[package]]
  781. name = "bytecheck"
  782. version = "0.6.12"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
  785. dependencies = [
  786. "bytecheck_derive",
  787. "ptr_meta",
  788. "simdutf8",
  789. ]
  790. [[package]]
  791. name = "bytecheck_derive"
  792. version = "0.6.12"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
  795. dependencies = [
  796. "proc-macro2",
  797. "quote",
  798. "syn 1.0.109",
  799. ]
  800. [[package]]
  801. name = "bytecount"
  802. version = "0.6.7"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
  805. [[package]]
  806. name = "byteorder"
  807. version = "1.5.0"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  810. [[package]]
  811. name = "bytes"
  812. version = "1.5.0"
  813. source = "registry+https://github.com/rust-lang/crates.io-index"
  814. checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
  815. dependencies = [
  816. "serde",
  817. ]
  818. [[package]]
  819. name = "bzip2"
  820. version = "0.4.4"
  821. source = "registry+https://github.com/rust-lang/crates.io-index"
  822. checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
  823. dependencies = [
  824. "bzip2-sys",
  825. "libc",
  826. ]
  827. [[package]]
  828. name = "bzip2-sys"
  829. version = "0.1.11+1.0.8"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  832. dependencies = [
  833. "cc",
  834. "libc",
  835. "pkg-config",
  836. ]
  837. [[package]]
  838. name = "camino"
  839. version = "1.1.6"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
  842. dependencies = [
  843. "serde",
  844. ]
  845. [[package]]
  846. name = "caret"
  847. version = "0.4.4"
  848. source = "registry+https://github.com/rust-lang/crates.io-index"
  849. checksum = "7a472d18b7a8b73ecefb280476c3d2b832ac4920dfd0928f3fab94c46b659c4a"
  850. [[package]]
  851. name = "cargo-platform"
  852. version = "0.1.7"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f"
  855. dependencies = [
  856. "serde",
  857. ]
  858. [[package]]
  859. name = "cargo_metadata"
  860. version = "0.14.2"
  861. source = "registry+https://github.com/rust-lang/crates.io-index"
  862. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  863. dependencies = [
  864. "camino",
  865. "cargo-platform",
  866. "semver",
  867. "serde",
  868. "serde_json",
  869. ]
  870. [[package]]
  871. name = "cargo_metadata"
  872. version = "0.18.1"
  873. source = "registry+https://github.com/rust-lang/crates.io-index"
  874. checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
  875. dependencies = [
  876. "camino",
  877. "cargo-platform",
  878. "semver",
  879. "serde",
  880. "serde_json",
  881. "thiserror",
  882. ]
  883. [[package]]
  884. name = "cc"
  885. version = "1.0.90"
  886. source = "registry+https://github.com/rust-lang/crates.io-index"
  887. checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
  888. dependencies = [
  889. "jobserver",
  890. "libc",
  891. ]
  892. [[package]]
  893. name = "cesu8"
  894. version = "1.1.0"
  895. source = "registry+https://github.com/rust-lang/crates.io-index"
  896. checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
  897. [[package]]
  898. name = "cexpr"
  899. version = "0.6.0"
  900. source = "registry+https://github.com/rust-lang/crates.io-index"
  901. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  902. dependencies = [
  903. "nom",
  904. ]
  905. [[package]]
  906. name = "cfg-if"
  907. version = "1.0.0"
  908. source = "registry+https://github.com/rust-lang/crates.io-index"
  909. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  910. [[package]]
  911. name = "chacha20"
  912. version = "0.9.1"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  915. dependencies = [
  916. "cfg-if",
  917. "cipher",
  918. "cpufeatures",
  919. ]
  920. [[package]]
  921. name = "chacha20poly1305"
  922. version = "0.10.1"
  923. source = "registry+https://github.com/rust-lang/crates.io-index"
  924. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  925. dependencies = [
  926. "aead",
  927. "chacha20",
  928. "cipher",
  929. "poly1305",
  930. "zeroize",
  931. ]
  932. [[package]]
  933. name = "chrono"
  934. version = "0.4.35"
  935. source = "registry+https://github.com/rust-lang/crates.io-index"
  936. checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
  937. dependencies = [
  938. "android-tzdata",
  939. "iana-time-zone",
  940. "num-traits",
  941. "serde",
  942. "windows-targets 0.52.4",
  943. ]
  944. [[package]]
  945. name = "cipher"
  946. version = "0.4.4"
  947. source = "registry+https://github.com/rust-lang/crates.io-index"
  948. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  949. dependencies = [
  950. "crypto-common",
  951. "inout",
  952. "zeroize",
  953. ]
  954. [[package]]
  955. name = "clang-sys"
  956. version = "1.7.0"
  957. source = "registry+https://github.com/rust-lang/crates.io-index"
  958. checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
  959. dependencies = [
  960. "glob",
  961. "libc",
  962. "libloading",
  963. ]
  964. [[package]]
  965. name = "clap"
  966. version = "2.34.0"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  969. dependencies = [
  970. "ansi_term",
  971. "atty",
  972. "bitflags 1.3.2",
  973. "strsim 0.8.0",
  974. "textwrap",
  975. "unicode-width",
  976. "vec_map",
  977. ]
  978. [[package]]
  979. name = "coarsetime"
  980. version = "0.1.34"
  981. source = "registry+https://github.com/rust-lang/crates.io-index"
  982. checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d"
  983. dependencies = [
  984. "libc",
  985. "wasix",
  986. "wasm-bindgen",
  987. ]
  988. [[package]]
  989. name = "coins-bip32"
  990. version = "0.8.7"
  991. source = "registry+https://github.com/rust-lang/crates.io-index"
  992. checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3"
  993. dependencies = [
  994. "bs58",
  995. "coins-core",
  996. "digest",
  997. "hmac",
  998. "k256",
  999. "serde",
  1000. "sha2",
  1001. "thiserror",
  1002. ]
  1003. [[package]]
  1004. name = "coins-bip39"
  1005. version = "0.8.7"
  1006. source = "registry+https://github.com/rust-lang/crates.io-index"
  1007. checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528"
  1008. dependencies = [
  1009. "bitvec",
  1010. "coins-bip32",
  1011. "hmac",
  1012. "once_cell",
  1013. "pbkdf2 0.12.2",
  1014. "rand",
  1015. "sha2",
  1016. "thiserror",
  1017. ]
  1018. [[package]]
  1019. name = "coins-core"
  1020. version = "0.8.7"
  1021. source = "registry+https://github.com/rust-lang/crates.io-index"
  1022. checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979"
  1023. dependencies = [
  1024. "base64 0.21.7",
  1025. "bech32",
  1026. "bs58",
  1027. "digest",
  1028. "generic-array",
  1029. "hex",
  1030. "ripemd",
  1031. "serde",
  1032. "serde_derive",
  1033. "sha2",
  1034. "sha3",
  1035. "thiserror",
  1036. ]
  1037. [[package]]
  1038. name = "combine"
  1039. version = "4.6.6"
  1040. source = "registry+https://github.com/rust-lang/crates.io-index"
  1041. checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
  1042. dependencies = [
  1043. "bytes",
  1044. "memchr",
  1045. ]
  1046. [[package]]
  1047. name = "concurrent-queue"
  1048. version = "2.4.0"
  1049. source = "registry+https://github.com/rust-lang/crates.io-index"
  1050. checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
  1051. dependencies = [
  1052. "crossbeam-utils",
  1053. ]
  1054. [[package]]
  1055. name = "config"
  1056. version = "0.14.0"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be"
  1059. dependencies = [
  1060. "lazy_static",
  1061. "nom",
  1062. "pathdiff",
  1063. "serde",
  1064. "toml 0.8.12",
  1065. ]
  1066. [[package]]
  1067. name = "const-hex"
  1068. version = "1.11.3"
  1069. source = "registry+https://github.com/rust-lang/crates.io-index"
  1070. checksum = "5ba00838774b4ab0233e355d26710fbfc8327a05c017f6dc4873f876d1f79f78"
  1071. dependencies = [
  1072. "cfg-if",
  1073. "cpufeatures",
  1074. "hex",
  1075. "proptest",
  1076. "serde",
  1077. ]
  1078. [[package]]
  1079. name = "const-oid"
  1080. version = "0.9.6"
  1081. source = "registry+https://github.com/rust-lang/crates.io-index"
  1082. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  1083. [[package]]
  1084. name = "constant_time_eq"
  1085. version = "0.1.5"
  1086. source = "registry+https://github.com/rust-lang/crates.io-index"
  1087. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  1088. [[package]]
  1089. name = "constant_time_eq"
  1090. version = "0.3.0"
  1091. source = "registry+https://github.com/rust-lang/crates.io-index"
  1092. checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
  1093. [[package]]
  1094. name = "convert_case"
  1095. version = "0.4.0"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  1098. [[package]]
  1099. name = "core-foundation"
  1100. version = "0.9.4"
  1101. source = "registry+https://github.com/rust-lang/crates.io-index"
  1102. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  1103. dependencies = [
  1104. "core-foundation-sys",
  1105. "libc",
  1106. ]
  1107. [[package]]
  1108. name = "core-foundation-sys"
  1109. version = "0.8.6"
  1110. source = "registry+https://github.com/rust-lang/crates.io-index"
  1111. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  1112. [[package]]
  1113. name = "coreaudio-rs"
  1114. version = "0.11.3"
  1115. source = "registry+https://github.com/rust-lang/crates.io-index"
  1116. checksum = "321077172d79c662f64f5071a03120748d5bb652f5231570141be24cfcd2bace"
  1117. dependencies = [
  1118. "bitflags 1.3.2",
  1119. "core-foundation-sys",
  1120. "coreaudio-sys",
  1121. ]
  1122. [[package]]
  1123. name = "coreaudio-sys"
  1124. version = "0.2.15"
  1125. source = "registry+https://github.com/rust-lang/crates.io-index"
  1126. checksum = "7f01585027057ff5f0a5bf276174ae4c1594a2c5bde93d5f46a016d76270f5a9"
  1127. dependencies = [
  1128. "bindgen 0.69.4",
  1129. ]
  1130. [[package]]
  1131. name = "corosensei"
  1132. version = "0.1.4"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "80128832c58ea9cbd041d2a759ec449224487b2c1e400453d99d244eead87a8e"
  1135. dependencies = [
  1136. "autocfg",
  1137. "cfg-if",
  1138. "libc",
  1139. "scopeguard",
  1140. "windows-sys 0.33.0",
  1141. ]
  1142. [[package]]
  1143. name = "cpal"
  1144. version = "0.15.3"
  1145. source = "registry+https://github.com/rust-lang/crates.io-index"
  1146. checksum = "873dab07c8f743075e57f524c583985fbaf745602acbe916a01539364369a779"
  1147. dependencies = [
  1148. "alsa",
  1149. "core-foundation-sys",
  1150. "coreaudio-rs",
  1151. "dasp_sample",
  1152. "jni",
  1153. "js-sys",
  1154. "libc",
  1155. "mach2",
  1156. "ndk",
  1157. "ndk-context",
  1158. "oboe",
  1159. "wasm-bindgen",
  1160. "wasm-bindgen-futures",
  1161. "web-sys",
  1162. "windows",
  1163. ]
  1164. [[package]]
  1165. name = "cpufeatures"
  1166. version = "0.2.12"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
  1169. dependencies = [
  1170. "libc",
  1171. ]
  1172. [[package]]
  1173. name = "cranelift-bforest"
  1174. version = "0.91.1"
  1175. source = "registry+https://github.com/rust-lang/crates.io-index"
  1176. checksum = "2a2ab4512dfd3a6f4be184403a195f76e81a8a9f9e6c898e19d2dc3ce20e0115"
  1177. dependencies = [
  1178. "cranelift-entity",
  1179. ]
  1180. [[package]]
  1181. name = "cranelift-codegen"
  1182. version = "0.91.1"
  1183. source = "registry+https://github.com/rust-lang/crates.io-index"
  1184. checksum = "98b022ed2a5913a38839dfbafe6cf135342661293b08049843362df4301261dc"
  1185. dependencies = [
  1186. "arrayvec",
  1187. "bumpalo",
  1188. "cranelift-bforest",
  1189. "cranelift-codegen-meta",
  1190. "cranelift-codegen-shared",
  1191. "cranelift-egraph",
  1192. "cranelift-entity",
  1193. "cranelift-isle",
  1194. "gimli 0.26.2",
  1195. "log",
  1196. "regalloc2",
  1197. "smallvec",
  1198. "target-lexicon",
  1199. ]
  1200. [[package]]
  1201. name = "cranelift-codegen-meta"
  1202. version = "0.91.1"
  1203. source = "registry+https://github.com/rust-lang/crates.io-index"
  1204. checksum = "639307b45434ad112a98f8300c0f0ab085cbefcd767efcdef9ef19d4c0756e74"
  1205. dependencies = [
  1206. "cranelift-codegen-shared",
  1207. ]
  1208. [[package]]
  1209. name = "cranelift-codegen-shared"
  1210. version = "0.91.1"
  1211. source = "registry+https://github.com/rust-lang/crates.io-index"
  1212. checksum = "278e52e29c53fcf32431ef08406c295699a70306d05a0715c5b1bf50e33a9ab7"
  1213. [[package]]
  1214. name = "cranelift-egraph"
  1215. version = "0.91.1"
  1216. source = "registry+https://github.com/rust-lang/crates.io-index"
  1217. checksum = "624b54323b06e675293939311943ba82d323bb340468ce1889be5da7932c8d73"
  1218. dependencies = [
  1219. "cranelift-entity",
  1220. "fxhash",
  1221. "hashbrown 0.12.3",
  1222. "indexmap 1.9.3",
  1223. "log",
  1224. "smallvec",
  1225. ]
  1226. [[package]]
  1227. name = "cranelift-entity"
  1228. version = "0.91.1"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "9a59bcbca89c3f1b70b93ab3cbba5e5e0cbf3e63dadb23c7525cb142e21a9d4c"
  1231. [[package]]
  1232. name = "cranelift-frontend"
  1233. version = "0.91.1"
  1234. source = "registry+https://github.com/rust-lang/crates.io-index"
  1235. checksum = "0d70abacb8cfef3dc8ff7e8836e9c1d70f7967dfdac824a4cd5e30223415aca6"
  1236. dependencies = [
  1237. "cranelift-codegen",
  1238. "log",
  1239. "smallvec",
  1240. "target-lexicon",
  1241. ]
  1242. [[package]]
  1243. name = "cranelift-isle"
  1244. version = "0.91.1"
  1245. source = "registry+https://github.com/rust-lang/crates.io-index"
  1246. checksum = "393bc73c451830ff8dbb3a07f61843d6cb41a084f9996319917c0b291ed785bb"
  1247. [[package]]
  1248. name = "crc32fast"
  1249. version = "1.4.0"
  1250. source = "registry+https://github.com/rust-lang/crates.io-index"
  1251. checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
  1252. dependencies = [
  1253. "cfg-if",
  1254. ]
  1255. [[package]]
  1256. name = "crossbeam-deque"
  1257. version = "0.8.5"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  1260. dependencies = [
  1261. "crossbeam-epoch",
  1262. "crossbeam-utils",
  1263. ]
  1264. [[package]]
  1265. name = "crossbeam-epoch"
  1266. version = "0.9.18"
  1267. source = "registry+https://github.com/rust-lang/crates.io-index"
  1268. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1269. dependencies = [
  1270. "crossbeam-utils",
  1271. ]
  1272. [[package]]
  1273. name = "crossbeam-queue"
  1274. version = "0.3.11"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
  1277. dependencies = [
  1278. "crossbeam-utils",
  1279. ]
  1280. [[package]]
  1281. name = "crossbeam-utils"
  1282. version = "0.8.19"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  1285. [[package]]
  1286. name = "crunchy"
  1287. version = "0.2.2"
  1288. source = "registry+https://github.com/rust-lang/crates.io-index"
  1289. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1290. [[package]]
  1291. name = "crypto-bigint"
  1292. version = "0.5.5"
  1293. source = "registry+https://github.com/rust-lang/crates.io-index"
  1294. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1295. dependencies = [
  1296. "generic-array",
  1297. "rand_core",
  1298. "subtle",
  1299. "zeroize",
  1300. ]
  1301. [[package]]
  1302. name = "crypto-common"
  1303. version = "0.1.6"
  1304. source = "registry+https://github.com/rust-lang/crates.io-index"
  1305. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1306. dependencies = [
  1307. "generic-array",
  1308. "rand_core",
  1309. "typenum",
  1310. ]
  1311. [[package]]
  1312. name = "crypto_api"
  1313. version = "0.2.2"
  1314. source = "registry+https://github.com/rust-lang/crates.io-index"
  1315. checksum = "2f855e87e75a4799e18b8529178adcde6fd4f97c1449ff4821e747ff728bb102"
  1316. [[package]]
  1317. name = "crypto_api_chachapoly"
  1318. version = "0.5.0"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "b63ae1025a6981f91b70bdcf11827189f49b01aaa3720115b330cd325d1c3809"
  1321. dependencies = [
  1322. "crypto_api",
  1323. ]
  1324. [[package]]
  1325. name = "csv"
  1326. version = "1.3.0"
  1327. source = "registry+https://github.com/rust-lang/crates.io-index"
  1328. checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
  1329. dependencies = [
  1330. "csv-core",
  1331. "itoa",
  1332. "ryu",
  1333. "serde",
  1334. ]
  1335. [[package]]
  1336. name = "csv-core"
  1337. version = "0.1.11"
  1338. source = "registry+https://github.com/rust-lang/crates.io-index"
  1339. checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
  1340. dependencies = [
  1341. "memchr",
  1342. ]
  1343. [[package]]
  1344. name = "ct-codecs"
  1345. version = "1.1.1"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
  1348. [[package]]
  1349. name = "ctr"
  1350. version = "0.9.2"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1353. dependencies = [
  1354. "cipher",
  1355. ]
  1356. [[package]]
  1357. name = "curve25519-dalek"
  1358. version = "4.1.2"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348"
  1361. dependencies = [
  1362. "cfg-if",
  1363. "cpufeatures",
  1364. "curve25519-dalek-derive",
  1365. "digest",
  1366. "fiat-crypto",
  1367. "platforms",
  1368. "rustc_version",
  1369. "subtle",
  1370. "zeroize",
  1371. ]
  1372. [[package]]
  1373. name = "curve25519-dalek-derive"
  1374. version = "0.1.1"
  1375. source = "registry+https://github.com/rust-lang/crates.io-index"
  1376. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1377. dependencies = [
  1378. "proc-macro2",
  1379. "quote",
  1380. "syn 2.0.53",
  1381. ]
  1382. [[package]]
  1383. name = "darkfi"
  1384. version = "0.4.1"
  1385. dependencies = [
  1386. "arti-client",
  1387. "async-trait",
  1388. "blake3",
  1389. "bs58",
  1390. "crypto_api_chachapoly",
  1391. "darkfi-sdk",
  1392. "darkfi-serial",
  1393. "ed25519-compact",
  1394. "futures",
  1395. "futures-rustls",
  1396. "halo2_gadgets",
  1397. "halo2_proofs",
  1398. "lazy_static",
  1399. "libc",
  1400. "libsqlite3-sys",
  1401. "log",
  1402. "num-bigint",
  1403. "pin-project-lite",
  1404. "rand",
  1405. "randomx",
  1406. "rcgen",
  1407. "rusqlite",
  1408. "rustls-pemfile 2.1.1",
  1409. "semver",
  1410. "serde",
  1411. "simplelog",
  1412. "sled",
  1413. "sled-overlay",
  1414. "smol",
  1415. "socket2 0.5.6",
  1416. "structopt",
  1417. "structopt-toml",
  1418. "thiserror",
  1419. "tinyjson",
  1420. "tor-error",
  1421. "tor-hscrypto",
  1422. "tor-rtcompat",
  1423. "url",
  1424. "wasmer",
  1425. "wasmer-compiler-singlepass",
  1426. "wasmer-middlewares",
  1427. "x509-parser",
  1428. ]
  1429. [[package]]
  1430. name = "darkfi-derive"
  1431. version = "0.4.1"
  1432. dependencies = [
  1433. "darkfi-derive-internal",
  1434. "proc-macro-crate 3.1.0",
  1435. "proc-macro2",
  1436. "quote",
  1437. "syn 2.0.53",
  1438. ]
  1439. [[package]]
  1440. name = "darkfi-derive-internal"
  1441. version = "0.4.1"
  1442. dependencies = [
  1443. "proc-macro2",
  1444. "quote",
  1445. "syn 2.0.53",
  1446. ]
  1447. [[package]]
  1448. name = "darkfi-sdk"
  1449. version = "0.4.1"
  1450. dependencies = [
  1451. "blake2b_simd",
  1452. "blake3",
  1453. "bridgetree",
  1454. "bs58",
  1455. "chacha20poly1305",
  1456. "darkfi-serial",
  1457. "halo2_gadgets",
  1458. "lazy_static",
  1459. "num-bigint",
  1460. "num-traits",
  1461. "pasta_curves",
  1462. "rand_core",
  1463. "sha2",
  1464. "subtle",
  1465. "thiserror",
  1466. ]
  1467. [[package]]
  1468. name = "darkfi-serial"
  1469. version = "0.4.1"
  1470. dependencies = [
  1471. "async-trait",
  1472. "blake3",
  1473. "bridgetree",
  1474. "darkfi-derive",
  1475. "futures-lite 2.3.0",
  1476. "pasta_curves",
  1477. "semver",
  1478. "url",
  1479. ]
  1480. [[package]]
  1481. name = "darkfi_dao_contract"
  1482. version = "0.4.1"
  1483. dependencies = [
  1484. "blake2b_simd",
  1485. "bs58",
  1486. "chacha20poly1305",
  1487. "darkfi",
  1488. "darkfi-sdk",
  1489. "darkfi-serial",
  1490. "darkfi_money_contract",
  1491. "getrandom",
  1492. "halo2_proofs",
  1493. "log",
  1494. "rand",
  1495. "thiserror",
  1496. ]
  1497. [[package]]
  1498. name = "darkfi_deployooor_contract"
  1499. version = "0.4.1"
  1500. dependencies = [
  1501. "darkfi",
  1502. "darkfi-sdk",
  1503. "darkfi-serial",
  1504. "getrandom",
  1505. "log",
  1506. "rand",
  1507. "thiserror",
  1508. "wasmparser 0.201.0",
  1509. ]
  1510. [[package]]
  1511. name = "darkfi_money_contract"
  1512. version = "0.4.1"
  1513. dependencies = [
  1514. "blake3",
  1515. "bs58",
  1516. "chacha20poly1305",
  1517. "darkfi",
  1518. "darkfi-sdk",
  1519. "darkfi-serial",
  1520. "getrandom",
  1521. "halo2_proofs",
  1522. "lazy_static",
  1523. "log",
  1524. "rand",
  1525. "thiserror",
  1526. ]
  1527. [[package]]
  1528. name = "darling"
  1529. version = "0.14.4"
  1530. source = "registry+https://github.com/rust-lang/crates.io-index"
  1531. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  1532. dependencies = [
  1533. "darling_core 0.14.4",
  1534. "darling_macro 0.14.4",
  1535. ]
  1536. [[package]]
  1537. name = "darling"
  1538. version = "0.20.8"
  1539. source = "registry+https://github.com/rust-lang/crates.io-index"
  1540. checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
  1541. dependencies = [
  1542. "darling_core 0.20.8",
  1543. "darling_macro 0.20.8",
  1544. ]
  1545. [[package]]
  1546. name = "darling_core"
  1547. version = "0.14.4"
  1548. source = "registry+https://github.com/rust-lang/crates.io-index"
  1549. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  1550. dependencies = [
  1551. "fnv",
  1552. "ident_case",
  1553. "proc-macro2",
  1554. "quote",
  1555. "strsim 0.10.0",
  1556. "syn 1.0.109",
  1557. ]
  1558. [[package]]
  1559. name = "darling_core"
  1560. version = "0.20.8"
  1561. source = "registry+https://github.com/rust-lang/crates.io-index"
  1562. checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
  1563. dependencies = [
  1564. "fnv",
  1565. "ident_case",
  1566. "proc-macro2",
  1567. "quote",
  1568. "strsim 0.10.0",
  1569. "syn 2.0.53",
  1570. ]
  1571. [[package]]
  1572. name = "darling_macro"
  1573. version = "0.14.4"
  1574. source = "registry+https://github.com/rust-lang/crates.io-index"
  1575. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  1576. dependencies = [
  1577. "darling_core 0.14.4",
  1578. "quote",
  1579. "syn 1.0.109",
  1580. ]
  1581. [[package]]
  1582. name = "darling_macro"
  1583. version = "0.20.8"
  1584. source = "registry+https://github.com/rust-lang/crates.io-index"
  1585. checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
  1586. dependencies = [
  1587. "darling_core 0.20.8",
  1588. "quote",
  1589. "syn 2.0.53",
  1590. ]
  1591. [[package]]
  1592. name = "dashmap"
  1593. version = "5.5.3"
  1594. source = "registry+https://github.com/rust-lang/crates.io-index"
  1595. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  1596. dependencies = [
  1597. "cfg-if",
  1598. "hashbrown 0.14.3",
  1599. "lock_api",
  1600. "once_cell",
  1601. "parking_lot_core 0.9.9",
  1602. ]
  1603. [[package]]
  1604. name = "dasp_sample"
  1605. version = "0.11.0"
  1606. source = "registry+https://github.com/rust-lang/crates.io-index"
  1607. checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
  1608. [[package]]
  1609. name = "data-encoding"
  1610. version = "2.5.0"
  1611. source = "registry+https://github.com/rust-lang/crates.io-index"
  1612. checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
  1613. [[package]]
  1614. name = "der"
  1615. version = "0.7.8"
  1616. source = "registry+https://github.com/rust-lang/crates.io-index"
  1617. checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
  1618. dependencies = [
  1619. "const-oid",
  1620. "pem-rfc7468",
  1621. "zeroize",
  1622. ]
  1623. [[package]]
  1624. name = "der-parser"
  1625. version = "9.0.0"
  1626. source = "registry+https://github.com/rust-lang/crates.io-index"
  1627. checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
  1628. dependencies = [
  1629. "asn1-rs",
  1630. "displaydoc",
  1631. "nom",
  1632. "num-bigint",
  1633. "num-traits",
  1634. "rusticata-macros",
  1635. ]
  1636. [[package]]
  1637. name = "deranged"
  1638. version = "0.3.11"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1641. dependencies = [
  1642. "powerfmt",
  1643. "serde",
  1644. ]
  1645. [[package]]
  1646. name = "derivative"
  1647. version = "2.2.0"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1650. dependencies = [
  1651. "proc-macro2",
  1652. "quote",
  1653. "syn 1.0.109",
  1654. ]
  1655. [[package]]
  1656. name = "derive-adhoc"
  1657. version = "0.7.3"
  1658. source = "registry+https://github.com/rust-lang/crates.io-index"
  1659. checksum = "5283ac2881753c76c0892406705553f0d9ab30649f81e18964d3408f4501edb8"
  1660. dependencies = [
  1661. "derive-adhoc-macros 0.7.3",
  1662. "heck 0.4.1",
  1663. ]
  1664. [[package]]
  1665. name = "derive-adhoc"
  1666. version = "0.8.2"
  1667. source = "registry+https://github.com/rust-lang/crates.io-index"
  1668. checksum = "57ca5c68cf8568ff97903eeea4d54a7ab8b15f71ac439a3eff1cbdb2a707fd62"
  1669. dependencies = [
  1670. "derive-adhoc-macros 0.8.2",
  1671. "heck 0.4.1",
  1672. ]
  1673. [[package]]
  1674. name = "derive-adhoc-macros"
  1675. version = "0.7.3"
  1676. source = "registry+https://github.com/rust-lang/crates.io-index"
  1677. checksum = "c21b673a9b8c78c34908e6fcb42b922e11c4df2de5237f1c3f58d3285904a84b"
  1678. dependencies = [
  1679. "heck 0.4.1",
  1680. "itertools 0.11.0",
  1681. "proc-macro-crate 1.3.1",
  1682. "proc-macro2",
  1683. "quote",
  1684. "sha3",
  1685. "strum 0.25.0",
  1686. "syn 1.0.109",
  1687. "void",
  1688. ]
  1689. [[package]]
  1690. name = "derive-adhoc-macros"
  1691. version = "0.8.2"
  1692. source = "registry+https://github.com/rust-lang/crates.io-index"
  1693. checksum = "6f35abdabee572dec7fba2cad5e21a47ba99fe75347c8cad233a39890a5b2807"
  1694. dependencies = [
  1695. "heck 0.4.1",
  1696. "itertools 0.12.1",
  1697. "proc-macro-crate 2.0.0",
  1698. "proc-macro2",
  1699. "quote",
  1700. "sha3",
  1701. "strum 0.25.0",
  1702. "syn 2.0.53",
  1703. "void",
  1704. ]
  1705. [[package]]
  1706. name = "derive_builder_core_fork_arti"
  1707. version = "0.11.2"
  1708. source = "registry+https://github.com/rust-lang/crates.io-index"
  1709. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  1710. dependencies = [
  1711. "darling 0.14.4",
  1712. "proc-macro2",
  1713. "quote",
  1714. "syn 1.0.109",
  1715. ]
  1716. [[package]]
  1717. name = "derive_builder_fork_arti"
  1718. version = "0.11.2"
  1719. source = "registry+https://github.com/rust-lang/crates.io-index"
  1720. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  1721. dependencies = [
  1722. "derive_builder_macro_fork_arti",
  1723. ]
  1724. [[package]]
  1725. name = "derive_builder_macro_fork_arti"
  1726. version = "0.11.2"
  1727. source = "registry+https://github.com/rust-lang/crates.io-index"
  1728. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  1729. dependencies = [
  1730. "derive_builder_core_fork_arti",
  1731. "syn 1.0.109",
  1732. ]
  1733. [[package]]
  1734. name = "derive_more"
  1735. version = "0.99.17"
  1736. source = "registry+https://github.com/rust-lang/crates.io-index"
  1737. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  1738. dependencies = [
  1739. "convert_case",
  1740. "proc-macro2",
  1741. "quote",
  1742. "rustc_version",
  1743. "syn 1.0.109",
  1744. ]
  1745. [[package]]
  1746. name = "digest"
  1747. version = "0.10.7"
  1748. source = "registry+https://github.com/rust-lang/crates.io-index"
  1749. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1750. dependencies = [
  1751. "block-buffer",
  1752. "const-oid",
  1753. "crypto-common",
  1754. "subtle",
  1755. ]
  1756. [[package]]
  1757. name = "directories"
  1758. version = "5.0.1"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
  1761. dependencies = [
  1762. "dirs-sys",
  1763. ]
  1764. [[package]]
  1765. name = "dirs"
  1766. version = "5.0.1"
  1767. source = "registry+https://github.com/rust-lang/crates.io-index"
  1768. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1769. dependencies = [
  1770. "dirs-sys",
  1771. ]
  1772. [[package]]
  1773. name = "dirs-next"
  1774. version = "2.0.0"
  1775. source = "registry+https://github.com/rust-lang/crates.io-index"
  1776. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1777. dependencies = [
  1778. "cfg-if",
  1779. "dirs-sys-next",
  1780. ]
  1781. [[package]]
  1782. name = "dirs-sys"
  1783. version = "0.4.1"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1786. dependencies = [
  1787. "libc",
  1788. "option-ext",
  1789. "redox_users",
  1790. "windows-sys 0.48.0",
  1791. ]
  1792. [[package]]
  1793. name = "dirs-sys-next"
  1794. version = "0.1.2"
  1795. source = "registry+https://github.com/rust-lang/crates.io-index"
  1796. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1797. dependencies = [
  1798. "libc",
  1799. "redox_users",
  1800. "winapi",
  1801. ]
  1802. [[package]]
  1803. name = "displaydoc"
  1804. version = "0.2.4"
  1805. source = "registry+https://github.com/rust-lang/crates.io-index"
  1806. checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
  1807. dependencies = [
  1808. "proc-macro2",
  1809. "quote",
  1810. "syn 2.0.53",
  1811. ]
  1812. [[package]]
  1813. name = "downcast-rs"
  1814. version = "1.2.0"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
  1817. [[package]]
  1818. name = "drk"
  1819. version = "0.4.1"
  1820. dependencies = [
  1821. "blake3",
  1822. "bs58",
  1823. "darkfi",
  1824. "darkfi-sdk",
  1825. "darkfi-serial",
  1826. "darkfi_dao_contract",
  1827. "darkfi_deployooor_contract",
  1828. "darkfi_money_contract",
  1829. "easy-parallel",
  1830. "lazy_static",
  1831. "log",
  1832. "prettytable-rs",
  1833. "rand",
  1834. "rodio",
  1835. "rusqlite",
  1836. "serde",
  1837. "signal-hook",
  1838. "signal-hook-async-std",
  1839. "simplelog",
  1840. "smol",
  1841. "structopt",
  1842. "structopt-toml",
  1843. "url",
  1844. ]
  1845. [[package]]
  1846. name = "dunce"
  1847. version = "1.0.4"
  1848. source = "registry+https://github.com/rust-lang/crates.io-index"
  1849. checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
  1850. [[package]]
  1851. name = "dyn-clone"
  1852. version = "1.0.17"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
  1855. [[package]]
  1856. name = "dynasm"
  1857. version = "1.2.3"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
  1860. dependencies = [
  1861. "bitflags 1.3.2",
  1862. "byteorder",
  1863. "lazy_static",
  1864. "proc-macro-error",
  1865. "proc-macro2",
  1866. "quote",
  1867. "syn 1.0.109",
  1868. ]
  1869. [[package]]
  1870. name = "dynasmrt"
  1871. version = "1.2.3"
  1872. source = "registry+https://github.com/rust-lang/crates.io-index"
  1873. checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
  1874. dependencies = [
  1875. "byteorder",
  1876. "dynasm",
  1877. "memmap2 0.5.10",
  1878. ]
  1879. [[package]]
  1880. name = "easy-parallel"
  1881. version = "3.3.1"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  1884. [[package]]
  1885. name = "ecdsa"
  1886. version = "0.16.9"
  1887. source = "registry+https://github.com/rust-lang/crates.io-index"
  1888. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1889. dependencies = [
  1890. "der",
  1891. "digest",
  1892. "elliptic-curve",
  1893. "rfc6979",
  1894. "signature",
  1895. "spki",
  1896. ]
  1897. [[package]]
  1898. name = "ed25519"
  1899. version = "2.2.3"
  1900. source = "registry+https://github.com/rust-lang/crates.io-index"
  1901. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1902. dependencies = [
  1903. "pkcs8",
  1904. "signature",
  1905. ]
  1906. [[package]]
  1907. name = "ed25519-compact"
  1908. version = "2.1.1"
  1909. source = "registry+https://github.com/rust-lang/crates.io-index"
  1910. checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190"
  1911. dependencies = [
  1912. "ct-codecs",
  1913. "getrandom",
  1914. ]
  1915. [[package]]
  1916. name = "ed25519-dalek"
  1917. version = "2.1.1"
  1918. source = "registry+https://github.com/rust-lang/crates.io-index"
  1919. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1920. dependencies = [
  1921. "curve25519-dalek",
  1922. "ed25519",
  1923. "merlin",
  1924. "rand_core",
  1925. "serde",
  1926. "sha2",
  1927. "subtle",
  1928. "zeroize",
  1929. ]
  1930. [[package]]
  1931. name = "educe"
  1932. version = "0.4.23"
  1933. source = "registry+https://github.com/rust-lang/crates.io-index"
  1934. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  1935. dependencies = [
  1936. "enum-ordinalize",
  1937. "proc-macro2",
  1938. "quote",
  1939. "syn 1.0.109",
  1940. ]
  1941. [[package]]
  1942. name = "either"
  1943. version = "1.10.0"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
  1946. [[package]]
  1947. name = "elliptic-curve"
  1948. version = "0.13.8"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1951. dependencies = [
  1952. "base16ct",
  1953. "crypto-bigint",
  1954. "digest",
  1955. "ff",
  1956. "generic-array",
  1957. "group",
  1958. "pkcs8",
  1959. "rand_core",
  1960. "sec1",
  1961. "subtle",
  1962. "zeroize",
  1963. ]
  1964. [[package]]
  1965. name = "ena"
  1966. version = "0.14.2"
  1967. source = "registry+https://github.com/rust-lang/crates.io-index"
  1968. checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1"
  1969. dependencies = [
  1970. "log",
  1971. ]
  1972. [[package]]
  1973. name = "encode_unicode"
  1974. version = "1.0.0"
  1975. source = "registry+https://github.com/rust-lang/crates.io-index"
  1976. checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
  1977. [[package]]
  1978. name = "encoding_rs"
  1979. version = "0.8.33"
  1980. source = "registry+https://github.com/rust-lang/crates.io-index"
  1981. checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
  1982. dependencies = [
  1983. "cfg-if",
  1984. ]
  1985. [[package]]
  1986. name = "enr"
  1987. version = "0.10.0"
  1988. source = "registry+https://github.com/rust-lang/crates.io-index"
  1989. checksum = "2a3d8dc56e02f954cac8eb489772c552c473346fc34f67412bb6244fd647f7e4"
  1990. dependencies = [
  1991. "base64 0.21.7",
  1992. "bytes",
  1993. "hex",
  1994. "k256",
  1995. "log",
  1996. "rand",
  1997. "rlp",
  1998. "serde",
  1999. "sha3",
  2000. "zeroize",
  2001. ]
  2002. [[package]]
  2003. name = "enum-iterator"
  2004. version = "0.7.0"
  2005. source = "registry+https://github.com/rust-lang/crates.io-index"
  2006. checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
  2007. dependencies = [
  2008. "enum-iterator-derive",
  2009. ]
  2010. [[package]]
  2011. name = "enum-iterator-derive"
  2012. version = "0.7.0"
  2013. source = "registry+https://github.com/rust-lang/crates.io-index"
  2014. checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
  2015. dependencies = [
  2016. "proc-macro2",
  2017. "quote",
  2018. "syn 1.0.109",
  2019. ]
  2020. [[package]]
  2021. name = "enum-ordinalize"
  2022. version = "3.1.15"
  2023. source = "registry+https://github.com/rust-lang/crates.io-index"
  2024. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  2025. dependencies = [
  2026. "num-bigint",
  2027. "num-traits",
  2028. "proc-macro2",
  2029. "quote",
  2030. "syn 2.0.53",
  2031. ]
  2032. [[package]]
  2033. name = "enumset"
  2034. version = "1.1.3"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "226c0da7462c13fb57e5cc9e0dc8f0635e7d27f276a3a7fd30054647f669007d"
  2037. dependencies = [
  2038. "enumset_derive",
  2039. ]
  2040. [[package]]
  2041. name = "enumset_derive"
  2042. version = "0.8.1"
  2043. source = "registry+https://github.com/rust-lang/crates.io-index"
  2044. checksum = "e08b6c6ab82d70f08844964ba10c7babb716de2ecaeab9be5717918a5177d3af"
  2045. dependencies = [
  2046. "darling 0.20.8",
  2047. "proc-macro2",
  2048. "quote",
  2049. "syn 2.0.53",
  2050. ]
  2051. [[package]]
  2052. name = "equivalent"
  2053. version = "1.0.1"
  2054. source = "registry+https://github.com/rust-lang/crates.io-index"
  2055. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  2056. [[package]]
  2057. name = "errno"
  2058. version = "0.3.8"
  2059. source = "registry+https://github.com/rust-lang/crates.io-index"
  2060. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  2061. dependencies = [
  2062. "libc",
  2063. "windows-sys 0.52.0",
  2064. ]
  2065. [[package]]
  2066. name = "error-chain"
  2067. version = "0.12.4"
  2068. source = "registry+https://github.com/rust-lang/crates.io-index"
  2069. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  2070. dependencies = [
  2071. "version_check",
  2072. ]
  2073. [[package]]
  2074. name = "eth-keystore"
  2075. version = "0.5.0"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab"
  2078. dependencies = [
  2079. "aes",
  2080. "ctr",
  2081. "digest",
  2082. "hex",
  2083. "hmac",
  2084. "pbkdf2 0.11.0",
  2085. "rand",
  2086. "scrypt",
  2087. "serde",
  2088. "serde_json",
  2089. "sha2",
  2090. "sha3",
  2091. "thiserror",
  2092. "uuid 0.8.2",
  2093. ]
  2094. [[package]]
  2095. name = "ethabi"
  2096. version = "18.0.0"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898"
  2099. dependencies = [
  2100. "ethereum-types",
  2101. "hex",
  2102. "once_cell",
  2103. "regex",
  2104. "serde",
  2105. "serde_json",
  2106. "sha3",
  2107. "thiserror",
  2108. "uint",
  2109. ]
  2110. [[package]]
  2111. name = "ethbloom"
  2112. version = "0.13.0"
  2113. source = "registry+https://github.com/rust-lang/crates.io-index"
  2114. checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60"
  2115. dependencies = [
  2116. "crunchy",
  2117. "fixed-hash",
  2118. "impl-codec",
  2119. "impl-rlp",
  2120. "impl-serde",
  2121. "scale-info",
  2122. "tiny-keccak",
  2123. ]
  2124. [[package]]
  2125. name = "ethereum-types"
  2126. version = "0.14.1"
  2127. source = "registry+https://github.com/rust-lang/crates.io-index"
  2128. checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee"
  2129. dependencies = [
  2130. "ethbloom",
  2131. "fixed-hash",
  2132. "impl-codec",
  2133. "impl-rlp",
  2134. "impl-serde",
  2135. "primitive-types",
  2136. "scale-info",
  2137. "uint",
  2138. ]
  2139. [[package]]
  2140. name = "ethers"
  2141. version = "2.0.14"
  2142. source = "registry+https://github.com/rust-lang/crates.io-index"
  2143. checksum = "816841ea989f0c69e459af1cf23a6b0033b19a55424a1ea3a30099becdb8dec0"
  2144. dependencies = [
  2145. "ethers-addressbook",
  2146. "ethers-contract",
  2147. "ethers-core",
  2148. "ethers-etherscan",
  2149. "ethers-middleware",
  2150. "ethers-providers",
  2151. "ethers-signers",
  2152. "ethers-solc",
  2153. ]
  2154. [[package]]
  2155. name = "ethers-addressbook"
  2156. version = "2.0.14"
  2157. source = "registry+https://github.com/rust-lang/crates.io-index"
  2158. checksum = "5495afd16b4faa556c3bba1f21b98b4983e53c1755022377051a975c3b021759"
  2159. dependencies = [
  2160. "ethers-core",
  2161. "once_cell",
  2162. "serde",
  2163. "serde_json",
  2164. ]
  2165. [[package]]
  2166. name = "ethers-contract"
  2167. version = "2.0.14"
  2168. source = "registry+https://github.com/rust-lang/crates.io-index"
  2169. checksum = "6fceafa3578c836eeb874af87abacfb041f92b4da0a78a5edd042564b8ecdaaa"
  2170. dependencies = [
  2171. "const-hex",
  2172. "ethers-contract-abigen",
  2173. "ethers-contract-derive",
  2174. "ethers-core",
  2175. "ethers-providers",
  2176. "futures-util",
  2177. "once_cell",
  2178. "pin-project",
  2179. "serde",
  2180. "serde_json",
  2181. "thiserror",
  2182. ]
  2183. [[package]]
  2184. name = "ethers-contract-abigen"
  2185. version = "2.0.14"
  2186. source = "registry+https://github.com/rust-lang/crates.io-index"
  2187. checksum = "04ba01fbc2331a38c429eb95d4a570166781f14290ef9fdb144278a90b5a739b"
  2188. dependencies = [
  2189. "Inflector",
  2190. "const-hex",
  2191. "dunce",
  2192. "ethers-core",
  2193. "ethers-etherscan",
  2194. "eyre",
  2195. "prettyplease",
  2196. "proc-macro2",
  2197. "quote",
  2198. "regex",
  2199. "reqwest",
  2200. "serde",
  2201. "serde_json",
  2202. "syn 2.0.53",
  2203. "toml 0.8.12",
  2204. "walkdir",
  2205. ]
  2206. [[package]]
  2207. name = "ethers-contract-derive"
  2208. version = "2.0.14"
  2209. source = "registry+https://github.com/rust-lang/crates.io-index"
  2210. checksum = "87689dcabc0051cde10caaade298f9e9093d65f6125c14575db3fd8c669a168f"
  2211. dependencies = [
  2212. "Inflector",
  2213. "const-hex",
  2214. "ethers-contract-abigen",
  2215. "ethers-core",
  2216. "proc-macro2",
  2217. "quote",
  2218. "serde_json",
  2219. "syn 2.0.53",
  2220. ]
  2221. [[package]]
  2222. name = "ethers-core"
  2223. version = "2.0.14"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f"
  2226. dependencies = [
  2227. "arrayvec",
  2228. "bytes",
  2229. "cargo_metadata 0.18.1",
  2230. "chrono",
  2231. "const-hex",
  2232. "elliptic-curve",
  2233. "ethabi",
  2234. "generic-array",
  2235. "k256",
  2236. "num_enum",
  2237. "once_cell",
  2238. "open-fastrlp",
  2239. "rand",
  2240. "rlp",
  2241. "serde",
  2242. "serde_json",
  2243. "strum 0.26.2",
  2244. "syn 2.0.53",
  2245. "tempfile",
  2246. "thiserror",
  2247. "tiny-keccak",
  2248. "unicode-xid",
  2249. ]
  2250. [[package]]
  2251. name = "ethers-etherscan"
  2252. version = "2.0.14"
  2253. source = "registry+https://github.com/rust-lang/crates.io-index"
  2254. checksum = "e79e5973c26d4baf0ce55520bd732314328cabe53193286671b47144145b9649"
  2255. dependencies = [
  2256. "chrono",
  2257. "ethers-core",
  2258. "ethers-solc",
  2259. "reqwest",
  2260. "semver",
  2261. "serde",
  2262. "serde_json",
  2263. "thiserror",
  2264. "tracing",
  2265. ]
  2266. [[package]]
  2267. name = "ethers-middleware"
  2268. version = "2.0.14"
  2269. source = "registry+https://github.com/rust-lang/crates.io-index"
  2270. checksum = "48f9fdf09aec667c099909d91908d5eaf9be1bd0e2500ba4172c1d28bfaa43de"
  2271. dependencies = [
  2272. "async-trait",
  2273. "auto_impl",
  2274. "ethers-contract",
  2275. "ethers-core",
  2276. "ethers-etherscan",
  2277. "ethers-providers",
  2278. "ethers-signers",
  2279. "futures-channel",
  2280. "futures-locks",
  2281. "futures-util",
  2282. "instant",
  2283. "reqwest",
  2284. "serde",
  2285. "serde_json",
  2286. "thiserror",
  2287. "tokio",
  2288. "tracing",
  2289. "tracing-futures",
  2290. "url",
  2291. ]
  2292. [[package]]
  2293. name = "ethers-providers"
  2294. version = "2.0.14"
  2295. source = "registry+https://github.com/rust-lang/crates.io-index"
  2296. checksum = "6434c9a33891f1effc9c75472e12666db2fa5a0fec4b29af6221680a6fe83ab2"
  2297. dependencies = [
  2298. "async-trait",
  2299. "auto_impl",
  2300. "base64 0.21.7",
  2301. "bytes",
  2302. "const-hex",
  2303. "enr",
  2304. "ethers-core",
  2305. "futures-channel",
  2306. "futures-core",
  2307. "futures-timer",
  2308. "futures-util",
  2309. "hashers",
  2310. "http 0.2.12",
  2311. "instant",
  2312. "jsonwebtoken",
  2313. "once_cell",
  2314. "pin-project",
  2315. "reqwest",
  2316. "serde",
  2317. "serde_json",
  2318. "thiserror",
  2319. "tokio",
  2320. "tokio-tungstenite",
  2321. "tracing",
  2322. "tracing-futures",
  2323. "url",
  2324. "wasm-bindgen",
  2325. "wasm-bindgen-futures",
  2326. "web-sys",
  2327. "ws_stream_wasm",
  2328. ]
  2329. [[package]]
  2330. name = "ethers-signers"
  2331. version = "2.0.14"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "228875491c782ad851773b652dd8ecac62cda8571d3bc32a5853644dd26766c2"
  2334. dependencies = [
  2335. "async-trait",
  2336. "coins-bip32",
  2337. "coins-bip39",
  2338. "const-hex",
  2339. "elliptic-curve",
  2340. "eth-keystore",
  2341. "ethers-core",
  2342. "rand",
  2343. "sha2",
  2344. "thiserror",
  2345. "tracing",
  2346. ]
  2347. [[package]]
  2348. name = "ethers-solc"
  2349. version = "2.0.14"
  2350. source = "registry+https://github.com/rust-lang/crates.io-index"
  2351. checksum = "66244a771d9163282646dbeffe0e6eca4dda4146b6498644e678ac6089b11edd"
  2352. dependencies = [
  2353. "cfg-if",
  2354. "const-hex",
  2355. "dirs",
  2356. "dunce",
  2357. "ethers-core",
  2358. "glob",
  2359. "home",
  2360. "md-5",
  2361. "num_cpus",
  2362. "once_cell",
  2363. "path-slash",
  2364. "rayon",
  2365. "regex",
  2366. "semver",
  2367. "serde",
  2368. "serde_json",
  2369. "solang-parser",
  2370. "svm-rs",
  2371. "thiserror",
  2372. "tiny-keccak",
  2373. "tokio",
  2374. "tracing",
  2375. "walkdir",
  2376. "yansi",
  2377. ]
  2378. [[package]]
  2379. name = "event-listener"
  2380. version = "2.5.3"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  2383. [[package]]
  2384. name = "event-listener"
  2385. version = "3.1.0"
  2386. source = "registry+https://github.com/rust-lang/crates.io-index"
  2387. checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
  2388. dependencies = [
  2389. "concurrent-queue",
  2390. "parking",
  2391. "pin-project-lite",
  2392. ]
  2393. [[package]]
  2394. name = "event-listener"
  2395. version = "4.0.3"
  2396. source = "registry+https://github.com/rust-lang/crates.io-index"
  2397. checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
  2398. dependencies = [
  2399. "concurrent-queue",
  2400. "parking",
  2401. "pin-project-lite",
  2402. ]
  2403. [[package]]
  2404. name = "event-listener"
  2405. version = "5.2.0"
  2406. source = "registry+https://github.com/rust-lang/crates.io-index"
  2407. checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91"
  2408. dependencies = [
  2409. "concurrent-queue",
  2410. "parking",
  2411. "pin-project-lite",
  2412. ]
  2413. [[package]]
  2414. name = "event-listener-strategy"
  2415. version = "0.4.0"
  2416. source = "registry+https://github.com/rust-lang/crates.io-index"
  2417. checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
  2418. dependencies = [
  2419. "event-listener 4.0.3",
  2420. "pin-project-lite",
  2421. ]
  2422. [[package]]
  2423. name = "event-listener-strategy"
  2424. version = "0.5.0"
  2425. source = "registry+https://github.com/rust-lang/crates.io-index"
  2426. checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291"
  2427. dependencies = [
  2428. "event-listener 5.2.0",
  2429. "pin-project-lite",
  2430. ]
  2431. [[package]]
  2432. name = "eyre"
  2433. version = "0.6.12"
  2434. source = "registry+https://github.com/rust-lang/crates.io-index"
  2435. checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
  2436. dependencies = [
  2437. "indenter",
  2438. "once_cell",
  2439. ]
  2440. [[package]]
  2441. name = "fallible-iterator"
  2442. version = "0.2.0"
  2443. source = "registry+https://github.com/rust-lang/crates.io-index"
  2444. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  2445. [[package]]
  2446. name = "fallible-iterator"
  2447. version = "0.3.0"
  2448. source = "registry+https://github.com/rust-lang/crates.io-index"
  2449. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  2450. [[package]]
  2451. name = "fallible-streaming-iterator"
  2452. version = "0.1.9"
  2453. source = "registry+https://github.com/rust-lang/crates.io-index"
  2454. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  2455. [[package]]
  2456. name = "fastrand"
  2457. version = "1.9.0"
  2458. source = "registry+https://github.com/rust-lang/crates.io-index"
  2459. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  2460. dependencies = [
  2461. "instant",
  2462. ]
  2463. [[package]]
  2464. name = "fastrand"
  2465. version = "2.0.1"
  2466. source = "registry+https://github.com/rust-lang/crates.io-index"
  2467. checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
  2468. [[package]]
  2469. name = "ff"
  2470. version = "0.13.0"
  2471. source = "registry+https://github.com/rust-lang/crates.io-index"
  2472. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  2473. dependencies = [
  2474. "bitvec",
  2475. "rand_core",
  2476. "subtle",
  2477. ]
  2478. [[package]]
  2479. name = "fiat-crypto"
  2480. version = "0.2.7"
  2481. source = "registry+https://github.com/rust-lang/crates.io-index"
  2482. checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f"
  2483. [[package]]
  2484. name = "filetime"
  2485. version = "0.2.23"
  2486. source = "registry+https://github.com/rust-lang/crates.io-index"
  2487. checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
  2488. dependencies = [
  2489. "cfg-if",
  2490. "libc",
  2491. "redox_syscall 0.4.1",
  2492. "windows-sys 0.52.0",
  2493. ]
  2494. [[package]]
  2495. name = "fixed-hash"
  2496. version = "0.8.0"
  2497. source = "registry+https://github.com/rust-lang/crates.io-index"
  2498. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  2499. dependencies = [
  2500. "byteorder",
  2501. "rand",
  2502. "rustc-hex",
  2503. "static_assertions",
  2504. ]
  2505. [[package]]
  2506. name = "fixedbitset"
  2507. version = "0.4.2"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  2510. [[package]]
  2511. name = "flate2"
  2512. version = "1.0.28"
  2513. source = "registry+https://github.com/rust-lang/crates.io-index"
  2514. checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
  2515. dependencies = [
  2516. "crc32fast",
  2517. "miniz_oxide",
  2518. ]
  2519. [[package]]
  2520. name = "fluid-let"
  2521. version = "1.0.0"
  2522. source = "registry+https://github.com/rust-lang/crates.io-index"
  2523. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  2524. [[package]]
  2525. name = "fnv"
  2526. version = "1.0.7"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2529. [[package]]
  2530. name = "foreign-types"
  2531. version = "0.3.2"
  2532. source = "registry+https://github.com/rust-lang/crates.io-index"
  2533. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  2534. dependencies = [
  2535. "foreign-types-shared",
  2536. ]
  2537. [[package]]
  2538. name = "foreign-types-shared"
  2539. version = "0.1.1"
  2540. source = "registry+https://github.com/rust-lang/crates.io-index"
  2541. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  2542. [[package]]
  2543. name = "form_urlencoded"
  2544. version = "1.2.1"
  2545. source = "registry+https://github.com/rust-lang/crates.io-index"
  2546. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  2547. dependencies = [
  2548. "percent-encoding",
  2549. ]
  2550. [[package]]
  2551. name = "fs-mistrust"
  2552. version = "0.7.8"
  2553. source = "registry+https://github.com/rust-lang/crates.io-index"
  2554. checksum = "0af38a7e00ec1cc0cae8002d3cc9738ebb97d623bc519ca8a9b471e9bc8cdb75"
  2555. dependencies = [
  2556. "derive_builder_fork_arti",
  2557. "dirs",
  2558. "educe",
  2559. "libc",
  2560. "once_cell",
  2561. "pwd-grp",
  2562. "serde",
  2563. "thiserror",
  2564. "walkdir",
  2565. ]
  2566. [[package]]
  2567. name = "fs2"
  2568. version = "0.4.3"
  2569. source = "registry+https://github.com/rust-lang/crates.io-index"
  2570. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  2571. dependencies = [
  2572. "libc",
  2573. "winapi",
  2574. ]
  2575. [[package]]
  2576. name = "fslock"
  2577. version = "0.2.1"
  2578. source = "registry+https://github.com/rust-lang/crates.io-index"
  2579. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  2580. dependencies = [
  2581. "libc",
  2582. "winapi",
  2583. ]
  2584. [[package]]
  2585. name = "fslock-arti-fork"
  2586. version = "0.2.0"
  2587. source = "registry+https://github.com/rust-lang/crates.io-index"
  2588. checksum = "8b21bd626aaab7b904b20bef6d9e06298914a0c8d9fb8b010483766b2e532791"
  2589. dependencies = [
  2590. "libc",
  2591. "winapi",
  2592. ]
  2593. [[package]]
  2594. name = "fslock-guard"
  2595. version = "0.1.1"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "b2a8cb6a456f2340bca9a2934857b531c107311d5d271e8b57be43ac87a87489"
  2598. dependencies = [
  2599. "fslock-arti-fork",
  2600. "thiserror",
  2601. "winapi",
  2602. ]
  2603. [[package]]
  2604. name = "funty"
  2605. version = "2.0.0"
  2606. source = "registry+https://github.com/rust-lang/crates.io-index"
  2607. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2608. [[package]]
  2609. name = "futures"
  2610. version = "0.3.30"
  2611. source = "registry+https://github.com/rust-lang/crates.io-index"
  2612. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  2613. dependencies = [
  2614. "futures-channel",
  2615. "futures-core",
  2616. "futures-executor",
  2617. "futures-io",
  2618. "futures-sink",
  2619. "futures-task",
  2620. "futures-util",
  2621. ]
  2622. [[package]]
  2623. name = "futures-channel"
  2624. version = "0.3.30"
  2625. source = "registry+https://github.com/rust-lang/crates.io-index"
  2626. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  2627. dependencies = [
  2628. "futures-core",
  2629. "futures-sink",
  2630. ]
  2631. [[package]]
  2632. name = "futures-core"
  2633. version = "0.3.30"
  2634. source = "registry+https://github.com/rust-lang/crates.io-index"
  2635. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  2636. [[package]]
  2637. name = "futures-executor"
  2638. version = "0.3.30"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  2641. dependencies = [
  2642. "futures-core",
  2643. "futures-task",
  2644. "futures-util",
  2645. ]
  2646. [[package]]
  2647. name = "futures-io"
  2648. version = "0.3.30"
  2649. source = "registry+https://github.com/rust-lang/crates.io-index"
  2650. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  2651. [[package]]
  2652. name = "futures-lite"
  2653. version = "1.13.0"
  2654. source = "registry+https://github.com/rust-lang/crates.io-index"
  2655. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  2656. dependencies = [
  2657. "fastrand 1.9.0",
  2658. "futures-core",
  2659. "futures-io",
  2660. "memchr",
  2661. "parking",
  2662. "pin-project-lite",
  2663. "waker-fn",
  2664. ]
  2665. [[package]]
  2666. name = "futures-lite"
  2667. version = "2.3.0"
  2668. source = "registry+https://github.com/rust-lang/crates.io-index"
  2669. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  2670. dependencies = [
  2671. "fastrand 2.0.1",
  2672. "futures-core",
  2673. "futures-io",
  2674. "parking",
  2675. "pin-project-lite",
  2676. ]
  2677. [[package]]
  2678. name = "futures-locks"
  2679. version = "0.7.1"
  2680. source = "registry+https://github.com/rust-lang/crates.io-index"
  2681. checksum = "45ec6fe3675af967e67c5536c0b9d44e34e6c52f86bedc4ea49c5317b8e94d06"
  2682. dependencies = [
  2683. "futures-channel",
  2684. "futures-task",
  2685. ]
  2686. [[package]]
  2687. name = "futures-macro"
  2688. version = "0.3.30"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  2691. dependencies = [
  2692. "proc-macro2",
  2693. "quote",
  2694. "syn 2.0.53",
  2695. ]
  2696. [[package]]
  2697. name = "futures-rustls"
  2698. version = "0.25.1"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "c8d8a2499f0fecc0492eb3e47eab4e92da7875e1028ad2528f214ac3346ca04e"
  2701. dependencies = [
  2702. "futures-io",
  2703. "rustls 0.22.2",
  2704. "rustls-pki-types",
  2705. ]
  2706. [[package]]
  2707. name = "futures-sink"
  2708. version = "0.3.30"
  2709. source = "registry+https://github.com/rust-lang/crates.io-index"
  2710. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  2711. [[package]]
  2712. name = "futures-task"
  2713. version = "0.3.30"
  2714. source = "registry+https://github.com/rust-lang/crates.io-index"
  2715. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  2716. [[package]]
  2717. name = "futures-timer"
  2718. version = "3.0.3"
  2719. source = "registry+https://github.com/rust-lang/crates.io-index"
  2720. checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
  2721. dependencies = [
  2722. "gloo-timers",
  2723. "send_wrapper 0.4.0",
  2724. ]
  2725. [[package]]
  2726. name = "futures-util"
  2727. version = "0.3.30"
  2728. source = "registry+https://github.com/rust-lang/crates.io-index"
  2729. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  2730. dependencies = [
  2731. "futures-channel",
  2732. "futures-core",
  2733. "futures-io",
  2734. "futures-macro",
  2735. "futures-sink",
  2736. "futures-task",
  2737. "memchr",
  2738. "pin-project-lite",
  2739. "pin-utils",
  2740. "slab",
  2741. ]
  2742. [[package]]
  2743. name = "fxhash"
  2744. version = "0.2.1"
  2745. source = "registry+https://github.com/rust-lang/crates.io-index"
  2746. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2747. dependencies = [
  2748. "byteorder",
  2749. ]
  2750. [[package]]
  2751. name = "generic-array"
  2752. version = "0.14.7"
  2753. source = "registry+https://github.com/rust-lang/crates.io-index"
  2754. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2755. dependencies = [
  2756. "typenum",
  2757. "version_check",
  2758. "zeroize",
  2759. ]
  2760. [[package]]
  2761. name = "getrandom"
  2762. version = "0.2.12"
  2763. source = "registry+https://github.com/rust-lang/crates.io-index"
  2764. checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
  2765. dependencies = [
  2766. "cfg-if",
  2767. "js-sys",
  2768. "libc",
  2769. "wasi",
  2770. "wasm-bindgen",
  2771. ]
  2772. [[package]]
  2773. name = "gimli"
  2774. version = "0.26.2"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
  2777. dependencies = [
  2778. "fallible-iterator 0.2.0",
  2779. "indexmap 1.9.3",
  2780. "stable_deref_trait",
  2781. ]
  2782. [[package]]
  2783. name = "gimli"
  2784. version = "0.28.1"
  2785. source = "registry+https://github.com/rust-lang/crates.io-index"
  2786. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  2787. [[package]]
  2788. name = "glob"
  2789. version = "0.3.1"
  2790. source = "registry+https://github.com/rust-lang/crates.io-index"
  2791. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  2792. [[package]]
  2793. name = "glob-match"
  2794. version = "0.2.1"
  2795. source = "registry+https://github.com/rust-lang/crates.io-index"
  2796. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  2797. [[package]]
  2798. name = "gloo-timers"
  2799. version = "0.2.6"
  2800. source = "registry+https://github.com/rust-lang/crates.io-index"
  2801. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  2802. dependencies = [
  2803. "futures-channel",
  2804. "futures-core",
  2805. "js-sys",
  2806. "wasm-bindgen",
  2807. ]
  2808. [[package]]
  2809. name = "group"
  2810. version = "0.13.0"
  2811. source = "registry+https://github.com/rust-lang/crates.io-index"
  2812. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2813. dependencies = [
  2814. "ff",
  2815. "rand_core",
  2816. "subtle",
  2817. ]
  2818. [[package]]
  2819. name = "growable-bloom-filter"
  2820. version = "2.1.0"
  2821. source = "registry+https://github.com/rust-lang/crates.io-index"
  2822. checksum = "c669fa03050eb3445343f215d62fc1ab831e8098bc9a55f26e9724faff11075c"
  2823. dependencies = [
  2824. "serde",
  2825. "serde_bytes",
  2826. "serde_derive",
  2827. "xxhash-rust",
  2828. ]
  2829. [[package]]
  2830. name = "h2"
  2831. version = "0.3.25"
  2832. source = "registry+https://github.com/rust-lang/crates.io-index"
  2833. checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb"
  2834. dependencies = [
  2835. "bytes",
  2836. "fnv",
  2837. "futures-core",
  2838. "futures-sink",
  2839. "futures-util",
  2840. "http 0.2.12",
  2841. "indexmap 2.2.5",
  2842. "slab",
  2843. "tokio",
  2844. "tokio-util",
  2845. "tracing",
  2846. ]
  2847. [[package]]
  2848. name = "halo2_gadgets"
  2849. version = "0.3.0"
  2850. source = "git+https://github.com/parazyd/halo2?branch=v4#23d312ee30307c47388a810c2997a2d19186e24a"
  2851. dependencies = [
  2852. "arrayvec",
  2853. "bitvec",
  2854. "ff",
  2855. "group",
  2856. "halo2_proofs",
  2857. "lazy_static",
  2858. "pasta_curves",
  2859. "rand",
  2860. "subtle",
  2861. "uint",
  2862. ]
  2863. [[package]]
  2864. name = "halo2_proofs"
  2865. version = "0.3.0"
  2866. source = "git+https://github.com/parazyd/halo2?branch=v4#23d312ee30307c47388a810c2997a2d19186e24a"
  2867. dependencies = [
  2868. "blake2b_simd",
  2869. "ff",
  2870. "group",
  2871. "maybe-rayon",
  2872. "pasta_curves",
  2873. "rand_core",
  2874. "tracing",
  2875. ]
  2876. [[package]]
  2877. name = "hashbrown"
  2878. version = "0.12.3"
  2879. source = "registry+https://github.com/rust-lang/crates.io-index"
  2880. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2881. dependencies = [
  2882. "ahash 0.7.8",
  2883. ]
  2884. [[package]]
  2885. name = "hashbrown"
  2886. version = "0.14.3"
  2887. source = "registry+https://github.com/rust-lang/crates.io-index"
  2888. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  2889. dependencies = [
  2890. "ahash 0.8.11",
  2891. "allocator-api2",
  2892. ]
  2893. [[package]]
  2894. name = "hashers"
  2895. version = "1.0.1"
  2896. source = "registry+https://github.com/rust-lang/crates.io-index"
  2897. checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30"
  2898. dependencies = [
  2899. "fxhash",
  2900. ]
  2901. [[package]]
  2902. name = "hashlink"
  2903. version = "0.9.0"
  2904. source = "registry+https://github.com/rust-lang/crates.io-index"
  2905. checksum = "692eaaf7f7607518dd3cef090f1474b61edc5301d8012f09579920df68b725ee"
  2906. dependencies = [
  2907. "hashbrown 0.14.3",
  2908. ]
  2909. [[package]]
  2910. name = "heck"
  2911. version = "0.3.3"
  2912. source = "registry+https://github.com/rust-lang/crates.io-index"
  2913. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2914. dependencies = [
  2915. "unicode-segmentation",
  2916. ]
  2917. [[package]]
  2918. name = "heck"
  2919. version = "0.4.1"
  2920. source = "registry+https://github.com/rust-lang/crates.io-index"
  2921. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2922. [[package]]
  2923. name = "hermit-abi"
  2924. version = "0.1.19"
  2925. source = "registry+https://github.com/rust-lang/crates.io-index"
  2926. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  2927. dependencies = [
  2928. "libc",
  2929. ]
  2930. [[package]]
  2931. name = "hermit-abi"
  2932. version = "0.3.9"
  2933. source = "registry+https://github.com/rust-lang/crates.io-index"
  2934. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  2935. [[package]]
  2936. name = "hex"
  2937. version = "0.4.3"
  2938. source = "registry+https://github.com/rust-lang/crates.io-index"
  2939. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2940. [[package]]
  2941. name = "hkdf"
  2942. version = "0.12.4"
  2943. source = "registry+https://github.com/rust-lang/crates.io-index"
  2944. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2945. dependencies = [
  2946. "hmac",
  2947. ]
  2948. [[package]]
  2949. name = "hmac"
  2950. version = "0.12.1"
  2951. source = "registry+https://github.com/rust-lang/crates.io-index"
  2952. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2953. dependencies = [
  2954. "digest",
  2955. ]
  2956. [[package]]
  2957. name = "home"
  2958. version = "0.5.9"
  2959. source = "registry+https://github.com/rust-lang/crates.io-index"
  2960. checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
  2961. dependencies = [
  2962. "windows-sys 0.52.0",
  2963. ]
  2964. [[package]]
  2965. name = "hostname-validator"
  2966. version = "1.1.1"
  2967. source = "registry+https://github.com/rust-lang/crates.io-index"
  2968. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  2969. [[package]]
  2970. name = "http"
  2971. version = "0.2.12"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  2974. dependencies = [
  2975. "bytes",
  2976. "fnv",
  2977. "itoa",
  2978. ]
  2979. [[package]]
  2980. name = "http"
  2981. version = "1.1.0"
  2982. source = "registry+https://github.com/rust-lang/crates.io-index"
  2983. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  2984. dependencies = [
  2985. "bytes",
  2986. "fnv",
  2987. "itoa",
  2988. ]
  2989. [[package]]
  2990. name = "http-body"
  2991. version = "0.4.6"
  2992. source = "registry+https://github.com/rust-lang/crates.io-index"
  2993. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  2994. dependencies = [
  2995. "bytes",
  2996. "http 0.2.12",
  2997. "pin-project-lite",
  2998. ]
  2999. [[package]]
  3000. name = "httparse"
  3001. version = "1.8.0"
  3002. source = "registry+https://github.com/rust-lang/crates.io-index"
  3003. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  3004. [[package]]
  3005. name = "httpdate"
  3006. version = "1.0.3"
  3007. source = "registry+https://github.com/rust-lang/crates.io-index"
  3008. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  3009. [[package]]
  3010. name = "humantime"
  3011. version = "2.1.0"
  3012. source = "registry+https://github.com/rust-lang/crates.io-index"
  3013. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  3014. [[package]]
  3015. name = "humantime-serde"
  3016. version = "1.1.1"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  3019. dependencies = [
  3020. "humantime",
  3021. "serde",
  3022. ]
  3023. [[package]]
  3024. name = "hyper"
  3025. version = "0.14.28"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
  3028. dependencies = [
  3029. "bytes",
  3030. "futures-channel",
  3031. "futures-core",
  3032. "futures-util",
  3033. "h2",
  3034. "http 0.2.12",
  3035. "http-body",
  3036. "httparse",
  3037. "httpdate",
  3038. "itoa",
  3039. "pin-project-lite",
  3040. "socket2 0.5.6",
  3041. "tokio",
  3042. "tower-service",
  3043. "tracing",
  3044. "want",
  3045. ]
  3046. [[package]]
  3047. name = "hyper-rustls"
  3048. version = "0.24.2"
  3049. source = "registry+https://github.com/rust-lang/crates.io-index"
  3050. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  3051. dependencies = [
  3052. "futures-util",
  3053. "http 0.2.12",
  3054. "hyper",
  3055. "rustls 0.21.10",
  3056. "tokio",
  3057. "tokio-rustls",
  3058. ]
  3059. [[package]]
  3060. name = "iana-time-zone"
  3061. version = "0.1.60"
  3062. source = "registry+https://github.com/rust-lang/crates.io-index"
  3063. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  3064. dependencies = [
  3065. "android_system_properties",
  3066. "core-foundation-sys",
  3067. "iana-time-zone-haiku",
  3068. "js-sys",
  3069. "wasm-bindgen",
  3070. "windows-core 0.52.0",
  3071. ]
  3072. [[package]]
  3073. name = "iana-time-zone-haiku"
  3074. version = "0.1.2"
  3075. source = "registry+https://github.com/rust-lang/crates.io-index"
  3076. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3077. dependencies = [
  3078. "cc",
  3079. ]
  3080. [[package]]
  3081. name = "ident_case"
  3082. version = "1.0.1"
  3083. source = "registry+https://github.com/rust-lang/crates.io-index"
  3084. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3085. [[package]]
  3086. name = "idna"
  3087. version = "0.5.0"
  3088. source = "registry+https://github.com/rust-lang/crates.io-index"
  3089. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  3090. dependencies = [
  3091. "unicode-bidi",
  3092. "unicode-normalization",
  3093. ]
  3094. [[package]]
  3095. name = "impl-codec"
  3096. version = "0.6.0"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
  3099. dependencies = [
  3100. "parity-scale-codec",
  3101. ]
  3102. [[package]]
  3103. name = "impl-rlp"
  3104. version = "0.3.0"
  3105. source = "registry+https://github.com/rust-lang/crates.io-index"
  3106. checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808"
  3107. dependencies = [
  3108. "rlp",
  3109. ]
  3110. [[package]]
  3111. name = "impl-serde"
  3112. version = "0.4.0"
  3113. source = "registry+https://github.com/rust-lang/crates.io-index"
  3114. checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd"
  3115. dependencies = [
  3116. "serde",
  3117. ]
  3118. [[package]]
  3119. name = "impl-trait-for-tuples"
  3120. version = "0.2.2"
  3121. source = "registry+https://github.com/rust-lang/crates.io-index"
  3122. checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb"
  3123. dependencies = [
  3124. "proc-macro2",
  3125. "quote",
  3126. "syn 1.0.109",
  3127. ]
  3128. [[package]]
  3129. name = "incrementalmerkletree"
  3130. version = "0.5.1"
  3131. source = "registry+https://github.com/rust-lang/crates.io-index"
  3132. checksum = "eb1872810fb725b06b8c153dde9e86f3ec26747b9b60096da7a869883b549cbe"
  3133. dependencies = [
  3134. "either",
  3135. ]
  3136. [[package]]
  3137. name = "indenter"
  3138. version = "0.3.3"
  3139. source = "registry+https://github.com/rust-lang/crates.io-index"
  3140. checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
  3141. [[package]]
  3142. name = "indexmap"
  3143. version = "1.9.3"
  3144. source = "registry+https://github.com/rust-lang/crates.io-index"
  3145. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3146. dependencies = [
  3147. "autocfg",
  3148. "hashbrown 0.12.3",
  3149. "serde",
  3150. ]
  3151. [[package]]
  3152. name = "indexmap"
  3153. version = "2.2.5"
  3154. source = "registry+https://github.com/rust-lang/crates.io-index"
  3155. checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
  3156. dependencies = [
  3157. "equivalent",
  3158. "hashbrown 0.14.3",
  3159. "serde",
  3160. ]
  3161. [[package]]
  3162. name = "inout"
  3163. version = "0.1.3"
  3164. source = "registry+https://github.com/rust-lang/crates.io-index"
  3165. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  3166. dependencies = [
  3167. "generic-array",
  3168. ]
  3169. [[package]]
  3170. name = "instant"
  3171. version = "0.1.12"
  3172. source = "registry+https://github.com/rust-lang/crates.io-index"
  3173. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  3174. dependencies = [
  3175. "cfg-if",
  3176. ]
  3177. [[package]]
  3178. name = "inventory"
  3179. version = "0.3.15"
  3180. source = "registry+https://github.com/rust-lang/crates.io-index"
  3181. checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
  3182. [[package]]
  3183. name = "io-lifetimes"
  3184. version = "1.0.11"
  3185. source = "registry+https://github.com/rust-lang/crates.io-index"
  3186. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  3187. dependencies = [
  3188. "hermit-abi 0.3.9",
  3189. "libc",
  3190. "windows-sys 0.48.0",
  3191. ]
  3192. [[package]]
  3193. name = "ipnet"
  3194. version = "2.9.0"
  3195. source = "registry+https://github.com/rust-lang/crates.io-index"
  3196. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  3197. [[package]]
  3198. name = "is-terminal"
  3199. version = "0.4.12"
  3200. source = "registry+https://github.com/rust-lang/crates.io-index"
  3201. checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
  3202. dependencies = [
  3203. "hermit-abi 0.3.9",
  3204. "libc",
  3205. "windows-sys 0.52.0",
  3206. ]
  3207. [[package]]
  3208. name = "itertools"
  3209. version = "0.11.0"
  3210. source = "registry+https://github.com/rust-lang/crates.io-index"
  3211. checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
  3212. dependencies = [
  3213. "either",
  3214. ]
  3215. [[package]]
  3216. name = "itertools"
  3217. version = "0.12.1"
  3218. source = "registry+https://github.com/rust-lang/crates.io-index"
  3219. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  3220. dependencies = [
  3221. "either",
  3222. ]
  3223. [[package]]
  3224. name = "itoa"
  3225. version = "1.0.10"
  3226. source = "registry+https://github.com/rust-lang/crates.io-index"
  3227. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  3228. [[package]]
  3229. name = "jni"
  3230. version = "0.21.1"
  3231. source = "registry+https://github.com/rust-lang/crates.io-index"
  3232. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  3233. dependencies = [
  3234. "cesu8",
  3235. "cfg-if",
  3236. "combine",
  3237. "jni-sys",
  3238. "log",
  3239. "thiserror",
  3240. "walkdir",
  3241. "windows-sys 0.45.0",
  3242. ]
  3243. [[package]]
  3244. name = "jni-sys"
  3245. version = "0.3.0"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  3248. [[package]]
  3249. name = "jobserver"
  3250. version = "0.1.28"
  3251. source = "registry+https://github.com/rust-lang/crates.io-index"
  3252. checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
  3253. dependencies = [
  3254. "libc",
  3255. ]
  3256. [[package]]
  3257. name = "js-sys"
  3258. version = "0.3.69"
  3259. source = "registry+https://github.com/rust-lang/crates.io-index"
  3260. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  3261. dependencies = [
  3262. "wasm-bindgen",
  3263. ]
  3264. [[package]]
  3265. name = "jsonwebtoken"
  3266. version = "8.3.0"
  3267. source = "registry+https://github.com/rust-lang/crates.io-index"
  3268. checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378"
  3269. dependencies = [
  3270. "base64 0.21.7",
  3271. "pem 1.1.1",
  3272. "ring 0.16.20",
  3273. "serde",
  3274. "serde_json",
  3275. "simple_asn1",
  3276. ]
  3277. [[package]]
  3278. name = "k12"
  3279. version = "0.3.0"
  3280. source = "registry+https://github.com/rust-lang/crates.io-index"
  3281. checksum = "f4dc5fdb62af2f520116927304f15d25b3c2667b4817b90efdc045194c912c54"
  3282. dependencies = [
  3283. "digest",
  3284. "sha3",
  3285. ]
  3286. [[package]]
  3287. name = "k256"
  3288. version = "0.13.3"
  3289. source = "registry+https://github.com/rust-lang/crates.io-index"
  3290. checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b"
  3291. dependencies = [
  3292. "cfg-if",
  3293. "ecdsa",
  3294. "elliptic-curve",
  3295. "once_cell",
  3296. "sha2",
  3297. "signature",
  3298. ]
  3299. [[package]]
  3300. name = "keccak"
  3301. version = "0.1.5"
  3302. source = "registry+https://github.com/rust-lang/crates.io-index"
  3303. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  3304. dependencies = [
  3305. "cpufeatures",
  3306. ]
  3307. [[package]]
  3308. name = "kv-log-macro"
  3309. version = "1.0.7"
  3310. source = "registry+https://github.com/rust-lang/crates.io-index"
  3311. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  3312. dependencies = [
  3313. "log",
  3314. ]
  3315. [[package]]
  3316. name = "lalrpop"
  3317. version = "0.20.2"
  3318. source = "registry+https://github.com/rust-lang/crates.io-index"
  3319. checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca"
  3320. dependencies = [
  3321. "ascii-canvas",
  3322. "bit-set",
  3323. "ena",
  3324. "itertools 0.11.0",
  3325. "lalrpop-util",
  3326. "petgraph",
  3327. "regex",
  3328. "regex-syntax 0.8.2",
  3329. "string_cache",
  3330. "term",
  3331. "tiny-keccak",
  3332. "unicode-xid",
  3333. "walkdir",
  3334. ]
  3335. [[package]]
  3336. name = "lalrpop-util"
  3337. version = "0.20.2"
  3338. source = "registry+https://github.com/rust-lang/crates.io-index"
  3339. checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
  3340. dependencies = [
  3341. "regex-automata 0.4.6",
  3342. ]
  3343. [[package]]
  3344. name = "lazy_static"
  3345. version = "1.4.0"
  3346. source = "registry+https://github.com/rust-lang/crates.io-index"
  3347. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  3348. dependencies = [
  3349. "spin 0.5.2",
  3350. ]
  3351. [[package]]
  3352. name = "lazycell"
  3353. version = "1.3.0"
  3354. source = "registry+https://github.com/rust-lang/crates.io-index"
  3355. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  3356. [[package]]
  3357. name = "leb128"
  3358. version = "0.2.5"
  3359. source = "registry+https://github.com/rust-lang/crates.io-index"
  3360. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  3361. [[package]]
  3362. name = "libc"
  3363. version = "0.2.153"
  3364. source = "registry+https://github.com/rust-lang/crates.io-index"
  3365. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  3366. [[package]]
  3367. name = "libloading"
  3368. version = "0.8.3"
  3369. source = "registry+https://github.com/rust-lang/crates.io-index"
  3370. checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
  3371. dependencies = [
  3372. "cfg-if",
  3373. "windows-targets 0.52.4",
  3374. ]
  3375. [[package]]
  3376. name = "libm"
  3377. version = "0.2.8"
  3378. source = "registry+https://github.com/rust-lang/crates.io-index"
  3379. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  3380. [[package]]
  3381. name = "libredox"
  3382. version = "0.0.1"
  3383. source = "registry+https://github.com/rust-lang/crates.io-index"
  3384. checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
  3385. dependencies = [
  3386. "bitflags 2.5.0",
  3387. "libc",
  3388. "redox_syscall 0.4.1",
  3389. ]
  3390. [[package]]
  3391. name = "libsqlite3-sys"
  3392. version = "0.28.0"
  3393. source = "registry+https://github.com/rust-lang/crates.io-index"
  3394. checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
  3395. dependencies = [
  3396. "pkg-config",
  3397. "vcpkg",
  3398. ]
  3399. [[package]]
  3400. name = "linux-raw-sys"
  3401. version = "0.3.8"
  3402. source = "registry+https://github.com/rust-lang/crates.io-index"
  3403. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  3404. [[package]]
  3405. name = "linux-raw-sys"
  3406. version = "0.4.13"
  3407. source = "registry+https://github.com/rust-lang/crates.io-index"
  3408. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  3409. [[package]]
  3410. name = "lock_api"
  3411. version = "0.4.11"
  3412. source = "registry+https://github.com/rust-lang/crates.io-index"
  3413. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  3414. dependencies = [
  3415. "autocfg",
  3416. "scopeguard",
  3417. ]
  3418. [[package]]
  3419. name = "log"
  3420. version = "0.4.21"
  3421. source = "registry+https://github.com/rust-lang/crates.io-index"
  3422. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  3423. dependencies = [
  3424. "value-bag",
  3425. ]
  3426. [[package]]
  3427. name = "lzma-sys"
  3428. version = "0.1.20"
  3429. source = "registry+https://github.com/rust-lang/crates.io-index"
  3430. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  3431. dependencies = [
  3432. "cc",
  3433. "libc",
  3434. "pkg-config",
  3435. ]
  3436. [[package]]
  3437. name = "mach"
  3438. version = "0.3.2"
  3439. source = "registry+https://github.com/rust-lang/crates.io-index"
  3440. checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
  3441. dependencies = [
  3442. "libc",
  3443. ]
  3444. [[package]]
  3445. name = "mach2"
  3446. version = "0.4.2"
  3447. source = "registry+https://github.com/rust-lang/crates.io-index"
  3448. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  3449. dependencies = [
  3450. "libc",
  3451. ]
  3452. [[package]]
  3453. name = "matchers"
  3454. version = "0.1.0"
  3455. source = "registry+https://github.com/rust-lang/crates.io-index"
  3456. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  3457. dependencies = [
  3458. "regex-automata 0.1.10",
  3459. ]
  3460. [[package]]
  3461. name = "maybe-rayon"
  3462. version = "0.1.1"
  3463. source = "registry+https://github.com/rust-lang/crates.io-index"
  3464. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  3465. dependencies = [
  3466. "cfg-if",
  3467. "rayon",
  3468. ]
  3469. [[package]]
  3470. name = "md-5"
  3471. version = "0.10.6"
  3472. source = "registry+https://github.com/rust-lang/crates.io-index"
  3473. checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
  3474. dependencies = [
  3475. "cfg-if",
  3476. "digest",
  3477. ]
  3478. [[package]]
  3479. name = "memchr"
  3480. version = "2.7.1"
  3481. source = "registry+https://github.com/rust-lang/crates.io-index"
  3482. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  3483. [[package]]
  3484. name = "memmap2"
  3485. version = "0.5.10"
  3486. source = "registry+https://github.com/rust-lang/crates.io-index"
  3487. checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
  3488. dependencies = [
  3489. "libc",
  3490. ]
  3491. [[package]]
  3492. name = "memmap2"
  3493. version = "0.6.2"
  3494. source = "registry+https://github.com/rust-lang/crates.io-index"
  3495. checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
  3496. dependencies = [
  3497. "libc",
  3498. ]
  3499. [[package]]
  3500. name = "memmap2"
  3501. version = "0.9.4"
  3502. source = "registry+https://github.com/rust-lang/crates.io-index"
  3503. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  3504. dependencies = [
  3505. "libc",
  3506. ]
  3507. [[package]]
  3508. name = "memoffset"
  3509. version = "0.9.1"
  3510. source = "registry+https://github.com/rust-lang/crates.io-index"
  3511. checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
  3512. dependencies = [
  3513. "autocfg",
  3514. ]
  3515. [[package]]
  3516. name = "merlin"
  3517. version = "3.0.0"
  3518. source = "registry+https://github.com/rust-lang/crates.io-index"
  3519. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  3520. dependencies = [
  3521. "byteorder",
  3522. "keccak",
  3523. "rand_core",
  3524. "zeroize",
  3525. ]
  3526. [[package]]
  3527. name = "mime"
  3528. version = "0.3.17"
  3529. source = "registry+https://github.com/rust-lang/crates.io-index"
  3530. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3531. [[package]]
  3532. name = "minimal-lexical"
  3533. version = "0.2.1"
  3534. source = "registry+https://github.com/rust-lang/crates.io-index"
  3535. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3536. [[package]]
  3537. name = "minimp3-sys"
  3538. version = "0.3.2"
  3539. source = "registry+https://github.com/rust-lang/crates.io-index"
  3540. checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90"
  3541. dependencies = [
  3542. "cc",
  3543. ]
  3544. [[package]]
  3545. name = "minimp3_fixed"
  3546. version = "0.5.4"
  3547. source = "registry+https://github.com/rust-lang/crates.io-index"
  3548. checksum = "42b0f14e7e75da97ae396c2656b10262a3d4afa2ec98f35795630eff0c8b951b"
  3549. dependencies = [
  3550. "minimp3-sys",
  3551. "slice-ring-buffer",
  3552. "thiserror",
  3553. ]
  3554. [[package]]
  3555. name = "miniz_oxide"
  3556. version = "0.7.2"
  3557. source = "registry+https://github.com/rust-lang/crates.io-index"
  3558. checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
  3559. dependencies = [
  3560. "adler",
  3561. ]
  3562. [[package]]
  3563. name = "mio"
  3564. version = "0.8.11"
  3565. source = "registry+https://github.com/rust-lang/crates.io-index"
  3566. checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
  3567. dependencies = [
  3568. "libc",
  3569. "wasi",
  3570. "windows-sys 0.48.0",
  3571. ]
  3572. [[package]]
  3573. name = "more-asserts"
  3574. version = "0.2.2"
  3575. source = "registry+https://github.com/rust-lang/crates.io-index"
  3576. checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
  3577. [[package]]
  3578. name = "ndk"
  3579. version = "0.8.0"
  3580. source = "registry+https://github.com/rust-lang/crates.io-index"
  3581. checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7"
  3582. dependencies = [
  3583. "bitflags 2.5.0",
  3584. "jni-sys",
  3585. "log",
  3586. "ndk-sys",
  3587. "num_enum",
  3588. "thiserror",
  3589. ]
  3590. [[package]]
  3591. name = "ndk-context"
  3592. version = "0.1.1"
  3593. source = "registry+https://github.com/rust-lang/crates.io-index"
  3594. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  3595. [[package]]
  3596. name = "ndk-sys"
  3597. version = "0.5.0+25.2.9519653"
  3598. source = "registry+https://github.com/rust-lang/crates.io-index"
  3599. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  3600. dependencies = [
  3601. "jni-sys",
  3602. ]
  3603. [[package]]
  3604. name = "new_debug_unreachable"
  3605. version = "1.0.6"
  3606. source = "registry+https://github.com/rust-lang/crates.io-index"
  3607. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  3608. [[package]]
  3609. name = "nom"
  3610. version = "7.1.3"
  3611. source = "registry+https://github.com/rust-lang/crates.io-index"
  3612. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3613. dependencies = [
  3614. "memchr",
  3615. "minimal-lexical",
  3616. ]
  3617. [[package]]
  3618. name = "nu-ansi-term"
  3619. version = "0.46.0"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  3622. dependencies = [
  3623. "overload",
  3624. "winapi",
  3625. ]
  3626. [[package]]
  3627. name = "num-bigint"
  3628. version = "0.4.4"
  3629. source = "registry+https://github.com/rust-lang/crates.io-index"
  3630. checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
  3631. dependencies = [
  3632. "autocfg",
  3633. "num-integer",
  3634. "num-traits",
  3635. ]
  3636. [[package]]
  3637. name = "num-bigint-dig"
  3638. version = "0.8.4"
  3639. source = "registry+https://github.com/rust-lang/crates.io-index"
  3640. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  3641. dependencies = [
  3642. "byteorder",
  3643. "lazy_static",
  3644. "libm",
  3645. "num-integer",
  3646. "num-iter",
  3647. "num-traits",
  3648. "rand",
  3649. "smallvec",
  3650. "zeroize",
  3651. ]
  3652. [[package]]
  3653. name = "num-conv"
  3654. version = "0.1.0"
  3655. source = "registry+https://github.com/rust-lang/crates.io-index"
  3656. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  3657. [[package]]
  3658. name = "num-derive"
  3659. version = "0.4.2"
  3660. source = "registry+https://github.com/rust-lang/crates.io-index"
  3661. checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
  3662. dependencies = [
  3663. "proc-macro2",
  3664. "quote",
  3665. "syn 2.0.53",
  3666. ]
  3667. [[package]]
  3668. name = "num-integer"
  3669. version = "0.1.46"
  3670. source = "registry+https://github.com/rust-lang/crates.io-index"
  3671. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  3672. dependencies = [
  3673. "num-traits",
  3674. ]
  3675. [[package]]
  3676. name = "num-iter"
  3677. version = "0.1.44"
  3678. source = "registry+https://github.com/rust-lang/crates.io-index"
  3679. checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
  3680. dependencies = [
  3681. "autocfg",
  3682. "num-integer",
  3683. "num-traits",
  3684. ]
  3685. [[package]]
  3686. name = "num-traits"
  3687. version = "0.2.18"
  3688. source = "registry+https://github.com/rust-lang/crates.io-index"
  3689. checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
  3690. dependencies = [
  3691. "autocfg",
  3692. "libm",
  3693. ]
  3694. [[package]]
  3695. name = "num_cpus"
  3696. version = "1.16.0"
  3697. source = "registry+https://github.com/rust-lang/crates.io-index"
  3698. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  3699. dependencies = [
  3700. "hermit-abi 0.3.9",
  3701. "libc",
  3702. ]
  3703. [[package]]
  3704. name = "num_enum"
  3705. version = "0.7.2"
  3706. source = "registry+https://github.com/rust-lang/crates.io-index"
  3707. checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
  3708. dependencies = [
  3709. "num_enum_derive",
  3710. ]
  3711. [[package]]
  3712. name = "num_enum_derive"
  3713. version = "0.7.2"
  3714. source = "registry+https://github.com/rust-lang/crates.io-index"
  3715. checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
  3716. dependencies = [
  3717. "proc-macro-crate 3.1.0",
  3718. "proc-macro2",
  3719. "quote",
  3720. "syn 2.0.53",
  3721. ]
  3722. [[package]]
  3723. name = "num_threads"
  3724. version = "0.1.7"
  3725. source = "registry+https://github.com/rust-lang/crates.io-index"
  3726. checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
  3727. dependencies = [
  3728. "libc",
  3729. ]
  3730. [[package]]
  3731. name = "object"
  3732. version = "0.32.2"
  3733. source = "registry+https://github.com/rust-lang/crates.io-index"
  3734. checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
  3735. dependencies = [
  3736. "memchr",
  3737. ]
  3738. [[package]]
  3739. name = "oboe"
  3740. version = "0.6.1"
  3741. source = "registry+https://github.com/rust-lang/crates.io-index"
  3742. checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb"
  3743. dependencies = [
  3744. "jni",
  3745. "ndk",
  3746. "ndk-context",
  3747. "num-derive",
  3748. "num-traits",
  3749. "oboe-sys",
  3750. ]
  3751. [[package]]
  3752. name = "oboe-sys"
  3753. version = "0.6.1"
  3754. source = "registry+https://github.com/rust-lang/crates.io-index"
  3755. checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d"
  3756. dependencies = [
  3757. "cc",
  3758. ]
  3759. [[package]]
  3760. name = "oid-registry"
  3761. version = "0.7.0"
  3762. source = "registry+https://github.com/rust-lang/crates.io-index"
  3763. checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d"
  3764. dependencies = [
  3765. "asn1-rs",
  3766. ]
  3767. [[package]]
  3768. name = "once_cell"
  3769. version = "1.19.0"
  3770. source = "registry+https://github.com/rust-lang/crates.io-index"
  3771. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  3772. [[package]]
  3773. name = "opaque-debug"
  3774. version = "0.3.1"
  3775. source = "registry+https://github.com/rust-lang/crates.io-index"
  3776. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  3777. [[package]]
  3778. name = "open-fastrlp"
  3779. version = "0.1.4"
  3780. source = "registry+https://github.com/rust-lang/crates.io-index"
  3781. checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce"
  3782. dependencies = [
  3783. "arrayvec",
  3784. "auto_impl",
  3785. "bytes",
  3786. "ethereum-types",
  3787. "open-fastrlp-derive",
  3788. ]
  3789. [[package]]
  3790. name = "open-fastrlp-derive"
  3791. version = "0.1.1"
  3792. source = "registry+https://github.com/rust-lang/crates.io-index"
  3793. checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c"
  3794. dependencies = [
  3795. "bytes",
  3796. "proc-macro2",
  3797. "quote",
  3798. "syn 1.0.109",
  3799. ]
  3800. [[package]]
  3801. name = "openssl"
  3802. version = "0.10.64"
  3803. source = "registry+https://github.com/rust-lang/crates.io-index"
  3804. checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
  3805. dependencies = [
  3806. "bitflags 2.5.0",
  3807. "cfg-if",
  3808. "foreign-types",
  3809. "libc",
  3810. "once_cell",
  3811. "openssl-macros",
  3812. "openssl-sys",
  3813. ]
  3814. [[package]]
  3815. name = "openssl-macros"
  3816. version = "0.1.1"
  3817. source = "registry+https://github.com/rust-lang/crates.io-index"
  3818. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  3819. dependencies = [
  3820. "proc-macro2",
  3821. "quote",
  3822. "syn 2.0.53",
  3823. ]
  3824. [[package]]
  3825. name = "openssl-sys"
  3826. version = "0.9.101"
  3827. source = "registry+https://github.com/rust-lang/crates.io-index"
  3828. checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
  3829. dependencies = [
  3830. "cc",
  3831. "libc",
  3832. "pkg-config",
  3833. "vcpkg",
  3834. ]
  3835. [[package]]
  3836. name = "option-ext"
  3837. version = "0.2.0"
  3838. source = "registry+https://github.com/rust-lang/crates.io-index"
  3839. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  3840. [[package]]
  3841. name = "ordered-float"
  3842. version = "2.10.1"
  3843. source = "registry+https://github.com/rust-lang/crates.io-index"
  3844. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  3845. dependencies = [
  3846. "num-traits",
  3847. ]
  3848. [[package]]
  3849. name = "overload"
  3850. version = "0.1.1"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3853. [[package]]
  3854. name = "p256"
  3855. version = "0.13.2"
  3856. source = "registry+https://github.com/rust-lang/crates.io-index"
  3857. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  3858. dependencies = [
  3859. "ecdsa",
  3860. "elliptic-curve",
  3861. "primeorder",
  3862. "sha2",
  3863. ]
  3864. [[package]]
  3865. name = "p384"
  3866. version = "0.13.0"
  3867. source = "registry+https://github.com/rust-lang/crates.io-index"
  3868. checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
  3869. dependencies = [
  3870. "ecdsa",
  3871. "elliptic-curve",
  3872. "primeorder",
  3873. "sha2",
  3874. ]
  3875. [[package]]
  3876. name = "p521"
  3877. version = "0.13.3"
  3878. source = "registry+https://github.com/rust-lang/crates.io-index"
  3879. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  3880. dependencies = [
  3881. "base16ct",
  3882. "ecdsa",
  3883. "elliptic-curve",
  3884. "primeorder",
  3885. "rand_core",
  3886. "sha2",
  3887. ]
  3888. [[package]]
  3889. name = "parity-scale-codec"
  3890. version = "3.6.9"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "881331e34fa842a2fb61cc2db9643a8fedc615e47cfcc52597d1af0db9a7e8fe"
  3893. dependencies = [
  3894. "arrayvec",
  3895. "bitvec",
  3896. "byte-slice-cast",
  3897. "impl-trait-for-tuples",
  3898. "parity-scale-codec-derive",
  3899. "serde",
  3900. ]
  3901. [[package]]
  3902. name = "parity-scale-codec-derive"
  3903. version = "3.6.9"
  3904. source = "registry+https://github.com/rust-lang/crates.io-index"
  3905. checksum = "be30eaf4b0a9fba5336683b38de57bb86d179a35862ba6bfcf57625d006bde5b"
  3906. dependencies = [
  3907. "proc-macro-crate 2.0.0",
  3908. "proc-macro2",
  3909. "quote",
  3910. "syn 1.0.109",
  3911. ]
  3912. [[package]]
  3913. name = "parking"
  3914. version = "2.2.0"
  3915. source = "registry+https://github.com/rust-lang/crates.io-index"
  3916. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  3917. [[package]]
  3918. name = "parking_lot"
  3919. version = "0.11.2"
  3920. source = "registry+https://github.com/rust-lang/crates.io-index"
  3921. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3922. dependencies = [
  3923. "instant",
  3924. "lock_api",
  3925. "parking_lot_core 0.8.6",
  3926. ]
  3927. [[package]]
  3928. name = "parking_lot"
  3929. version = "0.12.1"
  3930. source = "registry+https://github.com/rust-lang/crates.io-index"
  3931. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  3932. dependencies = [
  3933. "lock_api",
  3934. "parking_lot_core 0.9.9",
  3935. ]
  3936. [[package]]
  3937. name = "parking_lot_core"
  3938. version = "0.8.6"
  3939. source = "registry+https://github.com/rust-lang/crates.io-index"
  3940. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3941. dependencies = [
  3942. "cfg-if",
  3943. "instant",
  3944. "libc",
  3945. "redox_syscall 0.2.16",
  3946. "smallvec",
  3947. "winapi",
  3948. ]
  3949. [[package]]
  3950. name = "parking_lot_core"
  3951. version = "0.9.9"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  3954. dependencies = [
  3955. "cfg-if",
  3956. "libc",
  3957. "redox_syscall 0.4.1",
  3958. "smallvec",
  3959. "windows-targets 0.48.5",
  3960. ]
  3961. [[package]]
  3962. name = "password-hash"
  3963. version = "0.4.2"
  3964. source = "registry+https://github.com/rust-lang/crates.io-index"
  3965. checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
  3966. dependencies = [
  3967. "base64ct",
  3968. "rand_core",
  3969. "subtle",
  3970. ]
  3971. [[package]]
  3972. name = "pasta_curves"
  3973. version = "0.5.1"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095"
  3976. dependencies = [
  3977. "blake2b_simd",
  3978. "ff",
  3979. "group",
  3980. "lazy_static",
  3981. "rand",
  3982. "static_assertions",
  3983. "subtle",
  3984. ]
  3985. [[package]]
  3986. name = "paste"
  3987. version = "1.0.14"
  3988. source = "registry+https://github.com/rust-lang/crates.io-index"
  3989. checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
  3990. [[package]]
  3991. name = "path-slash"
  3992. version = "0.2.1"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
  3995. [[package]]
  3996. name = "pathdiff"
  3997. version = "0.2.1"
  3998. source = "registry+https://github.com/rust-lang/crates.io-index"
  3999. checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
  4000. [[package]]
  4001. name = "pbkdf2"
  4002. version = "0.11.0"
  4003. source = "registry+https://github.com/rust-lang/crates.io-index"
  4004. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  4005. dependencies = [
  4006. "digest",
  4007. "hmac",
  4008. "password-hash",
  4009. "sha2",
  4010. ]
  4011. [[package]]
  4012. name = "pbkdf2"
  4013. version = "0.12.2"
  4014. source = "registry+https://github.com/rust-lang/crates.io-index"
  4015. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4016. dependencies = [
  4017. "digest",
  4018. "hmac",
  4019. ]
  4020. [[package]]
  4021. name = "peeking_take_while"
  4022. version = "0.1.2"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  4025. [[package]]
  4026. name = "pem"
  4027. version = "1.1.1"
  4028. source = "registry+https://github.com/rust-lang/crates.io-index"
  4029. checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
  4030. dependencies = [
  4031. "base64 0.13.1",
  4032. ]
  4033. [[package]]
  4034. name = "pem"
  4035. version = "3.0.3"
  4036. source = "registry+https://github.com/rust-lang/crates.io-index"
  4037. checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
  4038. dependencies = [
  4039. "base64 0.21.7",
  4040. "serde",
  4041. ]
  4042. [[package]]
  4043. name = "pem-rfc7468"
  4044. version = "0.7.0"
  4045. source = "registry+https://github.com/rust-lang/crates.io-index"
  4046. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  4047. dependencies = [
  4048. "base64ct",
  4049. ]
  4050. [[package]]
  4051. name = "percent-encoding"
  4052. version = "2.3.1"
  4053. source = "registry+https://github.com/rust-lang/crates.io-index"
  4054. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  4055. [[package]]
  4056. name = "petgraph"
  4057. version = "0.6.4"
  4058. source = "registry+https://github.com/rust-lang/crates.io-index"
  4059. checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
  4060. dependencies = [
  4061. "fixedbitset",
  4062. "indexmap 2.2.5",
  4063. ]
  4064. [[package]]
  4065. name = "pharos"
  4066. version = "0.5.3"
  4067. source = "registry+https://github.com/rust-lang/crates.io-index"
  4068. checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
  4069. dependencies = [
  4070. "futures",
  4071. "rustc_version",
  4072. ]
  4073. [[package]]
  4074. name = "phf"
  4075. version = "0.11.2"
  4076. source = "registry+https://github.com/rust-lang/crates.io-index"
  4077. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  4078. dependencies = [
  4079. "phf_macros",
  4080. "phf_shared 0.11.2",
  4081. ]
  4082. [[package]]
  4083. name = "phf_generator"
  4084. version = "0.11.2"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  4087. dependencies = [
  4088. "phf_shared 0.11.2",
  4089. "rand",
  4090. ]
  4091. [[package]]
  4092. name = "phf_macros"
  4093. version = "0.11.2"
  4094. source = "registry+https://github.com/rust-lang/crates.io-index"
  4095. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  4096. dependencies = [
  4097. "phf_generator",
  4098. "phf_shared 0.11.2",
  4099. "proc-macro2",
  4100. "quote",
  4101. "syn 2.0.53",
  4102. ]
  4103. [[package]]
  4104. name = "phf_shared"
  4105. version = "0.10.0"
  4106. source = "registry+https://github.com/rust-lang/crates.io-index"
  4107. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  4108. dependencies = [
  4109. "siphasher",
  4110. ]
  4111. [[package]]
  4112. name = "phf_shared"
  4113. version = "0.11.2"
  4114. source = "registry+https://github.com/rust-lang/crates.io-index"
  4115. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  4116. dependencies = [
  4117. "siphasher",
  4118. ]
  4119. [[package]]
  4120. name = "pin-project"
  4121. version = "1.1.5"
  4122. source = "registry+https://github.com/rust-lang/crates.io-index"
  4123. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  4124. dependencies = [
  4125. "pin-project-internal",
  4126. ]
  4127. [[package]]
  4128. name = "pin-project-internal"
  4129. version = "1.1.5"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  4132. dependencies = [
  4133. "proc-macro2",
  4134. "quote",
  4135. "syn 2.0.53",
  4136. ]
  4137. [[package]]
  4138. name = "pin-project-lite"
  4139. version = "0.2.13"
  4140. source = "registry+https://github.com/rust-lang/crates.io-index"
  4141. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  4142. [[package]]
  4143. name = "pin-utils"
  4144. version = "0.1.0"
  4145. source = "registry+https://github.com/rust-lang/crates.io-index"
  4146. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4147. [[package]]
  4148. name = "piper"
  4149. version = "0.2.1"
  4150. source = "registry+https://github.com/rust-lang/crates.io-index"
  4151. checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
  4152. dependencies = [
  4153. "atomic-waker",
  4154. "fastrand 2.0.1",
  4155. "futures-io",
  4156. ]
  4157. [[package]]
  4158. name = "pkcs1"
  4159. version = "0.7.5"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  4162. dependencies = [
  4163. "der",
  4164. "pkcs8",
  4165. "spki",
  4166. ]
  4167. [[package]]
  4168. name = "pkcs8"
  4169. version = "0.10.2"
  4170. source = "registry+https://github.com/rust-lang/crates.io-index"
  4171. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4172. dependencies = [
  4173. "der",
  4174. "spki",
  4175. ]
  4176. [[package]]
  4177. name = "pkg-config"
  4178. version = "0.3.30"
  4179. source = "registry+https://github.com/rust-lang/crates.io-index"
  4180. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  4181. [[package]]
  4182. name = "platforms"
  4183. version = "3.3.0"
  4184. source = "registry+https://github.com/rust-lang/crates.io-index"
  4185. checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
  4186. [[package]]
  4187. name = "polling"
  4188. version = "2.8.0"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  4191. dependencies = [
  4192. "autocfg",
  4193. "bitflags 1.3.2",
  4194. "cfg-if",
  4195. "concurrent-queue",
  4196. "libc",
  4197. "log",
  4198. "pin-project-lite",
  4199. "windows-sys 0.48.0",
  4200. ]
  4201. [[package]]
  4202. name = "polling"
  4203. version = "3.5.0"
  4204. source = "registry+https://github.com/rust-lang/crates.io-index"
  4205. checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9"
  4206. dependencies = [
  4207. "cfg-if",
  4208. "concurrent-queue",
  4209. "pin-project-lite",
  4210. "rustix 0.38.32",
  4211. "tracing",
  4212. "windows-sys 0.52.0",
  4213. ]
  4214. [[package]]
  4215. name = "poly1305"
  4216. version = "0.8.0"
  4217. source = "registry+https://github.com/rust-lang/crates.io-index"
  4218. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4219. dependencies = [
  4220. "cpufeatures",
  4221. "opaque-debug",
  4222. "universal-hash",
  4223. ]
  4224. [[package]]
  4225. name = "postage"
  4226. version = "0.5.0"
  4227. source = "registry+https://github.com/rust-lang/crates.io-index"
  4228. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  4229. dependencies = [
  4230. "atomic",
  4231. "crossbeam-queue",
  4232. "futures",
  4233. "parking_lot 0.12.1",
  4234. "pin-project",
  4235. "static_assertions",
  4236. "thiserror",
  4237. ]
  4238. [[package]]
  4239. name = "powerfmt"
  4240. version = "0.2.0"
  4241. source = "registry+https://github.com/rust-lang/crates.io-index"
  4242. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4243. [[package]]
  4244. name = "ppv-lite86"
  4245. version = "0.2.17"
  4246. source = "registry+https://github.com/rust-lang/crates.io-index"
  4247. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  4248. [[package]]
  4249. name = "precomputed-hash"
  4250. version = "0.1.1"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  4253. [[package]]
  4254. name = "prettyplease"
  4255. version = "0.2.16"
  4256. source = "registry+https://github.com/rust-lang/crates.io-index"
  4257. checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
  4258. dependencies = [
  4259. "proc-macro2",
  4260. "syn 2.0.53",
  4261. ]
  4262. [[package]]
  4263. name = "prettytable-rs"
  4264. version = "0.10.0"
  4265. source = "registry+https://github.com/rust-lang/crates.io-index"
  4266. checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
  4267. dependencies = [
  4268. "csv",
  4269. "encode_unicode",
  4270. "is-terminal",
  4271. "lazy_static",
  4272. "term",
  4273. "unicode-width",
  4274. ]
  4275. [[package]]
  4276. name = "primeorder"
  4277. version = "0.13.6"
  4278. source = "registry+https://github.com/rust-lang/crates.io-index"
  4279. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4280. dependencies = [
  4281. "elliptic-curve",
  4282. ]
  4283. [[package]]
  4284. name = "primitive-types"
  4285. version = "0.12.2"
  4286. source = "registry+https://github.com/rust-lang/crates.io-index"
  4287. checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
  4288. dependencies = [
  4289. "fixed-hash",
  4290. "impl-codec",
  4291. "impl-rlp",
  4292. "impl-serde",
  4293. "scale-info",
  4294. "uint",
  4295. ]
  4296. [[package]]
  4297. name = "priority-queue"
  4298. version = "1.4.0"
  4299. source = "registry+https://github.com/rust-lang/crates.io-index"
  4300. checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785"
  4301. dependencies = [
  4302. "autocfg",
  4303. "indexmap 1.9.3",
  4304. ]
  4305. [[package]]
  4306. name = "proc-macro-crate"
  4307. version = "1.3.1"
  4308. source = "registry+https://github.com/rust-lang/crates.io-index"
  4309. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  4310. dependencies = [
  4311. "once_cell",
  4312. "toml_edit 0.19.15",
  4313. ]
  4314. [[package]]
  4315. name = "proc-macro-crate"
  4316. version = "2.0.0"
  4317. source = "registry+https://github.com/rust-lang/crates.io-index"
  4318. checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
  4319. dependencies = [
  4320. "toml_edit 0.20.7",
  4321. ]
  4322. [[package]]
  4323. name = "proc-macro-crate"
  4324. version = "3.1.0"
  4325. source = "registry+https://github.com/rust-lang/crates.io-index"
  4326. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  4327. dependencies = [
  4328. "toml_edit 0.21.1",
  4329. ]
  4330. [[package]]
  4331. name = "proc-macro-error"
  4332. version = "1.0.4"
  4333. source = "registry+https://github.com/rust-lang/crates.io-index"
  4334. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4335. dependencies = [
  4336. "proc-macro-error-attr",
  4337. "proc-macro2",
  4338. "quote",
  4339. "syn 1.0.109",
  4340. "version_check",
  4341. ]
  4342. [[package]]
  4343. name = "proc-macro-error-attr"
  4344. version = "1.0.4"
  4345. source = "registry+https://github.com/rust-lang/crates.io-index"
  4346. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4347. dependencies = [
  4348. "proc-macro2",
  4349. "quote",
  4350. "version_check",
  4351. ]
  4352. [[package]]
  4353. name = "proc-macro2"
  4354. version = "1.0.79"
  4355. source = "registry+https://github.com/rust-lang/crates.io-index"
  4356. checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
  4357. dependencies = [
  4358. "unicode-ident",
  4359. ]
  4360. [[package]]
  4361. name = "proptest"
  4362. version = "1.4.0"
  4363. source = "registry+https://github.com/rust-lang/crates.io-index"
  4364. checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
  4365. dependencies = [
  4366. "bitflags 2.5.0",
  4367. "lazy_static",
  4368. "num-traits",
  4369. "rand",
  4370. "rand_chacha",
  4371. "rand_xorshift",
  4372. "regex-syntax 0.8.2",
  4373. "unarray",
  4374. ]
  4375. [[package]]
  4376. name = "ptr_meta"
  4377. version = "0.1.4"
  4378. source = "registry+https://github.com/rust-lang/crates.io-index"
  4379. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  4380. dependencies = [
  4381. "ptr_meta_derive",
  4382. ]
  4383. [[package]]
  4384. name = "ptr_meta_derive"
  4385. version = "0.1.4"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  4388. dependencies = [
  4389. "proc-macro2",
  4390. "quote",
  4391. "syn 1.0.109",
  4392. ]
  4393. [[package]]
  4394. name = "pulldown-cmark"
  4395. version = "0.9.6"
  4396. source = "registry+https://github.com/rust-lang/crates.io-index"
  4397. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  4398. dependencies = [
  4399. "bitflags 2.5.0",
  4400. "memchr",
  4401. "unicase",
  4402. ]
  4403. [[package]]
  4404. name = "pwd-grp"
  4405. version = "0.1.1"
  4406. source = "registry+https://github.com/rust-lang/crates.io-index"
  4407. checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
  4408. dependencies = [
  4409. "derive-adhoc 0.7.3",
  4410. "libc",
  4411. "paste",
  4412. "thiserror",
  4413. ]
  4414. [[package]]
  4415. name = "quote"
  4416. version = "1.0.35"
  4417. source = "registry+https://github.com/rust-lang/crates.io-index"
  4418. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  4419. dependencies = [
  4420. "proc-macro2",
  4421. ]
  4422. [[package]]
  4423. name = "radium"
  4424. version = "0.7.0"
  4425. source = "registry+https://github.com/rust-lang/crates.io-index"
  4426. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  4427. [[package]]
  4428. name = "rand"
  4429. version = "0.8.5"
  4430. source = "registry+https://github.com/rust-lang/crates.io-index"
  4431. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4432. dependencies = [
  4433. "libc",
  4434. "rand_chacha",
  4435. "rand_core",
  4436. ]
  4437. [[package]]
  4438. name = "rand_chacha"
  4439. version = "0.3.1"
  4440. source = "registry+https://github.com/rust-lang/crates.io-index"
  4441. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4442. dependencies = [
  4443. "ppv-lite86",
  4444. "rand_core",
  4445. ]
  4446. [[package]]
  4447. name = "rand_core"
  4448. version = "0.6.4"
  4449. source = "registry+https://github.com/rust-lang/crates.io-index"
  4450. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4451. dependencies = [
  4452. "getrandom",
  4453. ]
  4454. [[package]]
  4455. name = "rand_xorshift"
  4456. version = "0.3.0"
  4457. source = "registry+https://github.com/rust-lang/crates.io-index"
  4458. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  4459. dependencies = [
  4460. "rand_core",
  4461. ]
  4462. [[package]]
  4463. name = "randomx"
  4464. version = "1.1.11"
  4465. source = "git+https://github.com/darkrenaissance/RandomX#65c0b322edf5ab66fad53bd0d163b7a2e9c63125"
  4466. dependencies = [
  4467. "bindgen 0.66.1",
  4468. "bitflags 1.3.2",
  4469. ]
  4470. [[package]]
  4471. name = "rayon"
  4472. version = "1.9.0"
  4473. source = "registry+https://github.com/rust-lang/crates.io-index"
  4474. checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
  4475. dependencies = [
  4476. "either",
  4477. "rayon-core",
  4478. ]
  4479. [[package]]
  4480. name = "rayon-core"
  4481. version = "1.12.1"
  4482. source = "registry+https://github.com/rust-lang/crates.io-index"
  4483. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  4484. dependencies = [
  4485. "crossbeam-deque",
  4486. "crossbeam-utils",
  4487. ]
  4488. [[package]]
  4489. name = "rcgen"
  4490. version = "0.12.1"
  4491. source = "registry+https://github.com/rust-lang/crates.io-index"
  4492. checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
  4493. dependencies = [
  4494. "pem 3.0.3",
  4495. "ring 0.17.8",
  4496. "time",
  4497. "yasna",
  4498. ]
  4499. [[package]]
  4500. name = "redox_syscall"
  4501. version = "0.2.16"
  4502. source = "registry+https://github.com/rust-lang/crates.io-index"
  4503. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  4504. dependencies = [
  4505. "bitflags 1.3.2",
  4506. ]
  4507. [[package]]
  4508. name = "redox_syscall"
  4509. version = "0.4.1"
  4510. source = "registry+https://github.com/rust-lang/crates.io-index"
  4511. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  4512. dependencies = [
  4513. "bitflags 1.3.2",
  4514. ]
  4515. [[package]]
  4516. name = "redox_users"
  4517. version = "0.4.4"
  4518. source = "registry+https://github.com/rust-lang/crates.io-index"
  4519. checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
  4520. dependencies = [
  4521. "getrandom",
  4522. "libredox",
  4523. "thiserror",
  4524. ]
  4525. [[package]]
  4526. name = "regalloc2"
  4527. version = "0.5.1"
  4528. source = "registry+https://github.com/rust-lang/crates.io-index"
  4529. checksum = "300d4fbfb40c1c66a78ba3ddd41c1110247cf52f97b87d0f2fc9209bd49b030c"
  4530. dependencies = [
  4531. "fxhash",
  4532. "log",
  4533. "slice-group-by",
  4534. "smallvec",
  4535. ]
  4536. [[package]]
  4537. name = "regex"
  4538. version = "1.10.3"
  4539. source = "registry+https://github.com/rust-lang/crates.io-index"
  4540. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  4541. dependencies = [
  4542. "aho-corasick",
  4543. "memchr",
  4544. "regex-automata 0.4.6",
  4545. "regex-syntax 0.8.2",
  4546. ]
  4547. [[package]]
  4548. name = "regex-automata"
  4549. version = "0.1.10"
  4550. source = "registry+https://github.com/rust-lang/crates.io-index"
  4551. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  4552. dependencies = [
  4553. "regex-syntax 0.6.29",
  4554. ]
  4555. [[package]]
  4556. name = "regex-automata"
  4557. version = "0.4.6"
  4558. source = "registry+https://github.com/rust-lang/crates.io-index"
  4559. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  4560. dependencies = [
  4561. "aho-corasick",
  4562. "memchr",
  4563. "regex-syntax 0.8.2",
  4564. ]
  4565. [[package]]
  4566. name = "regex-syntax"
  4567. version = "0.6.29"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  4570. [[package]]
  4571. name = "regex-syntax"
  4572. version = "0.8.2"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  4575. [[package]]
  4576. name = "region"
  4577. version = "3.0.2"
  4578. source = "registry+https://github.com/rust-lang/crates.io-index"
  4579. checksum = "e6b6ebd13bc009aef9cd476c1310d49ac354d36e240cf1bd753290f3dc7199a7"
  4580. dependencies = [
  4581. "bitflags 1.3.2",
  4582. "libc",
  4583. "mach2",
  4584. "windows-sys 0.52.0",
  4585. ]
  4586. [[package]]
  4587. name = "rend"
  4588. version = "0.4.2"
  4589. source = "registry+https://github.com/rust-lang/crates.io-index"
  4590. checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
  4591. dependencies = [
  4592. "bytecheck",
  4593. ]
  4594. [[package]]
  4595. name = "reqwest"
  4596. version = "0.11.27"
  4597. source = "registry+https://github.com/rust-lang/crates.io-index"
  4598. checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
  4599. dependencies = [
  4600. "base64 0.21.7",
  4601. "bytes",
  4602. "encoding_rs",
  4603. "futures-core",
  4604. "futures-util",
  4605. "h2",
  4606. "http 0.2.12",
  4607. "http-body",
  4608. "hyper",
  4609. "hyper-rustls",
  4610. "ipnet",
  4611. "js-sys",
  4612. "log",
  4613. "mime",
  4614. "once_cell",
  4615. "percent-encoding",
  4616. "pin-project-lite",
  4617. "rustls 0.21.10",
  4618. "rustls-pemfile 1.0.4",
  4619. "serde",
  4620. "serde_json",
  4621. "serde_urlencoded",
  4622. "sync_wrapper",
  4623. "system-configuration",
  4624. "tokio",
  4625. "tokio-rustls",
  4626. "tower-service",
  4627. "url",
  4628. "wasm-bindgen",
  4629. "wasm-bindgen-futures",
  4630. "web-sys",
  4631. "webpki-roots",
  4632. "winreg",
  4633. ]
  4634. [[package]]
  4635. name = "retry-error"
  4636. version = "0.5.1"
  4637. source = "registry+https://github.com/rust-lang/crates.io-index"
  4638. checksum = "c5e700775c6b1ef3b76bda447c1d88921334a6127600cc041140b29dc8582f19"
  4639. [[package]]
  4640. name = "rfc6979"
  4641. version = "0.4.0"
  4642. source = "registry+https://github.com/rust-lang/crates.io-index"
  4643. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  4644. dependencies = [
  4645. "hmac",
  4646. "subtle",
  4647. ]
  4648. [[package]]
  4649. name = "ring"
  4650. version = "0.16.20"
  4651. source = "registry+https://github.com/rust-lang/crates.io-index"
  4652. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4653. dependencies = [
  4654. "cc",
  4655. "libc",
  4656. "once_cell",
  4657. "spin 0.5.2",
  4658. "untrusted 0.7.1",
  4659. "web-sys",
  4660. "winapi",
  4661. ]
  4662. [[package]]
  4663. name = "ring"
  4664. version = "0.17.8"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  4667. dependencies = [
  4668. "cc",
  4669. "cfg-if",
  4670. "getrandom",
  4671. "libc",
  4672. "spin 0.9.8",
  4673. "untrusted 0.9.0",
  4674. "windows-sys 0.52.0",
  4675. ]
  4676. [[package]]
  4677. name = "ripemd"
  4678. version = "0.1.3"
  4679. source = "registry+https://github.com/rust-lang/crates.io-index"
  4680. checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
  4681. dependencies = [
  4682. "digest",
  4683. ]
  4684. [[package]]
  4685. name = "rkyv"
  4686. version = "0.7.44"
  4687. source = "registry+https://github.com/rust-lang/crates.io-index"
  4688. checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0"
  4689. dependencies = [
  4690. "bitvec",
  4691. "bytecheck",
  4692. "bytes",
  4693. "hashbrown 0.12.3",
  4694. "indexmap 1.9.3",
  4695. "ptr_meta",
  4696. "rend",
  4697. "rkyv_derive",
  4698. "seahash",
  4699. "tinyvec",
  4700. "uuid 1.8.0",
  4701. ]
  4702. [[package]]
  4703. name = "rkyv_derive"
  4704. version = "0.7.44"
  4705. source = "registry+https://github.com/rust-lang/crates.io-index"
  4706. checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65"
  4707. dependencies = [
  4708. "proc-macro2",
  4709. "quote",
  4710. "syn 1.0.109",
  4711. ]
  4712. [[package]]
  4713. name = "rlp"
  4714. version = "0.5.2"
  4715. source = "registry+https://github.com/rust-lang/crates.io-index"
  4716. checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
  4717. dependencies = [
  4718. "bytes",
  4719. "rlp-derive",
  4720. "rustc-hex",
  4721. ]
  4722. [[package]]
  4723. name = "rlp-derive"
  4724. version = "0.1.0"
  4725. source = "registry+https://github.com/rust-lang/crates.io-index"
  4726. checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a"
  4727. dependencies = [
  4728. "proc-macro2",
  4729. "quote",
  4730. "syn 1.0.109",
  4731. ]
  4732. [[package]]
  4733. name = "rodio"
  4734. version = "0.17.3"
  4735. source = "registry+https://github.com/rust-lang/crates.io-index"
  4736. checksum = "3b1bb7b48ee48471f55da122c0044fcc7600cfcc85db88240b89cb832935e611"
  4737. dependencies = [
  4738. "cpal",
  4739. "minimp3_fixed",
  4740. ]
  4741. [[package]]
  4742. name = "rsa"
  4743. version = "0.9.6"
  4744. source = "registry+https://github.com/rust-lang/crates.io-index"
  4745. checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
  4746. dependencies = [
  4747. "const-oid",
  4748. "digest",
  4749. "num-bigint-dig",
  4750. "num-integer",
  4751. "num-traits",
  4752. "pkcs1",
  4753. "pkcs8",
  4754. "rand_core",
  4755. "sha2",
  4756. "signature",
  4757. "spki",
  4758. "subtle",
  4759. "zeroize",
  4760. ]
  4761. [[package]]
  4762. name = "rusqlite"
  4763. version = "0.31.0"
  4764. source = "registry+https://github.com/rust-lang/crates.io-index"
  4765. checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
  4766. dependencies = [
  4767. "bitflags 2.5.0",
  4768. "fallible-iterator 0.3.0",
  4769. "fallible-streaming-iterator",
  4770. "hashlink",
  4771. "libsqlite3-sys",
  4772. "smallvec",
  4773. "time",
  4774. ]
  4775. [[package]]
  4776. name = "rustc-demangle"
  4777. version = "0.1.23"
  4778. source = "registry+https://github.com/rust-lang/crates.io-index"
  4779. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  4780. [[package]]
  4781. name = "rustc-hash"
  4782. version = "1.1.0"
  4783. source = "registry+https://github.com/rust-lang/crates.io-index"
  4784. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4785. [[package]]
  4786. name = "rustc-hex"
  4787. version = "2.1.0"
  4788. source = "registry+https://github.com/rust-lang/crates.io-index"
  4789. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  4790. [[package]]
  4791. name = "rustc_version"
  4792. version = "0.4.0"
  4793. source = "registry+https://github.com/rust-lang/crates.io-index"
  4794. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4795. dependencies = [
  4796. "semver",
  4797. ]
  4798. [[package]]
  4799. name = "rusticata-macros"
  4800. version = "4.1.0"
  4801. source = "registry+https://github.com/rust-lang/crates.io-index"
  4802. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  4803. dependencies = [
  4804. "nom",
  4805. ]
  4806. [[package]]
  4807. name = "rustix"
  4808. version = "0.37.27"
  4809. source = "registry+https://github.com/rust-lang/crates.io-index"
  4810. checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
  4811. dependencies = [
  4812. "bitflags 1.3.2",
  4813. "errno",
  4814. "io-lifetimes",
  4815. "libc",
  4816. "linux-raw-sys 0.3.8",
  4817. "windows-sys 0.48.0",
  4818. ]
  4819. [[package]]
  4820. name = "rustix"
  4821. version = "0.38.32"
  4822. source = "registry+https://github.com/rust-lang/crates.io-index"
  4823. checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
  4824. dependencies = [
  4825. "bitflags 2.5.0",
  4826. "errno",
  4827. "libc",
  4828. "linux-raw-sys 0.4.13",
  4829. "windows-sys 0.52.0",
  4830. ]
  4831. [[package]]
  4832. name = "rustls"
  4833. version = "0.21.10"
  4834. source = "registry+https://github.com/rust-lang/crates.io-index"
  4835. checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
  4836. dependencies = [
  4837. "log",
  4838. "ring 0.17.8",
  4839. "rustls-webpki 0.101.7",
  4840. "sct",
  4841. ]
  4842. [[package]]
  4843. name = "rustls"
  4844. version = "0.22.2"
  4845. source = "registry+https://github.com/rust-lang/crates.io-index"
  4846. checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
  4847. dependencies = [
  4848. "ring 0.17.8",
  4849. "rustls-pki-types",
  4850. "rustls-webpki 0.102.2",
  4851. "subtle",
  4852. "zeroize",
  4853. ]
  4854. [[package]]
  4855. name = "rustls-pemfile"
  4856. version = "1.0.4"
  4857. source = "registry+https://github.com/rust-lang/crates.io-index"
  4858. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  4859. dependencies = [
  4860. "base64 0.21.7",
  4861. ]
  4862. [[package]]
  4863. name = "rustls-pemfile"
  4864. version = "2.1.1"
  4865. source = "registry+https://github.com/rust-lang/crates.io-index"
  4866. checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
  4867. dependencies = [
  4868. "base64 0.21.7",
  4869. "rustls-pki-types",
  4870. ]
  4871. [[package]]
  4872. name = "rustls-pki-types"
  4873. version = "1.3.1"
  4874. source = "registry+https://github.com/rust-lang/crates.io-index"
  4875. checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
  4876. [[package]]
  4877. name = "rustls-webpki"
  4878. version = "0.101.7"
  4879. source = "registry+https://github.com/rust-lang/crates.io-index"
  4880. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  4881. dependencies = [
  4882. "ring 0.17.8",
  4883. "untrusted 0.9.0",
  4884. ]
  4885. [[package]]
  4886. name = "rustls-webpki"
  4887. version = "0.102.2"
  4888. source = "registry+https://github.com/rust-lang/crates.io-index"
  4889. checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
  4890. dependencies = [
  4891. "ring 0.17.8",
  4892. "rustls-pki-types",
  4893. "untrusted 0.9.0",
  4894. ]
  4895. [[package]]
  4896. name = "rustversion"
  4897. version = "1.0.14"
  4898. source = "registry+https://github.com/rust-lang/crates.io-index"
  4899. checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
  4900. [[package]]
  4901. name = "ryu"
  4902. version = "1.0.17"
  4903. source = "registry+https://github.com/rust-lang/crates.io-index"
  4904. checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
  4905. [[package]]
  4906. name = "safelog"
  4907. version = "0.3.5"
  4908. source = "registry+https://github.com/rust-lang/crates.io-index"
  4909. checksum = "b4dd088c4f8f20154e72ef45c78b31b1225b19b448dd3b0f37d605de1b8b8ef5"
  4910. dependencies = [
  4911. "derive_more",
  4912. "educe",
  4913. "either",
  4914. "fluid-let",
  4915. "thiserror",
  4916. ]
  4917. [[package]]
  4918. name = "salsa20"
  4919. version = "0.10.2"
  4920. source = "registry+https://github.com/rust-lang/crates.io-index"
  4921. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  4922. dependencies = [
  4923. "cipher",
  4924. ]
  4925. [[package]]
  4926. name = "same-file"
  4927. version = "1.0.6"
  4928. source = "registry+https://github.com/rust-lang/crates.io-index"
  4929. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  4930. dependencies = [
  4931. "winapi-util",
  4932. ]
  4933. [[package]]
  4934. name = "sanitize-filename"
  4935. version = "0.5.0"
  4936. source = "registry+https://github.com/rust-lang/crates.io-index"
  4937. checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603"
  4938. dependencies = [
  4939. "lazy_static",
  4940. "regex",
  4941. ]
  4942. [[package]]
  4943. name = "scale-info"
  4944. version = "2.11.0"
  4945. source = "registry+https://github.com/rust-lang/crates.io-index"
  4946. checksum = "2ef2175c2907e7c8bc0a9c3f86aeb5ec1f3b275300ad58a44d0c3ae379a5e52e"
  4947. dependencies = [
  4948. "cfg-if",
  4949. "derive_more",
  4950. "parity-scale-codec",
  4951. "scale-info-derive",
  4952. ]
  4953. [[package]]
  4954. name = "scale-info-derive"
  4955. version = "2.11.0"
  4956. source = "registry+https://github.com/rust-lang/crates.io-index"
  4957. checksum = "634d9b8eb8fd61c5cdd3390d9b2132300a7e7618955b98b8416f118c1b4e144f"
  4958. dependencies = [
  4959. "proc-macro-crate 1.3.1",
  4960. "proc-macro2",
  4961. "quote",
  4962. "syn 1.0.109",
  4963. ]
  4964. [[package]]
  4965. name = "scopeguard"
  4966. version = "1.2.0"
  4967. source = "registry+https://github.com/rust-lang/crates.io-index"
  4968. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4969. [[package]]
  4970. name = "scrypt"
  4971. version = "0.10.0"
  4972. source = "registry+https://github.com/rust-lang/crates.io-index"
  4973. checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d"
  4974. dependencies = [
  4975. "hmac",
  4976. "pbkdf2 0.11.0",
  4977. "salsa20",
  4978. "sha2",
  4979. ]
  4980. [[package]]
  4981. name = "sct"
  4982. version = "0.7.1"
  4983. source = "registry+https://github.com/rust-lang/crates.io-index"
  4984. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  4985. dependencies = [
  4986. "ring 0.17.8",
  4987. "untrusted 0.9.0",
  4988. ]
  4989. [[package]]
  4990. name = "seahash"
  4991. version = "4.1.0"
  4992. source = "registry+https://github.com/rust-lang/crates.io-index"
  4993. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  4994. [[package]]
  4995. name = "sec1"
  4996. version = "0.7.3"
  4997. source = "registry+https://github.com/rust-lang/crates.io-index"
  4998. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  4999. dependencies = [
  5000. "base16ct",
  5001. "der",
  5002. "generic-array",
  5003. "pkcs8",
  5004. "subtle",
  5005. "zeroize",
  5006. ]
  5007. [[package]]
  5008. name = "self_cell"
  5009. version = "1.0.3"
  5010. source = "registry+https://github.com/rust-lang/crates.io-index"
  5011. checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba"
  5012. [[package]]
  5013. name = "semver"
  5014. version = "1.0.22"
  5015. source = "registry+https://github.com/rust-lang/crates.io-index"
  5016. checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
  5017. dependencies = [
  5018. "serde",
  5019. ]
  5020. [[package]]
  5021. name = "send_wrapper"
  5022. version = "0.4.0"
  5023. source = "registry+https://github.com/rust-lang/crates.io-index"
  5024. checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
  5025. [[package]]
  5026. name = "send_wrapper"
  5027. version = "0.6.0"
  5028. source = "registry+https://github.com/rust-lang/crates.io-index"
  5029. checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
  5030. [[package]]
  5031. name = "serde"
  5032. version = "1.0.197"
  5033. source = "registry+https://github.com/rust-lang/crates.io-index"
  5034. checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
  5035. dependencies = [
  5036. "serde_derive",
  5037. ]
  5038. [[package]]
  5039. name = "serde-value"
  5040. version = "0.7.0"
  5041. source = "registry+https://github.com/rust-lang/crates.io-index"
  5042. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  5043. dependencies = [
  5044. "ordered-float",
  5045. "serde",
  5046. ]
  5047. [[package]]
  5048. name = "serde-wasm-bindgen"
  5049. version = "0.4.5"
  5050. source = "registry+https://github.com/rust-lang/crates.io-index"
  5051. checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
  5052. dependencies = [
  5053. "js-sys",
  5054. "serde",
  5055. "wasm-bindgen",
  5056. ]
  5057. [[package]]
  5058. name = "serde_bytes"
  5059. version = "0.11.14"
  5060. source = "registry+https://github.com/rust-lang/crates.io-index"
  5061. checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
  5062. dependencies = [
  5063. "serde",
  5064. ]
  5065. [[package]]
  5066. name = "serde_derive"
  5067. version = "1.0.197"
  5068. source = "registry+https://github.com/rust-lang/crates.io-index"
  5069. checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
  5070. dependencies = [
  5071. "proc-macro2",
  5072. "quote",
  5073. "syn 2.0.53",
  5074. ]
  5075. [[package]]
  5076. name = "serde_ignored"
  5077. version = "0.1.10"
  5078. source = "registry+https://github.com/rust-lang/crates.io-index"
  5079. checksum = "a8e319a36d1b52126a0d608f24e93b2d81297091818cd70625fcf50a15d84ddf"
  5080. dependencies = [
  5081. "serde",
  5082. ]
  5083. [[package]]
  5084. name = "serde_json"
  5085. version = "1.0.114"
  5086. source = "registry+https://github.com/rust-lang/crates.io-index"
  5087. checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
  5088. dependencies = [
  5089. "itoa",
  5090. "ryu",
  5091. "serde",
  5092. ]
  5093. [[package]]
  5094. name = "serde_spanned"
  5095. version = "0.6.5"
  5096. source = "registry+https://github.com/rust-lang/crates.io-index"
  5097. checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
  5098. dependencies = [
  5099. "serde",
  5100. ]
  5101. [[package]]
  5102. name = "serde_urlencoded"
  5103. version = "0.7.1"
  5104. source = "registry+https://github.com/rust-lang/crates.io-index"
  5105. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  5106. dependencies = [
  5107. "form_urlencoded",
  5108. "itoa",
  5109. "ryu",
  5110. "serde",
  5111. ]
  5112. [[package]]
  5113. name = "serde_with"
  5114. version = "3.7.0"
  5115. source = "registry+https://github.com/rust-lang/crates.io-index"
  5116. checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
  5117. dependencies = [
  5118. "base64 0.21.7",
  5119. "chrono",
  5120. "hex",
  5121. "indexmap 1.9.3",
  5122. "indexmap 2.2.5",
  5123. "serde",
  5124. "serde_derive",
  5125. "serde_json",
  5126. "serde_with_macros",
  5127. "time",
  5128. ]
  5129. [[package]]
  5130. name = "serde_with_macros"
  5131. version = "3.7.0"
  5132. source = "registry+https://github.com/rust-lang/crates.io-index"
  5133. checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
  5134. dependencies = [
  5135. "darling 0.20.8",
  5136. "proc-macro2",
  5137. "quote",
  5138. "syn 2.0.53",
  5139. ]
  5140. [[package]]
  5141. name = "sha1"
  5142. version = "0.10.6"
  5143. source = "registry+https://github.com/rust-lang/crates.io-index"
  5144. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  5145. dependencies = [
  5146. "cfg-if",
  5147. "cpufeatures",
  5148. "digest",
  5149. "sha1-asm",
  5150. ]
  5151. [[package]]
  5152. name = "sha1-asm"
  5153. version = "0.5.2"
  5154. source = "registry+https://github.com/rust-lang/crates.io-index"
  5155. checksum = "2ba6947745e7f86be3b8af00b7355857085dbdf8901393c89514510eb61f4e21"
  5156. dependencies = [
  5157. "cc",
  5158. ]
  5159. [[package]]
  5160. name = "sha2"
  5161. version = "0.10.8"
  5162. source = "registry+https://github.com/rust-lang/crates.io-index"
  5163. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  5164. dependencies = [
  5165. "cfg-if",
  5166. "cpufeatures",
  5167. "digest",
  5168. ]
  5169. [[package]]
  5170. name = "sha3"
  5171. version = "0.10.8"
  5172. source = "registry+https://github.com/rust-lang/crates.io-index"
  5173. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  5174. dependencies = [
  5175. "digest",
  5176. "keccak",
  5177. ]
  5178. [[package]]
  5179. name = "sharded-slab"
  5180. version = "0.1.7"
  5181. source = "registry+https://github.com/rust-lang/crates.io-index"
  5182. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  5183. dependencies = [
  5184. "lazy_static",
  5185. ]
  5186. [[package]]
  5187. name = "shared-buffer"
  5188. version = "0.1.4"
  5189. source = "registry+https://github.com/rust-lang/crates.io-index"
  5190. checksum = "f6c99835bad52957e7aa241d3975ed17c1e5f8c92026377d117a606f36b84b16"
  5191. dependencies = [
  5192. "bytes",
  5193. "memmap2 0.6.2",
  5194. ]
  5195. [[package]]
  5196. name = "shellexpand"
  5197. version = "3.1.0"
  5198. source = "registry+https://github.com/rust-lang/crates.io-index"
  5199. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  5200. dependencies = [
  5201. "dirs",
  5202. ]
  5203. [[package]]
  5204. name = "shlex"
  5205. version = "1.3.0"
  5206. source = "registry+https://github.com/rust-lang/crates.io-index"
  5207. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  5208. [[package]]
  5209. name = "signal-hook"
  5210. version = "0.3.17"
  5211. source = "registry+https://github.com/rust-lang/crates.io-index"
  5212. checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
  5213. dependencies = [
  5214. "libc",
  5215. "signal-hook-registry",
  5216. ]
  5217. [[package]]
  5218. name = "signal-hook-async-std"
  5219. version = "0.2.2"
  5220. source = "registry+https://github.com/rust-lang/crates.io-index"
  5221. checksum = "0c4aa94397e2023af5b7cff5b8d4785e935cfb77f0e4aab0cae3b26258ace556"
  5222. dependencies = [
  5223. "async-io 1.13.0",
  5224. "futures-lite 1.13.0",
  5225. "libc",
  5226. "signal-hook",
  5227. ]
  5228. [[package]]
  5229. name = "signal-hook-registry"
  5230. version = "1.4.1"
  5231. source = "registry+https://github.com/rust-lang/crates.io-index"
  5232. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  5233. dependencies = [
  5234. "libc",
  5235. ]
  5236. [[package]]
  5237. name = "signature"
  5238. version = "2.2.0"
  5239. source = "registry+https://github.com/rust-lang/crates.io-index"
  5240. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  5241. dependencies = [
  5242. "digest",
  5243. "rand_core",
  5244. ]
  5245. [[package]]
  5246. name = "simdutf8"
  5247. version = "0.1.4"
  5248. source = "registry+https://github.com/rust-lang/crates.io-index"
  5249. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  5250. [[package]]
  5251. name = "simple_asn1"
  5252. version = "0.6.2"
  5253. source = "registry+https://github.com/rust-lang/crates.io-index"
  5254. checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
  5255. dependencies = [
  5256. "num-bigint",
  5257. "num-traits",
  5258. "thiserror",
  5259. "time",
  5260. ]
  5261. [[package]]
  5262. name = "simplelog"
  5263. version = "0.12.2"
  5264. source = "registry+https://github.com/rust-lang/crates.io-index"
  5265. checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
  5266. dependencies = [
  5267. "log",
  5268. "termcolor",
  5269. "time",
  5270. ]
  5271. [[package]]
  5272. name = "siphasher"
  5273. version = "0.3.11"
  5274. source = "registry+https://github.com/rust-lang/crates.io-index"
  5275. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  5276. [[package]]
  5277. name = "skeptic"
  5278. version = "0.13.7"
  5279. source = "registry+https://github.com/rust-lang/crates.io-index"
  5280. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  5281. dependencies = [
  5282. "bytecount",
  5283. "cargo_metadata 0.14.2",
  5284. "error-chain",
  5285. "glob",
  5286. "pulldown-cmark",
  5287. "tempfile",
  5288. "walkdir",
  5289. ]
  5290. [[package]]
  5291. name = "slab"
  5292. version = "0.4.9"
  5293. source = "registry+https://github.com/rust-lang/crates.io-index"
  5294. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  5295. dependencies = [
  5296. "autocfg",
  5297. ]
  5298. [[package]]
  5299. name = "sled"
  5300. version = "0.34.7"
  5301. source = "registry+https://github.com/rust-lang/crates.io-index"
  5302. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  5303. dependencies = [
  5304. "crc32fast",
  5305. "crossbeam-epoch",
  5306. "crossbeam-utils",
  5307. "fs2",
  5308. "fxhash",
  5309. "libc",
  5310. "log",
  5311. "parking_lot 0.11.2",
  5312. ]
  5313. [[package]]
  5314. name = "sled-overlay"
  5315. version = "0.1.1"
  5316. source = "registry+https://github.com/rust-lang/crates.io-index"
  5317. checksum = "add8d336179fb379f1e4a1afac52b2fc4e0e594df3ee257d52bdb3febc3cf4c7"
  5318. dependencies = [
  5319. "sled",
  5320. ]
  5321. [[package]]
  5322. name = "slice-group-by"
  5323. version = "0.3.1"
  5324. source = "registry+https://github.com/rust-lang/crates.io-index"
  5325. checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
  5326. [[package]]
  5327. name = "slice-ring-buffer"
  5328. version = "0.3.3"
  5329. source = "registry+https://github.com/rust-lang/crates.io-index"
  5330. checksum = "7081c7e452cb62f5f0c32edd4e265391bdbb23e90905df8bb88a23d3b5166b77"
  5331. dependencies = [
  5332. "libc",
  5333. "mach2",
  5334. "winapi",
  5335. ]
  5336. [[package]]
  5337. name = "slotmap"
  5338. version = "1.0.7"
  5339. source = "registry+https://github.com/rust-lang/crates.io-index"
  5340. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  5341. dependencies = [
  5342. "version_check",
  5343. ]
  5344. [[package]]
  5345. name = "smallvec"
  5346. version = "1.13.1"
  5347. source = "registry+https://github.com/rust-lang/crates.io-index"
  5348. checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
  5349. [[package]]
  5350. name = "smol"
  5351. version = "1.3.0"
  5352. source = "registry+https://github.com/rust-lang/crates.io-index"
  5353. checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
  5354. dependencies = [
  5355. "async-channel 1.9.0",
  5356. "async-executor",
  5357. "async-fs",
  5358. "async-io 1.13.0",
  5359. "async-lock 2.8.0",
  5360. "async-net",
  5361. "async-process",
  5362. "blocking",
  5363. "futures-lite 1.13.0",
  5364. ]
  5365. [[package]]
  5366. name = "socket2"
  5367. version = "0.4.10"
  5368. source = "registry+https://github.com/rust-lang/crates.io-index"
  5369. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  5370. dependencies = [
  5371. "libc",
  5372. "winapi",
  5373. ]
  5374. [[package]]
  5375. name = "socket2"
  5376. version = "0.5.6"
  5377. source = "registry+https://github.com/rust-lang/crates.io-index"
  5378. checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
  5379. dependencies = [
  5380. "libc",
  5381. "windows-sys 0.52.0",
  5382. ]
  5383. [[package]]
  5384. name = "solang-parser"
  5385. version = "0.3.3"
  5386. source = "registry+https://github.com/rust-lang/crates.io-index"
  5387. checksum = "c425ce1c59f4b154717592f0bdf4715c3a1d55058883622d3157e1f0908a5b26"
  5388. dependencies = [
  5389. "itertools 0.11.0",
  5390. "lalrpop",
  5391. "lalrpop-util",
  5392. "phf",
  5393. "thiserror",
  5394. "unicode-xid",
  5395. ]
  5396. [[package]]
  5397. name = "spin"
  5398. version = "0.5.2"
  5399. source = "registry+https://github.com/rust-lang/crates.io-index"
  5400. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5401. [[package]]
  5402. name = "spin"
  5403. version = "0.9.8"
  5404. source = "registry+https://github.com/rust-lang/crates.io-index"
  5405. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  5406. [[package]]
  5407. name = "spki"
  5408. version = "0.7.3"
  5409. source = "registry+https://github.com/rust-lang/crates.io-index"
  5410. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  5411. dependencies = [
  5412. "base64ct",
  5413. "der",
  5414. ]
  5415. [[package]]
  5416. name = "ssh-cipher"
  5417. version = "0.2.0"
  5418. source = "registry+https://github.com/rust-lang/crates.io-index"
  5419. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  5420. dependencies = [
  5421. "cipher",
  5422. "ssh-encoding",
  5423. ]
  5424. [[package]]
  5425. name = "ssh-encoding"
  5426. version = "0.2.0"
  5427. source = "registry+https://github.com/rust-lang/crates.io-index"
  5428. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  5429. dependencies = [
  5430. "base64ct",
  5431. "pem-rfc7468",
  5432. "sha2",
  5433. ]
  5434. [[package]]
  5435. name = "ssh-key"
  5436. version = "0.6.5"
  5437. source = "registry+https://github.com/rust-lang/crates.io-index"
  5438. checksum = "3b71299a724c8d84956caaf8fc3b3ea57c3587fe2d0b800cd0dc1f3599905d7e"
  5439. dependencies = [
  5440. "p256",
  5441. "p384",
  5442. "p521",
  5443. "rand_core",
  5444. "rsa",
  5445. "sec1",
  5446. "sha2",
  5447. "signature",
  5448. "ssh-cipher",
  5449. "ssh-encoding",
  5450. "subtle",
  5451. "zeroize",
  5452. ]
  5453. [[package]]
  5454. name = "stable_deref_trait"
  5455. version = "1.2.0"
  5456. source = "registry+https://github.com/rust-lang/crates.io-index"
  5457. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5458. [[package]]
  5459. name = "static_assertions"
  5460. version = "1.1.0"
  5461. source = "registry+https://github.com/rust-lang/crates.io-index"
  5462. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5463. [[package]]
  5464. name = "string_cache"
  5465. version = "0.8.7"
  5466. source = "registry+https://github.com/rust-lang/crates.io-index"
  5467. checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
  5468. dependencies = [
  5469. "new_debug_unreachable",
  5470. "once_cell",
  5471. "parking_lot 0.12.1",
  5472. "phf_shared 0.10.0",
  5473. "precomputed-hash",
  5474. ]
  5475. [[package]]
  5476. name = "strsim"
  5477. version = "0.8.0"
  5478. source = "registry+https://github.com/rust-lang/crates.io-index"
  5479. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  5480. [[package]]
  5481. name = "strsim"
  5482. version = "0.10.0"
  5483. source = "registry+https://github.com/rust-lang/crates.io-index"
  5484. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  5485. [[package]]
  5486. name = "structopt"
  5487. version = "0.3.26"
  5488. source = "registry+https://github.com/rust-lang/crates.io-index"
  5489. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  5490. dependencies = [
  5491. "clap",
  5492. "lazy_static",
  5493. "structopt-derive",
  5494. ]
  5495. [[package]]
  5496. name = "structopt-derive"
  5497. version = "0.4.18"
  5498. source = "registry+https://github.com/rust-lang/crates.io-index"
  5499. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  5500. dependencies = [
  5501. "heck 0.3.3",
  5502. "proc-macro-error",
  5503. "proc-macro2",
  5504. "quote",
  5505. "syn 1.0.109",
  5506. ]
  5507. [[package]]
  5508. name = "structopt-toml"
  5509. version = "0.5.1"
  5510. source = "registry+https://github.com/rust-lang/crates.io-index"
  5511. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  5512. dependencies = [
  5513. "anyhow",
  5514. "clap",
  5515. "serde",
  5516. "serde_derive",
  5517. "skeptic",
  5518. "structopt",
  5519. "structopt-toml-derive",
  5520. "toml 0.5.11",
  5521. ]
  5522. [[package]]
  5523. name = "structopt-toml-derive"
  5524. version = "0.5.1"
  5525. source = "registry+https://github.com/rust-lang/crates.io-index"
  5526. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  5527. dependencies = [
  5528. "heck 0.4.1",
  5529. "proc-macro2",
  5530. "quote",
  5531. "syn 1.0.109",
  5532. ]
  5533. [[package]]
  5534. name = "strum"
  5535. version = "0.25.0"
  5536. source = "registry+https://github.com/rust-lang/crates.io-index"
  5537. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  5538. dependencies = [
  5539. "strum_macros 0.25.3",
  5540. ]
  5541. [[package]]
  5542. name = "strum"
  5543. version = "0.26.2"
  5544. source = "registry+https://github.com/rust-lang/crates.io-index"
  5545. checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
  5546. dependencies = [
  5547. "strum_macros 0.26.2",
  5548. ]
  5549. [[package]]
  5550. name = "strum_macros"
  5551. version = "0.25.3"
  5552. source = "registry+https://github.com/rust-lang/crates.io-index"
  5553. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  5554. dependencies = [
  5555. "heck 0.4.1",
  5556. "proc-macro2",
  5557. "quote",
  5558. "rustversion",
  5559. "syn 2.0.53",
  5560. ]
  5561. [[package]]
  5562. name = "strum_macros"
  5563. version = "0.26.2"
  5564. source = "registry+https://github.com/rust-lang/crates.io-index"
  5565. checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
  5566. dependencies = [
  5567. "heck 0.4.1",
  5568. "proc-macro2",
  5569. "quote",
  5570. "rustversion",
  5571. "syn 2.0.53",
  5572. ]
  5573. [[package]]
  5574. name = "subtle"
  5575. version = "2.5.0"
  5576. source = "registry+https://github.com/rust-lang/crates.io-index"
  5577. checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
  5578. [[package]]
  5579. name = "svm-rs"
  5580. version = "0.3.5"
  5581. source = "registry+https://github.com/rust-lang/crates.io-index"
  5582. checksum = "11297baafe5fa0c99d5722458eac6a5e25c01eb1b8e5cd137f54079093daa7a4"
  5583. dependencies = [
  5584. "dirs",
  5585. "fs2",
  5586. "hex",
  5587. "once_cell",
  5588. "reqwest",
  5589. "semver",
  5590. "serde",
  5591. "serde_json",
  5592. "sha2",
  5593. "thiserror",
  5594. "url",
  5595. "zip",
  5596. ]
  5597. [[package]]
  5598. name = "swapd"
  5599. version = "0.1.0"
  5600. dependencies = [
  5601. "async-std",
  5602. "async-watch",
  5603. "darkfi",
  5604. "darkfi-sdk",
  5605. "darkfi-serial",
  5606. "drk",
  5607. "easy-parallel",
  5608. "ethers",
  5609. "log",
  5610. "pasta_curves",
  5611. "serde",
  5612. "signal-hook",
  5613. "signal-hook-async-std",
  5614. "simplelog",
  5615. "sled",
  5616. "smol",
  5617. "structopt",
  5618. "structopt-toml",
  5619. "swapd",
  5620. "thiserror",
  5621. "url",
  5622. ]
  5623. [[package]]
  5624. name = "syn"
  5625. version = "1.0.109"
  5626. source = "registry+https://github.com/rust-lang/crates.io-index"
  5627. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  5628. dependencies = [
  5629. "proc-macro2",
  5630. "quote",
  5631. "unicode-ident",
  5632. ]
  5633. [[package]]
  5634. name = "syn"
  5635. version = "2.0.53"
  5636. source = "registry+https://github.com/rust-lang/crates.io-index"
  5637. checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
  5638. dependencies = [
  5639. "proc-macro2",
  5640. "quote",
  5641. "unicode-ident",
  5642. ]
  5643. [[package]]
  5644. name = "sync_wrapper"
  5645. version = "0.1.2"
  5646. source = "registry+https://github.com/rust-lang/crates.io-index"
  5647. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  5648. [[package]]
  5649. name = "synstructure"
  5650. version = "0.13.1"
  5651. source = "registry+https://github.com/rust-lang/crates.io-index"
  5652. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  5653. dependencies = [
  5654. "proc-macro2",
  5655. "quote",
  5656. "syn 2.0.53",
  5657. ]
  5658. [[package]]
  5659. name = "system-configuration"
  5660. version = "0.5.1"
  5661. source = "registry+https://github.com/rust-lang/crates.io-index"
  5662. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  5663. dependencies = [
  5664. "bitflags 1.3.2",
  5665. "core-foundation",
  5666. "system-configuration-sys",
  5667. ]
  5668. [[package]]
  5669. name = "system-configuration-sys"
  5670. version = "0.5.0"
  5671. source = "registry+https://github.com/rust-lang/crates.io-index"
  5672. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  5673. dependencies = [
  5674. "core-foundation-sys",
  5675. "libc",
  5676. ]
  5677. [[package]]
  5678. name = "tap"
  5679. version = "1.0.1"
  5680. source = "registry+https://github.com/rust-lang/crates.io-index"
  5681. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5682. [[package]]
  5683. name = "target-lexicon"
  5684. version = "0.12.14"
  5685. source = "registry+https://github.com/rust-lang/crates.io-index"
  5686. checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
  5687. [[package]]
  5688. name = "tempfile"
  5689. version = "3.10.1"
  5690. source = "registry+https://github.com/rust-lang/crates.io-index"
  5691. checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
  5692. dependencies = [
  5693. "cfg-if",
  5694. "fastrand 2.0.1",
  5695. "rustix 0.38.32",
  5696. "windows-sys 0.52.0",
  5697. ]
  5698. [[package]]
  5699. name = "term"
  5700. version = "0.7.0"
  5701. source = "registry+https://github.com/rust-lang/crates.io-index"
  5702. checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
  5703. dependencies = [
  5704. "dirs-next",
  5705. "rustversion",
  5706. "winapi",
  5707. ]
  5708. [[package]]
  5709. name = "termcolor"
  5710. version = "1.4.1"
  5711. source = "registry+https://github.com/rust-lang/crates.io-index"
  5712. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  5713. dependencies = [
  5714. "winapi-util",
  5715. ]
  5716. [[package]]
  5717. name = "textwrap"
  5718. version = "0.11.0"
  5719. source = "registry+https://github.com/rust-lang/crates.io-index"
  5720. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  5721. dependencies = [
  5722. "unicode-width",
  5723. ]
  5724. [[package]]
  5725. name = "thiserror"
  5726. version = "1.0.58"
  5727. source = "registry+https://github.com/rust-lang/crates.io-index"
  5728. checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
  5729. dependencies = [
  5730. "thiserror-impl",
  5731. ]
  5732. [[package]]
  5733. name = "thiserror-impl"
  5734. version = "1.0.58"
  5735. source = "registry+https://github.com/rust-lang/crates.io-index"
  5736. checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
  5737. dependencies = [
  5738. "proc-macro2",
  5739. "quote",
  5740. "syn 2.0.53",
  5741. ]
  5742. [[package]]
  5743. name = "thread_local"
  5744. version = "1.1.8"
  5745. source = "registry+https://github.com/rust-lang/crates.io-index"
  5746. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  5747. dependencies = [
  5748. "cfg-if",
  5749. "once_cell",
  5750. ]
  5751. [[package]]
  5752. name = "time"
  5753. version = "0.3.34"
  5754. source = "registry+https://github.com/rust-lang/crates.io-index"
  5755. checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
  5756. dependencies = [
  5757. "deranged",
  5758. "itoa",
  5759. "libc",
  5760. "num-conv",
  5761. "num_threads",
  5762. "powerfmt",
  5763. "serde",
  5764. "time-core",
  5765. "time-macros",
  5766. ]
  5767. [[package]]
  5768. name = "time-core"
  5769. version = "0.1.2"
  5770. source = "registry+https://github.com/rust-lang/crates.io-index"
  5771. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  5772. [[package]]
  5773. name = "time-macros"
  5774. version = "0.2.17"
  5775. source = "registry+https://github.com/rust-lang/crates.io-index"
  5776. checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
  5777. dependencies = [
  5778. "num-conv",
  5779. "time-core",
  5780. ]
  5781. [[package]]
  5782. name = "tiny-keccak"
  5783. version = "2.0.2"
  5784. source = "registry+https://github.com/rust-lang/crates.io-index"
  5785. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  5786. dependencies = [
  5787. "crunchy",
  5788. ]
  5789. [[package]]
  5790. name = "tinyjson"
  5791. version = "2.5.1"
  5792. source = "registry+https://github.com/rust-lang/crates.io-index"
  5793. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  5794. [[package]]
  5795. name = "tinystr"
  5796. version = "0.7.5"
  5797. source = "registry+https://github.com/rust-lang/crates.io-index"
  5798. checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece"
  5799. dependencies = [
  5800. "displaydoc",
  5801. ]
  5802. [[package]]
  5803. name = "tinyvec"
  5804. version = "1.6.0"
  5805. source = "registry+https://github.com/rust-lang/crates.io-index"
  5806. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  5807. dependencies = [
  5808. "tinyvec_macros",
  5809. ]
  5810. [[package]]
  5811. name = "tinyvec_macros"
  5812. version = "0.1.1"
  5813. source = "registry+https://github.com/rust-lang/crates.io-index"
  5814. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  5815. [[package]]
  5816. name = "tokio"
  5817. version = "1.36.0"
  5818. source = "registry+https://github.com/rust-lang/crates.io-index"
  5819. checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
  5820. dependencies = [
  5821. "backtrace",
  5822. "bytes",
  5823. "libc",
  5824. "mio",
  5825. "num_cpus",
  5826. "pin-project-lite",
  5827. "socket2 0.5.6",
  5828. "windows-sys 0.48.0",
  5829. ]
  5830. [[package]]
  5831. name = "tokio-rustls"
  5832. version = "0.24.1"
  5833. source = "registry+https://github.com/rust-lang/crates.io-index"
  5834. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  5835. dependencies = [
  5836. "rustls 0.21.10",
  5837. "tokio",
  5838. ]
  5839. [[package]]
  5840. name = "tokio-tungstenite"
  5841. version = "0.20.1"
  5842. source = "registry+https://github.com/rust-lang/crates.io-index"
  5843. checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
  5844. dependencies = [
  5845. "futures-util",
  5846. "log",
  5847. "rustls 0.21.10",
  5848. "tokio",
  5849. "tokio-rustls",
  5850. "tungstenite",
  5851. "webpki-roots",
  5852. ]
  5853. [[package]]
  5854. name = "tokio-util"
  5855. version = "0.7.10"
  5856. source = "registry+https://github.com/rust-lang/crates.io-index"
  5857. checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
  5858. dependencies = [
  5859. "bytes",
  5860. "futures-core",
  5861. "futures-sink",
  5862. "pin-project-lite",
  5863. "tokio",
  5864. "tracing",
  5865. ]
  5866. [[package]]
  5867. name = "toml"
  5868. version = "0.5.11"
  5869. source = "registry+https://github.com/rust-lang/crates.io-index"
  5870. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  5871. dependencies = [
  5872. "serde",
  5873. ]
  5874. [[package]]
  5875. name = "toml"
  5876. version = "0.8.12"
  5877. source = "registry+https://github.com/rust-lang/crates.io-index"
  5878. checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
  5879. dependencies = [
  5880. "serde",
  5881. "serde_spanned",
  5882. "toml_datetime",
  5883. "toml_edit 0.22.9",
  5884. ]
  5885. [[package]]
  5886. name = "toml_datetime"
  5887. version = "0.6.5"
  5888. source = "registry+https://github.com/rust-lang/crates.io-index"
  5889. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  5890. dependencies = [
  5891. "serde",
  5892. ]
  5893. [[package]]
  5894. name = "toml_edit"
  5895. version = "0.19.15"
  5896. source = "registry+https://github.com/rust-lang/crates.io-index"
  5897. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  5898. dependencies = [
  5899. "indexmap 2.2.5",
  5900. "toml_datetime",
  5901. "winnow 0.5.40",
  5902. ]
  5903. [[package]]
  5904. name = "toml_edit"
  5905. version = "0.20.7"
  5906. source = "registry+https://github.com/rust-lang/crates.io-index"
  5907. checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
  5908. dependencies = [
  5909. "indexmap 2.2.5",
  5910. "toml_datetime",
  5911. "winnow 0.5.40",
  5912. ]
  5913. [[package]]
  5914. name = "toml_edit"
  5915. version = "0.21.1"
  5916. source = "registry+https://github.com/rust-lang/crates.io-index"
  5917. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  5918. dependencies = [
  5919. "indexmap 2.2.5",
  5920. "toml_datetime",
  5921. "winnow 0.5.40",
  5922. ]
  5923. [[package]]
  5924. name = "toml_edit"
  5925. version = "0.22.9"
  5926. source = "registry+https://github.com/rust-lang/crates.io-index"
  5927. checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
  5928. dependencies = [
  5929. "indexmap 2.2.5",
  5930. "serde",
  5931. "serde_spanned",
  5932. "toml_datetime",
  5933. "winnow 0.6.5",
  5934. ]
  5935. [[package]]
  5936. name = "tor-async-utils"
  5937. version = "0.1.5"
  5938. source = "registry+https://github.com/rust-lang/crates.io-index"
  5939. checksum = "154dff0d035ea51ee67b491aca0d90875fae090cfea430527fcc343a0c59c0a3"
  5940. dependencies = [
  5941. "futures",
  5942. "pin-project",
  5943. "postage",
  5944. "thiserror",
  5945. "void",
  5946. ]
  5947. [[package]]
  5948. name = "tor-basic-utils"
  5949. version = "0.8.0"
  5950. source = "registry+https://github.com/rust-lang/crates.io-index"
  5951. checksum = "11e82b6e151be1ba47f9aad40e02bb1dc8b2b174bc493b4a1d942ba8e405e3d3"
  5952. dependencies = [
  5953. "hex",
  5954. "libc",
  5955. "paste",
  5956. "rand",
  5957. "rand_chacha",
  5958. "slab",
  5959. "thiserror",
  5960. ]
  5961. [[package]]
  5962. name = "tor-bytes"
  5963. version = "0.10.0"
  5964. source = "registry+https://github.com/rust-lang/crates.io-index"
  5965. checksum = "ade285e052d37dd606d0f5179d73e2db3cc03b88ef35d82f3f136f1f310e3ba6"
  5966. dependencies = [
  5967. "bytes",
  5968. "digest",
  5969. "educe",
  5970. "getrandom",
  5971. "signature",
  5972. "thiserror",
  5973. "tor-error",
  5974. "tor-llcrypto",
  5975. "zeroize",
  5976. ]
  5977. [[package]]
  5978. name = "tor-cell"
  5979. version = "0.16.1"
  5980. source = "registry+https://github.com/rust-lang/crates.io-index"
  5981. checksum = "f45c5af2f3ce5597a1ad90a8978fab6d43dcfe098b3f246c5ed573fe97f6beb9"
  5982. dependencies = [
  5983. "bitflags 2.5.0",
  5984. "bytes",
  5985. "caret",
  5986. "derive_more",
  5987. "educe",
  5988. "paste",
  5989. "rand",
  5990. "thiserror",
  5991. "tor-basic-utils",
  5992. "tor-bytes",
  5993. "tor-cert",
  5994. "tor-error",
  5995. "tor-hscrypto",
  5996. "tor-linkspec",
  5997. "tor-llcrypto",
  5998. "tor-units",
  5999. ]
  6000. [[package]]
  6001. name = "tor-cert"
  6002. version = "0.11.0"
  6003. source = "registry+https://github.com/rust-lang/crates.io-index"
  6004. checksum = "b059aa8271220dc38c39e0aab52366f83b86adac71d687a91a56fc99ff7b0640"
  6005. dependencies = [
  6006. "caret",
  6007. "derive_builder_fork_arti",
  6008. "derive_more",
  6009. "digest",
  6010. "thiserror",
  6011. "tor-bytes",
  6012. "tor-checkable",
  6013. "tor-llcrypto",
  6014. ]
  6015. [[package]]
  6016. name = "tor-chanmgr"
  6017. version = "0.14.1"
  6018. source = "registry+https://github.com/rust-lang/crates.io-index"
  6019. checksum = "d99f76f14b3134b44b37a35ff9073f81fe8955f747d3d1effc3ab1bd1e0aaf5b"
  6020. dependencies = [
  6021. "async-trait",
  6022. "derive_builder_fork_arti",
  6023. "derive_more",
  6024. "educe",
  6025. "futures",
  6026. "postage",
  6027. "rand",
  6028. "safelog",
  6029. "serde",
  6030. "thiserror",
  6031. "tor-async-utils",
  6032. "tor-basic-utils",
  6033. "tor-cell",
  6034. "tor-config",
  6035. "tor-error",
  6036. "tor-linkspec",
  6037. "tor-llcrypto",
  6038. "tor-netdir",
  6039. "tor-proto",
  6040. "tor-rtcompat",
  6041. "tor-socksproto",
  6042. "tor-units",
  6043. "tracing",
  6044. "void",
  6045. ]
  6046. [[package]]
  6047. name = "tor-checkable"
  6048. version = "0.8.0"
  6049. source = "registry+https://github.com/rust-lang/crates.io-index"
  6050. checksum = "96ac8ef9db89e16af3e674c8bb915b6e780d72e1c7f408388d610441f8a5578b"
  6051. dependencies = [
  6052. "humantime",
  6053. "signature",
  6054. "thiserror",
  6055. "tor-llcrypto",
  6056. ]
  6057. [[package]]
  6058. name = "tor-circmgr"
  6059. version = "0.16.0"
  6060. source = "registry+https://github.com/rust-lang/crates.io-index"
  6061. checksum = "b19089ab29f56b5b40cecb01ceb297593472885c0d2b0f9a0cb0a5a5635600b5"
  6062. dependencies = [
  6063. "amplify",
  6064. "async-trait",
  6065. "bounded-vec-deque",
  6066. "derive_builder_fork_arti",
  6067. "derive_more",
  6068. "downcast-rs",
  6069. "dyn-clone",
  6070. "educe",
  6071. "futures",
  6072. "humantime-serde",
  6073. "itertools 0.12.1",
  6074. "once_cell",
  6075. "pin-project",
  6076. "rand",
  6077. "retry-error",
  6078. "safelog",
  6079. "serde",
  6080. "static_assertions",
  6081. "thiserror",
  6082. "tor-async-utils",
  6083. "tor-basic-utils",
  6084. "tor-chanmgr",
  6085. "tor-config",
  6086. "tor-error",
  6087. "tor-guardmgr",
  6088. "tor-hscrypto",
  6089. "tor-linkspec",
  6090. "tor-netdir",
  6091. "tor-netdoc",
  6092. "tor-persist",
  6093. "tor-proto",
  6094. "tor-protover",
  6095. "tor-rtcompat",
  6096. "tracing",
  6097. "void",
  6098. "weak-table",
  6099. ]
  6100. [[package]]
  6101. name = "tor-config"
  6102. version = "0.11.0"
  6103. source = "registry+https://github.com/rust-lang/crates.io-index"
  6104. checksum = "0c579e92f3b9e419e68cd317d33f567491365b81f943b063d30f32e4a2f072c5"
  6105. dependencies = [
  6106. "config",
  6107. "derive-adhoc 0.8.2",
  6108. "derive_builder_fork_arti",
  6109. "directories",
  6110. "educe",
  6111. "either",
  6112. "fs-mistrust",
  6113. "itertools 0.12.1",
  6114. "once_cell",
  6115. "paste",
  6116. "regex",
  6117. "serde",
  6118. "serde-value",
  6119. "serde_ignored",
  6120. "shellexpand",
  6121. "strum 0.26.2",
  6122. "thiserror",
  6123. "toml 0.8.12",
  6124. "tor-basic-utils",
  6125. "tor-error",
  6126. "tracing",
  6127. "void",
  6128. ]
  6129. [[package]]
  6130. name = "tor-consdiff"
  6131. version = "0.7.0"
  6132. source = "registry+https://github.com/rust-lang/crates.io-index"
  6133. checksum = "0d75a7789f2911d164ae3c80640fb1c687cc91846647417183a49deaeada94d5"
  6134. dependencies = [
  6135. "digest",
  6136. "hex",
  6137. "thiserror",
  6138. "tor-llcrypto",
  6139. ]
  6140. [[package]]
  6141. name = "tor-dirclient"
  6142. version = "0.14.0"
  6143. source = "registry+https://github.com/rust-lang/crates.io-index"
  6144. checksum = "31fff143aba287f7a209a65a69a7e573f45aeb826737e3f43944054b8d743968"
  6145. dependencies = [
  6146. "async-compression",
  6147. "base64ct",
  6148. "derive_more",
  6149. "futures",
  6150. "hex",
  6151. "http 1.1.0",
  6152. "httparse",
  6153. "httpdate",
  6154. "itertools 0.12.1",
  6155. "memchr",
  6156. "thiserror",
  6157. "tor-circmgr",
  6158. "tor-error",
  6159. "tor-hscrypto",
  6160. "tor-linkspec",
  6161. "tor-llcrypto",
  6162. "tor-netdoc",
  6163. "tor-proto",
  6164. "tor-rtcompat",
  6165. "tracing",
  6166. ]
  6167. [[package]]
  6168. name = "tor-dirmgr"
  6169. version = "0.16.0"
  6170. source = "registry+https://github.com/rust-lang/crates.io-index"
  6171. checksum = "44bdc21d916be66bbe7afeff45303a751196daa1211df645abfe03f2cf3186ed"
  6172. dependencies = [
  6173. "async-trait",
  6174. "base64ct",
  6175. "derive_builder_fork_arti",
  6176. "derive_more",
  6177. "digest",
  6178. "educe",
  6179. "event-listener 5.2.0",
  6180. "fs-mistrust",
  6181. "fslock",
  6182. "futures",
  6183. "hex",
  6184. "humantime",
  6185. "humantime-serde",
  6186. "itertools 0.12.1",
  6187. "memmap2 0.9.4",
  6188. "once_cell",
  6189. "paste",
  6190. "postage",
  6191. "rand",
  6192. "retry-error",
  6193. "rusqlite",
  6194. "safelog",
  6195. "scopeguard",
  6196. "serde",
  6197. "signature",
  6198. "strum 0.26.2",
  6199. "thiserror",
  6200. "time",
  6201. "tor-async-utils",
  6202. "tor-basic-utils",
  6203. "tor-checkable",
  6204. "tor-circmgr",
  6205. "tor-config",
  6206. "tor-consdiff",
  6207. "tor-dirclient",
  6208. "tor-error",
  6209. "tor-guardmgr",
  6210. "tor-llcrypto",
  6211. "tor-netdir",
  6212. "tor-netdoc",
  6213. "tor-persist",
  6214. "tor-proto",
  6215. "tor-rtcompat",
  6216. "tracing",
  6217. ]
  6218. [[package]]
  6219. name = "tor-error"
  6220. version = "0.6.1"
  6221. source = "registry+https://github.com/rust-lang/crates.io-index"
  6222. checksum = "a2195a255af92eddc6422f83e176094394ec856501536e3d3246d1c6c3879dd3"
  6223. dependencies = [
  6224. "backtrace",
  6225. "derive_more",
  6226. "futures",
  6227. "once_cell",
  6228. "paste",
  6229. "retry-error",
  6230. "static_assertions",
  6231. "strum 0.26.2",
  6232. "thiserror",
  6233. "tracing",
  6234. ]
  6235. [[package]]
  6236. name = "tor-guardmgr"
  6237. version = "0.14.1"
  6238. source = "registry+https://github.com/rust-lang/crates.io-index"
  6239. checksum = "08065540dc88a8fd7117627d6e94a3f0d63c45d135ac7fdac7bd3b9f702dc1ee"
  6240. dependencies = [
  6241. "base64ct",
  6242. "derive_builder_fork_arti",
  6243. "derive_more",
  6244. "dyn-clone",
  6245. "educe",
  6246. "futures",
  6247. "humantime",
  6248. "humantime-serde",
  6249. "itertools 0.12.1",
  6250. "num_enum",
  6251. "pin-project",
  6252. "postage",
  6253. "rand",
  6254. "safelog",
  6255. "serde",
  6256. "strum 0.26.2",
  6257. "thiserror",
  6258. "tor-async-utils",
  6259. "tor-basic-utils",
  6260. "tor-config",
  6261. "tor-error",
  6262. "tor-linkspec",
  6263. "tor-llcrypto",
  6264. "tor-netdir",
  6265. "tor-netdoc",
  6266. "tor-persist",
  6267. "tor-proto",
  6268. "tor-rtcompat",
  6269. "tor-units",
  6270. "tracing",
  6271. ]
  6272. [[package]]
  6273. name = "tor-hsclient"
  6274. version = "0.10.0"
  6275. source = "registry+https://github.com/rust-lang/crates.io-index"
  6276. checksum = "b4613dfe9d946db3b5769b860a16598a9c4a0f85df21653d0765b1238106d297"
  6277. dependencies = [
  6278. "async-trait",
  6279. "derive-adhoc 0.8.2",
  6280. "derive_more",
  6281. "educe",
  6282. "either",
  6283. "futures",
  6284. "itertools 0.12.1",
  6285. "postage",
  6286. "rand",
  6287. "rand_core",
  6288. "retry-error",
  6289. "safelog",
  6290. "slotmap",
  6291. "strum 0.26.2",
  6292. "thiserror",
  6293. "tor-async-utils",
  6294. "tor-basic-utils",
  6295. "tor-bytes",
  6296. "tor-cell",
  6297. "tor-checkable",
  6298. "tor-circmgr",
  6299. "tor-config",
  6300. "tor-dirclient",
  6301. "tor-error",
  6302. "tor-hscrypto",
  6303. "tor-keymgr",
  6304. "tor-linkspec",
  6305. "tor-llcrypto",
  6306. "tor-netdir",
  6307. "tor-netdoc",
  6308. "tor-persist",
  6309. "tor-proto",
  6310. "tor-rtcompat",
  6311. "tracing",
  6312. ]
  6313. [[package]]
  6314. name = "tor-hscrypto"
  6315. version = "0.6.1"
  6316. source = "registry+https://github.com/rust-lang/crates.io-index"
  6317. checksum = "fb26c4926710d9c18f32707a709cfe4e7930e2f9a7da4e3e101aa9623e2f40d0"
  6318. dependencies = [
  6319. "cipher",
  6320. "data-encoding",
  6321. "derive_more",
  6322. "digest",
  6323. "itertools 0.12.1",
  6324. "paste",
  6325. "rand",
  6326. "rand_core",
  6327. "safelog",
  6328. "serde",
  6329. "signature",
  6330. "subtle",
  6331. "thiserror",
  6332. "tor-basic-utils",
  6333. "tor-bytes",
  6334. "tor-error",
  6335. "tor-llcrypto",
  6336. "tor-units",
  6337. "zeroize",
  6338. ]
  6339. [[package]]
  6340. name = "tor-hsservice"
  6341. version = "0.8.0"
  6342. source = "registry+https://github.com/rust-lang/crates.io-index"
  6343. checksum = "c5e0d5219b7920490ee5d7af3a697d083236aef1f29badbe1b7d9742838110a5"
  6344. dependencies = [
  6345. "amplify",
  6346. "async-trait",
  6347. "base64ct",
  6348. "derive-adhoc 0.8.2",
  6349. "derive_builder_fork_arti",
  6350. "derive_more",
  6351. "digest",
  6352. "educe",
  6353. "fs-mistrust",
  6354. "futures",
  6355. "growable-bloom-filter",
  6356. "hex",
  6357. "humantime",
  6358. "itertools 0.12.1",
  6359. "k12",
  6360. "once_cell",
  6361. "postage",
  6362. "rand",
  6363. "rand_core",
  6364. "retry-error",
  6365. "safelog",
  6366. "serde",
  6367. "serde_with",
  6368. "strum 0.26.2",
  6369. "thiserror",
  6370. "tor-async-utils",
  6371. "tor-basic-utils",
  6372. "tor-bytes",
  6373. "tor-cell",
  6374. "tor-cert",
  6375. "tor-circmgr",
  6376. "tor-config",
  6377. "tor-dirclient",
  6378. "tor-error",
  6379. "tor-hscrypto",
  6380. "tor-keymgr",
  6381. "tor-linkspec",
  6382. "tor-llcrypto",
  6383. "tor-log-ratelim",
  6384. "tor-netdir",
  6385. "tor-netdoc",
  6386. "tor-persist",
  6387. "tor-proto",
  6388. "tor-protover",
  6389. "tor-rtcompat",
  6390. "tor-units",
  6391. "tracing",
  6392. "void",
  6393. ]
  6394. [[package]]
  6395. name = "tor-keymgr"
  6396. version = "0.8.0"
  6397. source = "registry+https://github.com/rust-lang/crates.io-index"
  6398. checksum = "365c02c66f2f0159078714dd44947fb06c76956a3621fc102783119e5093be96"
  6399. dependencies = [
  6400. "amplify",
  6401. "arrayvec",
  6402. "derive-adhoc 0.8.2",
  6403. "derive_builder_fork_arti",
  6404. "derive_more",
  6405. "downcast-rs",
  6406. "dyn-clone",
  6407. "fs-mistrust",
  6408. "glob-match",
  6409. "humantime",
  6410. "inventory",
  6411. "itertools 0.12.1",
  6412. "paste",
  6413. "rand",
  6414. "serde",
  6415. "ssh-key",
  6416. "thiserror",
  6417. "tor-config",
  6418. "tor-error",
  6419. "tor-hscrypto",
  6420. "tor-llcrypto",
  6421. "tor-persist",
  6422. "walkdir",
  6423. "zeroize",
  6424. ]
  6425. [[package]]
  6426. name = "tor-linkspec"
  6427. version = "0.11.1"
  6428. source = "registry+https://github.com/rust-lang/crates.io-index"
  6429. checksum = "87539d8be3b8f86e240ae1cece77fb5ee669eb0c1434f7e3f5d369b6c2aa1b91"
  6430. dependencies = [
  6431. "base64ct",
  6432. "by_address",
  6433. "caret",
  6434. "cfg-if",
  6435. "derive_builder_fork_arti",
  6436. "derive_more",
  6437. "educe",
  6438. "hex",
  6439. "itertools 0.12.1",
  6440. "safelog",
  6441. "serde",
  6442. "serde_with",
  6443. "strum 0.26.2",
  6444. "thiserror",
  6445. "tor-basic-utils",
  6446. "tor-bytes",
  6447. "tor-config",
  6448. "tor-llcrypto",
  6449. "tor-protover",
  6450. ]
  6451. [[package]]
  6452. name = "tor-llcrypto"
  6453. version = "0.7.0"
  6454. source = "registry+https://github.com/rust-lang/crates.io-index"
  6455. checksum = "982feadd8fc89aa703dda1d3aeda626f13bde731d61eefbf0844e4771e98d496"
  6456. dependencies = [
  6457. "aes",
  6458. "base64ct",
  6459. "cipher",
  6460. "ctr",
  6461. "curve25519-dalek",
  6462. "derive_more",
  6463. "digest",
  6464. "ed25519-dalek",
  6465. "educe",
  6466. "getrandom",
  6467. "hex",
  6468. "openssl",
  6469. "rand_core",
  6470. "rsa",
  6471. "safelog",
  6472. "serde",
  6473. "sha1",
  6474. "sha2",
  6475. "sha3",
  6476. "signature",
  6477. "simple_asn1",
  6478. "subtle",
  6479. "thiserror",
  6480. "typenum",
  6481. "x25519-dalek",
  6482. "zeroize",
  6483. ]
  6484. [[package]]
  6485. name = "tor-log-ratelim"
  6486. version = "0.3.0"
  6487. source = "registry+https://github.com/rust-lang/crates.io-index"
  6488. checksum = "c7a8e134f97890c980120b6ec4de2c43383357e84685e2ef2ae833b086d2fcdc"
  6489. dependencies = [
  6490. "futures",
  6491. "humantime",
  6492. "once_cell",
  6493. "thiserror",
  6494. "tor-error",
  6495. "tor-rtcompat",
  6496. "tracing",
  6497. "weak-table",
  6498. ]
  6499. [[package]]
  6500. name = "tor-netdir"
  6501. version = "0.12.1"
  6502. source = "registry+https://github.com/rust-lang/crates.io-index"
  6503. checksum = "88d507e621e12c5e958d81d3feee176a0b810874921d68b013a33fff6fc44f9f"
  6504. dependencies = [
  6505. "bitflags 2.5.0",
  6506. "derive_builder_fork_arti",
  6507. "derive_more",
  6508. "digest",
  6509. "futures",
  6510. "hex",
  6511. "humantime",
  6512. "itertools 0.12.1",
  6513. "num_enum",
  6514. "rand",
  6515. "serde",
  6516. "static_assertions",
  6517. "strum 0.26.2",
  6518. "thiserror",
  6519. "time",
  6520. "tor-basic-utils",
  6521. "tor-checkable",
  6522. "tor-config",
  6523. "tor-error",
  6524. "tor-hscrypto",
  6525. "tor-linkspec",
  6526. "tor-llcrypto",
  6527. "tor-netdoc",
  6528. "tor-protover",
  6529. "tor-units",
  6530. "tracing",
  6531. "typed-index-collections",
  6532. ]
  6533. [[package]]
  6534. name = "tor-netdoc"
  6535. version = "0.12.1"
  6536. source = "registry+https://github.com/rust-lang/crates.io-index"
  6537. checksum = "5146c812701abc039ff41349e7cf25c63949f9a2528fe0a0f6b3976ccf5cb5ab"
  6538. dependencies = [
  6539. "amplify",
  6540. "base64ct",
  6541. "bitflags 2.5.0",
  6542. "cipher",
  6543. "derive_builder_fork_arti",
  6544. "derive_more",
  6545. "digest",
  6546. "educe",
  6547. "hex",
  6548. "humantime",
  6549. "itertools 0.12.1",
  6550. "once_cell",
  6551. "phf",
  6552. "rand",
  6553. "serde",
  6554. "serde_with",
  6555. "signature",
  6556. "smallvec",
  6557. "subtle",
  6558. "thiserror",
  6559. "time",
  6560. "tinystr",
  6561. "tor-basic-utils",
  6562. "tor-bytes",
  6563. "tor-cell",
  6564. "tor-cert",
  6565. "tor-checkable",
  6566. "tor-error",
  6567. "tor-hscrypto",
  6568. "tor-linkspec",
  6569. "tor-llcrypto",
  6570. "tor-protover",
  6571. "tor-units",
  6572. "weak-table",
  6573. "zeroize",
  6574. ]
  6575. [[package]]
  6576. name = "tor-persist"
  6577. version = "0.10.1"
  6578. source = "registry+https://github.com/rust-lang/crates.io-index"
  6579. checksum = "e4bbf6c0a786daab669a75ec7380ae57f9aba91f2c4ea05a12e596d9bc6b49a0"
  6580. dependencies = [
  6581. "amplify",
  6582. "derive-adhoc 0.8.2",
  6583. "derive_more",
  6584. "filetime",
  6585. "fs-mistrust",
  6586. "fslock",
  6587. "fslock-guard",
  6588. "itertools 0.12.1",
  6589. "paste",
  6590. "sanitize-filename",
  6591. "serde",
  6592. "serde_json",
  6593. "thiserror",
  6594. "tor-error",
  6595. "tracing",
  6596. ]
  6597. [[package]]
  6598. name = "tor-proto"
  6599. version = "0.16.1"
  6600. source = "registry+https://github.com/rust-lang/crates.io-index"
  6601. checksum = "dbe3037f1f08ac19a59f2ebe5acdcb0c79fd6f2286773051cb730146596359e6"
  6602. dependencies = [
  6603. "asynchronous-codec",
  6604. "bitvec",
  6605. "bytes",
  6606. "cipher",
  6607. "coarsetime",
  6608. "derive_builder_fork_arti",
  6609. "derive_more",
  6610. "digest",
  6611. "educe",
  6612. "futures",
  6613. "hkdf",
  6614. "hmac",
  6615. "pin-project",
  6616. "rand",
  6617. "rand_core",
  6618. "safelog",
  6619. "subtle",
  6620. "thiserror",
  6621. "tor-async-utils",
  6622. "tor-basic-utils",
  6623. "tor-bytes",
  6624. "tor-cell",
  6625. "tor-cert",
  6626. "tor-checkable",
  6627. "tor-config",
  6628. "tor-error",
  6629. "tor-hscrypto",
  6630. "tor-linkspec",
  6631. "tor-llcrypto",
  6632. "tor-log-ratelim",
  6633. "tor-protover",
  6634. "tor-rtcompat",
  6635. "tor-rtmock",
  6636. "tor-units",
  6637. "tracing",
  6638. "typenum",
  6639. "visibility",
  6640. "void",
  6641. "zeroize",
  6642. ]
  6643. [[package]]
  6644. name = "tor-protover"
  6645. version = "0.6.0"
  6646. source = "registry+https://github.com/rust-lang/crates.io-index"
  6647. checksum = "f7ae613656401ef25efbb8d60767e399e719422d3408975190e4a9fc9faab0eb"
  6648. dependencies = [
  6649. "caret",
  6650. "thiserror",
  6651. ]
  6652. [[package]]
  6653. name = "tor-rtcompat"
  6654. version = "0.10.0"
  6655. source = "registry+https://github.com/rust-lang/crates.io-index"
  6656. checksum = "aa56047926b8da823720654bbdccd7afaa68d635e4341193701d29005818c348"
  6657. dependencies = [
  6658. "async-io 2.3.2",
  6659. "async-std",
  6660. "async-trait",
  6661. "async_executors",
  6662. "educe",
  6663. "futures",
  6664. "futures-rustls",
  6665. "pin-project",
  6666. "rustls-pki-types",
  6667. "thiserror",
  6668. "x509-signature",
  6669. ]
  6670. [[package]]
  6671. name = "tor-rtmock"
  6672. version = "0.13.0"
  6673. source = "registry+https://github.com/rust-lang/crates.io-index"
  6674. checksum = "c9c687cac55bab83de1ed7b57c578c9974be2df024ac06707c0032f6b5203a19"
  6675. dependencies = [
  6676. "amplify",
  6677. "async-trait",
  6678. "backtrace",
  6679. "derive-adhoc 0.8.2",
  6680. "derive_more",
  6681. "educe",
  6682. "futures",
  6683. "humantime",
  6684. "itertools 0.12.1",
  6685. "pin-project",
  6686. "priority-queue",
  6687. "slotmap",
  6688. "strum 0.26.2",
  6689. "thiserror",
  6690. "tor-async-utils",
  6691. "tor-error",
  6692. "tor-rtcompat",
  6693. "tracing",
  6694. "tracing-test",
  6695. "void",
  6696. ]
  6697. [[package]]
  6698. name = "tor-socksproto"
  6699. version = "0.10.0"
  6700. source = "registry+https://github.com/rust-lang/crates.io-index"
  6701. checksum = "065f34c2e292c495afc73cede5d801f38606a3d21528ec5679152edd8c83fa5e"
  6702. dependencies = [
  6703. "caret",
  6704. "subtle",
  6705. "thiserror",
  6706. "tor-bytes",
  6707. "tor-error",
  6708. ]
  6709. [[package]]
  6710. name = "tor-units"
  6711. version = "0.6.5"
  6712. source = "registry+https://github.com/rust-lang/crates.io-index"
  6713. checksum = "0d59226676dc7633b813f92c781f7b637c5258234de27be4196740de2b4c946a"
  6714. dependencies = [
  6715. "derive_more",
  6716. "thiserror",
  6717. ]
  6718. [[package]]
  6719. name = "tower-service"
  6720. version = "0.3.2"
  6721. source = "registry+https://github.com/rust-lang/crates.io-index"
  6722. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  6723. [[package]]
  6724. name = "tracing"
  6725. version = "0.1.40"
  6726. source = "registry+https://github.com/rust-lang/crates.io-index"
  6727. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  6728. dependencies = [
  6729. "pin-project-lite",
  6730. "tracing-attributes",
  6731. "tracing-core",
  6732. ]
  6733. [[package]]
  6734. name = "tracing-attributes"
  6735. version = "0.1.27"
  6736. source = "registry+https://github.com/rust-lang/crates.io-index"
  6737. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  6738. dependencies = [
  6739. "proc-macro2",
  6740. "quote",
  6741. "syn 2.0.53",
  6742. ]
  6743. [[package]]
  6744. name = "tracing-core"
  6745. version = "0.1.32"
  6746. source = "registry+https://github.com/rust-lang/crates.io-index"
  6747. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  6748. dependencies = [
  6749. "once_cell",
  6750. "valuable",
  6751. ]
  6752. [[package]]
  6753. name = "tracing-futures"
  6754. version = "0.2.5"
  6755. source = "registry+https://github.com/rust-lang/crates.io-index"
  6756. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  6757. dependencies = [
  6758. "pin-project",
  6759. "tracing",
  6760. ]
  6761. [[package]]
  6762. name = "tracing-log"
  6763. version = "0.2.0"
  6764. source = "registry+https://github.com/rust-lang/crates.io-index"
  6765. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  6766. dependencies = [
  6767. "log",
  6768. "once_cell",
  6769. "tracing-core",
  6770. ]
  6771. [[package]]
  6772. name = "tracing-subscriber"
  6773. version = "0.3.18"
  6774. source = "registry+https://github.com/rust-lang/crates.io-index"
  6775. checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
  6776. dependencies = [
  6777. "matchers",
  6778. "nu-ansi-term",
  6779. "once_cell",
  6780. "regex",
  6781. "sharded-slab",
  6782. "smallvec",
  6783. "thread_local",
  6784. "tracing",
  6785. "tracing-core",
  6786. "tracing-log",
  6787. ]
  6788. [[package]]
  6789. name = "tracing-test"
  6790. version = "0.2.4"
  6791. source = "registry+https://github.com/rust-lang/crates.io-index"
  6792. checksum = "3a2c0ff408fe918a94c428a3f2ad04e4afd5c95bbc08fcf868eff750c15728a4"
  6793. dependencies = [
  6794. "lazy_static",
  6795. "tracing-core",
  6796. "tracing-subscriber",
  6797. "tracing-test-macro",
  6798. ]
  6799. [[package]]
  6800. name = "tracing-test-macro"
  6801. version = "0.2.4"
  6802. source = "registry+https://github.com/rust-lang/crates.io-index"
  6803. checksum = "258bc1c4f8e2e73a977812ab339d503e6feeb92700f6d07a6de4d321522d5c08"
  6804. dependencies = [
  6805. "lazy_static",
  6806. "quote",
  6807. "syn 1.0.109",
  6808. ]
  6809. [[package]]
  6810. name = "try-lock"
  6811. version = "0.2.5"
  6812. source = "registry+https://github.com/rust-lang/crates.io-index"
  6813. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  6814. [[package]]
  6815. name = "tungstenite"
  6816. version = "0.20.1"
  6817. source = "registry+https://github.com/rust-lang/crates.io-index"
  6818. checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
  6819. dependencies = [
  6820. "byteorder",
  6821. "bytes",
  6822. "data-encoding",
  6823. "http 0.2.12",
  6824. "httparse",
  6825. "log",
  6826. "rand",
  6827. "rustls 0.21.10",
  6828. "sha1",
  6829. "thiserror",
  6830. "url",
  6831. "utf-8",
  6832. ]
  6833. [[package]]
  6834. name = "typed-index-collections"
  6835. version = "3.1.0"
  6836. source = "registry+https://github.com/rust-lang/crates.io-index"
  6837. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  6838. [[package]]
  6839. name = "typenum"
  6840. version = "1.17.0"
  6841. source = "registry+https://github.com/rust-lang/crates.io-index"
  6842. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  6843. [[package]]
  6844. name = "uint"
  6845. version = "0.9.5"
  6846. source = "registry+https://github.com/rust-lang/crates.io-index"
  6847. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  6848. dependencies = [
  6849. "byteorder",
  6850. "crunchy",
  6851. "hex",
  6852. "static_assertions",
  6853. ]
  6854. [[package]]
  6855. name = "unarray"
  6856. version = "0.1.4"
  6857. source = "registry+https://github.com/rust-lang/crates.io-index"
  6858. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  6859. [[package]]
  6860. name = "unicase"
  6861. version = "2.7.0"
  6862. source = "registry+https://github.com/rust-lang/crates.io-index"
  6863. checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
  6864. dependencies = [
  6865. "version_check",
  6866. ]
  6867. [[package]]
  6868. name = "unicode-bidi"
  6869. version = "0.3.15"
  6870. source = "registry+https://github.com/rust-lang/crates.io-index"
  6871. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  6872. [[package]]
  6873. name = "unicode-ident"
  6874. version = "1.0.12"
  6875. source = "registry+https://github.com/rust-lang/crates.io-index"
  6876. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  6877. [[package]]
  6878. name = "unicode-normalization"
  6879. version = "0.1.23"
  6880. source = "registry+https://github.com/rust-lang/crates.io-index"
  6881. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  6882. dependencies = [
  6883. "tinyvec",
  6884. ]
  6885. [[package]]
  6886. name = "unicode-segmentation"
  6887. version = "1.11.0"
  6888. source = "registry+https://github.com/rust-lang/crates.io-index"
  6889. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  6890. [[package]]
  6891. name = "unicode-width"
  6892. version = "0.1.11"
  6893. source = "registry+https://github.com/rust-lang/crates.io-index"
  6894. checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
  6895. [[package]]
  6896. name = "unicode-xid"
  6897. version = "0.2.4"
  6898. source = "registry+https://github.com/rust-lang/crates.io-index"
  6899. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  6900. [[package]]
  6901. name = "universal-hash"
  6902. version = "0.5.1"
  6903. source = "registry+https://github.com/rust-lang/crates.io-index"
  6904. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  6905. dependencies = [
  6906. "crypto-common",
  6907. "subtle",
  6908. ]
  6909. [[package]]
  6910. name = "untrusted"
  6911. version = "0.7.1"
  6912. source = "registry+https://github.com/rust-lang/crates.io-index"
  6913. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  6914. [[package]]
  6915. name = "untrusted"
  6916. version = "0.9.0"
  6917. source = "registry+https://github.com/rust-lang/crates.io-index"
  6918. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  6919. [[package]]
  6920. name = "url"
  6921. version = "2.5.0"
  6922. source = "registry+https://github.com/rust-lang/crates.io-index"
  6923. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  6924. dependencies = [
  6925. "form_urlencoded",
  6926. "idna",
  6927. "percent-encoding",
  6928. "serde",
  6929. ]
  6930. [[package]]
  6931. name = "utf-8"
  6932. version = "0.7.6"
  6933. source = "registry+https://github.com/rust-lang/crates.io-index"
  6934. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  6935. [[package]]
  6936. name = "uuid"
  6937. version = "0.8.2"
  6938. source = "registry+https://github.com/rust-lang/crates.io-index"
  6939. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  6940. dependencies = [
  6941. "getrandom",
  6942. "serde",
  6943. ]
  6944. [[package]]
  6945. name = "uuid"
  6946. version = "1.8.0"
  6947. source = "registry+https://github.com/rust-lang/crates.io-index"
  6948. checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
  6949. [[package]]
  6950. name = "valuable"
  6951. version = "0.1.0"
  6952. source = "registry+https://github.com/rust-lang/crates.io-index"
  6953. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  6954. [[package]]
  6955. name = "value-bag"
  6956. version = "1.8.1"
  6957. source = "registry+https://github.com/rust-lang/crates.io-index"
  6958. checksum = "74797339c3b98616c009c7c3eb53a0ce41e85c8ec66bd3db96ed132d20cfdee8"
  6959. [[package]]
  6960. name = "vcpkg"
  6961. version = "0.2.15"
  6962. source = "registry+https://github.com/rust-lang/crates.io-index"
  6963. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  6964. [[package]]
  6965. name = "vec_map"
  6966. version = "0.8.2"
  6967. source = "registry+https://github.com/rust-lang/crates.io-index"
  6968. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  6969. [[package]]
  6970. name = "version_check"
  6971. version = "0.9.4"
  6972. source = "registry+https://github.com/rust-lang/crates.io-index"
  6973. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  6974. [[package]]
  6975. name = "visibility"
  6976. version = "0.1.0"
  6977. source = "registry+https://github.com/rust-lang/crates.io-index"
  6978. checksum = "b3fd98999db9227cf28e59d83e1f120f42bc233d4b152e8fab9bc87d5bb1e0f8"
  6979. dependencies = [
  6980. "proc-macro2",
  6981. "quote",
  6982. "syn 2.0.53",
  6983. ]
  6984. [[package]]
  6985. name = "void"
  6986. version = "1.0.2"
  6987. source = "registry+https://github.com/rust-lang/crates.io-index"
  6988. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  6989. [[package]]
  6990. name = "waker-fn"
  6991. version = "1.1.1"
  6992. source = "registry+https://github.com/rust-lang/crates.io-index"
  6993. checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
  6994. [[package]]
  6995. name = "walkdir"
  6996. version = "2.5.0"
  6997. source = "registry+https://github.com/rust-lang/crates.io-index"
  6998. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  6999. dependencies = [
  7000. "same-file",
  7001. "winapi-util",
  7002. ]
  7003. [[package]]
  7004. name = "want"
  7005. version = "0.3.1"
  7006. source = "registry+https://github.com/rust-lang/crates.io-index"
  7007. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  7008. dependencies = [
  7009. "try-lock",
  7010. ]
  7011. [[package]]
  7012. name = "wasi"
  7013. version = "0.11.0+wasi-snapshot-preview1"
  7014. source = "registry+https://github.com/rust-lang/crates.io-index"
  7015. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  7016. [[package]]
  7017. name = "wasix"
  7018. version = "0.12.21"
  7019. source = "registry+https://github.com/rust-lang/crates.io-index"
  7020. checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
  7021. dependencies = [
  7022. "wasi",
  7023. ]
  7024. [[package]]
  7025. name = "wasm-bindgen"
  7026. version = "0.2.92"
  7027. source = "registry+https://github.com/rust-lang/crates.io-index"
  7028. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  7029. dependencies = [
  7030. "cfg-if",
  7031. "wasm-bindgen-macro",
  7032. ]
  7033. [[package]]
  7034. name = "wasm-bindgen-backend"
  7035. version = "0.2.92"
  7036. source = "registry+https://github.com/rust-lang/crates.io-index"
  7037. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  7038. dependencies = [
  7039. "bumpalo",
  7040. "log",
  7041. "once_cell",
  7042. "proc-macro2",
  7043. "quote",
  7044. "syn 2.0.53",
  7045. "wasm-bindgen-shared",
  7046. ]
  7047. [[package]]
  7048. name = "wasm-bindgen-futures"
  7049. version = "0.4.42"
  7050. source = "registry+https://github.com/rust-lang/crates.io-index"
  7051. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  7052. dependencies = [
  7053. "cfg-if",
  7054. "js-sys",
  7055. "wasm-bindgen",
  7056. "web-sys",
  7057. ]
  7058. [[package]]
  7059. name = "wasm-bindgen-macro"
  7060. version = "0.2.92"
  7061. source = "registry+https://github.com/rust-lang/crates.io-index"
  7062. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  7063. dependencies = [
  7064. "quote",
  7065. "wasm-bindgen-macro-support",
  7066. ]
  7067. [[package]]
  7068. name = "wasm-bindgen-macro-support"
  7069. version = "0.2.92"
  7070. source = "registry+https://github.com/rust-lang/crates.io-index"
  7071. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  7072. dependencies = [
  7073. "proc-macro2",
  7074. "quote",
  7075. "syn 2.0.53",
  7076. "wasm-bindgen-backend",
  7077. "wasm-bindgen-shared",
  7078. ]
  7079. [[package]]
  7080. name = "wasm-bindgen-shared"
  7081. version = "0.2.92"
  7082. source = "registry+https://github.com/rust-lang/crates.io-index"
  7083. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  7084. [[package]]
  7085. name = "wasm-encoder"
  7086. version = "0.32.0"
  7087. source = "registry+https://github.com/rust-lang/crates.io-index"
  7088. checksum = "1ba64e81215916eaeb48fee292f29401d69235d62d8b8fd92a7b2844ec5ae5f7"
  7089. dependencies = [
  7090. "leb128",
  7091. ]
  7092. [[package]]
  7093. name = "wasmer"
  7094. version = "4.2.6"
  7095. source = "registry+https://github.com/rust-lang/crates.io-index"
  7096. checksum = "5c15724dc25d1ee57962334aea8e41ade2675e5ea2ac6b8d42da6051b0face66"
  7097. dependencies = [
  7098. "bytes",
  7099. "cfg-if",
  7100. "derivative",
  7101. "indexmap 1.9.3",
  7102. "js-sys",
  7103. "more-asserts",
  7104. "rustc-demangle",
  7105. "serde",
  7106. "serde-wasm-bindgen",
  7107. "shared-buffer",
  7108. "target-lexicon",
  7109. "thiserror",
  7110. "tracing",
  7111. "wasm-bindgen",
  7112. "wasmer-compiler",
  7113. "wasmer-compiler-cranelift",
  7114. "wasmer-derive",
  7115. "wasmer-types",
  7116. "wasmer-vm",
  7117. "wat",
  7118. "winapi",
  7119. ]
  7120. [[package]]
  7121. name = "wasmer-compiler"
  7122. version = "4.2.6"
  7123. source = "registry+https://github.com/rust-lang/crates.io-index"
  7124. checksum = "55a7f3b3a96f8d844c25e2c032af9572306dd63fa93dc17bcca4c5458ac569bd"
  7125. dependencies = [
  7126. "backtrace",
  7127. "bytes",
  7128. "cfg-if",
  7129. "enum-iterator",
  7130. "enumset",
  7131. "lazy_static",
  7132. "leb128",
  7133. "memmap2 0.5.10",
  7134. "more-asserts",
  7135. "region",
  7136. "rkyv",
  7137. "self_cell",
  7138. "shared-buffer",
  7139. "smallvec",
  7140. "thiserror",
  7141. "wasmer-types",
  7142. "wasmer-vm",
  7143. "wasmparser 0.121.2",
  7144. "winapi",
  7145. ]
  7146. [[package]]
  7147. name = "wasmer-compiler-cranelift"
  7148. version = "4.2.6"
  7149. source = "registry+https://github.com/rust-lang/crates.io-index"
  7150. checksum = "102e2c5bacac69495c4025767e2fa26797ffb27f242dccb7cf57d9cefd944386"
  7151. dependencies = [
  7152. "cranelift-codegen",
  7153. "cranelift-entity",
  7154. "cranelift-frontend",
  7155. "gimli 0.26.2",
  7156. "more-asserts",
  7157. "rayon",
  7158. "smallvec",
  7159. "target-lexicon",
  7160. "tracing",
  7161. "wasmer-compiler",
  7162. "wasmer-types",
  7163. ]
  7164. [[package]]
  7165. name = "wasmer-compiler-singlepass"
  7166. version = "4.2.6"
  7167. source = "registry+https://github.com/rust-lang/crates.io-index"
  7168. checksum = "2071db9b993508dac72d12f7a9372e0c095fbdc173e0009c4b75886bed4a855e"
  7169. dependencies = [
  7170. "byteorder",
  7171. "dynasm",
  7172. "dynasmrt",
  7173. "enumset",
  7174. "gimli 0.26.2",
  7175. "lazy_static",
  7176. "more-asserts",
  7177. "rayon",
  7178. "smallvec",
  7179. "wasmer-compiler",
  7180. "wasmer-types",
  7181. ]
  7182. [[package]]
  7183. name = "wasmer-derive"
  7184. version = "4.2.6"
  7185. source = "registry+https://github.com/rust-lang/crates.io-index"
  7186. checksum = "0ea737fa08f95d6abc4459f42a70a9833e8974b814e74971d77ef473814f4d4c"
  7187. dependencies = [
  7188. "proc-macro-error",
  7189. "proc-macro2",
  7190. "quote",
  7191. "syn 1.0.109",
  7192. ]
  7193. [[package]]
  7194. name = "wasmer-middlewares"
  7195. version = "4.2.6"
  7196. source = "registry+https://github.com/rust-lang/crates.io-index"
  7197. checksum = "0346ed39c185c1c5c1094e6c0271d798276a34f80e1e5576bcb2e32fa2e7f05a"
  7198. dependencies = [
  7199. "wasmer",
  7200. "wasmer-types",
  7201. "wasmer-vm",
  7202. ]
  7203. [[package]]
  7204. name = "wasmer-types"
  7205. version = "4.2.6"
  7206. source = "registry+https://github.com/rust-lang/crates.io-index"
  7207. checksum = "b0689110e291b0f07fc665f2824e5ff81df120848e8a9acfbf1a9bf7990773f9"
  7208. dependencies = [
  7209. "bytecheck",
  7210. "enum-iterator",
  7211. "enumset",
  7212. "indexmap 1.9.3",
  7213. "more-asserts",
  7214. "rkyv",
  7215. "target-lexicon",
  7216. "thiserror",
  7217. ]
  7218. [[package]]
  7219. name = "wasmer-vm"
  7220. version = "4.2.6"
  7221. source = "registry+https://github.com/rust-lang/crates.io-index"
  7222. checksum = "4cd41f822a1ac4242d478754e8ceba2806a00ea5072803622e1fe91e8e28b2a1"
  7223. dependencies = [
  7224. "backtrace",
  7225. "cc",
  7226. "cfg-if",
  7227. "corosensei",
  7228. "crossbeam-queue",
  7229. "dashmap",
  7230. "derivative",
  7231. "enum-iterator",
  7232. "fnv",
  7233. "indexmap 1.9.3",
  7234. "lazy_static",
  7235. "libc",
  7236. "mach",
  7237. "memoffset",
  7238. "more-asserts",
  7239. "region",
  7240. "scopeguard",
  7241. "thiserror",
  7242. "wasmer-types",
  7243. "winapi",
  7244. ]
  7245. [[package]]
  7246. name = "wasmparser"
  7247. version = "0.121.2"
  7248. source = "registry+https://github.com/rust-lang/crates.io-index"
  7249. checksum = "9dbe55c8f9d0dbd25d9447a5a889ff90c0cc3feaa7395310d3d826b2c703eaab"
  7250. dependencies = [
  7251. "bitflags 2.5.0",
  7252. "indexmap 2.2.5",
  7253. "semver",
  7254. ]
  7255. [[package]]
  7256. name = "wasmparser"
  7257. version = "0.201.0"
  7258. source = "registry+https://github.com/rust-lang/crates.io-index"
  7259. checksum = "84e5df6dba6c0d7fafc63a450f1738451ed7a0b52295d83e868218fa286bf708"
  7260. dependencies = [
  7261. "bitflags 2.5.0",
  7262. "indexmap 2.2.5",
  7263. "semver",
  7264. ]
  7265. [[package]]
  7266. name = "wast"
  7267. version = "64.0.0"
  7268. source = "registry+https://github.com/rust-lang/crates.io-index"
  7269. checksum = "a259b226fd6910225aa7baeba82f9d9933b6d00f2ce1b49b80fa4214328237cc"
  7270. dependencies = [
  7271. "leb128",
  7272. "memchr",
  7273. "unicode-width",
  7274. "wasm-encoder",
  7275. ]
  7276. [[package]]
  7277. name = "wat"
  7278. version = "1.0.71"
  7279. source = "registry+https://github.com/rust-lang/crates.io-index"
  7280. checksum = "53253d920ab413fca1c7dc2161d601c79b4fdf631d0ba51dd4343bf9b556c3f6"
  7281. dependencies = [
  7282. "wast",
  7283. ]
  7284. [[package]]
  7285. name = "weak-table"
  7286. version = "0.3.2"
  7287. source = "registry+https://github.com/rust-lang/crates.io-index"
  7288. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  7289. [[package]]
  7290. name = "web-sys"
  7291. version = "0.3.69"
  7292. source = "registry+https://github.com/rust-lang/crates.io-index"
  7293. checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
  7294. dependencies = [
  7295. "js-sys",
  7296. "wasm-bindgen",
  7297. ]
  7298. [[package]]
  7299. name = "webpki-roots"
  7300. version = "0.25.4"
  7301. source = "registry+https://github.com/rust-lang/crates.io-index"
  7302. checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
  7303. [[package]]
  7304. name = "which"
  7305. version = "4.4.2"
  7306. source = "registry+https://github.com/rust-lang/crates.io-index"
  7307. checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
  7308. dependencies = [
  7309. "either",
  7310. "home",
  7311. "once_cell",
  7312. "rustix 0.38.32",
  7313. ]
  7314. [[package]]
  7315. name = "winapi"
  7316. version = "0.3.9"
  7317. source = "registry+https://github.com/rust-lang/crates.io-index"
  7318. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7319. dependencies = [
  7320. "winapi-i686-pc-windows-gnu",
  7321. "winapi-x86_64-pc-windows-gnu",
  7322. ]
  7323. [[package]]
  7324. name = "winapi-i686-pc-windows-gnu"
  7325. version = "0.4.0"
  7326. source = "registry+https://github.com/rust-lang/crates.io-index"
  7327. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7328. [[package]]
  7329. name = "winapi-util"
  7330. version = "0.1.6"
  7331. source = "registry+https://github.com/rust-lang/crates.io-index"
  7332. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  7333. dependencies = [
  7334. "winapi",
  7335. ]
  7336. [[package]]
  7337. name = "winapi-x86_64-pc-windows-gnu"
  7338. version = "0.4.0"
  7339. source = "registry+https://github.com/rust-lang/crates.io-index"
  7340. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  7341. [[package]]
  7342. name = "windows"
  7343. version = "0.54.0"
  7344. source = "registry+https://github.com/rust-lang/crates.io-index"
  7345. checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
  7346. dependencies = [
  7347. "windows-core 0.54.0",
  7348. "windows-targets 0.52.4",
  7349. ]
  7350. [[package]]
  7351. name = "windows-core"
  7352. version = "0.52.0"
  7353. source = "registry+https://github.com/rust-lang/crates.io-index"
  7354. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  7355. dependencies = [
  7356. "windows-targets 0.52.4",
  7357. ]
  7358. [[package]]
  7359. name = "windows-core"
  7360. version = "0.54.0"
  7361. source = "registry+https://github.com/rust-lang/crates.io-index"
  7362. checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
  7363. dependencies = [
  7364. "windows-result",
  7365. "windows-targets 0.52.4",
  7366. ]
  7367. [[package]]
  7368. name = "windows-result"
  7369. version = "0.1.0"
  7370. source = "registry+https://github.com/rust-lang/crates.io-index"
  7371. checksum = "cd19df78e5168dfb0aedc343d1d1b8d422ab2db6756d2dc3fef75035402a3f64"
  7372. dependencies = [
  7373. "windows-targets 0.52.4",
  7374. ]
  7375. [[package]]
  7376. name = "windows-sys"
  7377. version = "0.33.0"
  7378. source = "registry+https://github.com/rust-lang/crates.io-index"
  7379. checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75"
  7380. dependencies = [
  7381. "windows_aarch64_msvc 0.33.0",
  7382. "windows_i686_gnu 0.33.0",
  7383. "windows_i686_msvc 0.33.0",
  7384. "windows_x86_64_gnu 0.33.0",
  7385. "windows_x86_64_msvc 0.33.0",
  7386. ]
  7387. [[package]]
  7388. name = "windows-sys"
  7389. version = "0.45.0"
  7390. source = "registry+https://github.com/rust-lang/crates.io-index"
  7391. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  7392. dependencies = [
  7393. "windows-targets 0.42.2",
  7394. ]
  7395. [[package]]
  7396. name = "windows-sys"
  7397. version = "0.48.0"
  7398. source = "registry+https://github.com/rust-lang/crates.io-index"
  7399. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  7400. dependencies = [
  7401. "windows-targets 0.48.5",
  7402. ]
  7403. [[package]]
  7404. name = "windows-sys"
  7405. version = "0.52.0"
  7406. source = "registry+https://github.com/rust-lang/crates.io-index"
  7407. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  7408. dependencies = [
  7409. "windows-targets 0.52.4",
  7410. ]
  7411. [[package]]
  7412. name = "windows-targets"
  7413. version = "0.42.2"
  7414. source = "registry+https://github.com/rust-lang/crates.io-index"
  7415. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  7416. dependencies = [
  7417. "windows_aarch64_gnullvm 0.42.2",
  7418. "windows_aarch64_msvc 0.42.2",
  7419. "windows_i686_gnu 0.42.2",
  7420. "windows_i686_msvc 0.42.2",
  7421. "windows_x86_64_gnu 0.42.2",
  7422. "windows_x86_64_gnullvm 0.42.2",
  7423. "windows_x86_64_msvc 0.42.2",
  7424. ]
  7425. [[package]]
  7426. name = "windows-targets"
  7427. version = "0.48.5"
  7428. source = "registry+https://github.com/rust-lang/crates.io-index"
  7429. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  7430. dependencies = [
  7431. "windows_aarch64_gnullvm 0.48.5",
  7432. "windows_aarch64_msvc 0.48.5",
  7433. "windows_i686_gnu 0.48.5",
  7434. "windows_i686_msvc 0.48.5",
  7435. "windows_x86_64_gnu 0.48.5",
  7436. "windows_x86_64_gnullvm 0.48.5",
  7437. "windows_x86_64_msvc 0.48.5",
  7438. ]
  7439. [[package]]
  7440. name = "windows-targets"
  7441. version = "0.52.4"
  7442. source = "registry+https://github.com/rust-lang/crates.io-index"
  7443. checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
  7444. dependencies = [
  7445. "windows_aarch64_gnullvm 0.52.4",
  7446. "windows_aarch64_msvc 0.52.4",
  7447. "windows_i686_gnu 0.52.4",
  7448. "windows_i686_msvc 0.52.4",
  7449. "windows_x86_64_gnu 0.52.4",
  7450. "windows_x86_64_gnullvm 0.52.4",
  7451. "windows_x86_64_msvc 0.52.4",
  7452. ]
  7453. [[package]]
  7454. name = "windows_aarch64_gnullvm"
  7455. version = "0.42.2"
  7456. source = "registry+https://github.com/rust-lang/crates.io-index"
  7457. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  7458. [[package]]
  7459. name = "windows_aarch64_gnullvm"
  7460. version = "0.48.5"
  7461. source = "registry+https://github.com/rust-lang/crates.io-index"
  7462. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  7463. [[package]]
  7464. name = "windows_aarch64_gnullvm"
  7465. version = "0.52.4"
  7466. source = "registry+https://github.com/rust-lang/crates.io-index"
  7467. checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
  7468. [[package]]
  7469. name = "windows_aarch64_msvc"
  7470. version = "0.33.0"
  7471. source = "registry+https://github.com/rust-lang/crates.io-index"
  7472. checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807"
  7473. [[package]]
  7474. name = "windows_aarch64_msvc"
  7475. version = "0.42.2"
  7476. source = "registry+https://github.com/rust-lang/crates.io-index"
  7477. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  7478. [[package]]
  7479. name = "windows_aarch64_msvc"
  7480. version = "0.48.5"
  7481. source = "registry+https://github.com/rust-lang/crates.io-index"
  7482. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  7483. [[package]]
  7484. name = "windows_aarch64_msvc"
  7485. version = "0.52.4"
  7486. source = "registry+https://github.com/rust-lang/crates.io-index"
  7487. checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
  7488. [[package]]
  7489. name = "windows_i686_gnu"
  7490. version = "0.33.0"
  7491. source = "registry+https://github.com/rust-lang/crates.io-index"
  7492. checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e"
  7493. [[package]]
  7494. name = "windows_i686_gnu"
  7495. version = "0.42.2"
  7496. source = "registry+https://github.com/rust-lang/crates.io-index"
  7497. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  7498. [[package]]
  7499. name = "windows_i686_gnu"
  7500. version = "0.48.5"
  7501. source = "registry+https://github.com/rust-lang/crates.io-index"
  7502. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  7503. [[package]]
  7504. name = "windows_i686_gnu"
  7505. version = "0.52.4"
  7506. source = "registry+https://github.com/rust-lang/crates.io-index"
  7507. checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
  7508. [[package]]
  7509. name = "windows_i686_msvc"
  7510. version = "0.33.0"
  7511. source = "registry+https://github.com/rust-lang/crates.io-index"
  7512. checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0"
  7513. [[package]]
  7514. name = "windows_i686_msvc"
  7515. version = "0.42.2"
  7516. source = "registry+https://github.com/rust-lang/crates.io-index"
  7517. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  7518. [[package]]
  7519. name = "windows_i686_msvc"
  7520. version = "0.48.5"
  7521. source = "registry+https://github.com/rust-lang/crates.io-index"
  7522. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  7523. [[package]]
  7524. name = "windows_i686_msvc"
  7525. version = "0.52.4"
  7526. source = "registry+https://github.com/rust-lang/crates.io-index"
  7527. checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
  7528. [[package]]
  7529. name = "windows_x86_64_gnu"
  7530. version = "0.33.0"
  7531. source = "registry+https://github.com/rust-lang/crates.io-index"
  7532. checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784"
  7533. [[package]]
  7534. name = "windows_x86_64_gnu"
  7535. version = "0.42.2"
  7536. source = "registry+https://github.com/rust-lang/crates.io-index"
  7537. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  7538. [[package]]
  7539. name = "windows_x86_64_gnu"
  7540. version = "0.48.5"
  7541. source = "registry+https://github.com/rust-lang/crates.io-index"
  7542. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  7543. [[package]]
  7544. name = "windows_x86_64_gnu"
  7545. version = "0.52.4"
  7546. source = "registry+https://github.com/rust-lang/crates.io-index"
  7547. checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
  7548. [[package]]
  7549. name = "windows_x86_64_gnullvm"
  7550. version = "0.42.2"
  7551. source = "registry+https://github.com/rust-lang/crates.io-index"
  7552. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  7553. [[package]]
  7554. name = "windows_x86_64_gnullvm"
  7555. version = "0.48.5"
  7556. source = "registry+https://github.com/rust-lang/crates.io-index"
  7557. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  7558. [[package]]
  7559. name = "windows_x86_64_gnullvm"
  7560. version = "0.52.4"
  7561. source = "registry+https://github.com/rust-lang/crates.io-index"
  7562. checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
  7563. [[package]]
  7564. name = "windows_x86_64_msvc"
  7565. version = "0.33.0"
  7566. source = "registry+https://github.com/rust-lang/crates.io-index"
  7567. checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa"
  7568. [[package]]
  7569. name = "windows_x86_64_msvc"
  7570. version = "0.42.2"
  7571. source = "registry+https://github.com/rust-lang/crates.io-index"
  7572. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  7573. [[package]]
  7574. name = "windows_x86_64_msvc"
  7575. version = "0.48.5"
  7576. source = "registry+https://github.com/rust-lang/crates.io-index"
  7577. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  7578. [[package]]
  7579. name = "windows_x86_64_msvc"
  7580. version = "0.52.4"
  7581. source = "registry+https://github.com/rust-lang/crates.io-index"
  7582. checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
  7583. [[package]]
  7584. name = "winnow"
  7585. version = "0.5.40"
  7586. source = "registry+https://github.com/rust-lang/crates.io-index"
  7587. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  7588. dependencies = [
  7589. "memchr",
  7590. ]
  7591. [[package]]
  7592. name = "winnow"
  7593. version = "0.6.5"
  7594. source = "registry+https://github.com/rust-lang/crates.io-index"
  7595. checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
  7596. dependencies = [
  7597. "memchr",
  7598. ]
  7599. [[package]]
  7600. name = "winreg"
  7601. version = "0.50.0"
  7602. source = "registry+https://github.com/rust-lang/crates.io-index"
  7603. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  7604. dependencies = [
  7605. "cfg-if",
  7606. "windows-sys 0.48.0",
  7607. ]
  7608. [[package]]
  7609. name = "ws_stream_wasm"
  7610. version = "0.7.4"
  7611. source = "registry+https://github.com/rust-lang/crates.io-index"
  7612. checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5"
  7613. dependencies = [
  7614. "async_io_stream",
  7615. "futures",
  7616. "js-sys",
  7617. "log",
  7618. "pharos",
  7619. "rustc_version",
  7620. "send_wrapper 0.6.0",
  7621. "thiserror",
  7622. "wasm-bindgen",
  7623. "wasm-bindgen-futures",
  7624. "web-sys",
  7625. ]
  7626. [[package]]
  7627. name = "wyz"
  7628. version = "0.5.1"
  7629. source = "registry+https://github.com/rust-lang/crates.io-index"
  7630. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  7631. dependencies = [
  7632. "tap",
  7633. ]
  7634. [[package]]
  7635. name = "x25519-dalek"
  7636. version = "2.0.1"
  7637. source = "registry+https://github.com/rust-lang/crates.io-index"
  7638. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  7639. dependencies = [
  7640. "curve25519-dalek",
  7641. "rand_core",
  7642. "serde",
  7643. "zeroize",
  7644. ]
  7645. [[package]]
  7646. name = "x509-parser"
  7647. version = "0.16.0"
  7648. source = "registry+https://github.com/rust-lang/crates.io-index"
  7649. checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
  7650. dependencies = [
  7651. "asn1-rs",
  7652. "data-encoding",
  7653. "der-parser",
  7654. "lazy_static",
  7655. "nom",
  7656. "oid-registry",
  7657. "ring 0.17.8",
  7658. "rusticata-macros",
  7659. "thiserror",
  7660. "time",
  7661. ]
  7662. [[package]]
  7663. name = "x509-signature"
  7664. version = "0.5.0"
  7665. source = "registry+https://github.com/rust-lang/crates.io-index"
  7666. checksum = "9fb2bc2a902d992cd5f471ee3ab0ffd6603047a4207384562755b9d6de977518"
  7667. dependencies = [
  7668. "ring 0.16.20",
  7669. "untrusted 0.7.1",
  7670. ]
  7671. [[package]]
  7672. name = "xxhash-rust"
  7673. version = "0.8.10"
  7674. source = "registry+https://github.com/rust-lang/crates.io-index"
  7675. checksum = "927da81e25be1e1a2901d59b81b37dd2efd1fc9c9345a55007f09bf5a2d3ee03"
  7676. [[package]]
  7677. name = "xz2"
  7678. version = "0.1.7"
  7679. source = "registry+https://github.com/rust-lang/crates.io-index"
  7680. checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
  7681. dependencies = [
  7682. "lzma-sys",
  7683. ]
  7684. [[package]]
  7685. name = "yansi"
  7686. version = "0.5.1"
  7687. source = "registry+https://github.com/rust-lang/crates.io-index"
  7688. checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
  7689. [[package]]
  7690. name = "yasna"
  7691. version = "0.5.2"
  7692. source = "registry+https://github.com/rust-lang/crates.io-index"
  7693. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  7694. dependencies = [
  7695. "time",
  7696. ]
  7697. [[package]]
  7698. name = "zerocopy"
  7699. version = "0.7.32"
  7700. source = "registry+https://github.com/rust-lang/crates.io-index"
  7701. checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
  7702. dependencies = [
  7703. "zerocopy-derive",
  7704. ]
  7705. [[package]]
  7706. name = "zerocopy-derive"
  7707. version = "0.7.32"
  7708. source = "registry+https://github.com/rust-lang/crates.io-index"
  7709. checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
  7710. dependencies = [
  7711. "proc-macro2",
  7712. "quote",
  7713. "syn 2.0.53",
  7714. ]
  7715. [[package]]
  7716. name = "zeroize"
  7717. version = "1.7.0"
  7718. source = "registry+https://github.com/rust-lang/crates.io-index"
  7719. checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
  7720. dependencies = [
  7721. "zeroize_derive",
  7722. ]
  7723. [[package]]
  7724. name = "zeroize_derive"
  7725. version = "1.4.2"
  7726. source = "registry+https://github.com/rust-lang/crates.io-index"
  7727. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  7728. dependencies = [
  7729. "proc-macro2",
  7730. "quote",
  7731. "syn 2.0.53",
  7732. ]
  7733. [[package]]
  7734. name = "zip"
  7735. version = "0.6.6"
  7736. source = "registry+https://github.com/rust-lang/crates.io-index"
  7737. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  7738. dependencies = [
  7739. "aes",
  7740. "byteorder",
  7741. "bzip2",
  7742. "constant_time_eq 0.1.5",
  7743. "crc32fast",
  7744. "crossbeam-utils",
  7745. "flate2",
  7746. "hmac",
  7747. "pbkdf2 0.11.0",
  7748. "sha1",
  7749. "time",
  7750. "zstd 0.11.2+zstd.1.5.2",
  7751. ]
  7752. [[package]]
  7753. name = "zstd"
  7754. version = "0.11.2+zstd.1.5.2"
  7755. source = "registry+https://github.com/rust-lang/crates.io-index"
  7756. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  7757. dependencies = [
  7758. "zstd-safe 5.0.2+zstd.1.5.2",
  7759. ]
  7760. [[package]]
  7761. name = "zstd"
  7762. version = "0.13.0"
  7763. source = "registry+https://github.com/rust-lang/crates.io-index"
  7764. checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
  7765. dependencies = [
  7766. "zstd-safe 7.0.0",
  7767. ]
  7768. [[package]]
  7769. name = "zstd-safe"
  7770. version = "5.0.2+zstd.1.5.2"
  7771. source = "registry+https://github.com/rust-lang/crates.io-index"
  7772. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  7773. dependencies = [
  7774. "libc",
  7775. "zstd-sys",
  7776. ]
  7777. [[package]]
  7778. name = "zstd-safe"
  7779. version = "7.0.0"
  7780. source = "registry+https://github.com/rust-lang/crates.io-index"
  7781. checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
  7782. dependencies = [
  7783. "zstd-sys",
  7784. ]
  7785. [[package]]
  7786. name = "zstd-sys"
  7787. version = "2.0.9+zstd.1.5.5"
  7788. source = "registry+https://github.com/rust-lang/crates.io-index"
  7789. checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
  7790. dependencies = [
  7791. "cc",
  7792. "pkg-config",
  7793. ]