Cargo.lock 198 KB

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