Cargo.lock 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "Inflector"
  5. version = "0.11.4"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
  8. dependencies = [
  9. "lazy_static",
  10. "regex",
  11. ]
  12. [[package]]
  13. name = "addr2line"
  14. version = "0.14.0"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "7c0929d69e78dd9bf5408269919fcbcaeb2e35e5d43e5815517cdc6a8e11a423"
  17. dependencies = [
  18. "gimli",
  19. ]
  20. [[package]]
  21. name = "adler"
  22. version = "0.2.3"
  23. source = "registry+https://github.com/rust-lang/crates.io-index"
  24. checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
  25. [[package]]
  26. name = "aead"
  27. version = "0.3.2"
  28. source = "registry+https://github.com/rust-lang/crates.io-index"
  29. checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
  30. dependencies = [
  31. "generic-array 0.14.4",
  32. ]
  33. [[package]]
  34. name = "aes"
  35. version = "0.5.0"
  36. source = "registry+https://github.com/rust-lang/crates.io-index"
  37. checksum = "dd2bc6d3f370b5666245ff421e231cba4353df936e26986d2918e61a8fd6aef6"
  38. dependencies = [
  39. "aes-soft",
  40. "aesni",
  41. "block-cipher",
  42. ]
  43. [[package]]
  44. name = "aes-gcm"
  45. version = "0.7.0"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "0301c9e9c443494d970a07885e8cf3e587bae8356a1d5abd0999068413f7205f"
  48. dependencies = [
  49. "aead",
  50. "aes",
  51. "block-cipher",
  52. "ghash",
  53. "subtle 2.3.0",
  54. ]
  55. [[package]]
  56. name = "aes-soft"
  57. version = "0.5.0"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "63dd91889c49327ad7ef3b500fd1109dbd3c509a03db0d4a9ce413b79f575cb6"
  60. dependencies = [
  61. "block-cipher",
  62. "byteorder 1.3.4",
  63. "opaque-debug 0.3.0",
  64. ]
  65. [[package]]
  66. name = "aesni"
  67. version = "0.8.0"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "0a6fe808308bb07d393e2ea47780043ec47683fcf19cf5efc8ca51c50cc8c68a"
  70. dependencies = [
  71. "block-cipher",
  72. "opaque-debug 0.3.0",
  73. ]
  74. [[package]]
  75. name = "ahash"
  76. version = "0.2.19"
  77. source = "registry+https://github.com/rust-lang/crates.io-index"
  78. checksum = "29661b60bec623f0586702976ff4d0c9942dcb6723161c2df0eea78455cfedfb"
  79. dependencies = [
  80. "const-random",
  81. ]
  82. [[package]]
  83. name = "ahash"
  84. version = "0.3.8"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"
  87. [[package]]
  88. name = "ahash"
  89. version = "0.4.6"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c"
  92. [[package]]
  93. name = "aho-corasick"
  94. version = "0.7.15"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
  97. dependencies = [
  98. "memchr",
  99. ]
  100. [[package]]
  101. name = "alga"
  102. version = "0.9.3"
  103. source = "registry+https://github.com/rust-lang/crates.io-index"
  104. checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
  105. dependencies = [
  106. "approx",
  107. "num-complex",
  108. "num-traits",
  109. ]
  110. [[package]]
  111. name = "ansi_term"
  112. version = "0.11.0"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  115. dependencies = [
  116. "winapi 0.3.9",
  117. ]
  118. [[package]]
  119. name = "ansi_term"
  120. version = "0.12.1"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  123. dependencies = [
  124. "winapi 0.3.9",
  125. ]
  126. [[package]]
  127. name = "anyhow"
  128. version = "1.0.34"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
  131. [[package]]
  132. name = "approx"
  133. version = "0.3.2"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
  136. dependencies = [
  137. "num-traits",
  138. ]
  139. [[package]]
  140. name = "arc-swap"
  141. version = "0.4.7"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
  144. [[package]]
  145. name = "arrayref"
  146. version = "0.3.6"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
  149. [[package]]
  150. name = "arrayvec"
  151. version = "0.4.12"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
  154. dependencies = [
  155. "nodrop",
  156. ]
  157. [[package]]
  158. name = "arrayvec"
  159. version = "0.5.2"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  162. [[package]]
  163. name = "asn1_der"
  164. version = "0.6.3"
  165. source = "registry+https://github.com/rust-lang/crates.io-index"
  166. checksum = "6fce6b6a0ffdafebd82c87e79e3f40e8d2c523e5fea5566ff6b90509bf98d638"
  167. dependencies = [
  168. "asn1_der_derive",
  169. ]
  170. [[package]]
  171. name = "asn1_der_derive"
  172. version = "0.1.2"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "0d0864d84b8e07b145449be9a8537db86bf9de5ce03b913214694643b4743502"
  175. dependencies = [
  176. "quote",
  177. "syn",
  178. ]
  179. [[package]]
  180. name = "async-channel"
  181. version = "1.5.1"
  182. source = "registry+https://github.com/rust-lang/crates.io-index"
  183. checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9"
  184. dependencies = [
  185. "concurrent-queue",
  186. "event-listener",
  187. "futures-core",
  188. ]
  189. [[package]]
  190. name = "async-executor"
  191. version = "1.4.0"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "eb877970c7b440ead138f6321a3b5395d6061183af779340b65e20c0fede9146"
  194. dependencies = [
  195. "async-task",
  196. "concurrent-queue",
  197. "fastrand",
  198. "futures-lite",
  199. "once_cell 1.5.2",
  200. "vec-arena",
  201. ]
  202. [[package]]
  203. name = "async-global-executor"
  204. version = "1.4.3"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "73079b49cd26b8fd5a15f68fc7707fc78698dc2a3d61430f2a7a9430230dfa04"
  207. dependencies = [
  208. "async-executor",
  209. "async-io",
  210. "futures-lite",
  211. "num_cpus",
  212. "once_cell 1.5.2",
  213. ]
  214. [[package]]
  215. name = "async-io"
  216. version = "1.3.1"
  217. source = "registry+https://github.com/rust-lang/crates.io-index"
  218. checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd"
  219. dependencies = [
  220. "concurrent-queue",
  221. "fastrand",
  222. "futures-lite",
  223. "libc",
  224. "log",
  225. "nb-connect",
  226. "once_cell 1.5.2",
  227. "parking",
  228. "polling",
  229. "vec-arena",
  230. "waker-fn",
  231. "winapi 0.3.9",
  232. ]
  233. [[package]]
  234. name = "async-mutex"
  235. version = "1.4.0"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
  238. dependencies = [
  239. "event-listener",
  240. ]
  241. [[package]]
  242. name = "async-std"
  243. version = "1.7.0"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "a7e82538bc65a25dbdff70e4c5439d52f068048ab97cdea0acd73f131594caa1"
  246. dependencies = [
  247. "async-global-executor",
  248. "async-io",
  249. "async-mutex",
  250. "blocking",
  251. "crossbeam-utils 0.8.1",
  252. "futures-channel",
  253. "futures-core",
  254. "futures-io",
  255. "futures-lite",
  256. "gloo-timers",
  257. "kv-log-macro",
  258. "log",
  259. "memchr",
  260. "num_cpus",
  261. "once_cell 1.5.2",
  262. "pin-project-lite 0.1.11",
  263. "pin-utils",
  264. "slab",
  265. "wasm-bindgen-futures",
  266. ]
  267. [[package]]
  268. name = "async-task"
  269. version = "4.0.3"
  270. source = "registry+https://github.com/rust-lang/crates.io-index"
  271. checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"
  272. [[package]]
  273. name = "async-tls"
  274. version = "0.8.0"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "df097e3f506bec0e1a24f06bb3c962c228f36671de841ff579cb99f371772634"
  277. dependencies = [
  278. "futures 0.3.8",
  279. "rustls",
  280. "webpki",
  281. "webpki-roots 0.19.0",
  282. ]
  283. [[package]]
  284. name = "async-trait"
  285. version = "0.1.42"
  286. source = "registry+https://github.com/rust-lang/crates.io-index"
  287. checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
  288. dependencies = [
  289. "proc-macro2",
  290. "quote",
  291. "syn",
  292. ]
  293. [[package]]
  294. name = "atomic"
  295. version = "0.4.6"
  296. source = "registry+https://github.com/rust-lang/crates.io-index"
  297. checksum = "64f46ca51dca4837f1520754d1c8c36636356b81553d928dc9c177025369a06e"
  298. [[package]]
  299. name = "atomic-waker"
  300. version = "1.0.0"
  301. source = "registry+https://github.com/rust-lang/crates.io-index"
  302. checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
  303. [[package]]
  304. name = "atty"
  305. version = "0.2.14"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  308. dependencies = [
  309. "hermit-abi",
  310. "libc",
  311. "winapi 0.3.9",
  312. ]
  313. [[package]]
  314. name = "autocfg"
  315. version = "0.1.7"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
  318. [[package]]
  319. name = "autocfg"
  320. version = "1.0.1"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  323. [[package]]
  324. name = "backtrace"
  325. version = "0.3.55"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598"
  328. dependencies = [
  329. "addr2line",
  330. "cfg-if 1.0.0",
  331. "libc",
  332. "miniz_oxide",
  333. "object",
  334. "rustc-demangle",
  335. ]
  336. [[package]]
  337. name = "base58"
  338. version = "0.1.0"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "5024ee8015f02155eee35c711107ddd9a9bf3cb689cf2a9089c97e79b6e1ae83"
  341. [[package]]
  342. name = "base64"
  343. version = "0.11.0"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
  346. [[package]]
  347. name = "base64"
  348. version = "0.12.3"
  349. source = "registry+https://github.com/rust-lang/crates.io-index"
  350. checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
  351. [[package]]
  352. name = "base64"
  353. version = "0.13.0"
  354. source = "registry+https://github.com/rust-lang/crates.io-index"
  355. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  356. [[package]]
  357. name = "bindgen"
  358. version = "0.54.0"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "66c0bb6167449588ff70803f4127f0684f9063097eca5016f37eb52b92c2cf36"
  361. dependencies = [
  362. "bitflags",
  363. "cexpr",
  364. "cfg-if 0.1.10",
  365. "clang-sys",
  366. "clap",
  367. "env_logger",
  368. "lazy_static",
  369. "lazycell",
  370. "log",
  371. "peeking_take_while",
  372. "proc-macro2",
  373. "quote",
  374. "regex",
  375. "rustc-hash",
  376. "shlex",
  377. "which",
  378. ]
  379. [[package]]
  380. name = "bip39"
  381. version = "0.6.0-beta.1"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "7059804e226b3ac116519a252d7f5fb985a5ccc0e93255e036a5f7e7283323f4"
  384. dependencies = [
  385. "failure",
  386. "hashbrown 0.1.8",
  387. "hmac",
  388. "once_cell 0.1.8",
  389. "pbkdf2",
  390. "rand 0.6.5",
  391. "sha2 0.8.2",
  392. ]
  393. [[package]]
  394. name = "bitflags"
  395. version = "1.2.1"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  398. [[package]]
  399. name = "bitmask"
  400. version = "0.5.0"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "5da9b3d9f6f585199287a473f4f8dfab6566cf827d15c00c219f53c645687ead"
  403. [[package]]
  404. name = "bitvec"
  405. version = "0.17.4"
  406. source = "registry+https://github.com/rust-lang/crates.io-index"
  407. checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
  408. dependencies = [
  409. "either",
  410. "radium",
  411. ]
  412. [[package]]
  413. name = "blake2"
  414. version = "0.9.1"
  415. source = "registry+https://github.com/rust-lang/crates.io-index"
  416. checksum = "10a5720225ef5daecf08657f23791354e1685a8c91a4c60c7f3d3b2892f978f4"
  417. dependencies = [
  418. "crypto-mac 0.8.0",
  419. "digest 0.9.0",
  420. "opaque-debug 0.3.0",
  421. ]
  422. [[package]]
  423. name = "blake2-rfc"
  424. version = "0.2.18"
  425. source = "registry+https://github.com/rust-lang/crates.io-index"
  426. checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
  427. dependencies = [
  428. "arrayvec 0.4.12",
  429. "constant_time_eq",
  430. ]
  431. [[package]]
  432. name = "blake2b_simd"
  433. version = "0.5.11"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
  436. dependencies = [
  437. "arrayref",
  438. "arrayvec 0.5.2",
  439. "constant_time_eq",
  440. ]
  441. [[package]]
  442. name = "blake2s_simd"
  443. version = "0.5.11"
  444. source = "registry+https://github.com/rust-lang/crates.io-index"
  445. checksum = "9e461a7034e85b211a4acb57ee2e6730b32912b06c08cc242243c39fc21ae6a2"
  446. dependencies = [
  447. "arrayref",
  448. "arrayvec 0.5.2",
  449. "constant_time_eq",
  450. ]
  451. [[package]]
  452. name = "block-buffer"
  453. version = "0.7.3"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
  456. dependencies = [
  457. "block-padding 0.1.5",
  458. "byte-tools",
  459. "byteorder 1.3.4",
  460. "generic-array 0.12.3",
  461. ]
  462. [[package]]
  463. name = "block-buffer"
  464. version = "0.9.0"
  465. source = "registry+https://github.com/rust-lang/crates.io-index"
  466. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  467. dependencies = [
  468. "block-padding 0.2.1",
  469. "generic-array 0.14.4",
  470. ]
  471. [[package]]
  472. name = "block-cipher"
  473. version = "0.8.0"
  474. source = "registry+https://github.com/rust-lang/crates.io-index"
  475. checksum = "f337a3e6da609650eb74e02bc9fac7b735049f7623ab12f2e4c719316fcc7e80"
  476. dependencies = [
  477. "generic-array 0.14.4",
  478. ]
  479. [[package]]
  480. name = "block-padding"
  481. version = "0.1.5"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
  484. dependencies = [
  485. "byte-tools",
  486. ]
  487. [[package]]
  488. name = "block-padding"
  489. version = "0.2.1"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
  492. [[package]]
  493. name = "blocking"
  494. version = "1.0.2"
  495. source = "registry+https://github.com/rust-lang/crates.io-index"
  496. checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
  497. dependencies = [
  498. "async-channel",
  499. "async-task",
  500. "atomic-waker",
  501. "fastrand",
  502. "futures-lite",
  503. "once_cell 1.5.2",
  504. ]
  505. [[package]]
  506. name = "bs58"
  507. version = "0.3.1"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb"
  510. [[package]]
  511. name = "bs58"
  512. version = "0.4.0"
  513. source = "registry+https://github.com/rust-lang/crates.io-index"
  514. checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
  515. [[package]]
  516. name = "bstr"
  517. version = "0.2.14"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "473fc6b38233f9af7baa94fb5852dca389e3d95b8e21c8e3719301462c5d9faf"
  520. dependencies = [
  521. "memchr",
  522. ]
  523. [[package]]
  524. name = "bumpalo"
  525. version = "3.4.0"
  526. source = "registry+https://github.com/rust-lang/crates.io-index"
  527. checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
  528. [[package]]
  529. name = "byte-slice-cast"
  530. version = "0.3.5"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3"
  533. [[package]]
  534. name = "byte-tools"
  535. version = "0.3.1"
  536. source = "registry+https://github.com/rust-lang/crates.io-index"
  537. checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
  538. [[package]]
  539. name = "byteorder"
  540. version = "0.5.3"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
  543. [[package]]
  544. name = "byteorder"
  545. version = "1.3.4"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  548. [[package]]
  549. name = "bytes"
  550. version = "0.4.12"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
  553. dependencies = [
  554. "byteorder 1.3.4",
  555. "either",
  556. "iovec",
  557. ]
  558. [[package]]
  559. name = "bytes"
  560. version = "0.5.6"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  563. [[package]]
  564. name = "c_linked_list"
  565. version = "1.1.1"
  566. source = "registry+https://github.com/rust-lang/crates.io-index"
  567. checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
  568. [[package]]
  569. name = "cache-padded"
  570. version = "1.1.1"
  571. source = "registry+https://github.com/rust-lang/crates.io-index"
  572. checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"
  573. [[package]]
  574. name = "cc"
  575. version = "1.0.65"
  576. source = "registry+https://github.com/rust-lang/crates.io-index"
  577. checksum = "95752358c8f7552394baf48cd82695b345628ad3f170d607de3ca03b8dacca15"
  578. dependencies = [
  579. "jobserver",
  580. ]
  581. [[package]]
  582. name = "cexpr"
  583. version = "0.4.0"
  584. source = "registry+https://github.com/rust-lang/crates.io-index"
  585. checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27"
  586. dependencies = [
  587. "nom",
  588. ]
  589. [[package]]
  590. name = "cfg-if"
  591. version = "0.1.10"
  592. source = "registry+https://github.com/rust-lang/crates.io-index"
  593. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  594. [[package]]
  595. name = "cfg-if"
  596. version = "1.0.0"
  597. source = "registry+https://github.com/rust-lang/crates.io-index"
  598. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  599. [[package]]
  600. name = "chacha20"
  601. version = "0.5.0"
  602. source = "registry+https://github.com/rust-lang/crates.io-index"
  603. checksum = "244fbce0d47e97e8ef2f63b81d5e05882cb518c68531eb33194990d7b7e85845"
  604. dependencies = [
  605. "stream-cipher",
  606. "zeroize",
  607. ]
  608. [[package]]
  609. name = "chacha20poly1305"
  610. version = "0.6.0"
  611. source = "registry+https://github.com/rust-lang/crates.io-index"
  612. checksum = "9bf18d374d66df0c05cdddd528a7db98f78c28e2519b120855c4f84c5027b1f5"
  613. dependencies = [
  614. "aead",
  615. "chacha20",
  616. "poly1305",
  617. "stream-cipher",
  618. "zeroize",
  619. ]
  620. [[package]]
  621. name = "chain-spec-builder"
  622. version = "4.0.0"
  623. dependencies = [
  624. "ansi_term 0.12.1",
  625. "enum-utils",
  626. "joystream-node",
  627. "rand 0.7.3",
  628. "sc-chain-spec",
  629. "sc-keystore",
  630. "sc-telemetry",
  631. "sp-core",
  632. "structopt",
  633. ]
  634. [[package]]
  635. name = "chrono"
  636. version = "0.4.19"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
  639. dependencies = [
  640. "js-sys",
  641. "libc",
  642. "num-integer",
  643. "num-traits",
  644. "time",
  645. "wasm-bindgen",
  646. "winapi 0.3.9",
  647. ]
  648. [[package]]
  649. name = "clang-sys"
  650. version = "0.29.3"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "fe6837df1d5cba2397b835c8530f51723267e16abbf83892e9e5af4f0e5dd10a"
  653. dependencies = [
  654. "glob",
  655. "libc",
  656. "libloading",
  657. ]
  658. [[package]]
  659. name = "clap"
  660. version = "2.33.3"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
  663. dependencies = [
  664. "ansi_term 0.11.0",
  665. "atty",
  666. "bitflags",
  667. "strsim",
  668. "textwrap",
  669. "unicode-width",
  670. "vec_map",
  671. ]
  672. [[package]]
  673. name = "cloudabi"
  674. version = "0.0.3"
  675. source = "registry+https://github.com/rust-lang/crates.io-index"
  676. checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  677. dependencies = [
  678. "bitflags",
  679. ]
  680. [[package]]
  681. name = "cloudabi"
  682. version = "0.1.0"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
  685. dependencies = [
  686. "bitflags",
  687. ]
  688. [[package]]
  689. name = "concurrent-queue"
  690. version = "1.2.2"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
  693. dependencies = [
  694. "cache-padded",
  695. ]
  696. [[package]]
  697. name = "console_error_panic_hook"
  698. version = "0.1.6"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
  701. dependencies = [
  702. "cfg-if 0.1.10",
  703. "wasm-bindgen",
  704. ]
  705. [[package]]
  706. name = "console_log"
  707. version = "0.1.2"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "1e7871d2947441b0fdd8e2bd1ce2a2f75304f896582c0d572162d48290683c48"
  710. dependencies = [
  711. "log",
  712. "web-sys",
  713. ]
  714. [[package]]
  715. name = "const-random"
  716. version = "0.1.12"
  717. source = "registry+https://github.com/rust-lang/crates.io-index"
  718. checksum = "486d435a7351580347279f374cb8a3c16937485441db80181357b7c4d70f17ed"
  719. dependencies = [
  720. "const-random-macro",
  721. "proc-macro-hack",
  722. ]
  723. [[package]]
  724. name = "const-random-macro"
  725. version = "0.1.12"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "49a84d8ff70e3ec52311109b019c27672b4c1929e4cf7c18bcf0cd9fb5e230be"
  728. dependencies = [
  729. "getrandom 0.2.0",
  730. "lazy_static",
  731. "proc-macro-hack",
  732. "tiny-keccak",
  733. ]
  734. [[package]]
  735. name = "const_fn"
  736. version = "0.4.3"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
  739. [[package]]
  740. name = "constant_time_eq"
  741. version = "0.1.5"
  742. source = "registry+https://github.com/rust-lang/crates.io-index"
  743. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  744. [[package]]
  745. name = "core-foundation"
  746. version = "0.7.0"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
  749. dependencies = [
  750. "core-foundation-sys",
  751. "libc",
  752. ]
  753. [[package]]
  754. name = "core-foundation-sys"
  755. version = "0.7.0"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
  758. [[package]]
  759. name = "cpuid-bool"
  760. version = "0.1.2"
  761. source = "registry+https://github.com/rust-lang/crates.io-index"
  762. checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
  763. [[package]]
  764. name = "crc32fast"
  765. version = "1.2.1"
  766. source = "registry+https://github.com/rust-lang/crates.io-index"
  767. checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
  768. dependencies = [
  769. "cfg-if 1.0.0",
  770. ]
  771. [[package]]
  772. name = "crossbeam-channel"
  773. version = "0.5.0"
  774. source = "registry+https://github.com/rust-lang/crates.io-index"
  775. checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
  776. dependencies = [
  777. "cfg-if 1.0.0",
  778. "crossbeam-utils 0.8.1",
  779. ]
  780. [[package]]
  781. name = "crossbeam-deque"
  782. version = "0.7.3"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
  785. dependencies = [
  786. "crossbeam-epoch 0.8.2",
  787. "crossbeam-utils 0.7.2",
  788. "maybe-uninit",
  789. ]
  790. [[package]]
  791. name = "crossbeam-deque"
  792. version = "0.8.0"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
  795. dependencies = [
  796. "cfg-if 1.0.0",
  797. "crossbeam-epoch 0.9.1",
  798. "crossbeam-utils 0.8.1",
  799. ]
  800. [[package]]
  801. name = "crossbeam-epoch"
  802. version = "0.8.2"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
  805. dependencies = [
  806. "autocfg 1.0.1",
  807. "cfg-if 0.1.10",
  808. "crossbeam-utils 0.7.2",
  809. "lazy_static",
  810. "maybe-uninit",
  811. "memoffset 0.5.6",
  812. "scopeguard 1.1.0",
  813. ]
  814. [[package]]
  815. name = "crossbeam-epoch"
  816. version = "0.9.1"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
  819. dependencies = [
  820. "cfg-if 1.0.0",
  821. "const_fn",
  822. "crossbeam-utils 0.8.1",
  823. "lazy_static",
  824. "memoffset 0.6.1",
  825. "scopeguard 1.1.0",
  826. ]
  827. [[package]]
  828. name = "crossbeam-queue"
  829. version = "0.2.3"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
  832. dependencies = [
  833. "cfg-if 0.1.10",
  834. "crossbeam-utils 0.7.2",
  835. "maybe-uninit",
  836. ]
  837. [[package]]
  838. name = "crossbeam-utils"
  839. version = "0.7.2"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
  842. dependencies = [
  843. "autocfg 1.0.1",
  844. "cfg-if 0.1.10",
  845. "lazy_static",
  846. ]
  847. [[package]]
  848. name = "crossbeam-utils"
  849. version = "0.8.1"
  850. source = "registry+https://github.com/rust-lang/crates.io-index"
  851. checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
  852. dependencies = [
  853. "autocfg 1.0.1",
  854. "cfg-if 1.0.0",
  855. "lazy_static",
  856. ]
  857. [[package]]
  858. name = "crunchy"
  859. version = "0.2.2"
  860. source = "registry+https://github.com/rust-lang/crates.io-index"
  861. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  862. [[package]]
  863. name = "crypto-mac"
  864. version = "0.7.0"
  865. source = "registry+https://github.com/rust-lang/crates.io-index"
  866. checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
  867. dependencies = [
  868. "generic-array 0.12.3",
  869. "subtle 1.0.0",
  870. ]
  871. [[package]]
  872. name = "crypto-mac"
  873. version = "0.8.0"
  874. source = "registry+https://github.com/rust-lang/crates.io-index"
  875. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  876. dependencies = [
  877. "generic-array 0.14.4",
  878. "subtle 2.3.0",
  879. ]
  880. [[package]]
  881. name = "ct-logs"
  882. version = "0.7.0"
  883. source = "registry+https://github.com/rust-lang/crates.io-index"
  884. checksum = "8c8e13110a84b6315df212c045be706af261fd364791cad863285439ebba672e"
  885. dependencies = [
  886. "sct",
  887. ]
  888. [[package]]
  889. name = "cuckoofilter"
  890. version = "0.3.2"
  891. source = "registry+https://github.com/rust-lang/crates.io-index"
  892. checksum = "8dd43f7cfaffe0a386636a10baea2ee05cc50df3b77bea4a456c9572a939bf1f"
  893. dependencies = [
  894. "byteorder 0.5.3",
  895. "rand 0.3.23",
  896. ]
  897. [[package]]
  898. name = "curve25519-dalek"
  899. version = "2.1.0"
  900. source = "registry+https://github.com/rust-lang/crates.io-index"
  901. checksum = "5d85653f070353a16313d0046f173f70d1aadd5b42600a14de626f0dfb3473a5"
  902. dependencies = [
  903. "byteorder 1.3.4",
  904. "digest 0.8.1",
  905. "rand_core 0.5.1",
  906. "subtle 2.3.0",
  907. "zeroize",
  908. ]
  909. [[package]]
  910. name = "curve25519-dalek"
  911. version = "3.0.0"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "c8492de420e9e60bc9a1d66e2dbb91825390b738a388606600663fc529b4b307"
  914. dependencies = [
  915. "byteorder 1.3.4",
  916. "digest 0.9.0",
  917. "rand_core 0.5.1",
  918. "subtle 2.3.0",
  919. "zeroize",
  920. ]
  921. [[package]]
  922. name = "data-encoding"
  923. version = "2.3.1"
  924. source = "registry+https://github.com/rust-lang/crates.io-index"
  925. checksum = "993a608597367c6377b258c25d7120740f00ed23a2252b729b1932dd7866f908"
  926. [[package]]
  927. name = "derive_more"
  928. version = "0.99.11"
  929. source = "registry+https://github.com/rust-lang/crates.io-index"
  930. checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
  931. dependencies = [
  932. "proc-macro2",
  933. "quote",
  934. "syn",
  935. ]
  936. [[package]]
  937. name = "digest"
  938. version = "0.8.1"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
  941. dependencies = [
  942. "generic-array 0.12.3",
  943. ]
  944. [[package]]
  945. name = "digest"
  946. version = "0.9.0"
  947. source = "registry+https://github.com/rust-lang/crates.io-index"
  948. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  949. dependencies = [
  950. "generic-array 0.14.4",
  951. ]
  952. [[package]]
  953. name = "directories"
  954. version = "2.0.2"
  955. source = "registry+https://github.com/rust-lang/crates.io-index"
  956. checksum = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
  957. dependencies = [
  958. "cfg-if 0.1.10",
  959. "dirs-sys",
  960. ]
  961. [[package]]
  962. name = "dirs-sys"
  963. version = "0.3.5"
  964. source = "registry+https://github.com/rust-lang/crates.io-index"
  965. checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
  966. dependencies = [
  967. "libc",
  968. "redox_users",
  969. "winapi 0.3.9",
  970. ]
  971. [[package]]
  972. name = "dns-parser"
  973. version = "0.8.0"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea"
  976. dependencies = [
  977. "byteorder 1.3.4",
  978. "quick-error",
  979. ]
  980. [[package]]
  981. name = "dyn-clonable"
  982. version = "0.9.0"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "4e9232f0e607a262ceb9bd5141a3dfb3e4db6994b31989bbfd845878cba59fd4"
  985. dependencies = [
  986. "dyn-clonable-impl",
  987. "dyn-clone",
  988. ]
  989. [[package]]
  990. name = "dyn-clonable-impl"
  991. version = "0.9.0"
  992. source = "registry+https://github.com/rust-lang/crates.io-index"
  993. checksum = "558e40ea573c374cf53507fd240b7ee2f5477df7cfebdb97323ec61c719399c5"
  994. dependencies = [
  995. "proc-macro2",
  996. "quote",
  997. "syn",
  998. ]
  999. [[package]]
  1000. name = "dyn-clone"
  1001. version = "1.0.3"
  1002. source = "registry+https://github.com/rust-lang/crates.io-index"
  1003. checksum = "d55796afa1b20c2945ca8eabfc421839f2b766619209f1ede813cf2484f31804"
  1004. [[package]]
  1005. name = "ed25519"
  1006. version = "1.0.3"
  1007. source = "registry+https://github.com/rust-lang/crates.io-index"
  1008. checksum = "37c66a534cbb46ab4ea03477eae19d5c22c01da8258030280b7bd9d8433fb6ef"
  1009. dependencies = [
  1010. "signature",
  1011. ]
  1012. [[package]]
  1013. name = "ed25519-dalek"
  1014. version = "1.0.1"
  1015. source = "registry+https://github.com/rust-lang/crates.io-index"
  1016. checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
  1017. dependencies = [
  1018. "curve25519-dalek 3.0.0",
  1019. "ed25519",
  1020. "rand 0.7.3",
  1021. "serde",
  1022. "sha2 0.9.2",
  1023. "zeroize",
  1024. ]
  1025. [[package]]
  1026. name = "either"
  1027. version = "1.6.1"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  1030. [[package]]
  1031. name = "enum-utils"
  1032. version = "0.1.2"
  1033. source = "registry+https://github.com/rust-lang/crates.io-index"
  1034. checksum = "ed327f716d0d351d86c9fd3398d20ee39ad8f681873cc081da2ca1c10fed398a"
  1035. dependencies = [
  1036. "enum-utils-from-str",
  1037. "failure",
  1038. "proc-macro2",
  1039. "quote",
  1040. "serde_derive_internals",
  1041. "syn",
  1042. ]
  1043. [[package]]
  1044. name = "enum-utils-from-str"
  1045. version = "0.1.2"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "d49be08bad6e4ca87b2b8e74146987d4e5cb3b7512efa50ef505b51a22227ee1"
  1048. dependencies = [
  1049. "proc-macro2",
  1050. "quote",
  1051. ]
  1052. [[package]]
  1053. name = "env_logger"
  1054. version = "0.7.1"
  1055. source = "registry+https://github.com/rust-lang/crates.io-index"
  1056. checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  1057. dependencies = [
  1058. "atty",
  1059. "humantime",
  1060. "log",
  1061. "regex",
  1062. "termcolor",
  1063. ]
  1064. [[package]]
  1065. name = "environmental"
  1066. version = "1.1.2"
  1067. source = "registry+https://github.com/rust-lang/crates.io-index"
  1068. checksum = "6576a1755ddffd988788025e75bce9e74b018f7cc226198fe931d077911c6d7e"
  1069. [[package]]
  1070. name = "erased-serde"
  1071. version = "0.3.12"
  1072. source = "registry+https://github.com/rust-lang/crates.io-index"
  1073. checksum = "6ca8b296792113e1500fd935ae487be6e00ce318952a6880555554824d6ebf38"
  1074. dependencies = [
  1075. "serde",
  1076. ]
  1077. [[package]]
  1078. name = "event-listener"
  1079. version = "2.5.1"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59"
  1082. [[package]]
  1083. name = "exit-future"
  1084. version = "0.2.0"
  1085. source = "registry+https://github.com/rust-lang/crates.io-index"
  1086. checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5"
  1087. dependencies = [
  1088. "futures 0.3.8",
  1089. ]
  1090. [[package]]
  1091. name = "failure"
  1092. version = "0.1.8"
  1093. source = "registry+https://github.com/rust-lang/crates.io-index"
  1094. checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
  1095. dependencies = [
  1096. "backtrace",
  1097. "failure_derive",
  1098. ]
  1099. [[package]]
  1100. name = "failure_derive"
  1101. version = "0.1.8"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
  1104. dependencies = [
  1105. "proc-macro2",
  1106. "quote",
  1107. "syn",
  1108. "synstructure",
  1109. ]
  1110. [[package]]
  1111. name = "fake-simd"
  1112. version = "0.1.2"
  1113. source = "registry+https://github.com/rust-lang/crates.io-index"
  1114. checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
  1115. [[package]]
  1116. name = "fastrand"
  1117. version = "1.4.0"
  1118. source = "registry+https://github.com/rust-lang/crates.io-index"
  1119. checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3"
  1120. dependencies = [
  1121. "instant",
  1122. ]
  1123. [[package]]
  1124. name = "fdlimit"
  1125. version = "0.2.1"
  1126. source = "registry+https://github.com/rust-lang/crates.io-index"
  1127. checksum = "2c4c9e43643f5a3be4ca5b67d26b98031ff9db6806c3440ae32e02e3ceac3f1b"
  1128. dependencies = [
  1129. "libc",
  1130. ]
  1131. [[package]]
  1132. name = "finality-grandpa"
  1133. version = "0.12.3"
  1134. source = "registry+https://github.com/rust-lang/crates.io-index"
  1135. checksum = "8feb87a63249689640ac9c011742c33139204e3c134293d3054022276869133b"
  1136. dependencies = [
  1137. "either",
  1138. "futures 0.3.8",
  1139. "futures-timer 2.0.2",
  1140. "log",
  1141. "num-traits",
  1142. "parity-scale-codec",
  1143. "parking_lot 0.9.0",
  1144. ]
  1145. [[package]]
  1146. name = "fixed-hash"
  1147. version = "0.6.1"
  1148. source = "registry+https://github.com/rust-lang/crates.io-index"
  1149. checksum = "11498d382790b7a8f2fd211780bec78619bba81cdad3a283997c0c41f836759c"
  1150. dependencies = [
  1151. "byteorder 1.3.4",
  1152. "rand 0.7.3",
  1153. "rustc-hex",
  1154. "static_assertions",
  1155. ]
  1156. [[package]]
  1157. name = "fixedbitset"
  1158. version = "0.2.0"
  1159. source = "registry+https://github.com/rust-lang/crates.io-index"
  1160. checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"
  1161. [[package]]
  1162. name = "flate2"
  1163. version = "1.0.19"
  1164. source = "registry+https://github.com/rust-lang/crates.io-index"
  1165. checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
  1166. dependencies = [
  1167. "cfg-if 1.0.0",
  1168. "crc32fast",
  1169. "libc",
  1170. "libz-sys",
  1171. "miniz_oxide",
  1172. ]
  1173. [[package]]
  1174. name = "fnv"
  1175. version = "1.0.7"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1178. [[package]]
  1179. name = "fork-tree"
  1180. version = "2.0.0"
  1181. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1182. dependencies = [
  1183. "parity-scale-codec",
  1184. ]
  1185. [[package]]
  1186. name = "form_urlencoded"
  1187. version = "1.0.0"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
  1190. dependencies = [
  1191. "matches",
  1192. "percent-encoding 2.1.0",
  1193. ]
  1194. [[package]]
  1195. name = "frame-benchmarking"
  1196. version = "2.0.0"
  1197. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1198. dependencies = [
  1199. "frame-support",
  1200. "frame-system",
  1201. "linregress",
  1202. "parity-scale-codec",
  1203. "paste",
  1204. "sp-api",
  1205. "sp-io",
  1206. "sp-runtime",
  1207. "sp-runtime-interface",
  1208. "sp-std",
  1209. "sp-storage",
  1210. ]
  1211. [[package]]
  1212. name = "frame-benchmarking-cli"
  1213. version = "2.0.0"
  1214. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1215. dependencies = [
  1216. "frame-benchmarking",
  1217. "parity-scale-codec",
  1218. "sc-cli",
  1219. "sc-client-db",
  1220. "sc-executor",
  1221. "sc-service",
  1222. "sp-core",
  1223. "sp-externalities",
  1224. "sp-runtime",
  1225. "sp-state-machine",
  1226. "structopt",
  1227. ]
  1228. [[package]]
  1229. name = "frame-executive"
  1230. version = "2.0.0"
  1231. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1232. dependencies = [
  1233. "frame-support",
  1234. "frame-system",
  1235. "parity-scale-codec",
  1236. "serde",
  1237. "sp-core",
  1238. "sp-io",
  1239. "sp-runtime",
  1240. "sp-std",
  1241. "sp-tracing",
  1242. ]
  1243. [[package]]
  1244. name = "frame-metadata"
  1245. version = "12.0.0"
  1246. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1247. dependencies = [
  1248. "parity-scale-codec",
  1249. "serde",
  1250. "sp-core",
  1251. "sp-std",
  1252. ]
  1253. [[package]]
  1254. name = "frame-support"
  1255. version = "2.0.0"
  1256. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1257. dependencies = [
  1258. "bitmask",
  1259. "frame-metadata",
  1260. "frame-support-procedural",
  1261. "impl-trait-for-tuples",
  1262. "log",
  1263. "once_cell 1.5.2",
  1264. "parity-scale-codec",
  1265. "paste",
  1266. "serde",
  1267. "smallvec 1.5.0",
  1268. "sp-arithmetic",
  1269. "sp-core",
  1270. "sp-inherents",
  1271. "sp-io",
  1272. "sp-runtime",
  1273. "sp-state-machine",
  1274. "sp-std",
  1275. "sp-tracing",
  1276. ]
  1277. [[package]]
  1278. name = "frame-support-procedural"
  1279. version = "2.0.0"
  1280. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1281. dependencies = [
  1282. "frame-support-procedural-tools",
  1283. "proc-macro2",
  1284. "quote",
  1285. "syn",
  1286. ]
  1287. [[package]]
  1288. name = "frame-support-procedural-tools"
  1289. version = "2.0.0"
  1290. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1291. dependencies = [
  1292. "frame-support-procedural-tools-derive",
  1293. "proc-macro-crate",
  1294. "proc-macro2",
  1295. "quote",
  1296. "syn",
  1297. ]
  1298. [[package]]
  1299. name = "frame-support-procedural-tools-derive"
  1300. version = "2.0.0"
  1301. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1302. dependencies = [
  1303. "proc-macro2",
  1304. "quote",
  1305. "syn",
  1306. ]
  1307. [[package]]
  1308. name = "frame-system"
  1309. version = "2.0.0"
  1310. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1311. dependencies = [
  1312. "frame-support",
  1313. "impl-trait-for-tuples",
  1314. "parity-scale-codec",
  1315. "serde",
  1316. "sp-core",
  1317. "sp-io",
  1318. "sp-runtime",
  1319. "sp-std",
  1320. "sp-version",
  1321. ]
  1322. [[package]]
  1323. name = "frame-system-benchmarking"
  1324. version = "2.0.0"
  1325. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1326. dependencies = [
  1327. "frame-benchmarking",
  1328. "frame-support",
  1329. "frame-system",
  1330. "parity-scale-codec",
  1331. "sp-core",
  1332. "sp-runtime",
  1333. "sp-std",
  1334. ]
  1335. [[package]]
  1336. name = "frame-system-rpc-runtime-api"
  1337. version = "2.0.0"
  1338. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  1339. dependencies = [
  1340. "parity-scale-codec",
  1341. "sp-api",
  1342. ]
  1343. [[package]]
  1344. name = "fs-swap"
  1345. version = "0.2.5"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "5839fda247e24ca4919c87c71dd5ca658f1f39e4f06829f80e3f15c3bafcfc2c"
  1348. dependencies = [
  1349. "lazy_static",
  1350. "libc",
  1351. "libloading",
  1352. "winapi 0.3.9",
  1353. ]
  1354. [[package]]
  1355. name = "fuchsia-cprng"
  1356. version = "0.1.1"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  1359. [[package]]
  1360. name = "fuchsia-zircon"
  1361. version = "0.3.3"
  1362. source = "registry+https://github.com/rust-lang/crates.io-index"
  1363. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  1364. dependencies = [
  1365. "bitflags",
  1366. "fuchsia-zircon-sys",
  1367. ]
  1368. [[package]]
  1369. name = "fuchsia-zircon-sys"
  1370. version = "0.3.3"
  1371. source = "registry+https://github.com/rust-lang/crates.io-index"
  1372. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  1373. [[package]]
  1374. name = "futures"
  1375. version = "0.1.30"
  1376. source = "registry+https://github.com/rust-lang/crates.io-index"
  1377. checksum = "4c7e4c2612746b0df8fed4ce0c69156021b704c9aefa360311c04e6e9e002eed"
  1378. [[package]]
  1379. name = "futures"
  1380. version = "0.3.8"
  1381. source = "registry+https://github.com/rust-lang/crates.io-index"
  1382. checksum = "9b3b0c040a1fe6529d30b3c5944b280c7f0dcb2930d2c3062bca967b602583d0"
  1383. dependencies = [
  1384. "futures-channel",
  1385. "futures-core",
  1386. "futures-executor",
  1387. "futures-io",
  1388. "futures-sink",
  1389. "futures-task",
  1390. "futures-util",
  1391. ]
  1392. [[package]]
  1393. name = "futures-channel"
  1394. version = "0.3.8"
  1395. source = "registry+https://github.com/rust-lang/crates.io-index"
  1396. checksum = "4b7109687aa4e177ef6fe84553af6280ef2778bdb7783ba44c9dc3399110fe64"
  1397. dependencies = [
  1398. "futures-core",
  1399. "futures-sink",
  1400. ]
  1401. [[package]]
  1402. name = "futures-channel-preview"
  1403. version = "0.3.0-alpha.19"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a"
  1406. dependencies = [
  1407. "futures-core-preview",
  1408. ]
  1409. [[package]]
  1410. name = "futures-core"
  1411. version = "0.3.8"
  1412. source = "registry+https://github.com/rust-lang/crates.io-index"
  1413. checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748"
  1414. [[package]]
  1415. name = "futures-core-preview"
  1416. version = "0.3.0-alpha.19"
  1417. source = "registry+https://github.com/rust-lang/crates.io-index"
  1418. checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"
  1419. [[package]]
  1420. name = "futures-cpupool"
  1421. version = "0.1.8"
  1422. source = "registry+https://github.com/rust-lang/crates.io-index"
  1423. checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
  1424. dependencies = [
  1425. "futures 0.1.30",
  1426. "num_cpus",
  1427. ]
  1428. [[package]]
  1429. name = "futures-diagnose"
  1430. version = "1.0.1"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "fdcef58a173af8148b182684c9f2d5250875adbcaff7b5794073894f9d8634a9"
  1433. dependencies = [
  1434. "futures 0.1.30",
  1435. "futures 0.3.8",
  1436. "lazy_static",
  1437. "log",
  1438. "parking_lot 0.9.0",
  1439. "pin-project 0.4.27",
  1440. "serde",
  1441. "serde_json",
  1442. ]
  1443. [[package]]
  1444. name = "futures-executor"
  1445. version = "0.3.8"
  1446. source = "registry+https://github.com/rust-lang/crates.io-index"
  1447. checksum = "4caa2b2b68b880003057c1dd49f1ed937e38f22fcf6c212188a121f08cf40a65"
  1448. dependencies = [
  1449. "futures-core",
  1450. "futures-task",
  1451. "futures-util",
  1452. "num_cpus",
  1453. ]
  1454. [[package]]
  1455. name = "futures-io"
  1456. version = "0.3.8"
  1457. source = "registry+https://github.com/rust-lang/crates.io-index"
  1458. checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb"
  1459. [[package]]
  1460. name = "futures-lite"
  1461. version = "1.11.2"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "5e6c079abfac3ab269e2927ec048dabc89d009ebfdda6b8ee86624f30c689658"
  1464. dependencies = [
  1465. "fastrand",
  1466. "futures-core",
  1467. "futures-io",
  1468. "memchr",
  1469. "parking",
  1470. "pin-project-lite 0.1.11",
  1471. "waker-fn",
  1472. ]
  1473. [[package]]
  1474. name = "futures-macro"
  1475. version = "0.3.8"
  1476. source = "registry+https://github.com/rust-lang/crates.io-index"
  1477. checksum = "77408a692f1f97bcc61dc001d752e00643408fbc922e4d634c655df50d595556"
  1478. dependencies = [
  1479. "proc-macro-hack",
  1480. "proc-macro2",
  1481. "quote",
  1482. "syn",
  1483. ]
  1484. [[package]]
  1485. name = "futures-sink"
  1486. version = "0.3.8"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "f878195a49cee50e006b02b93cf7e0a95a38ac7b776b4c4d9cc1207cd20fcb3d"
  1489. [[package]]
  1490. name = "futures-task"
  1491. version = "0.3.8"
  1492. source = "registry+https://github.com/rust-lang/crates.io-index"
  1493. checksum = "7c554eb5bf48b2426c4771ab68c6b14468b6e76cc90996f528c3338d761a4d0d"
  1494. dependencies = [
  1495. "once_cell 1.5.2",
  1496. ]
  1497. [[package]]
  1498. name = "futures-timer"
  1499. version = "2.0.2"
  1500. source = "registry+https://github.com/rust-lang/crates.io-index"
  1501. checksum = "a1de7508b218029b0f01662ed8f61b1c964b3ae99d6f25462d0f55a595109df6"
  1502. [[package]]
  1503. name = "futures-timer"
  1504. version = "3.0.2"
  1505. source = "registry+https://github.com/rust-lang/crates.io-index"
  1506. checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
  1507. dependencies = [
  1508. "gloo-timers",
  1509. "send_wrapper 0.4.0",
  1510. ]
  1511. [[package]]
  1512. name = "futures-util"
  1513. version = "0.3.8"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "d304cff4a7b99cfb7986f7d43fbe93d175e72e704a8860787cc95e9ffd85cbd2"
  1516. dependencies = [
  1517. "futures 0.1.30",
  1518. "futures-channel",
  1519. "futures-core",
  1520. "futures-io",
  1521. "futures-macro",
  1522. "futures-sink",
  1523. "futures-task",
  1524. "memchr",
  1525. "pin-project 1.0.2",
  1526. "pin-utils",
  1527. "proc-macro-hack",
  1528. "proc-macro-nested",
  1529. "slab",
  1530. ]
  1531. [[package]]
  1532. name = "futures-util-preview"
  1533. version = "0.3.0-alpha.19"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d"
  1536. dependencies = [
  1537. "futures-channel-preview",
  1538. "futures-core-preview",
  1539. "pin-utils",
  1540. "slab",
  1541. ]
  1542. [[package]]
  1543. name = "futures_codec"
  1544. version = "0.4.1"
  1545. source = "registry+https://github.com/rust-lang/crates.io-index"
  1546. checksum = "ce54d63f8b0c75023ed920d46fd71d0cbbb830b0ee012726b5b4f506fb6dea5b"
  1547. dependencies = [
  1548. "bytes 0.5.6",
  1549. "futures 0.3.8",
  1550. "memchr",
  1551. "pin-project 0.4.27",
  1552. ]
  1553. [[package]]
  1554. name = "gcc"
  1555. version = "0.3.55"
  1556. source = "registry+https://github.com/rust-lang/crates.io-index"
  1557. checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
  1558. [[package]]
  1559. name = "generator"
  1560. version = "0.6.23"
  1561. source = "registry+https://github.com/rust-lang/crates.io-index"
  1562. checksum = "8cdc09201b2e8ca1b19290cf7e65de2246b8e91fb6874279722189c4de7b94dc"
  1563. dependencies = [
  1564. "cc",
  1565. "libc",
  1566. "log",
  1567. "rustc_version",
  1568. "winapi 0.3.9",
  1569. ]
  1570. [[package]]
  1571. name = "generic-array"
  1572. version = "0.12.3"
  1573. source = "registry+https://github.com/rust-lang/crates.io-index"
  1574. checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
  1575. dependencies = [
  1576. "typenum",
  1577. ]
  1578. [[package]]
  1579. name = "generic-array"
  1580. version = "0.14.4"
  1581. source = "registry+https://github.com/rust-lang/crates.io-index"
  1582. checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
  1583. dependencies = [
  1584. "typenum",
  1585. "version_check",
  1586. ]
  1587. [[package]]
  1588. name = "get_if_addrs"
  1589. version = "0.5.3"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7"
  1592. dependencies = [
  1593. "c_linked_list",
  1594. "get_if_addrs-sys",
  1595. "libc",
  1596. "winapi 0.2.8",
  1597. ]
  1598. [[package]]
  1599. name = "get_if_addrs-sys"
  1600. version = "0.1.1"
  1601. source = "registry+https://github.com/rust-lang/crates.io-index"
  1602. checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48"
  1603. dependencies = [
  1604. "gcc",
  1605. "libc",
  1606. ]
  1607. [[package]]
  1608. name = "getrandom"
  1609. version = "0.1.15"
  1610. source = "registry+https://github.com/rust-lang/crates.io-index"
  1611. checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
  1612. dependencies = [
  1613. "cfg-if 0.1.10",
  1614. "libc",
  1615. "wasi 0.9.0+wasi-snapshot-preview1",
  1616. "wasm-bindgen",
  1617. ]
  1618. [[package]]
  1619. name = "getrandom"
  1620. version = "0.2.0"
  1621. source = "registry+https://github.com/rust-lang/crates.io-index"
  1622. checksum = "ee8025cf36f917e6a52cce185b7c7177689b838b7ec138364e50cc2277a56cf4"
  1623. dependencies = [
  1624. "cfg-if 0.1.10",
  1625. "libc",
  1626. "wasi 0.9.0+wasi-snapshot-preview1",
  1627. ]
  1628. [[package]]
  1629. name = "ghash"
  1630. version = "0.3.0"
  1631. source = "registry+https://github.com/rust-lang/crates.io-index"
  1632. checksum = "d6e27f0689a6e15944bdce7e45425efb87eaa8ab0c6e87f11d0987a9133e2531"
  1633. dependencies = [
  1634. "polyval",
  1635. ]
  1636. [[package]]
  1637. name = "gimli"
  1638. version = "0.23.0"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce"
  1641. [[package]]
  1642. name = "glob"
  1643. version = "0.3.0"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  1646. [[package]]
  1647. name = "globset"
  1648. version = "0.4.6"
  1649. source = "registry+https://github.com/rust-lang/crates.io-index"
  1650. checksum = "c152169ef1e421390738366d2f796655fec62621dabbd0fd476f905934061e4a"
  1651. dependencies = [
  1652. "aho-corasick",
  1653. "bstr",
  1654. "fnv",
  1655. "log",
  1656. "regex",
  1657. ]
  1658. [[package]]
  1659. name = "gloo-timers"
  1660. version = "0.2.1"
  1661. source = "registry+https://github.com/rust-lang/crates.io-index"
  1662. checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
  1663. dependencies = [
  1664. "futures-channel",
  1665. "futures-core",
  1666. "js-sys",
  1667. "wasm-bindgen",
  1668. "web-sys",
  1669. ]
  1670. [[package]]
  1671. name = "h2"
  1672. version = "0.1.26"
  1673. source = "registry+https://github.com/rust-lang/crates.io-index"
  1674. checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
  1675. dependencies = [
  1676. "byteorder 1.3.4",
  1677. "bytes 0.4.12",
  1678. "fnv",
  1679. "futures 0.1.30",
  1680. "http 0.1.21",
  1681. "indexmap",
  1682. "log",
  1683. "slab",
  1684. "string",
  1685. "tokio-io",
  1686. ]
  1687. [[package]]
  1688. name = "h2"
  1689. version = "0.2.7"
  1690. source = "registry+https://github.com/rust-lang/crates.io-index"
  1691. checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
  1692. dependencies = [
  1693. "bytes 0.5.6",
  1694. "fnv",
  1695. "futures-core",
  1696. "futures-sink",
  1697. "futures-util",
  1698. "http 0.2.1",
  1699. "indexmap",
  1700. "slab",
  1701. "tokio 0.2.23",
  1702. "tokio-util",
  1703. "tracing",
  1704. "tracing-futures",
  1705. ]
  1706. [[package]]
  1707. name = "hash-db"
  1708. version = "0.15.2"
  1709. source = "registry+https://github.com/rust-lang/crates.io-index"
  1710. checksum = "d23bd4e7b5eda0d0f3a307e8b381fdc8ba9000f26fbe912250c0a4cc3956364a"
  1711. [[package]]
  1712. name = "hash256-std-hasher"
  1713. version = "0.15.2"
  1714. source = "registry+https://github.com/rust-lang/crates.io-index"
  1715. checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2"
  1716. dependencies = [
  1717. "crunchy",
  1718. ]
  1719. [[package]]
  1720. name = "hashbrown"
  1721. version = "0.1.8"
  1722. source = "registry+https://github.com/rust-lang/crates.io-index"
  1723. checksum = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
  1724. dependencies = [
  1725. "byteorder 1.3.4",
  1726. "scopeguard 0.3.3",
  1727. ]
  1728. [[package]]
  1729. name = "hashbrown"
  1730. version = "0.6.3"
  1731. source = "registry+https://github.com/rust-lang/crates.io-index"
  1732. checksum = "8e6073d0ca812575946eb5f35ff68dbe519907b25c42530389ff946dc84c6ead"
  1733. dependencies = [
  1734. "ahash 0.2.19",
  1735. "autocfg 0.1.7",
  1736. ]
  1737. [[package]]
  1738. name = "hashbrown"
  1739. version = "0.8.2"
  1740. source = "registry+https://github.com/rust-lang/crates.io-index"
  1741. checksum = "e91b62f79061a0bc2e046024cb7ba44b08419ed238ecbd9adbd787434b9e8c25"
  1742. dependencies = [
  1743. "ahash 0.3.8",
  1744. "autocfg 1.0.1",
  1745. ]
  1746. [[package]]
  1747. name = "hashbrown"
  1748. version = "0.9.1"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
  1751. dependencies = [
  1752. "ahash 0.4.6",
  1753. ]
  1754. [[package]]
  1755. name = "heck"
  1756. version = "0.3.1"
  1757. source = "registry+https://github.com/rust-lang/crates.io-index"
  1758. checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  1759. dependencies = [
  1760. "unicode-segmentation",
  1761. ]
  1762. [[package]]
  1763. name = "hermit-abi"
  1764. version = "0.1.17"
  1765. source = "registry+https://github.com/rust-lang/crates.io-index"
  1766. checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
  1767. dependencies = [
  1768. "libc",
  1769. ]
  1770. [[package]]
  1771. name = "hex"
  1772. version = "0.4.2"
  1773. source = "registry+https://github.com/rust-lang/crates.io-index"
  1774. checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
  1775. [[package]]
  1776. name = "hex-literal"
  1777. version = "0.3.1"
  1778. source = "registry+https://github.com/rust-lang/crates.io-index"
  1779. checksum = "5af1f635ef1bc545d78392b136bfe1c9809e029023c84a3638a864a10b8819c8"
  1780. [[package]]
  1781. name = "hex_fmt"
  1782. version = "0.3.0"
  1783. source = "registry+https://github.com/rust-lang/crates.io-index"
  1784. checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  1785. [[package]]
  1786. name = "hmac"
  1787. version = "0.7.1"
  1788. source = "registry+https://github.com/rust-lang/crates.io-index"
  1789. checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
  1790. dependencies = [
  1791. "crypto-mac 0.7.0",
  1792. "digest 0.8.1",
  1793. ]
  1794. [[package]]
  1795. name = "hmac-drbg"
  1796. version = "0.2.0"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "c6e570451493f10f6581b48cdd530413b63ea9e780f544bfd3bdcaa0d89d1a7b"
  1799. dependencies = [
  1800. "digest 0.8.1",
  1801. "generic-array 0.12.3",
  1802. "hmac",
  1803. ]
  1804. [[package]]
  1805. name = "http"
  1806. version = "0.1.21"
  1807. source = "registry+https://github.com/rust-lang/crates.io-index"
  1808. checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
  1809. dependencies = [
  1810. "bytes 0.4.12",
  1811. "fnv",
  1812. "itoa",
  1813. ]
  1814. [[package]]
  1815. name = "http"
  1816. version = "0.2.1"
  1817. source = "registry+https://github.com/rust-lang/crates.io-index"
  1818. checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
  1819. dependencies = [
  1820. "bytes 0.5.6",
  1821. "fnv",
  1822. "itoa",
  1823. ]
  1824. [[package]]
  1825. name = "http-body"
  1826. version = "0.1.0"
  1827. source = "registry+https://github.com/rust-lang/crates.io-index"
  1828. checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
  1829. dependencies = [
  1830. "bytes 0.4.12",
  1831. "futures 0.1.30",
  1832. "http 0.1.21",
  1833. "tokio-buf",
  1834. ]
  1835. [[package]]
  1836. name = "http-body"
  1837. version = "0.3.1"
  1838. source = "registry+https://github.com/rust-lang/crates.io-index"
  1839. checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
  1840. dependencies = [
  1841. "bytes 0.5.6",
  1842. "http 0.2.1",
  1843. ]
  1844. [[package]]
  1845. name = "httparse"
  1846. version = "1.3.4"
  1847. source = "registry+https://github.com/rust-lang/crates.io-index"
  1848. checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  1849. [[package]]
  1850. name = "httpdate"
  1851. version = "0.3.2"
  1852. source = "registry+https://github.com/rust-lang/crates.io-index"
  1853. checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
  1854. [[package]]
  1855. name = "humantime"
  1856. version = "1.3.0"
  1857. source = "registry+https://github.com/rust-lang/crates.io-index"
  1858. checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  1859. dependencies = [
  1860. "quick-error",
  1861. ]
  1862. [[package]]
  1863. name = "hyper"
  1864. version = "0.12.35"
  1865. source = "registry+https://github.com/rust-lang/crates.io-index"
  1866. checksum = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6"
  1867. dependencies = [
  1868. "bytes 0.4.12",
  1869. "futures 0.1.30",
  1870. "futures-cpupool",
  1871. "h2 0.1.26",
  1872. "http 0.1.21",
  1873. "http-body 0.1.0",
  1874. "httparse",
  1875. "iovec",
  1876. "itoa",
  1877. "log",
  1878. "net2",
  1879. "rustc_version",
  1880. "time",
  1881. "tokio 0.1.22",
  1882. "tokio-buf",
  1883. "tokio-executor 0.1.10",
  1884. "tokio-io",
  1885. "tokio-reactor",
  1886. "tokio-tcp",
  1887. "tokio-threadpool",
  1888. "tokio-timer",
  1889. "want 0.2.0",
  1890. ]
  1891. [[package]]
  1892. name = "hyper"
  1893. version = "0.13.9"
  1894. source = "registry+https://github.com/rust-lang/crates.io-index"
  1895. checksum = "f6ad767baac13b44d4529fcf58ba2cd0995e36e7b435bc5b039de6f47e880dbf"
  1896. dependencies = [
  1897. "bytes 0.5.6",
  1898. "futures-channel",
  1899. "futures-core",
  1900. "futures-util",
  1901. "h2 0.2.7",
  1902. "http 0.2.1",
  1903. "http-body 0.3.1",
  1904. "httparse",
  1905. "httpdate",
  1906. "itoa",
  1907. "pin-project 1.0.2",
  1908. "socket2",
  1909. "tokio 0.2.23",
  1910. "tower-service",
  1911. "tracing",
  1912. "want 0.3.0",
  1913. ]
  1914. [[package]]
  1915. name = "hyper-rustls"
  1916. version = "0.21.0"
  1917. source = "registry+https://github.com/rust-lang/crates.io-index"
  1918. checksum = "37743cc83e8ee85eacfce90f2f4102030d9ff0a95244098d781e9bee4a90abb6"
  1919. dependencies = [
  1920. "bytes 0.5.6",
  1921. "ct-logs",
  1922. "futures-util",
  1923. "hyper 0.13.9",
  1924. "log",
  1925. "rustls",
  1926. "rustls-native-certs",
  1927. "tokio 0.2.23",
  1928. "tokio-rustls",
  1929. "webpki",
  1930. ]
  1931. [[package]]
  1932. name = "idna"
  1933. version = "0.1.5"
  1934. source = "registry+https://github.com/rust-lang/crates.io-index"
  1935. checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
  1936. dependencies = [
  1937. "matches",
  1938. "unicode-bidi",
  1939. "unicode-normalization",
  1940. ]
  1941. [[package]]
  1942. name = "idna"
  1943. version = "0.2.0"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  1946. dependencies = [
  1947. "matches",
  1948. "unicode-bidi",
  1949. "unicode-normalization",
  1950. ]
  1951. [[package]]
  1952. name = "impl-codec"
  1953. version = "0.4.2"
  1954. source = "registry+https://github.com/rust-lang/crates.io-index"
  1955. checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53"
  1956. dependencies = [
  1957. "parity-scale-codec",
  1958. ]
  1959. [[package]]
  1960. name = "impl-serde"
  1961. version = "0.3.1"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f"
  1964. dependencies = [
  1965. "serde",
  1966. ]
  1967. [[package]]
  1968. name = "impl-trait-for-tuples"
  1969. version = "0.1.3"
  1970. source = "registry+https://github.com/rust-lang/crates.io-index"
  1971. checksum = "7ef5550a42e3740a0e71f909d4c861056a284060af885ae7aa6242820f920d9d"
  1972. dependencies = [
  1973. "proc-macro2",
  1974. "quote",
  1975. "syn",
  1976. ]
  1977. [[package]]
  1978. name = "indexmap"
  1979. version = "1.6.0"
  1980. source = "registry+https://github.com/rust-lang/crates.io-index"
  1981. checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
  1982. dependencies = [
  1983. "autocfg 1.0.1",
  1984. "hashbrown 0.9.1",
  1985. ]
  1986. [[package]]
  1987. name = "instant"
  1988. version = "0.1.9"
  1989. source = "registry+https://github.com/rust-lang/crates.io-index"
  1990. checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
  1991. dependencies = [
  1992. "cfg-if 1.0.0",
  1993. ]
  1994. [[package]]
  1995. name = "integer-sqrt"
  1996. version = "0.1.5"
  1997. source = "registry+https://github.com/rust-lang/crates.io-index"
  1998. checksum = "276ec31bcb4a9ee45f58bec6f9ec700ae4cf4f4f8f2fa7e06cb406bd5ffdd770"
  1999. dependencies = [
  2000. "num-traits",
  2001. ]
  2002. [[package]]
  2003. name = "intervalier"
  2004. version = "0.4.0"
  2005. source = "registry+https://github.com/rust-lang/crates.io-index"
  2006. checksum = "64fa110ec7b8f493f416eed552740d10e7030ad5f63b2308f82c9608ec2df275"
  2007. dependencies = [
  2008. "futures 0.3.8",
  2009. "futures-timer 2.0.2",
  2010. ]
  2011. [[package]]
  2012. name = "iovec"
  2013. version = "0.1.4"
  2014. source = "registry+https://github.com/rust-lang/crates.io-index"
  2015. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  2016. dependencies = [
  2017. "libc",
  2018. ]
  2019. [[package]]
  2020. name = "ip_network"
  2021. version = "0.3.4"
  2022. source = "registry+https://github.com/rust-lang/crates.io-index"
  2023. checksum = "2ee15951c035f79eddbef745611ec962f63f4558f1dadf98ab723cc603487c6f"
  2024. [[package]]
  2025. name = "ipnet"
  2026. version = "2.3.0"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
  2029. [[package]]
  2030. name = "itertools"
  2031. version = "0.8.2"
  2032. source = "registry+https://github.com/rust-lang/crates.io-index"
  2033. checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
  2034. dependencies = [
  2035. "either",
  2036. ]
  2037. [[package]]
  2038. name = "itoa"
  2039. version = "0.4.6"
  2040. source = "registry+https://github.com/rust-lang/crates.io-index"
  2041. checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
  2042. [[package]]
  2043. name = "jobserver"
  2044. version = "0.1.21"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
  2047. dependencies = [
  2048. "libc",
  2049. ]
  2050. [[package]]
  2051. name = "joystream-node"
  2052. version = "4.0.0"
  2053. dependencies = [
  2054. "frame-benchmarking",
  2055. "frame-benchmarking-cli",
  2056. "frame-system",
  2057. "futures 0.3.8",
  2058. "hex",
  2059. "joystream-node-runtime",
  2060. "jsonrpc-core",
  2061. "node-inspect",
  2062. "pallet-grandpa",
  2063. "pallet-im-online",
  2064. "pallet-transaction-payment",
  2065. "pallet-transaction-payment-rpc",
  2066. "parity-scale-codec",
  2067. "sc-authority-discovery",
  2068. "sc-basic-authorship",
  2069. "sc-chain-spec",
  2070. "sc-cli",
  2071. "sc-client-api",
  2072. "sc-consensus",
  2073. "sc-consensus-babe",
  2074. "sc-consensus-babe-rpc",
  2075. "sc-consensus-epochs",
  2076. "sc-executor",
  2077. "sc-finality-grandpa",
  2078. "sc-finality-grandpa-rpc",
  2079. "sc-keystore",
  2080. "sc-network",
  2081. "sc-rpc",
  2082. "sc-rpc-api",
  2083. "sc-service",
  2084. "sc-service-test",
  2085. "sc-transaction-pool",
  2086. "serde",
  2087. "serde_json",
  2088. "sp-api",
  2089. "sp-authority-discovery",
  2090. "sp-block-builder",
  2091. "sp-blockchain",
  2092. "sp-consensus",
  2093. "sp-consensus-babe",
  2094. "sp-core",
  2095. "sp-finality-grandpa",
  2096. "sp-finality-tracker",
  2097. "sp-inherents",
  2098. "sp-keyring",
  2099. "sp-runtime",
  2100. "sp-timestamp",
  2101. "sp-transaction-pool",
  2102. "structopt",
  2103. "substrate-browser-utils",
  2104. "substrate-build-script-utils",
  2105. "substrate-frame-rpc-system",
  2106. "tempfile",
  2107. "wasm-bindgen",
  2108. "wasm-bindgen-futures",
  2109. ]
  2110. [[package]]
  2111. name = "joystream-node-runtime"
  2112. version = "8.0.0"
  2113. dependencies = [
  2114. "frame-benchmarking",
  2115. "frame-executive",
  2116. "frame-support",
  2117. "frame-system",
  2118. "frame-system-benchmarking",
  2119. "frame-system-rpc-runtime-api",
  2120. "hex-literal",
  2121. "lazy_static",
  2122. "lite-json",
  2123. "pallet-authority-discovery",
  2124. "pallet-authorship",
  2125. "pallet-babe",
  2126. "pallet-balances",
  2127. "pallet-common",
  2128. "pallet-constitution",
  2129. "pallet-content-directory",
  2130. "pallet-finality-tracker",
  2131. "pallet-forum",
  2132. "pallet-governance",
  2133. "pallet-grandpa",
  2134. "pallet-im-online",
  2135. "pallet-membership",
  2136. "pallet-memo",
  2137. "pallet-offences",
  2138. "pallet-offences-benchmarking",
  2139. "pallet-proposals-codex",
  2140. "pallet-proposals-discussion",
  2141. "pallet-proposals-engine",
  2142. "pallet-randomness-collective-flip",
  2143. "pallet-recurring-reward",
  2144. "pallet-service-discovery",
  2145. "pallet-session",
  2146. "pallet-session-benchmarking",
  2147. "pallet-staking",
  2148. "pallet-staking-reward-curve",
  2149. "pallet-storage",
  2150. "pallet-sudo",
  2151. "pallet-timestamp",
  2152. "pallet-token-mint",
  2153. "pallet-transaction-payment",
  2154. "pallet-transaction-payment-rpc-runtime-api",
  2155. "pallet-utility",
  2156. "pallet-working-group",
  2157. "parity-scale-codec",
  2158. "serde",
  2159. "sp-api",
  2160. "sp-application-crypto",
  2161. "sp-arithmetic",
  2162. "sp-authority-discovery",
  2163. "sp-block-builder",
  2164. "sp-consensus-babe",
  2165. "sp-core",
  2166. "sp-io",
  2167. "sp-offchain",
  2168. "sp-runtime",
  2169. "sp-session",
  2170. "sp-staking",
  2171. "sp-std",
  2172. "sp-transaction-pool",
  2173. "sp-version",
  2174. "staking-handler",
  2175. "strum 0.19.5",
  2176. "substrate-wasm-builder-runner",
  2177. ]
  2178. [[package]]
  2179. name = "js-sys"
  2180. version = "0.3.46"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175"
  2183. dependencies = [
  2184. "wasm-bindgen",
  2185. ]
  2186. [[package]]
  2187. name = "jsonrpc-client-transports"
  2188. version = "15.1.0"
  2189. source = "registry+https://github.com/rust-lang/crates.io-index"
  2190. checksum = "489b9c612e60c766f751ab40fcb43cbb55a1e10bb44a9b4307ed510ca598cbd7"
  2191. dependencies = [
  2192. "failure",
  2193. "futures 0.1.30",
  2194. "jsonrpc-core",
  2195. "jsonrpc-pubsub",
  2196. "log",
  2197. "serde",
  2198. "serde_json",
  2199. "url 1.7.2",
  2200. ]
  2201. [[package]]
  2202. name = "jsonrpc-core"
  2203. version = "15.1.0"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. checksum = "0745a6379e3edc893c84ec203589790774e4247420033e71a76d3ab4687991fa"
  2206. dependencies = [
  2207. "futures 0.1.30",
  2208. "log",
  2209. "serde",
  2210. "serde_derive",
  2211. "serde_json",
  2212. ]
  2213. [[package]]
  2214. name = "jsonrpc-core-client"
  2215. version = "15.1.0"
  2216. source = "registry+https://github.com/rust-lang/crates.io-index"
  2217. checksum = "6f764902d7b891344a0acb65625f32f6f7c6db006952143bd650209fbe7d94db"
  2218. dependencies = [
  2219. "jsonrpc-client-transports",
  2220. ]
  2221. [[package]]
  2222. name = "jsonrpc-derive"
  2223. version = "15.1.0"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "99a847f9ec7bb52149b2786a17c9cb260d6effc6b8eeb8c16b343a487a7563a3"
  2226. dependencies = [
  2227. "proc-macro-crate",
  2228. "proc-macro2",
  2229. "quote",
  2230. "syn",
  2231. ]
  2232. [[package]]
  2233. name = "jsonrpc-http-server"
  2234. version = "15.1.0"
  2235. source = "registry+https://github.com/rust-lang/crates.io-index"
  2236. checksum = "4fb5c4513b7b542f42da107942b7b759f27120b5cc894729f88254b28dff44b7"
  2237. dependencies = [
  2238. "hyper 0.12.35",
  2239. "jsonrpc-core",
  2240. "jsonrpc-server-utils",
  2241. "log",
  2242. "net2",
  2243. "parking_lot 0.10.2",
  2244. "unicase",
  2245. ]
  2246. [[package]]
  2247. name = "jsonrpc-ipc-server"
  2248. version = "15.1.0"
  2249. source = "registry+https://github.com/rust-lang/crates.io-index"
  2250. checksum = "cf50e53e4eea8f421a7316c5f63e395f7bc7c4e786a6dc54d76fab6ff7aa7ce7"
  2251. dependencies = [
  2252. "jsonrpc-core",
  2253. "jsonrpc-server-utils",
  2254. "log",
  2255. "parity-tokio-ipc",
  2256. "parking_lot 0.10.2",
  2257. "tokio-service",
  2258. ]
  2259. [[package]]
  2260. name = "jsonrpc-pubsub"
  2261. version = "15.1.0"
  2262. source = "registry+https://github.com/rust-lang/crates.io-index"
  2263. checksum = "639558e0604013be9787ae52f798506ae42bf4220fe587bdc5625871cc8b9c77"
  2264. dependencies = [
  2265. "jsonrpc-core",
  2266. "log",
  2267. "parking_lot 0.10.2",
  2268. "rand 0.7.3",
  2269. "serde",
  2270. ]
  2271. [[package]]
  2272. name = "jsonrpc-server-utils"
  2273. version = "15.1.0"
  2274. source = "registry+https://github.com/rust-lang/crates.io-index"
  2275. checksum = "72f1f3990650c033bd8f6bd46deac76d990f9bbfb5f8dc8c4767bf0a00392176"
  2276. dependencies = [
  2277. "bytes 0.4.12",
  2278. "globset",
  2279. "jsonrpc-core",
  2280. "lazy_static",
  2281. "log",
  2282. "tokio 0.1.22",
  2283. "tokio-codec",
  2284. "unicase",
  2285. ]
  2286. [[package]]
  2287. name = "jsonrpc-ws-server"
  2288. version = "15.1.0"
  2289. source = "registry+https://github.com/rust-lang/crates.io-index"
  2290. checksum = "6596fe75209b73a2a75ebe1dce4e60e03b88a2b25e8807b667597f6315150d22"
  2291. dependencies = [
  2292. "jsonrpc-core",
  2293. "jsonrpc-server-utils",
  2294. "log",
  2295. "parity-ws",
  2296. "parking_lot 0.10.2",
  2297. "slab",
  2298. ]
  2299. [[package]]
  2300. name = "keccak"
  2301. version = "0.1.0"
  2302. source = "registry+https://github.com/rust-lang/crates.io-index"
  2303. checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
  2304. [[package]]
  2305. name = "kernel32-sys"
  2306. version = "0.2.2"
  2307. source = "registry+https://github.com/rust-lang/crates.io-index"
  2308. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  2309. dependencies = [
  2310. "winapi 0.2.8",
  2311. "winapi-build",
  2312. ]
  2313. [[package]]
  2314. name = "kv-log-macro"
  2315. version = "1.0.7"
  2316. source = "registry+https://github.com/rust-lang/crates.io-index"
  2317. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2318. dependencies = [
  2319. "log",
  2320. ]
  2321. [[package]]
  2322. name = "kvdb"
  2323. version = "0.7.0"
  2324. source = "registry+https://github.com/rust-lang/crates.io-index"
  2325. checksum = "0315ef2f688e33844400b31f11c263f2b3dc21d8b9355c6891c5f185fae43f9a"
  2326. dependencies = [
  2327. "parity-util-mem",
  2328. "smallvec 1.5.0",
  2329. ]
  2330. [[package]]
  2331. name = "kvdb-memorydb"
  2332. version = "0.7.0"
  2333. source = "registry+https://github.com/rust-lang/crates.io-index"
  2334. checksum = "73de822b260a3bdfb889dbbb65bb2d473eee2253973d6fa4a5d149a2a4a7c66e"
  2335. dependencies = [
  2336. "kvdb",
  2337. "parity-util-mem",
  2338. "parking_lot 0.10.2",
  2339. ]
  2340. [[package]]
  2341. name = "kvdb-rocksdb"
  2342. version = "0.9.1"
  2343. source = "registry+https://github.com/rust-lang/crates.io-index"
  2344. checksum = "44947dd392f09475af614d740fe0320b66d01cb5b977f664bbbb5e45a70ea4c1"
  2345. dependencies = [
  2346. "fs-swap",
  2347. "kvdb",
  2348. "log",
  2349. "num_cpus",
  2350. "owning_ref",
  2351. "parity-util-mem",
  2352. "parking_lot 0.10.2",
  2353. "regex",
  2354. "rocksdb",
  2355. "smallvec 1.5.0",
  2356. ]
  2357. [[package]]
  2358. name = "kvdb-web"
  2359. version = "0.7.0"
  2360. source = "registry+https://github.com/rust-lang/crates.io-index"
  2361. checksum = "2701a1369d6ea4f1b9f606db46e5e2a4a8e47f22530a07823d653f85ab1f6c34"
  2362. dependencies = [
  2363. "futures 0.3.8",
  2364. "js-sys",
  2365. "kvdb",
  2366. "kvdb-memorydb",
  2367. "log",
  2368. "parity-util-mem",
  2369. "send_wrapper 0.3.0",
  2370. "wasm-bindgen",
  2371. "web-sys",
  2372. ]
  2373. [[package]]
  2374. name = "lazy_static"
  2375. version = "1.4.0"
  2376. source = "registry+https://github.com/rust-lang/crates.io-index"
  2377. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2378. dependencies = [
  2379. "spin",
  2380. ]
  2381. [[package]]
  2382. name = "lazycell"
  2383. version = "1.3.0"
  2384. source = "registry+https://github.com/rust-lang/crates.io-index"
  2385. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2386. [[package]]
  2387. name = "libc"
  2388. version = "0.2.80"
  2389. source = "registry+https://github.com/rust-lang/crates.io-index"
  2390. checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
  2391. [[package]]
  2392. name = "libloading"
  2393. version = "0.5.2"
  2394. source = "registry+https://github.com/rust-lang/crates.io-index"
  2395. checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
  2396. dependencies = [
  2397. "cc",
  2398. "winapi 0.3.9",
  2399. ]
  2400. [[package]]
  2401. name = "libm"
  2402. version = "0.2.1"
  2403. source = "registry+https://github.com/rust-lang/crates.io-index"
  2404. checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
  2405. [[package]]
  2406. name = "libp2p"
  2407. version = "0.28.1"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "571f5a4604c1a40d75651da141dfde29ad15329f537a779528803297d2220274"
  2410. dependencies = [
  2411. "atomic",
  2412. "bytes 0.5.6",
  2413. "futures 0.3.8",
  2414. "lazy_static",
  2415. "libp2p-core",
  2416. "libp2p-core-derive",
  2417. "libp2p-deflate",
  2418. "libp2p-dns",
  2419. "libp2p-floodsub",
  2420. "libp2p-gossipsub",
  2421. "libp2p-identify",
  2422. "libp2p-kad",
  2423. "libp2p-mdns",
  2424. "libp2p-mplex",
  2425. "libp2p-noise",
  2426. "libp2p-ping",
  2427. "libp2p-plaintext",
  2428. "libp2p-pnet",
  2429. "libp2p-request-response",
  2430. "libp2p-swarm",
  2431. "libp2p-tcp",
  2432. "libp2p-uds",
  2433. "libp2p-wasm-ext",
  2434. "libp2p-websocket",
  2435. "libp2p-yamux",
  2436. "multihash",
  2437. "parity-multiaddr",
  2438. "parking_lot 0.10.2",
  2439. "pin-project 0.4.27",
  2440. "smallvec 1.5.0",
  2441. "wasm-timer",
  2442. ]
  2443. [[package]]
  2444. name = "libp2p-core"
  2445. version = "0.22.1"
  2446. source = "registry+https://github.com/rust-lang/crates.io-index"
  2447. checksum = "52f13ba8c7df0768af2eb391696d562c7de88cc3a35122531aaa6a7d77754d25"
  2448. dependencies = [
  2449. "asn1_der",
  2450. "bs58 0.3.1",
  2451. "ed25519-dalek",
  2452. "either",
  2453. "fnv",
  2454. "futures 0.3.8",
  2455. "futures-timer 3.0.2",
  2456. "lazy_static",
  2457. "libsecp256k1",
  2458. "log",
  2459. "multihash",
  2460. "multistream-select",
  2461. "parity-multiaddr",
  2462. "parking_lot 0.10.2",
  2463. "pin-project 0.4.27",
  2464. "prost",
  2465. "prost-build",
  2466. "rand 0.7.3",
  2467. "ring",
  2468. "rw-stream-sink",
  2469. "sha2 0.8.2",
  2470. "smallvec 1.5.0",
  2471. "thiserror",
  2472. "unsigned-varint 0.4.0",
  2473. "void",
  2474. "zeroize",
  2475. ]
  2476. [[package]]
  2477. name = "libp2p-core-derive"
  2478. version = "0.20.2"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "f753d9324cd3ec14bf04b8a8cd0d269c87f294153d6bf2a84497a63a5ad22213"
  2481. dependencies = [
  2482. "quote",
  2483. "syn",
  2484. ]
  2485. [[package]]
  2486. name = "libp2p-deflate"
  2487. version = "0.22.0"
  2488. source = "registry+https://github.com/rust-lang/crates.io-index"
  2489. checksum = "74029ae187f35f4b8ddf26b9779a68b340045d708528a103917cdca49a296db5"
  2490. dependencies = [
  2491. "flate2",
  2492. "futures 0.3.8",
  2493. "libp2p-core",
  2494. ]
  2495. [[package]]
  2496. name = "libp2p-dns"
  2497. version = "0.22.0"
  2498. source = "registry+https://github.com/rust-lang/crates.io-index"
  2499. checksum = "7cf319822e08dd65c8e060d2354e9f952895bbc433f5706c75ed010c152aee5e"
  2500. dependencies = [
  2501. "futures 0.3.8",
  2502. "libp2p-core",
  2503. "log",
  2504. ]
  2505. [[package]]
  2506. name = "libp2p-floodsub"
  2507. version = "0.22.0"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "d8a9acb43a3e4a4e413e0c4abe0fa49308df7c6335c88534757b647199cb8a51"
  2510. dependencies = [
  2511. "cuckoofilter",
  2512. "fnv",
  2513. "futures 0.3.8",
  2514. "libp2p-core",
  2515. "libp2p-swarm",
  2516. "prost",
  2517. "prost-build",
  2518. "rand 0.7.3",
  2519. "smallvec 1.5.0",
  2520. ]
  2521. [[package]]
  2522. name = "libp2p-gossipsub"
  2523. version = "0.22.0"
  2524. source = "registry+https://github.com/rust-lang/crates.io-index"
  2525. checksum = "ab20fcb60edebe3173bbb708c6ac3444afdf1e3152dc2866b10c4f5497f17467"
  2526. dependencies = [
  2527. "base64 0.11.0",
  2528. "byteorder 1.3.4",
  2529. "bytes 0.5.6",
  2530. "fnv",
  2531. "futures 0.3.8",
  2532. "futures_codec",
  2533. "hex_fmt",
  2534. "libp2p-core",
  2535. "libp2p-swarm",
  2536. "log",
  2537. "lru_time_cache",
  2538. "prost",
  2539. "prost-build",
  2540. "rand 0.7.3",
  2541. "sha2 0.8.2",
  2542. "smallvec 1.5.0",
  2543. "unsigned-varint 0.4.0",
  2544. "wasm-timer",
  2545. ]
  2546. [[package]]
  2547. name = "libp2p-identify"
  2548. version = "0.22.0"
  2549. source = "registry+https://github.com/rust-lang/crates.io-index"
  2550. checksum = "56396ee63aa9164eacf40c2c5d2bda8c4133c2f57e1b0425d51d3a4e362583b1"
  2551. dependencies = [
  2552. "futures 0.3.8",
  2553. "libp2p-core",
  2554. "libp2p-swarm",
  2555. "log",
  2556. "prost",
  2557. "prost-build",
  2558. "smallvec 1.5.0",
  2559. "wasm-timer",
  2560. ]
  2561. [[package]]
  2562. name = "libp2p-kad"
  2563. version = "0.23.0"
  2564. source = "registry+https://github.com/rust-lang/crates.io-index"
  2565. checksum = "cc7fa9047f8b8f544278a35c2d9d45d3b2c1785f2d86d4e1629d6edf97be3955"
  2566. dependencies = [
  2567. "arrayvec 0.5.2",
  2568. "bytes 0.5.6",
  2569. "either",
  2570. "fnv",
  2571. "futures 0.3.8",
  2572. "futures_codec",
  2573. "libp2p-core",
  2574. "libp2p-swarm",
  2575. "log",
  2576. "multihash",
  2577. "prost",
  2578. "prost-build",
  2579. "rand 0.7.3",
  2580. "sha2 0.8.2",
  2581. "smallvec 1.5.0",
  2582. "uint",
  2583. "unsigned-varint 0.4.0",
  2584. "void",
  2585. "wasm-timer",
  2586. ]
  2587. [[package]]
  2588. name = "libp2p-mdns"
  2589. version = "0.22.0"
  2590. source = "registry+https://github.com/rust-lang/crates.io-index"
  2591. checksum = "3173b5a6b2f690c29ae07798d85b9441a131ac76ddae9015ef22905b623d0c69"
  2592. dependencies = [
  2593. "async-std",
  2594. "data-encoding",
  2595. "dns-parser",
  2596. "either",
  2597. "futures 0.3.8",
  2598. "lazy_static",
  2599. "libp2p-core",
  2600. "libp2p-swarm",
  2601. "log",
  2602. "net2",
  2603. "rand 0.7.3",
  2604. "smallvec 1.5.0",
  2605. "void",
  2606. "wasm-timer",
  2607. ]
  2608. [[package]]
  2609. name = "libp2p-mplex"
  2610. version = "0.22.0"
  2611. source = "registry+https://github.com/rust-lang/crates.io-index"
  2612. checksum = "8a73a799cc8410b36e40b8f4c4b6babbcb9efd3727111bf517876e4acfa612d3"
  2613. dependencies = [
  2614. "bytes 0.5.6",
  2615. "fnv",
  2616. "futures 0.3.8",
  2617. "futures_codec",
  2618. "libp2p-core",
  2619. "log",
  2620. "parking_lot 0.10.2",
  2621. "unsigned-varint 0.4.0",
  2622. ]
  2623. [[package]]
  2624. name = "libp2p-noise"
  2625. version = "0.24.0"
  2626. source = "registry+https://github.com/rust-lang/crates.io-index"
  2627. checksum = "6ef6c490042f549fb1025f2892dfe6083d97a77558f450c1feebe748ca9eb15a"
  2628. dependencies = [
  2629. "bytes 0.5.6",
  2630. "curve25519-dalek 2.1.0",
  2631. "futures 0.3.8",
  2632. "lazy_static",
  2633. "libp2p-core",
  2634. "log",
  2635. "prost",
  2636. "prost-build",
  2637. "rand 0.7.3",
  2638. "sha2 0.8.2",
  2639. "snow",
  2640. "static_assertions",
  2641. "x25519-dalek 0.6.0",
  2642. "zeroize",
  2643. ]
  2644. [[package]]
  2645. name = "libp2p-ping"
  2646. version = "0.22.0"
  2647. source = "registry+https://github.com/rust-lang/crates.io-index"
  2648. checksum = "ad063c21dfcea4518ac9e8bd4119d33a5b26c41e674f602f41f05617a368a5c8"
  2649. dependencies = [
  2650. "futures 0.3.8",
  2651. "libp2p-core",
  2652. "libp2p-swarm",
  2653. "log",
  2654. "rand 0.7.3",
  2655. "void",
  2656. "wasm-timer",
  2657. ]
  2658. [[package]]
  2659. name = "libp2p-plaintext"
  2660. version = "0.22.0"
  2661. source = "registry+https://github.com/rust-lang/crates.io-index"
  2662. checksum = "903a12e99c72dbebefea258de887982adeacc7025baa1ceb10b7fa9928f54791"
  2663. dependencies = [
  2664. "bytes 0.5.6",
  2665. "futures 0.3.8",
  2666. "futures_codec",
  2667. "libp2p-core",
  2668. "log",
  2669. "prost",
  2670. "prost-build",
  2671. "rw-stream-sink",
  2672. "unsigned-varint 0.4.0",
  2673. "void",
  2674. ]
  2675. [[package]]
  2676. name = "libp2p-pnet"
  2677. version = "0.19.2"
  2678. source = "registry+https://github.com/rust-lang/crates.io-index"
  2679. checksum = "96b3c2d5d26a9500e959a0e19743897239a6c4be78dadf99b70414301a70c006"
  2680. dependencies = [
  2681. "futures 0.3.8",
  2682. "log",
  2683. "pin-project 0.4.27",
  2684. "rand 0.7.3",
  2685. "salsa20",
  2686. "sha3",
  2687. ]
  2688. [[package]]
  2689. name = "libp2p-request-response"
  2690. version = "0.3.0"
  2691. source = "registry+https://github.com/rust-lang/crates.io-index"
  2692. checksum = "9c0c9e8a4cd69d97e9646c54313d007512f411aba8c5226cfcda16df6a6e84a3"
  2693. dependencies = [
  2694. "async-trait",
  2695. "bytes 0.5.6",
  2696. "futures 0.3.8",
  2697. "libp2p-core",
  2698. "libp2p-swarm",
  2699. "log",
  2700. "lru 0.6.1",
  2701. "minicbor",
  2702. "rand 0.7.3",
  2703. "smallvec 1.5.0",
  2704. "unsigned-varint 0.5.1",
  2705. "wasm-timer",
  2706. ]
  2707. [[package]]
  2708. name = "libp2p-swarm"
  2709. version = "0.22.0"
  2710. source = "registry+https://github.com/rust-lang/crates.io-index"
  2711. checksum = "7193e444210132237b81b755ec7fe53f1c4bd2f53cf719729b94c0c72eb6eaa1"
  2712. dependencies = [
  2713. "either",
  2714. "futures 0.3.8",
  2715. "libp2p-core",
  2716. "log",
  2717. "rand 0.7.3",
  2718. "smallvec 1.5.0",
  2719. "void",
  2720. "wasm-timer",
  2721. ]
  2722. [[package]]
  2723. name = "libp2p-tcp"
  2724. version = "0.22.0"
  2725. source = "registry+https://github.com/rust-lang/crates.io-index"
  2726. checksum = "44f42ec130d7a37a7e47bf4398026b7ad9185c08ed26972e2720f8b94112796f"
  2727. dependencies = [
  2728. "async-std",
  2729. "futures 0.3.8",
  2730. "futures-timer 3.0.2",
  2731. "get_if_addrs",
  2732. "ipnet",
  2733. "libp2p-core",
  2734. "log",
  2735. "socket2",
  2736. ]
  2737. [[package]]
  2738. name = "libp2p-uds"
  2739. version = "0.22.0"
  2740. source = "registry+https://github.com/rust-lang/crates.io-index"
  2741. checksum = "dea7acb0a034f70d7db94c300eba3f65c0f6298820105624088a9609c9974d77"
  2742. dependencies = [
  2743. "async-std",
  2744. "futures 0.3.8",
  2745. "libp2p-core",
  2746. "log",
  2747. ]
  2748. [[package]]
  2749. name = "libp2p-wasm-ext"
  2750. version = "0.22.0"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "34c1faac6f92c21fbe155417957863ea822fba9e9fd5eb24c0912336a100e63f"
  2753. dependencies = [
  2754. "futures 0.3.8",
  2755. "js-sys",
  2756. "libp2p-core",
  2757. "parity-send-wrapper",
  2758. "wasm-bindgen",
  2759. "wasm-bindgen-futures",
  2760. ]
  2761. [[package]]
  2762. name = "libp2p-websocket"
  2763. version = "0.23.0"
  2764. source = "registry+https://github.com/rust-lang/crates.io-index"
  2765. checksum = "d650534ebd99f48f6fa292ed5db10d30df2444943afde4407ceeddab8e513fca"
  2766. dependencies = [
  2767. "async-tls",
  2768. "either",
  2769. "futures 0.3.8",
  2770. "libp2p-core",
  2771. "log",
  2772. "quicksink",
  2773. "rustls",
  2774. "rw-stream-sink",
  2775. "soketto",
  2776. "url 2.2.0",
  2777. "webpki",
  2778. "webpki-roots 0.18.0",
  2779. ]
  2780. [[package]]
  2781. name = "libp2p-yamux"
  2782. version = "0.25.0"
  2783. source = "registry+https://github.com/rust-lang/crates.io-index"
  2784. checksum = "781d9b9f043dcdabc40640807125368596b849fd4d96cdca2dcf052fdf6f33fd"
  2785. dependencies = [
  2786. "futures 0.3.8",
  2787. "libp2p-core",
  2788. "parking_lot 0.11.1",
  2789. "thiserror",
  2790. "yamux",
  2791. ]
  2792. [[package]]
  2793. name = "librocksdb-sys"
  2794. version = "6.11.4"
  2795. source = "registry+https://github.com/rust-lang/crates.io-index"
  2796. checksum = "eb5b56f651c204634b936be2f92dbb42c36867e00ff7fe2405591f3b9fa66f09"
  2797. dependencies = [
  2798. "bindgen",
  2799. "cc",
  2800. "glob",
  2801. "libc",
  2802. ]
  2803. [[package]]
  2804. name = "libsecp256k1"
  2805. version = "0.3.5"
  2806. source = "registry+https://github.com/rust-lang/crates.io-index"
  2807. checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"
  2808. dependencies = [
  2809. "arrayref",
  2810. "crunchy",
  2811. "digest 0.8.1",
  2812. "hmac-drbg",
  2813. "rand 0.7.3",
  2814. "sha2 0.8.2",
  2815. "subtle 2.3.0",
  2816. "typenum",
  2817. ]
  2818. [[package]]
  2819. name = "libz-sys"
  2820. version = "1.1.2"
  2821. source = "registry+https://github.com/rust-lang/crates.io-index"
  2822. checksum = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
  2823. dependencies = [
  2824. "cc",
  2825. "pkg-config",
  2826. "vcpkg",
  2827. ]
  2828. [[package]]
  2829. name = "linked-hash-map"
  2830. version = "0.5.3"
  2831. source = "registry+https://github.com/rust-lang/crates.io-index"
  2832. checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
  2833. [[package]]
  2834. name = "linked_hash_set"
  2835. version = "0.1.4"
  2836. source = "registry+https://github.com/rust-lang/crates.io-index"
  2837. checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588"
  2838. dependencies = [
  2839. "linked-hash-map",
  2840. ]
  2841. [[package]]
  2842. name = "linregress"
  2843. version = "0.1.7"
  2844. source = "registry+https://github.com/rust-lang/crates.io-index"
  2845. checksum = "9290cf6f928576eeb9c096c6fad9d8d452a0a1a70a2bbffa6e36064eedc0aac9"
  2846. dependencies = [
  2847. "failure",
  2848. "nalgebra",
  2849. "statrs",
  2850. ]
  2851. [[package]]
  2852. name = "lite-json"
  2853. version = "0.1.3"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "0460d985423a026b4d9b828a7c6eed1bcf606f476322f3f9b507529686a61715"
  2856. dependencies = [
  2857. "lite-parser",
  2858. ]
  2859. [[package]]
  2860. name = "lite-parser"
  2861. version = "0.1.2"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "0c50092e40e0ccd1bf2015a10333fde0502ff95b832b0895dc1ca0d7ac6c52f6"
  2864. dependencies = [
  2865. "paste",
  2866. ]
  2867. [[package]]
  2868. name = "lock_api"
  2869. version = "0.1.5"
  2870. source = "registry+https://github.com/rust-lang/crates.io-index"
  2871. checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
  2872. dependencies = [
  2873. "scopeguard 0.3.3",
  2874. ]
  2875. [[package]]
  2876. name = "lock_api"
  2877. version = "0.3.4"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
  2880. dependencies = [
  2881. "scopeguard 1.1.0",
  2882. ]
  2883. [[package]]
  2884. name = "lock_api"
  2885. version = "0.4.2"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
  2888. dependencies = [
  2889. "scopeguard 1.1.0",
  2890. ]
  2891. [[package]]
  2892. name = "log"
  2893. version = "0.4.11"
  2894. source = "registry+https://github.com/rust-lang/crates.io-index"
  2895. checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  2896. dependencies = [
  2897. "cfg-if 0.1.10",
  2898. ]
  2899. [[package]]
  2900. name = "loom"
  2901. version = "0.3.6"
  2902. source = "registry+https://github.com/rust-lang/crates.io-index"
  2903. checksum = "a0e8460f2f2121162705187214720353c517b97bdfb3494c0b1e33d83ebe4bed"
  2904. dependencies = [
  2905. "cfg-if 0.1.10",
  2906. "generator",
  2907. "scoped-tls",
  2908. "serde",
  2909. "serde_json",
  2910. ]
  2911. [[package]]
  2912. name = "lru"
  2913. version = "0.4.3"
  2914. source = "registry+https://github.com/rust-lang/crates.io-index"
  2915. checksum = "0609345ddee5badacf857d4f547e0e5a2e987db77085c24cd887f73573a04237"
  2916. dependencies = [
  2917. "hashbrown 0.6.3",
  2918. ]
  2919. [[package]]
  2920. name = "lru"
  2921. version = "0.6.1"
  2922. source = "registry+https://github.com/rust-lang/crates.io-index"
  2923. checksum = "be716eb6878ca2263eb5d00a781aa13264a794f519fe6af4fbb2668b2d5441c0"
  2924. dependencies = [
  2925. "hashbrown 0.9.1",
  2926. ]
  2927. [[package]]
  2928. name = "lru_time_cache"
  2929. version = "0.10.0"
  2930. source = "registry+https://github.com/rust-lang/crates.io-index"
  2931. checksum = "adb241df5c4caeb888755363fc95f8a896618dc0d435e9e775f7930cb099beab"
  2932. [[package]]
  2933. name = "matchers"
  2934. version = "0.0.1"
  2935. source = "registry+https://github.com/rust-lang/crates.io-index"
  2936. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2937. dependencies = [
  2938. "regex-automata",
  2939. ]
  2940. [[package]]
  2941. name = "matches"
  2942. version = "0.1.8"
  2943. source = "registry+https://github.com/rust-lang/crates.io-index"
  2944. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  2945. [[package]]
  2946. name = "matrixmultiply"
  2947. version = "0.2.3"
  2948. source = "registry+https://github.com/rust-lang/crates.io-index"
  2949. checksum = "d4f7ec66360130972f34830bfad9ef05c6610a43938a467bcc9ab9369ab3478f"
  2950. dependencies = [
  2951. "rawpointer",
  2952. ]
  2953. [[package]]
  2954. name = "maybe-uninit"
  2955. version = "2.0.0"
  2956. source = "registry+https://github.com/rust-lang/crates.io-index"
  2957. checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
  2958. [[package]]
  2959. name = "memchr"
  2960. version = "2.3.4"
  2961. source = "registry+https://github.com/rust-lang/crates.io-index"
  2962. checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
  2963. [[package]]
  2964. name = "memmap"
  2965. version = "0.7.0"
  2966. source = "registry+https://github.com/rust-lang/crates.io-index"
  2967. checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
  2968. dependencies = [
  2969. "libc",
  2970. "winapi 0.3.9",
  2971. ]
  2972. [[package]]
  2973. name = "memoffset"
  2974. version = "0.5.6"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
  2977. dependencies = [
  2978. "autocfg 1.0.1",
  2979. ]
  2980. [[package]]
  2981. name = "memoffset"
  2982. version = "0.6.1"
  2983. source = "registry+https://github.com/rust-lang/crates.io-index"
  2984. checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
  2985. dependencies = [
  2986. "autocfg 1.0.1",
  2987. ]
  2988. [[package]]
  2989. name = "memory-db"
  2990. version = "0.24.1"
  2991. source = "registry+https://github.com/rust-lang/crates.io-index"
  2992. checksum = "36f36ddb0b2cdc25d38babba472108798e3477f02be5165f038c5e393e50c57a"
  2993. dependencies = [
  2994. "hash-db",
  2995. "hashbrown 0.8.2",
  2996. "parity-util-mem",
  2997. ]
  2998. [[package]]
  2999. name = "memory_units"
  3000. version = "0.3.0"
  3001. source = "registry+https://github.com/rust-lang/crates.io-index"
  3002. checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"
  3003. [[package]]
  3004. name = "merlin"
  3005. version = "2.0.0"
  3006. source = "registry+https://github.com/rust-lang/crates.io-index"
  3007. checksum = "c6feca46f4fa3443a01769d768727f10c10a20fdb65e52dc16a81f0c8269bb78"
  3008. dependencies = [
  3009. "byteorder 1.3.4",
  3010. "keccak",
  3011. "rand_core 0.5.1",
  3012. "zeroize",
  3013. ]
  3014. [[package]]
  3015. name = "minicbor"
  3016. version = "0.5.1"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "2fc03ad6f8f548db7194a5ff5a6f96342ecae4e3ef67d2bf18bacc0e245cd041"
  3019. dependencies = [
  3020. "minicbor-derive",
  3021. ]
  3022. [[package]]
  3023. name = "minicbor-derive"
  3024. version = "0.4.1"
  3025. source = "registry+https://github.com/rust-lang/crates.io-index"
  3026. checksum = "c214bf3d90099b52f3e4b328ae0fe34837fd0fab683ad1e10fceb4629106df48"
  3027. dependencies = [
  3028. "proc-macro2",
  3029. "quote",
  3030. "syn",
  3031. ]
  3032. [[package]]
  3033. name = "miniz_oxide"
  3034. version = "0.4.3"
  3035. source = "registry+https://github.com/rust-lang/crates.io-index"
  3036. checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
  3037. dependencies = [
  3038. "adler",
  3039. "autocfg 1.0.1",
  3040. ]
  3041. [[package]]
  3042. name = "mio"
  3043. version = "0.6.22"
  3044. source = "registry+https://github.com/rust-lang/crates.io-index"
  3045. checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
  3046. dependencies = [
  3047. "cfg-if 0.1.10",
  3048. "fuchsia-zircon",
  3049. "fuchsia-zircon-sys",
  3050. "iovec",
  3051. "kernel32-sys",
  3052. "libc",
  3053. "log",
  3054. "miow 0.2.2",
  3055. "net2",
  3056. "slab",
  3057. "winapi 0.2.8",
  3058. ]
  3059. [[package]]
  3060. name = "mio-extras"
  3061. version = "2.0.6"
  3062. source = "registry+https://github.com/rust-lang/crates.io-index"
  3063. checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
  3064. dependencies = [
  3065. "lazycell",
  3066. "log",
  3067. "mio",
  3068. "slab",
  3069. ]
  3070. [[package]]
  3071. name = "mio-named-pipes"
  3072. version = "0.1.7"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
  3075. dependencies = [
  3076. "log",
  3077. "mio",
  3078. "miow 0.3.6",
  3079. "winapi 0.3.9",
  3080. ]
  3081. [[package]]
  3082. name = "mio-uds"
  3083. version = "0.6.8"
  3084. source = "registry+https://github.com/rust-lang/crates.io-index"
  3085. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  3086. dependencies = [
  3087. "iovec",
  3088. "libc",
  3089. "mio",
  3090. ]
  3091. [[package]]
  3092. name = "miow"
  3093. version = "0.2.2"
  3094. source = "registry+https://github.com/rust-lang/crates.io-index"
  3095. checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
  3096. dependencies = [
  3097. "kernel32-sys",
  3098. "net2",
  3099. "winapi 0.2.8",
  3100. "ws2_32-sys",
  3101. ]
  3102. [[package]]
  3103. name = "miow"
  3104. version = "0.3.6"
  3105. source = "registry+https://github.com/rust-lang/crates.io-index"
  3106. checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
  3107. dependencies = [
  3108. "socket2",
  3109. "winapi 0.3.9",
  3110. ]
  3111. [[package]]
  3112. name = "multihash"
  3113. version = "0.11.4"
  3114. source = "registry+https://github.com/rust-lang/crates.io-index"
  3115. checksum = "567122ab6492f49b59def14ecc36e13e64dca4188196dd0cd41f9f3f979f3df6"
  3116. dependencies = [
  3117. "blake2b_simd",
  3118. "blake2s_simd",
  3119. "digest 0.9.0",
  3120. "sha-1 0.9.2",
  3121. "sha2 0.9.2",
  3122. "sha3",
  3123. "unsigned-varint 0.5.1",
  3124. ]
  3125. [[package]]
  3126. name = "multimap"
  3127. version = "0.8.2"
  3128. source = "registry+https://github.com/rust-lang/crates.io-index"
  3129. checksum = "1255076139a83bb467426e7f8d0134968a8118844faa755985e077cf31850333"
  3130. [[package]]
  3131. name = "multistream-select"
  3132. version = "0.8.5"
  3133. source = "registry+https://github.com/rust-lang/crates.io-index"
  3134. checksum = "93faf2e41f9ee62fb01680ed48f3cc26652352327aa2e59869070358f6b7dd75"
  3135. dependencies = [
  3136. "bytes 0.5.6",
  3137. "futures 0.3.8",
  3138. "log",
  3139. "pin-project 1.0.2",
  3140. "smallvec 1.5.0",
  3141. "unsigned-varint 0.5.1",
  3142. ]
  3143. [[package]]
  3144. name = "nalgebra"
  3145. version = "0.18.1"
  3146. source = "registry+https://github.com/rust-lang/crates.io-index"
  3147. checksum = "aaa9fddbc34c8c35dd2108515587b8ce0cab396f17977b8c738568e4edb521a2"
  3148. dependencies = [
  3149. "alga",
  3150. "approx",
  3151. "generic-array 0.12.3",
  3152. "matrixmultiply",
  3153. "num-complex",
  3154. "num-rational",
  3155. "num-traits",
  3156. "rand 0.6.5",
  3157. "typenum",
  3158. ]
  3159. [[package]]
  3160. name = "names"
  3161. version = "0.11.0"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da"
  3164. dependencies = [
  3165. "rand 0.3.23",
  3166. ]
  3167. [[package]]
  3168. name = "nb-connect"
  3169. version = "1.0.2"
  3170. source = "registry+https://github.com/rust-lang/crates.io-index"
  3171. checksum = "8123a81538e457d44b933a02faf885d3fe8408806b23fa700e8f01c6c3a98998"
  3172. dependencies = [
  3173. "libc",
  3174. "winapi 0.3.9",
  3175. ]
  3176. [[package]]
  3177. name = "net2"
  3178. version = "0.2.36"
  3179. source = "registry+https://github.com/rust-lang/crates.io-index"
  3180. checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
  3181. dependencies = [
  3182. "cfg-if 0.1.10",
  3183. "libc",
  3184. "winapi 0.3.9",
  3185. ]
  3186. [[package]]
  3187. name = "nix"
  3188. version = "0.17.0"
  3189. source = "registry+https://github.com/rust-lang/crates.io-index"
  3190. checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
  3191. dependencies = [
  3192. "bitflags",
  3193. "cc",
  3194. "cfg-if 0.1.10",
  3195. "libc",
  3196. "void",
  3197. ]
  3198. [[package]]
  3199. name = "node-inspect"
  3200. version = "0.8.0"
  3201. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3202. dependencies = [
  3203. "derive_more",
  3204. "log",
  3205. "parity-scale-codec",
  3206. "sc-cli",
  3207. "sc-client-api",
  3208. "sc-service",
  3209. "sp-blockchain",
  3210. "sp-core",
  3211. "sp-runtime",
  3212. "structopt",
  3213. ]
  3214. [[package]]
  3215. name = "nodrop"
  3216. version = "0.1.14"
  3217. source = "registry+https://github.com/rust-lang/crates.io-index"
  3218. checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
  3219. [[package]]
  3220. name = "nohash-hasher"
  3221. version = "0.2.0"
  3222. source = "registry+https://github.com/rust-lang/crates.io-index"
  3223. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  3224. [[package]]
  3225. name = "nom"
  3226. version = "5.1.2"
  3227. source = "registry+https://github.com/rust-lang/crates.io-index"
  3228. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  3229. dependencies = [
  3230. "memchr",
  3231. "version_check",
  3232. ]
  3233. [[package]]
  3234. name = "num-bigint"
  3235. version = "0.2.6"
  3236. source = "registry+https://github.com/rust-lang/crates.io-index"
  3237. checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
  3238. dependencies = [
  3239. "autocfg 1.0.1",
  3240. "num-integer",
  3241. "num-traits",
  3242. ]
  3243. [[package]]
  3244. name = "num-complex"
  3245. version = "0.2.4"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
  3248. dependencies = [
  3249. "autocfg 1.0.1",
  3250. "num-traits",
  3251. ]
  3252. [[package]]
  3253. name = "num-integer"
  3254. version = "0.1.44"
  3255. source = "registry+https://github.com/rust-lang/crates.io-index"
  3256. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  3257. dependencies = [
  3258. "autocfg 1.0.1",
  3259. "num-traits",
  3260. ]
  3261. [[package]]
  3262. name = "num-rational"
  3263. version = "0.2.4"
  3264. source = "registry+https://github.com/rust-lang/crates.io-index"
  3265. checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
  3266. dependencies = [
  3267. "autocfg 1.0.1",
  3268. "num-bigint",
  3269. "num-integer",
  3270. "num-traits",
  3271. ]
  3272. [[package]]
  3273. name = "num-traits"
  3274. version = "0.2.14"
  3275. source = "registry+https://github.com/rust-lang/crates.io-index"
  3276. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  3277. dependencies = [
  3278. "autocfg 1.0.1",
  3279. "libm",
  3280. ]
  3281. [[package]]
  3282. name = "num_cpus"
  3283. version = "1.13.0"
  3284. source = "registry+https://github.com/rust-lang/crates.io-index"
  3285. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  3286. dependencies = [
  3287. "hermit-abi",
  3288. "libc",
  3289. ]
  3290. [[package]]
  3291. name = "object"
  3292. version = "0.22.0"
  3293. source = "registry+https://github.com/rust-lang/crates.io-index"
  3294. checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
  3295. [[package]]
  3296. name = "once_cell"
  3297. version = "0.1.8"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37"
  3300. dependencies = [
  3301. "parking_lot 0.7.1",
  3302. ]
  3303. [[package]]
  3304. name = "once_cell"
  3305. version = "1.5.2"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
  3308. dependencies = [
  3309. "parking_lot 0.11.1",
  3310. ]
  3311. [[package]]
  3312. name = "opaque-debug"
  3313. version = "0.2.3"
  3314. source = "registry+https://github.com/rust-lang/crates.io-index"
  3315. checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
  3316. [[package]]
  3317. name = "opaque-debug"
  3318. version = "0.3.0"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  3321. [[package]]
  3322. name = "openssl-probe"
  3323. version = "0.1.2"
  3324. source = "registry+https://github.com/rust-lang/crates.io-index"
  3325. checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  3326. [[package]]
  3327. name = "owning_ref"
  3328. version = "0.4.1"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"
  3331. dependencies = [
  3332. "stable_deref_trait",
  3333. ]
  3334. [[package]]
  3335. name = "pallet-authority-discovery"
  3336. version = "2.0.0"
  3337. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3338. dependencies = [
  3339. "frame-support",
  3340. "frame-system",
  3341. "pallet-session",
  3342. "parity-scale-codec",
  3343. "serde",
  3344. "sp-application-crypto",
  3345. "sp-authority-discovery",
  3346. "sp-runtime",
  3347. "sp-std",
  3348. ]
  3349. [[package]]
  3350. name = "pallet-authorship"
  3351. version = "2.0.0"
  3352. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3353. dependencies = [
  3354. "frame-support",
  3355. "frame-system",
  3356. "impl-trait-for-tuples",
  3357. "parity-scale-codec",
  3358. "sp-authorship",
  3359. "sp-inherents",
  3360. "sp-runtime",
  3361. "sp-std",
  3362. ]
  3363. [[package]]
  3364. name = "pallet-babe"
  3365. version = "2.0.0"
  3366. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3367. dependencies = [
  3368. "frame-benchmarking",
  3369. "frame-support",
  3370. "frame-system",
  3371. "pallet-authorship",
  3372. "pallet-session",
  3373. "pallet-timestamp",
  3374. "parity-scale-codec",
  3375. "serde",
  3376. "sp-application-crypto",
  3377. "sp-consensus-babe",
  3378. "sp-consensus-vrf",
  3379. "sp-inherents",
  3380. "sp-io",
  3381. "sp-runtime",
  3382. "sp-session",
  3383. "sp-staking",
  3384. "sp-std",
  3385. "sp-timestamp",
  3386. ]
  3387. [[package]]
  3388. name = "pallet-balances"
  3389. version = "2.0.0"
  3390. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3391. dependencies = [
  3392. "frame-benchmarking",
  3393. "frame-support",
  3394. "frame-system",
  3395. "parity-scale-codec",
  3396. "serde",
  3397. "sp-runtime",
  3398. "sp-std",
  3399. ]
  3400. [[package]]
  3401. name = "pallet-common"
  3402. version = "4.0.0"
  3403. dependencies = [
  3404. "frame-support",
  3405. "frame-system",
  3406. "pallet-timestamp",
  3407. "parity-scale-codec",
  3408. "serde",
  3409. "sp-arithmetic",
  3410. "sp-runtime",
  3411. "strum 0.19.5",
  3412. "strum_macros 0.19.4",
  3413. ]
  3414. [[package]]
  3415. name = "pallet-constitution"
  3416. version = "1.0.0"
  3417. dependencies = [
  3418. "frame-benchmarking",
  3419. "frame-support",
  3420. "frame-system",
  3421. "parity-scale-codec",
  3422. "serde",
  3423. "sp-core",
  3424. "sp-io",
  3425. "sp-runtime",
  3426. "sp-std",
  3427. ]
  3428. [[package]]
  3429. name = "pallet-content-directory"
  3430. version = "3.1.0"
  3431. dependencies = [
  3432. "frame-support",
  3433. "frame-system",
  3434. "parity-scale-codec",
  3435. "serde",
  3436. "sp-arithmetic",
  3437. "sp-core",
  3438. "sp-io",
  3439. "sp-runtime",
  3440. "sp-std",
  3441. ]
  3442. [[package]]
  3443. name = "pallet-finality-tracker"
  3444. version = "2.0.0"
  3445. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3446. dependencies = [
  3447. "frame-support",
  3448. "frame-system",
  3449. "impl-trait-for-tuples",
  3450. "parity-scale-codec",
  3451. "serde",
  3452. "sp-finality-tracker",
  3453. "sp-inherents",
  3454. "sp-runtime",
  3455. "sp-std",
  3456. ]
  3457. [[package]]
  3458. name = "pallet-forum"
  3459. version = "4.0.0"
  3460. dependencies = [
  3461. "frame-support",
  3462. "frame-system",
  3463. "pallet-common",
  3464. "pallet-timestamp",
  3465. "parity-scale-codec",
  3466. "serde",
  3467. "sp-arithmetic",
  3468. "sp-core",
  3469. "sp-io",
  3470. "sp-runtime",
  3471. "sp-std",
  3472. ]
  3473. [[package]]
  3474. name = "pallet-governance"
  3475. version = "3.1.0"
  3476. dependencies = [
  3477. "frame-support",
  3478. "frame-system",
  3479. "pallet-balances",
  3480. "pallet-common",
  3481. "pallet-membership",
  3482. "pallet-recurring-reward",
  3483. "pallet-timestamp",
  3484. "pallet-token-mint",
  3485. "parity-scale-codec",
  3486. "serde",
  3487. "sp-arithmetic",
  3488. "sp-core",
  3489. "sp-io",
  3490. "sp-runtime",
  3491. "sp-std",
  3492. ]
  3493. [[package]]
  3494. name = "pallet-grandpa"
  3495. version = "2.0.0"
  3496. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3497. dependencies = [
  3498. "frame-benchmarking",
  3499. "frame-support",
  3500. "frame-system",
  3501. "pallet-authorship",
  3502. "pallet-finality-tracker",
  3503. "pallet-session",
  3504. "parity-scale-codec",
  3505. "serde",
  3506. "sp-application-crypto",
  3507. "sp-core",
  3508. "sp-finality-grandpa",
  3509. "sp-runtime",
  3510. "sp-session",
  3511. "sp-staking",
  3512. "sp-std",
  3513. ]
  3514. [[package]]
  3515. name = "pallet-im-online"
  3516. version = "2.0.0"
  3517. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3518. dependencies = [
  3519. "frame-benchmarking",
  3520. "frame-support",
  3521. "frame-system",
  3522. "pallet-authorship",
  3523. "pallet-session",
  3524. "parity-scale-codec",
  3525. "serde",
  3526. "sp-application-crypto",
  3527. "sp-core",
  3528. "sp-io",
  3529. "sp-runtime",
  3530. "sp-staking",
  3531. "sp-std",
  3532. ]
  3533. [[package]]
  3534. name = "pallet-membership"
  3535. version = "4.0.0"
  3536. dependencies = [
  3537. "frame-support",
  3538. "frame-system",
  3539. "pallet-balances",
  3540. "pallet-common",
  3541. "pallet-timestamp",
  3542. "pallet-working-group",
  3543. "parity-scale-codec",
  3544. "serde",
  3545. "sp-arithmetic",
  3546. "sp-core",
  3547. "sp-io",
  3548. "sp-runtime",
  3549. "sp-std",
  3550. ]
  3551. [[package]]
  3552. name = "pallet-memo"
  3553. version = "3.1.0"
  3554. dependencies = [
  3555. "frame-support",
  3556. "frame-system",
  3557. "pallet-common",
  3558. "parity-scale-codec",
  3559. "sp-arithmetic",
  3560. "sp-std",
  3561. ]
  3562. [[package]]
  3563. name = "pallet-offences"
  3564. version = "2.0.0"
  3565. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3566. dependencies = [
  3567. "frame-support",
  3568. "frame-system",
  3569. "pallet-balances",
  3570. "parity-scale-codec",
  3571. "serde",
  3572. "sp-runtime",
  3573. "sp-staking",
  3574. "sp-std",
  3575. ]
  3576. [[package]]
  3577. name = "pallet-offences-benchmarking"
  3578. version = "2.0.0"
  3579. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3580. dependencies = [
  3581. "frame-benchmarking",
  3582. "frame-support",
  3583. "frame-system",
  3584. "pallet-babe",
  3585. "pallet-balances",
  3586. "pallet-grandpa",
  3587. "pallet-im-online",
  3588. "pallet-offences",
  3589. "pallet-session",
  3590. "pallet-staking",
  3591. "parity-scale-codec",
  3592. "sp-runtime",
  3593. "sp-staking",
  3594. "sp-std",
  3595. ]
  3596. [[package]]
  3597. name = "pallet-proposals-codex"
  3598. version = "4.0.0"
  3599. dependencies = [
  3600. "frame-support",
  3601. "frame-system",
  3602. "pallet-balances",
  3603. "pallet-common",
  3604. "pallet-constitution",
  3605. "pallet-governance",
  3606. "pallet-membership",
  3607. "pallet-proposals-discussion",
  3608. "pallet-proposals-engine",
  3609. "pallet-recurring-reward",
  3610. "pallet-staking",
  3611. "pallet-staking-reward-curve",
  3612. "pallet-timestamp",
  3613. "pallet-token-mint",
  3614. "pallet-working-group",
  3615. "parity-scale-codec",
  3616. "serde",
  3617. "sp-arithmetic",
  3618. "sp-core",
  3619. "sp-io",
  3620. "sp-runtime",
  3621. "sp-staking",
  3622. "sp-std",
  3623. "staking-handler",
  3624. "strum 0.19.5",
  3625. ]
  3626. [[package]]
  3627. name = "pallet-proposals-discussion"
  3628. version = "4.0.1"
  3629. dependencies = [
  3630. "frame-benchmarking",
  3631. "frame-support",
  3632. "frame-system",
  3633. "pallet-balances",
  3634. "pallet-common",
  3635. "pallet-membership",
  3636. "pallet-timestamp",
  3637. "parity-scale-codec",
  3638. "serde",
  3639. "sp-core",
  3640. "sp-io",
  3641. "sp-runtime",
  3642. "sp-std",
  3643. ]
  3644. [[package]]
  3645. name = "pallet-proposals-engine"
  3646. version = "4.0.1"
  3647. dependencies = [
  3648. "frame-benchmarking",
  3649. "frame-support",
  3650. "frame-system",
  3651. "pallet-balances",
  3652. "pallet-common",
  3653. "pallet-governance",
  3654. "pallet-membership",
  3655. "pallet-recurring-reward",
  3656. "pallet-timestamp",
  3657. "pallet-token-mint",
  3658. "parity-scale-codec",
  3659. "serde",
  3660. "sp-arithmetic",
  3661. "sp-core",
  3662. "sp-io",
  3663. "sp-runtime",
  3664. "sp-std",
  3665. "staking-handler",
  3666. ]
  3667. [[package]]
  3668. name = "pallet-randomness-collective-flip"
  3669. version = "2.0.0"
  3670. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3671. dependencies = [
  3672. "frame-support",
  3673. "frame-system",
  3674. "parity-scale-codec",
  3675. "safe-mix",
  3676. "sp-runtime",
  3677. "sp-std",
  3678. ]
  3679. [[package]]
  3680. name = "pallet-recurring-reward"
  3681. version = "3.1.0"
  3682. dependencies = [
  3683. "frame-support",
  3684. "frame-system",
  3685. "pallet-balances",
  3686. "pallet-token-mint",
  3687. "parity-scale-codec",
  3688. "sp-arithmetic",
  3689. "sp-core",
  3690. "sp-io",
  3691. "sp-runtime",
  3692. ]
  3693. [[package]]
  3694. name = "pallet-service-discovery"
  3695. version = "4.0.0"
  3696. dependencies = [
  3697. "frame-support",
  3698. "frame-system",
  3699. "pallet-balances",
  3700. "pallet-common",
  3701. "pallet-membership",
  3702. "pallet-recurring-reward",
  3703. "pallet-timestamp",
  3704. "pallet-token-mint",
  3705. "pallet-working-group",
  3706. "parity-scale-codec",
  3707. "serde",
  3708. "sp-arithmetic",
  3709. "sp-core",
  3710. "sp-io",
  3711. "sp-runtime",
  3712. "sp-std",
  3713. "staking-handler",
  3714. ]
  3715. [[package]]
  3716. name = "pallet-session"
  3717. version = "2.0.0"
  3718. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3719. dependencies = [
  3720. "frame-support",
  3721. "frame-system",
  3722. "impl-trait-for-tuples",
  3723. "pallet-timestamp",
  3724. "parity-scale-codec",
  3725. "serde",
  3726. "sp-core",
  3727. "sp-io",
  3728. "sp-runtime",
  3729. "sp-session",
  3730. "sp-staking",
  3731. "sp-std",
  3732. "sp-trie",
  3733. ]
  3734. [[package]]
  3735. name = "pallet-session-benchmarking"
  3736. version = "2.0.0"
  3737. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3738. dependencies = [
  3739. "frame-benchmarking",
  3740. "frame-support",
  3741. "frame-system",
  3742. "pallet-session",
  3743. "pallet-staking",
  3744. "rand 0.7.3",
  3745. "sp-runtime",
  3746. "sp-session",
  3747. "sp-std",
  3748. ]
  3749. [[package]]
  3750. name = "pallet-staking"
  3751. version = "2.0.0"
  3752. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3753. dependencies = [
  3754. "frame-benchmarking",
  3755. "frame-support",
  3756. "frame-system",
  3757. "pallet-authorship",
  3758. "pallet-session",
  3759. "parity-scale-codec",
  3760. "rand_chacha 0.2.2",
  3761. "serde",
  3762. "sp-application-crypto",
  3763. "sp-io",
  3764. "sp-npos-elections",
  3765. "sp-runtime",
  3766. "sp-staking",
  3767. "sp-std",
  3768. "static_assertions",
  3769. ]
  3770. [[package]]
  3771. name = "pallet-staking-reward-curve"
  3772. version = "2.0.0"
  3773. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3774. dependencies = [
  3775. "proc-macro-crate",
  3776. "proc-macro2",
  3777. "quote",
  3778. "syn",
  3779. ]
  3780. [[package]]
  3781. name = "pallet-storage"
  3782. version = "4.0.0"
  3783. dependencies = [
  3784. "frame-support",
  3785. "frame-system",
  3786. "pallet-balances",
  3787. "pallet-common",
  3788. "pallet-membership",
  3789. "pallet-recurring-reward",
  3790. "pallet-timestamp",
  3791. "pallet-token-mint",
  3792. "pallet-working-group",
  3793. "parity-scale-codec",
  3794. "serde",
  3795. "sp-arithmetic",
  3796. "sp-core",
  3797. "sp-io",
  3798. "sp-runtime",
  3799. "sp-std",
  3800. "staking-handler",
  3801. ]
  3802. [[package]]
  3803. name = "pallet-sudo"
  3804. version = "2.0.0"
  3805. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3806. dependencies = [
  3807. "frame-support",
  3808. "frame-system",
  3809. "parity-scale-codec",
  3810. "serde",
  3811. "sp-io",
  3812. "sp-runtime",
  3813. "sp-std",
  3814. ]
  3815. [[package]]
  3816. name = "pallet-timestamp"
  3817. version = "2.0.0"
  3818. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3819. dependencies = [
  3820. "frame-benchmarking",
  3821. "frame-support",
  3822. "frame-system",
  3823. "impl-trait-for-tuples",
  3824. "parity-scale-codec",
  3825. "serde",
  3826. "sp-inherents",
  3827. "sp-io",
  3828. "sp-runtime",
  3829. "sp-std",
  3830. "sp-timestamp",
  3831. ]
  3832. [[package]]
  3833. name = "pallet-token-mint"
  3834. version = "3.1.0"
  3835. dependencies = [
  3836. "frame-support",
  3837. "frame-system",
  3838. "pallet-balances",
  3839. "parity-scale-codec",
  3840. "sp-arithmetic",
  3841. "sp-core",
  3842. "sp-io",
  3843. "sp-runtime",
  3844. ]
  3845. [[package]]
  3846. name = "pallet-transaction-payment"
  3847. version = "2.0.0"
  3848. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3849. dependencies = [
  3850. "frame-support",
  3851. "frame-system",
  3852. "pallet-transaction-payment-rpc-runtime-api",
  3853. "parity-scale-codec",
  3854. "serde",
  3855. "smallvec 1.5.0",
  3856. "sp-core",
  3857. "sp-io",
  3858. "sp-runtime",
  3859. "sp-std",
  3860. ]
  3861. [[package]]
  3862. name = "pallet-transaction-payment-rpc"
  3863. version = "2.0.0"
  3864. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3865. dependencies = [
  3866. "jsonrpc-core",
  3867. "jsonrpc-core-client",
  3868. "jsonrpc-derive",
  3869. "pallet-transaction-payment-rpc-runtime-api",
  3870. "parity-scale-codec",
  3871. "serde",
  3872. "sp-api",
  3873. "sp-blockchain",
  3874. "sp-core",
  3875. "sp-rpc",
  3876. "sp-runtime",
  3877. ]
  3878. [[package]]
  3879. name = "pallet-transaction-payment-rpc-runtime-api"
  3880. version = "2.0.0"
  3881. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3882. dependencies = [
  3883. "frame-support",
  3884. "parity-scale-codec",
  3885. "serde",
  3886. "sp-api",
  3887. "sp-runtime",
  3888. "sp-std",
  3889. ]
  3890. [[package]]
  3891. name = "pallet-utility"
  3892. version = "2.0.0"
  3893. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3894. dependencies = [
  3895. "frame-benchmarking",
  3896. "frame-support",
  3897. "frame-system",
  3898. "parity-scale-codec",
  3899. "serde",
  3900. "sp-core",
  3901. "sp-io",
  3902. "sp-runtime",
  3903. "sp-std",
  3904. ]
  3905. [[package]]
  3906. name = "pallet-working-group"
  3907. version = "4.0.0"
  3908. dependencies = [
  3909. "frame-benchmarking",
  3910. "frame-support",
  3911. "frame-system",
  3912. "pallet-balances",
  3913. "pallet-common",
  3914. "pallet-timestamp",
  3915. "parity-scale-codec",
  3916. "serde",
  3917. "sp-arithmetic",
  3918. "sp-core",
  3919. "sp-io",
  3920. "sp-runtime",
  3921. "sp-std",
  3922. "staking-handler",
  3923. ]
  3924. [[package]]
  3925. name = "parity-db"
  3926. version = "0.1.2"
  3927. source = "registry+https://github.com/rust-lang/crates.io-index"
  3928. checksum = "00d595e372d119261593297debbe4193811a4dc811d2a1ccbb8caaa6666ad7ab"
  3929. dependencies = [
  3930. "blake2-rfc",
  3931. "crc32fast",
  3932. "libc",
  3933. "log",
  3934. "memmap",
  3935. "parking_lot 0.10.2",
  3936. ]
  3937. [[package]]
  3938. name = "parity-multiaddr"
  3939. version = "0.9.6"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "43244a26dc1ddd3097216bb12eaa6cf8a07b060c72718d9ebd60fd297d6401df"
  3942. dependencies = [
  3943. "arrayref",
  3944. "bs58 0.4.0",
  3945. "byteorder 1.3.4",
  3946. "data-encoding",
  3947. "multihash",
  3948. "percent-encoding 2.1.0",
  3949. "serde",
  3950. "static_assertions",
  3951. "unsigned-varint 0.5.1",
  3952. "url 2.2.0",
  3953. ]
  3954. [[package]]
  3955. name = "parity-scale-codec"
  3956. version = "1.3.5"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "7c740e5fbcb6847058b40ac7e5574766c6388f585e184d769910fe0d3a2ca861"
  3959. dependencies = [
  3960. "arrayvec 0.5.2",
  3961. "bitvec",
  3962. "byte-slice-cast",
  3963. "parity-scale-codec-derive",
  3964. "serde",
  3965. ]
  3966. [[package]]
  3967. name = "parity-scale-codec-derive"
  3968. version = "1.2.2"
  3969. source = "registry+https://github.com/rust-lang/crates.io-index"
  3970. checksum = "198db82bb1c18fc00176004462dd809b2a6d851669550aa17af6dacd21ae0c14"
  3971. dependencies = [
  3972. "proc-macro-crate",
  3973. "proc-macro2",
  3974. "quote",
  3975. "syn",
  3976. ]
  3977. [[package]]
  3978. name = "parity-send-wrapper"
  3979. version = "0.1.0"
  3980. source = "registry+https://github.com/rust-lang/crates.io-index"
  3981. checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"
  3982. [[package]]
  3983. name = "parity-tokio-ipc"
  3984. version = "0.4.0"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "1e57fea504fea33f9fbb5f49f378359030e7e026a6ab849bb9e8f0787376f1bf"
  3987. dependencies = [
  3988. "bytes 0.4.12",
  3989. "futures 0.1.30",
  3990. "libc",
  3991. "log",
  3992. "mio-named-pipes",
  3993. "miow 0.3.6",
  3994. "rand 0.7.3",
  3995. "tokio 0.1.22",
  3996. "tokio-named-pipes",
  3997. "tokio-uds",
  3998. "winapi 0.3.9",
  3999. ]
  4000. [[package]]
  4001. name = "parity-util-mem"
  4002. version = "0.7.0"
  4003. source = "registry+https://github.com/rust-lang/crates.io-index"
  4004. checksum = "297ff91fa36aec49ce183484b102f6b75b46776822bd81525bfc4cc9b0dd0f5c"
  4005. dependencies = [
  4006. "cfg-if 0.1.10",
  4007. "hashbrown 0.8.2",
  4008. "impl-trait-for-tuples",
  4009. "parity-util-mem-derive",
  4010. "parking_lot 0.10.2",
  4011. "primitive-types",
  4012. "smallvec 1.5.0",
  4013. "winapi 0.3.9",
  4014. ]
  4015. [[package]]
  4016. name = "parity-util-mem-derive"
  4017. version = "0.1.0"
  4018. source = "registry+https://github.com/rust-lang/crates.io-index"
  4019. checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"
  4020. dependencies = [
  4021. "proc-macro2",
  4022. "syn",
  4023. "synstructure",
  4024. ]
  4025. [[package]]
  4026. name = "parity-wasm"
  4027. version = "0.41.0"
  4028. source = "registry+https://github.com/rust-lang/crates.io-index"
  4029. checksum = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865"
  4030. [[package]]
  4031. name = "parity-ws"
  4032. version = "0.10.0"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "9e02a625dd75084c2a7024f07c575b61b782f729d18702dabb3cdbf31911dc61"
  4035. dependencies = [
  4036. "byteorder 1.3.4",
  4037. "bytes 0.4.12",
  4038. "httparse",
  4039. "log",
  4040. "mio",
  4041. "mio-extras",
  4042. "rand 0.7.3",
  4043. "sha-1 0.8.2",
  4044. "slab",
  4045. "url 2.2.0",
  4046. ]
  4047. [[package]]
  4048. name = "parking"
  4049. version = "2.0.0"
  4050. source = "registry+https://github.com/rust-lang/crates.io-index"
  4051. checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
  4052. [[package]]
  4053. name = "parking_lot"
  4054. version = "0.7.1"
  4055. source = "registry+https://github.com/rust-lang/crates.io-index"
  4056. checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
  4057. dependencies = [
  4058. "lock_api 0.1.5",
  4059. "parking_lot_core 0.4.0",
  4060. ]
  4061. [[package]]
  4062. name = "parking_lot"
  4063. version = "0.9.0"
  4064. source = "registry+https://github.com/rust-lang/crates.io-index"
  4065. checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
  4066. dependencies = [
  4067. "lock_api 0.3.4",
  4068. "parking_lot_core 0.6.2",
  4069. "rustc_version",
  4070. ]
  4071. [[package]]
  4072. name = "parking_lot"
  4073. version = "0.10.2"
  4074. source = "registry+https://github.com/rust-lang/crates.io-index"
  4075. checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
  4076. dependencies = [
  4077. "lock_api 0.3.4",
  4078. "parking_lot_core 0.7.2",
  4079. ]
  4080. [[package]]
  4081. name = "parking_lot"
  4082. version = "0.11.1"
  4083. source = "registry+https://github.com/rust-lang/crates.io-index"
  4084. checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
  4085. dependencies = [
  4086. "instant",
  4087. "lock_api 0.4.2",
  4088. "parking_lot_core 0.8.0",
  4089. ]
  4090. [[package]]
  4091. name = "parking_lot_core"
  4092. version = "0.4.0"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
  4095. dependencies = [
  4096. "libc",
  4097. "rand 0.6.5",
  4098. "rustc_version",
  4099. "smallvec 0.6.13",
  4100. "winapi 0.3.9",
  4101. ]
  4102. [[package]]
  4103. name = "parking_lot_core"
  4104. version = "0.6.2"
  4105. source = "registry+https://github.com/rust-lang/crates.io-index"
  4106. checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
  4107. dependencies = [
  4108. "cfg-if 0.1.10",
  4109. "cloudabi 0.0.3",
  4110. "libc",
  4111. "redox_syscall",
  4112. "rustc_version",
  4113. "smallvec 0.6.13",
  4114. "winapi 0.3.9",
  4115. ]
  4116. [[package]]
  4117. name = "parking_lot_core"
  4118. version = "0.7.2"
  4119. source = "registry+https://github.com/rust-lang/crates.io-index"
  4120. checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
  4121. dependencies = [
  4122. "cfg-if 0.1.10",
  4123. "cloudabi 0.0.3",
  4124. "libc",
  4125. "redox_syscall",
  4126. "smallvec 1.5.0",
  4127. "winapi 0.3.9",
  4128. ]
  4129. [[package]]
  4130. name = "parking_lot_core"
  4131. version = "0.8.0"
  4132. source = "registry+https://github.com/rust-lang/crates.io-index"
  4133. checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
  4134. dependencies = [
  4135. "cfg-if 0.1.10",
  4136. "cloudabi 0.1.0",
  4137. "instant",
  4138. "libc",
  4139. "redox_syscall",
  4140. "smallvec 1.5.0",
  4141. "winapi 0.3.9",
  4142. ]
  4143. [[package]]
  4144. name = "paste"
  4145. version = "0.1.18"
  4146. source = "registry+https://github.com/rust-lang/crates.io-index"
  4147. checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
  4148. dependencies = [
  4149. "paste-impl",
  4150. "proc-macro-hack",
  4151. ]
  4152. [[package]]
  4153. name = "paste-impl"
  4154. version = "0.1.18"
  4155. source = "registry+https://github.com/rust-lang/crates.io-index"
  4156. checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
  4157. dependencies = [
  4158. "proc-macro-hack",
  4159. ]
  4160. [[package]]
  4161. name = "pbkdf2"
  4162. version = "0.3.0"
  4163. source = "registry+https://github.com/rust-lang/crates.io-index"
  4164. checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
  4165. dependencies = [
  4166. "byteorder 1.3.4",
  4167. "crypto-mac 0.7.0",
  4168. "rayon",
  4169. ]
  4170. [[package]]
  4171. name = "pdqselect"
  4172. version = "0.1.0"
  4173. source = "registry+https://github.com/rust-lang/crates.io-index"
  4174. checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
  4175. [[package]]
  4176. name = "peeking_take_while"
  4177. version = "0.1.2"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  4180. [[package]]
  4181. name = "percent-encoding"
  4182. version = "1.0.1"
  4183. source = "registry+https://github.com/rust-lang/crates.io-index"
  4184. checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
  4185. [[package]]
  4186. name = "percent-encoding"
  4187. version = "2.1.0"
  4188. source = "registry+https://github.com/rust-lang/crates.io-index"
  4189. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  4190. [[package]]
  4191. name = "petgraph"
  4192. version = "0.5.1"
  4193. source = "registry+https://github.com/rust-lang/crates.io-index"
  4194. checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"
  4195. dependencies = [
  4196. "fixedbitset",
  4197. "indexmap",
  4198. ]
  4199. [[package]]
  4200. name = "pin-project"
  4201. version = "0.4.27"
  4202. source = "registry+https://github.com/rust-lang/crates.io-index"
  4203. checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
  4204. dependencies = [
  4205. "pin-project-internal 0.4.27",
  4206. ]
  4207. [[package]]
  4208. name = "pin-project"
  4209. version = "1.0.2"
  4210. source = "registry+https://github.com/rust-lang/crates.io-index"
  4211. checksum = "9ccc2237c2c489783abd8c4c80e5450fc0e98644555b1364da68cc29aa151ca7"
  4212. dependencies = [
  4213. "pin-project-internal 1.0.2",
  4214. ]
  4215. [[package]]
  4216. name = "pin-project-internal"
  4217. version = "0.4.27"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
  4220. dependencies = [
  4221. "proc-macro2",
  4222. "quote",
  4223. "syn",
  4224. ]
  4225. [[package]]
  4226. name = "pin-project-internal"
  4227. version = "1.0.2"
  4228. source = "registry+https://github.com/rust-lang/crates.io-index"
  4229. checksum = "f8e8d2bf0b23038a4424865103a4df472855692821aab4e4f5c3312d461d9e5f"
  4230. dependencies = [
  4231. "proc-macro2",
  4232. "quote",
  4233. "syn",
  4234. ]
  4235. [[package]]
  4236. name = "pin-project-lite"
  4237. version = "0.1.11"
  4238. source = "registry+https://github.com/rust-lang/crates.io-index"
  4239. checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
  4240. [[package]]
  4241. name = "pin-project-lite"
  4242. version = "0.2.0"
  4243. source = "registry+https://github.com/rust-lang/crates.io-index"
  4244. checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
  4245. [[package]]
  4246. name = "pin-utils"
  4247. version = "0.1.0"
  4248. source = "registry+https://github.com/rust-lang/crates.io-index"
  4249. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4250. [[package]]
  4251. name = "pkg-config"
  4252. version = "0.3.19"
  4253. source = "registry+https://github.com/rust-lang/crates.io-index"
  4254. checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
  4255. [[package]]
  4256. name = "platforms"
  4257. version = "0.2.1"
  4258. source = "registry+https://github.com/rust-lang/crates.io-index"
  4259. checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e"
  4260. [[package]]
  4261. name = "polling"
  4262. version = "2.0.2"
  4263. source = "registry+https://github.com/rust-lang/crates.io-index"
  4264. checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4"
  4265. dependencies = [
  4266. "cfg-if 0.1.10",
  4267. "libc",
  4268. "log",
  4269. "wepoll-sys",
  4270. "winapi 0.3.9",
  4271. ]
  4272. [[package]]
  4273. name = "poly1305"
  4274. version = "0.6.1"
  4275. source = "registry+https://github.com/rust-lang/crates.io-index"
  4276. checksum = "22ce46de8e53ee414ca4d02bfefac75d8c12fba948b76622a40b4be34dfce980"
  4277. dependencies = [
  4278. "universal-hash",
  4279. ]
  4280. [[package]]
  4281. name = "polyval"
  4282. version = "0.4.2"
  4283. source = "registry+https://github.com/rust-lang/crates.io-index"
  4284. checksum = "b3fd900a291ceb8b99799cc8cd3d1d3403a51721e015bc533528b2ceafcc443c"
  4285. dependencies = [
  4286. "cfg-if 1.0.0",
  4287. "universal-hash",
  4288. ]
  4289. [[package]]
  4290. name = "ppv-lite86"
  4291. version = "0.2.10"
  4292. source = "registry+https://github.com/rust-lang/crates.io-index"
  4293. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  4294. [[package]]
  4295. name = "primitive-types"
  4296. version = "0.7.3"
  4297. source = "registry+https://github.com/rust-lang/crates.io-index"
  4298. checksum = "7dd39dcacf71411ba488570da7bbc89b717225e46478b30ba99b92db6b149809"
  4299. dependencies = [
  4300. "fixed-hash",
  4301. "impl-codec",
  4302. "impl-serde",
  4303. "uint",
  4304. ]
  4305. [[package]]
  4306. name = "proc-macro-crate"
  4307. version = "0.1.5"
  4308. source = "registry+https://github.com/rust-lang/crates.io-index"
  4309. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  4310. dependencies = [
  4311. "toml",
  4312. ]
  4313. [[package]]
  4314. name = "proc-macro-error"
  4315. version = "1.0.4"
  4316. source = "registry+https://github.com/rust-lang/crates.io-index"
  4317. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4318. dependencies = [
  4319. "proc-macro-error-attr",
  4320. "proc-macro2",
  4321. "quote",
  4322. "syn",
  4323. "version_check",
  4324. ]
  4325. [[package]]
  4326. name = "proc-macro-error-attr"
  4327. version = "1.0.4"
  4328. source = "registry+https://github.com/rust-lang/crates.io-index"
  4329. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4330. dependencies = [
  4331. "proc-macro2",
  4332. "quote",
  4333. "version_check",
  4334. ]
  4335. [[package]]
  4336. name = "proc-macro-hack"
  4337. version = "0.5.19"
  4338. source = "registry+https://github.com/rust-lang/crates.io-index"
  4339. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  4340. [[package]]
  4341. name = "proc-macro-nested"
  4342. version = "0.1.6"
  4343. source = "registry+https://github.com/rust-lang/crates.io-index"
  4344. checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
  4345. [[package]]
  4346. name = "proc-macro2"
  4347. version = "1.0.24"
  4348. source = "registry+https://github.com/rust-lang/crates.io-index"
  4349. checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  4350. dependencies = [
  4351. "unicode-xid",
  4352. ]
  4353. [[package]]
  4354. name = "prometheus"
  4355. version = "0.10.0"
  4356. source = "registry+https://github.com/rust-lang/crates.io-index"
  4357. checksum = "30d70cf4412832bcac9cffe27906f4a66e450d323525e977168c70d1b36120ae"
  4358. dependencies = [
  4359. "cfg-if 0.1.10",
  4360. "fnv",
  4361. "lazy_static",
  4362. "parking_lot 0.11.1",
  4363. "regex",
  4364. "thiserror",
  4365. ]
  4366. [[package]]
  4367. name = "prost"
  4368. version = "0.6.1"
  4369. source = "registry+https://github.com/rust-lang/crates.io-index"
  4370. checksum = "ce49aefe0a6144a45de32927c77bd2859a5f7677b55f220ae5b744e87389c212"
  4371. dependencies = [
  4372. "bytes 0.5.6",
  4373. "prost-derive",
  4374. ]
  4375. [[package]]
  4376. name = "prost-build"
  4377. version = "0.6.1"
  4378. source = "registry+https://github.com/rust-lang/crates.io-index"
  4379. checksum = "02b10678c913ecbd69350e8535c3aef91a8676c0773fc1d7b95cdd196d7f2f26"
  4380. dependencies = [
  4381. "bytes 0.5.6",
  4382. "heck",
  4383. "itertools",
  4384. "log",
  4385. "multimap",
  4386. "petgraph",
  4387. "prost",
  4388. "prost-types",
  4389. "tempfile",
  4390. "which",
  4391. ]
  4392. [[package]]
  4393. name = "prost-derive"
  4394. version = "0.6.1"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "537aa19b95acde10a12fec4301466386f757403de4cd4e5b4fa78fb5ecb18f72"
  4397. dependencies = [
  4398. "anyhow",
  4399. "itertools",
  4400. "proc-macro2",
  4401. "quote",
  4402. "syn",
  4403. ]
  4404. [[package]]
  4405. name = "prost-types"
  4406. version = "0.6.1"
  4407. source = "registry+https://github.com/rust-lang/crates.io-index"
  4408. checksum = "1834f67c0697c001304b75be76f67add9c89742eda3a085ad8ee0bb38c3417aa"
  4409. dependencies = [
  4410. "bytes 0.5.6",
  4411. "prost",
  4412. ]
  4413. [[package]]
  4414. name = "quick-error"
  4415. version = "1.2.3"
  4416. source = "registry+https://github.com/rust-lang/crates.io-index"
  4417. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4418. [[package]]
  4419. name = "quicksink"
  4420. version = "0.1.2"
  4421. source = "registry+https://github.com/rust-lang/crates.io-index"
  4422. checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"
  4423. dependencies = [
  4424. "futures-core",
  4425. "futures-sink",
  4426. "pin-project-lite 0.1.11",
  4427. ]
  4428. [[package]]
  4429. name = "quote"
  4430. version = "1.0.7"
  4431. source = "registry+https://github.com/rust-lang/crates.io-index"
  4432. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  4433. dependencies = [
  4434. "proc-macro2",
  4435. ]
  4436. [[package]]
  4437. name = "radium"
  4438. version = "0.3.0"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"
  4441. [[package]]
  4442. name = "rand"
  4443. version = "0.3.23"
  4444. source = "registry+https://github.com/rust-lang/crates.io-index"
  4445. checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
  4446. dependencies = [
  4447. "libc",
  4448. "rand 0.4.6",
  4449. ]
  4450. [[package]]
  4451. name = "rand"
  4452. version = "0.4.6"
  4453. source = "registry+https://github.com/rust-lang/crates.io-index"
  4454. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  4455. dependencies = [
  4456. "fuchsia-cprng",
  4457. "libc",
  4458. "rand_core 0.3.1",
  4459. "rdrand",
  4460. "winapi 0.3.9",
  4461. ]
  4462. [[package]]
  4463. name = "rand"
  4464. version = "0.5.6"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
  4467. dependencies = [
  4468. "cloudabi 0.0.3",
  4469. "fuchsia-cprng",
  4470. "libc",
  4471. "rand_core 0.3.1",
  4472. "winapi 0.3.9",
  4473. ]
  4474. [[package]]
  4475. name = "rand"
  4476. version = "0.6.5"
  4477. source = "registry+https://github.com/rust-lang/crates.io-index"
  4478. checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
  4479. dependencies = [
  4480. "autocfg 0.1.7",
  4481. "libc",
  4482. "rand_chacha 0.1.1",
  4483. "rand_core 0.4.2",
  4484. "rand_hc 0.1.0",
  4485. "rand_isaac",
  4486. "rand_jitter",
  4487. "rand_os",
  4488. "rand_pcg 0.1.2",
  4489. "rand_xorshift",
  4490. "winapi 0.3.9",
  4491. ]
  4492. [[package]]
  4493. name = "rand"
  4494. version = "0.7.3"
  4495. source = "registry+https://github.com/rust-lang/crates.io-index"
  4496. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  4497. dependencies = [
  4498. "getrandom 0.1.15",
  4499. "libc",
  4500. "rand_chacha 0.2.2",
  4501. "rand_core 0.5.1",
  4502. "rand_hc 0.2.0",
  4503. "rand_pcg 0.2.1",
  4504. ]
  4505. [[package]]
  4506. name = "rand_chacha"
  4507. version = "0.1.1"
  4508. source = "registry+https://github.com/rust-lang/crates.io-index"
  4509. checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
  4510. dependencies = [
  4511. "autocfg 0.1.7",
  4512. "rand_core 0.3.1",
  4513. ]
  4514. [[package]]
  4515. name = "rand_chacha"
  4516. version = "0.2.2"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  4519. dependencies = [
  4520. "ppv-lite86",
  4521. "rand_core 0.5.1",
  4522. ]
  4523. [[package]]
  4524. name = "rand_core"
  4525. version = "0.3.1"
  4526. source = "registry+https://github.com/rust-lang/crates.io-index"
  4527. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  4528. dependencies = [
  4529. "rand_core 0.4.2",
  4530. ]
  4531. [[package]]
  4532. name = "rand_core"
  4533. version = "0.4.2"
  4534. source = "registry+https://github.com/rust-lang/crates.io-index"
  4535. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  4536. [[package]]
  4537. name = "rand_core"
  4538. version = "0.5.1"
  4539. source = "registry+https://github.com/rust-lang/crates.io-index"
  4540. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  4541. dependencies = [
  4542. "getrandom 0.1.15",
  4543. ]
  4544. [[package]]
  4545. name = "rand_hc"
  4546. version = "0.1.0"
  4547. source = "registry+https://github.com/rust-lang/crates.io-index"
  4548. checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
  4549. dependencies = [
  4550. "rand_core 0.3.1",
  4551. ]
  4552. [[package]]
  4553. name = "rand_hc"
  4554. version = "0.2.0"
  4555. source = "registry+https://github.com/rust-lang/crates.io-index"
  4556. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  4557. dependencies = [
  4558. "rand_core 0.5.1",
  4559. ]
  4560. [[package]]
  4561. name = "rand_isaac"
  4562. version = "0.1.1"
  4563. source = "registry+https://github.com/rust-lang/crates.io-index"
  4564. checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
  4565. dependencies = [
  4566. "rand_core 0.3.1",
  4567. ]
  4568. [[package]]
  4569. name = "rand_jitter"
  4570. version = "0.1.4"
  4571. source = "registry+https://github.com/rust-lang/crates.io-index"
  4572. checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
  4573. dependencies = [
  4574. "libc",
  4575. "rand_core 0.4.2",
  4576. "winapi 0.3.9",
  4577. ]
  4578. [[package]]
  4579. name = "rand_os"
  4580. version = "0.1.3"
  4581. source = "registry+https://github.com/rust-lang/crates.io-index"
  4582. checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
  4583. dependencies = [
  4584. "cloudabi 0.0.3",
  4585. "fuchsia-cprng",
  4586. "libc",
  4587. "rand_core 0.4.2",
  4588. "rdrand",
  4589. "wasm-bindgen",
  4590. "winapi 0.3.9",
  4591. ]
  4592. [[package]]
  4593. name = "rand_pcg"
  4594. version = "0.1.2"
  4595. source = "registry+https://github.com/rust-lang/crates.io-index"
  4596. checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
  4597. dependencies = [
  4598. "autocfg 0.1.7",
  4599. "rand_core 0.4.2",
  4600. ]
  4601. [[package]]
  4602. name = "rand_pcg"
  4603. version = "0.2.1"
  4604. source = "registry+https://github.com/rust-lang/crates.io-index"
  4605. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  4606. dependencies = [
  4607. "rand_core 0.5.1",
  4608. ]
  4609. [[package]]
  4610. name = "rand_xorshift"
  4611. version = "0.1.1"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
  4614. dependencies = [
  4615. "rand_core 0.3.1",
  4616. ]
  4617. [[package]]
  4618. name = "rawpointer"
  4619. version = "0.2.1"
  4620. source = "registry+https://github.com/rust-lang/crates.io-index"
  4621. checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
  4622. [[package]]
  4623. name = "rayon"
  4624. version = "1.5.0"
  4625. source = "registry+https://github.com/rust-lang/crates.io-index"
  4626. checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
  4627. dependencies = [
  4628. "autocfg 1.0.1",
  4629. "crossbeam-deque 0.8.0",
  4630. "either",
  4631. "rayon-core",
  4632. ]
  4633. [[package]]
  4634. name = "rayon-core"
  4635. version = "1.9.0"
  4636. source = "registry+https://github.com/rust-lang/crates.io-index"
  4637. checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
  4638. dependencies = [
  4639. "crossbeam-channel",
  4640. "crossbeam-deque 0.8.0",
  4641. "crossbeam-utils 0.8.1",
  4642. "lazy_static",
  4643. "num_cpus",
  4644. ]
  4645. [[package]]
  4646. name = "rdrand"
  4647. version = "0.4.0"
  4648. source = "registry+https://github.com/rust-lang/crates.io-index"
  4649. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  4650. dependencies = [
  4651. "rand_core 0.3.1",
  4652. ]
  4653. [[package]]
  4654. name = "redox_syscall"
  4655. version = "0.1.57"
  4656. source = "registry+https://github.com/rust-lang/crates.io-index"
  4657. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  4658. [[package]]
  4659. name = "redox_users"
  4660. version = "0.3.5"
  4661. source = "registry+https://github.com/rust-lang/crates.io-index"
  4662. checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
  4663. dependencies = [
  4664. "getrandom 0.1.15",
  4665. "redox_syscall",
  4666. "rust-argon2",
  4667. ]
  4668. [[package]]
  4669. name = "ref-cast"
  4670. version = "1.0.3"
  4671. source = "registry+https://github.com/rust-lang/crates.io-index"
  4672. checksum = "e17626b2f4bcf35b84bf379072a66e28cfe5c3c6ae58b38e4914bb8891dabece"
  4673. dependencies = [
  4674. "ref-cast-impl",
  4675. ]
  4676. [[package]]
  4677. name = "ref-cast-impl"
  4678. version = "1.0.3"
  4679. source = "registry+https://github.com/rust-lang/crates.io-index"
  4680. checksum = "0c523ccaed8ac4b0288948849a350b37d3035827413c458b6a40ddb614bb4f72"
  4681. dependencies = [
  4682. "proc-macro2",
  4683. "quote",
  4684. "syn",
  4685. ]
  4686. [[package]]
  4687. name = "regex"
  4688. version = "1.4.2"
  4689. source = "registry+https://github.com/rust-lang/crates.io-index"
  4690. checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
  4691. dependencies = [
  4692. "aho-corasick",
  4693. "memchr",
  4694. "regex-syntax",
  4695. "thread_local",
  4696. ]
  4697. [[package]]
  4698. name = "regex-automata"
  4699. version = "0.1.9"
  4700. source = "registry+https://github.com/rust-lang/crates.io-index"
  4701. checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
  4702. dependencies = [
  4703. "byteorder 1.3.4",
  4704. "regex-syntax",
  4705. ]
  4706. [[package]]
  4707. name = "regex-syntax"
  4708. version = "0.6.21"
  4709. source = "registry+https://github.com/rust-lang/crates.io-index"
  4710. checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
  4711. [[package]]
  4712. name = "remove_dir_all"
  4713. version = "0.5.3"
  4714. source = "registry+https://github.com/rust-lang/crates.io-index"
  4715. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  4716. dependencies = [
  4717. "winapi 0.3.9",
  4718. ]
  4719. [[package]]
  4720. name = "retain_mut"
  4721. version = "0.1.1"
  4722. source = "registry+https://github.com/rust-lang/crates.io-index"
  4723. checksum = "e005d658ad26eacc2b6c506dfde519f4e277e328d0eb3379ca61647d70a8f531"
  4724. [[package]]
  4725. name = "ring"
  4726. version = "0.16.18"
  4727. source = "registry+https://github.com/rust-lang/crates.io-index"
  4728. checksum = "70017ed5c555d79ee3538fc63ca09c70ad8f317dcadc1adc2c496b60c22bb24f"
  4729. dependencies = [
  4730. "cc",
  4731. "libc",
  4732. "once_cell 1.5.2",
  4733. "spin",
  4734. "untrusted",
  4735. "web-sys",
  4736. "winapi 0.3.9",
  4737. ]
  4738. [[package]]
  4739. name = "rocksdb"
  4740. version = "0.15.0"
  4741. source = "registry+https://github.com/rust-lang/crates.io-index"
  4742. checksum = "23d83c02c429044d58474eaf5ae31e062d0de894e21125b47437ec0edc1397e6"
  4743. dependencies = [
  4744. "libc",
  4745. "librocksdb-sys",
  4746. ]
  4747. [[package]]
  4748. name = "rpassword"
  4749. version = "4.0.5"
  4750. source = "registry+https://github.com/rust-lang/crates.io-index"
  4751. checksum = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f"
  4752. dependencies = [
  4753. "libc",
  4754. "winapi 0.3.9",
  4755. ]
  4756. [[package]]
  4757. name = "rust-argon2"
  4758. version = "0.8.3"
  4759. source = "registry+https://github.com/rust-lang/crates.io-index"
  4760. checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
  4761. dependencies = [
  4762. "base64 0.13.0",
  4763. "blake2b_simd",
  4764. "constant_time_eq",
  4765. "crossbeam-utils 0.8.1",
  4766. ]
  4767. [[package]]
  4768. name = "rustc-demangle"
  4769. version = "0.1.18"
  4770. source = "registry+https://github.com/rust-lang/crates.io-index"
  4771. checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
  4772. [[package]]
  4773. name = "rustc-hash"
  4774. version = "1.1.0"
  4775. source = "registry+https://github.com/rust-lang/crates.io-index"
  4776. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4777. [[package]]
  4778. name = "rustc-hex"
  4779. version = "2.1.0"
  4780. source = "registry+https://github.com/rust-lang/crates.io-index"
  4781. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  4782. [[package]]
  4783. name = "rustc_version"
  4784. version = "0.2.3"
  4785. source = "registry+https://github.com/rust-lang/crates.io-index"
  4786. checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  4787. dependencies = [
  4788. "semver",
  4789. ]
  4790. [[package]]
  4791. name = "rustls"
  4792. version = "0.18.1"
  4793. source = "registry+https://github.com/rust-lang/crates.io-index"
  4794. checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
  4795. dependencies = [
  4796. "base64 0.12.3",
  4797. "log",
  4798. "ring",
  4799. "sct",
  4800. "webpki",
  4801. ]
  4802. [[package]]
  4803. name = "rustls-native-certs"
  4804. version = "0.4.0"
  4805. source = "registry+https://github.com/rust-lang/crates.io-index"
  4806. checksum = "629d439a7672da82dd955498445e496ee2096fe2117b9f796558a43fdb9e59b8"
  4807. dependencies = [
  4808. "openssl-probe",
  4809. "rustls",
  4810. "schannel",
  4811. "security-framework",
  4812. ]
  4813. [[package]]
  4814. name = "rw-stream-sink"
  4815. version = "0.2.1"
  4816. source = "registry+https://github.com/rust-lang/crates.io-index"
  4817. checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"
  4818. dependencies = [
  4819. "futures 0.3.8",
  4820. "pin-project 0.4.27",
  4821. "static_assertions",
  4822. ]
  4823. [[package]]
  4824. name = "ryu"
  4825. version = "1.0.5"
  4826. source = "registry+https://github.com/rust-lang/crates.io-index"
  4827. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  4828. [[package]]
  4829. name = "safe-mix"
  4830. version = "1.0.1"
  4831. source = "registry+https://github.com/rust-lang/crates.io-index"
  4832. checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"
  4833. dependencies = [
  4834. "rustc_version",
  4835. ]
  4836. [[package]]
  4837. name = "salsa20"
  4838. version = "0.6.0"
  4839. source = "registry+https://github.com/rust-lang/crates.io-index"
  4840. checksum = "c7f47b10fa80f6969bbbd9c8e7cc998f082979d402a9e10579e2303a87955395"
  4841. dependencies = [
  4842. "stream-cipher",
  4843. ]
  4844. [[package]]
  4845. name = "sc-authority-discovery"
  4846. version = "0.8.0"
  4847. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4848. dependencies = [
  4849. "bytes 0.5.6",
  4850. "derive_more",
  4851. "either",
  4852. "futures 0.3.8",
  4853. "futures-timer 3.0.2",
  4854. "libp2p",
  4855. "log",
  4856. "parity-scale-codec",
  4857. "prost",
  4858. "prost-build",
  4859. "rand 0.7.3",
  4860. "sc-client-api",
  4861. "sc-keystore",
  4862. "sc-network",
  4863. "serde_json",
  4864. "sp-api",
  4865. "sp-authority-discovery",
  4866. "sp-blockchain",
  4867. "sp-core",
  4868. "sp-runtime",
  4869. "substrate-prometheus-endpoint",
  4870. ]
  4871. [[package]]
  4872. name = "sc-basic-authorship"
  4873. version = "0.8.0"
  4874. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4875. dependencies = [
  4876. "futures 0.3.8",
  4877. "futures-timer 3.0.2",
  4878. "log",
  4879. "parity-scale-codec",
  4880. "sc-block-builder",
  4881. "sc-client-api",
  4882. "sc-proposer-metrics",
  4883. "sc-telemetry",
  4884. "sp-api",
  4885. "sp-blockchain",
  4886. "sp-consensus",
  4887. "sp-core",
  4888. "sp-inherents",
  4889. "sp-runtime",
  4890. "sp-transaction-pool",
  4891. "substrate-prometheus-endpoint",
  4892. "tokio-executor 0.2.0-alpha.6",
  4893. ]
  4894. [[package]]
  4895. name = "sc-block-builder"
  4896. version = "0.8.0"
  4897. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4898. dependencies = [
  4899. "parity-scale-codec",
  4900. "sc-client-api",
  4901. "sp-api",
  4902. "sp-block-builder",
  4903. "sp-blockchain",
  4904. "sp-consensus",
  4905. "sp-core",
  4906. "sp-inherents",
  4907. "sp-runtime",
  4908. "sp-state-machine",
  4909. ]
  4910. [[package]]
  4911. name = "sc-chain-spec"
  4912. version = "2.0.0"
  4913. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4914. dependencies = [
  4915. "impl-trait-for-tuples",
  4916. "parity-scale-codec",
  4917. "sc-chain-spec-derive",
  4918. "sc-network",
  4919. "sc-telemetry",
  4920. "serde",
  4921. "serde_json",
  4922. "sp-chain-spec",
  4923. "sp-core",
  4924. "sp-runtime",
  4925. ]
  4926. [[package]]
  4927. name = "sc-chain-spec-derive"
  4928. version = "2.0.0"
  4929. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4930. dependencies = [
  4931. "proc-macro-crate",
  4932. "proc-macro2",
  4933. "quote",
  4934. "syn",
  4935. ]
  4936. [[package]]
  4937. name = "sc-cli"
  4938. version = "0.8.0"
  4939. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4940. dependencies = [
  4941. "ansi_term 0.12.1",
  4942. "atty",
  4943. "bip39",
  4944. "chrono",
  4945. "derive_more",
  4946. "fdlimit",
  4947. "futures 0.3.8",
  4948. "hex",
  4949. "lazy_static",
  4950. "libp2p",
  4951. "log",
  4952. "names",
  4953. "nix",
  4954. "parity-scale-codec",
  4955. "parity-util-mem",
  4956. "rand 0.7.3",
  4957. "regex",
  4958. "rpassword",
  4959. "sc-client-api",
  4960. "sc-informant",
  4961. "sc-keystore",
  4962. "sc-network",
  4963. "sc-service",
  4964. "sc-telemetry",
  4965. "sc-tracing",
  4966. "serde",
  4967. "serde_json",
  4968. "sp-blockchain",
  4969. "sp-core",
  4970. "sp-keyring",
  4971. "sp-panic-handler",
  4972. "sp-runtime",
  4973. "sp-state-machine",
  4974. "sp-utils",
  4975. "sp-version",
  4976. "structopt",
  4977. "substrate-prometheus-endpoint",
  4978. "time",
  4979. "tokio 0.2.23",
  4980. "tracing",
  4981. "tracing-log",
  4982. "tracing-subscriber",
  4983. ]
  4984. [[package]]
  4985. name = "sc-client-api"
  4986. version = "2.0.0"
  4987. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4988. dependencies = [
  4989. "derive_more",
  4990. "fnv",
  4991. "futures 0.3.8",
  4992. "hash-db",
  4993. "hex-literal",
  4994. "kvdb",
  4995. "lazy_static",
  4996. "log",
  4997. "parity-scale-codec",
  4998. "parking_lot 0.10.2",
  4999. "sc-executor",
  5000. "sc-telemetry",
  5001. "sp-api",
  5002. "sp-blockchain",
  5003. "sp-consensus",
  5004. "sp-core",
  5005. "sp-database",
  5006. "sp-externalities",
  5007. "sp-inherents",
  5008. "sp-keyring",
  5009. "sp-runtime",
  5010. "sp-state-machine",
  5011. "sp-std",
  5012. "sp-storage",
  5013. "sp-transaction-pool",
  5014. "sp-trie",
  5015. "sp-utils",
  5016. "sp-version",
  5017. "substrate-prometheus-endpoint",
  5018. ]
  5019. [[package]]
  5020. name = "sc-client-db"
  5021. version = "0.8.0"
  5022. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5023. dependencies = [
  5024. "blake2-rfc",
  5025. "hash-db",
  5026. "kvdb",
  5027. "kvdb-memorydb",
  5028. "kvdb-rocksdb",
  5029. "linked-hash-map",
  5030. "log",
  5031. "parity-db",
  5032. "parity-scale-codec",
  5033. "parity-util-mem",
  5034. "parking_lot 0.10.2",
  5035. "sc-client-api",
  5036. "sc-executor",
  5037. "sc-state-db",
  5038. "sp-arithmetic",
  5039. "sp-blockchain",
  5040. "sp-consensus",
  5041. "sp-core",
  5042. "sp-database",
  5043. "sp-runtime",
  5044. "sp-state-machine",
  5045. "sp-trie",
  5046. "substrate-prometheus-endpoint",
  5047. ]
  5048. [[package]]
  5049. name = "sc-consensus"
  5050. version = "0.8.0"
  5051. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5052. dependencies = [
  5053. "sc-client-api",
  5054. "sp-blockchain",
  5055. "sp-consensus",
  5056. "sp-runtime",
  5057. ]
  5058. [[package]]
  5059. name = "sc-consensus-babe"
  5060. version = "0.8.0"
  5061. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5062. dependencies = [
  5063. "derive_more",
  5064. "fork-tree",
  5065. "futures 0.3.8",
  5066. "futures-timer 3.0.2",
  5067. "log",
  5068. "merlin",
  5069. "num-bigint",
  5070. "num-rational",
  5071. "num-traits",
  5072. "parity-scale-codec",
  5073. "parking_lot 0.10.2",
  5074. "pdqselect",
  5075. "rand 0.7.3",
  5076. "retain_mut",
  5077. "sc-client-api",
  5078. "sc-consensus-epochs",
  5079. "sc-consensus-slots",
  5080. "sc-consensus-uncles",
  5081. "sc-keystore",
  5082. "sc-telemetry",
  5083. "schnorrkel",
  5084. "serde",
  5085. "sp-api",
  5086. "sp-application-crypto",
  5087. "sp-block-builder",
  5088. "sp-blockchain",
  5089. "sp-consensus",
  5090. "sp-consensus-babe",
  5091. "sp-consensus-vrf",
  5092. "sp-core",
  5093. "sp-inherents",
  5094. "sp-io",
  5095. "sp-runtime",
  5096. "sp-timestamp",
  5097. "sp-utils",
  5098. "sp-version",
  5099. "substrate-prometheus-endpoint",
  5100. ]
  5101. [[package]]
  5102. name = "sc-consensus-babe-rpc"
  5103. version = "0.8.0"
  5104. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5105. dependencies = [
  5106. "derive_more",
  5107. "futures 0.3.8",
  5108. "jsonrpc-core",
  5109. "jsonrpc-core-client",
  5110. "jsonrpc-derive",
  5111. "sc-consensus-babe",
  5112. "sc-consensus-epochs",
  5113. "sc-keystore",
  5114. "sc-rpc-api",
  5115. "serde",
  5116. "sp-api",
  5117. "sp-application-crypto",
  5118. "sp-blockchain",
  5119. "sp-consensus",
  5120. "sp-consensus-babe",
  5121. "sp-core",
  5122. "sp-runtime",
  5123. ]
  5124. [[package]]
  5125. name = "sc-consensus-epochs"
  5126. version = "0.8.0"
  5127. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5128. dependencies = [
  5129. "fork-tree",
  5130. "parity-scale-codec",
  5131. "parking_lot 0.10.2",
  5132. "sc-client-api",
  5133. "sp-blockchain",
  5134. "sp-runtime",
  5135. ]
  5136. [[package]]
  5137. name = "sc-consensus-slots"
  5138. version = "0.8.0"
  5139. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5140. dependencies = [
  5141. "futures 0.3.8",
  5142. "futures-timer 3.0.2",
  5143. "log",
  5144. "parity-scale-codec",
  5145. "parking_lot 0.10.2",
  5146. "sc-client-api",
  5147. "sc-telemetry",
  5148. "sp-api",
  5149. "sp-application-crypto",
  5150. "sp-blockchain",
  5151. "sp-consensus",
  5152. "sp-consensus-slots",
  5153. "sp-core",
  5154. "sp-inherents",
  5155. "sp-runtime",
  5156. "sp-state-machine",
  5157. ]
  5158. [[package]]
  5159. name = "sc-consensus-uncles"
  5160. version = "0.8.0"
  5161. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5162. dependencies = [
  5163. "log",
  5164. "sc-client-api",
  5165. "sp-authorship",
  5166. "sp-consensus",
  5167. "sp-core",
  5168. "sp-inherents",
  5169. "sp-runtime",
  5170. ]
  5171. [[package]]
  5172. name = "sc-executor"
  5173. version = "0.8.0"
  5174. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5175. dependencies = [
  5176. "derive_more",
  5177. "lazy_static",
  5178. "libsecp256k1",
  5179. "log",
  5180. "parity-scale-codec",
  5181. "parity-wasm",
  5182. "parking_lot 0.10.2",
  5183. "sc-executor-common",
  5184. "sc-executor-wasmi",
  5185. "sp-api",
  5186. "sp-core",
  5187. "sp-externalities",
  5188. "sp-io",
  5189. "sp-panic-handler",
  5190. "sp-runtime-interface",
  5191. "sp-serializer",
  5192. "sp-trie",
  5193. "sp-version",
  5194. "sp-wasm-interface",
  5195. "wasmi",
  5196. ]
  5197. [[package]]
  5198. name = "sc-executor-common"
  5199. version = "0.8.0"
  5200. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5201. dependencies = [
  5202. "derive_more",
  5203. "log",
  5204. "parity-scale-codec",
  5205. "parity-wasm",
  5206. "sp-allocator",
  5207. "sp-core",
  5208. "sp-runtime-interface",
  5209. "sp-serializer",
  5210. "sp-wasm-interface",
  5211. "wasmi",
  5212. ]
  5213. [[package]]
  5214. name = "sc-executor-wasmi"
  5215. version = "0.8.0"
  5216. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5217. dependencies = [
  5218. "log",
  5219. "parity-scale-codec",
  5220. "sc-executor-common",
  5221. "sp-allocator",
  5222. "sp-core",
  5223. "sp-runtime-interface",
  5224. "sp-wasm-interface",
  5225. "wasmi",
  5226. ]
  5227. [[package]]
  5228. name = "sc-finality-grandpa"
  5229. version = "0.8.0"
  5230. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5231. dependencies = [
  5232. "derive_more",
  5233. "finality-grandpa",
  5234. "fork-tree",
  5235. "futures 0.3.8",
  5236. "futures-timer 3.0.2",
  5237. "log",
  5238. "parity-scale-codec",
  5239. "parking_lot 0.10.2",
  5240. "pin-project 0.4.27",
  5241. "rand 0.7.3",
  5242. "sc-block-builder",
  5243. "sc-client-api",
  5244. "sc-consensus",
  5245. "sc-keystore",
  5246. "sc-network",
  5247. "sc-network-gossip",
  5248. "sc-telemetry",
  5249. "serde_json",
  5250. "sp-api",
  5251. "sp-application-crypto",
  5252. "sp-arithmetic",
  5253. "sp-blockchain",
  5254. "sp-consensus",
  5255. "sp-core",
  5256. "sp-finality-grandpa",
  5257. "sp-finality-tracker",
  5258. "sp-inherents",
  5259. "sp-runtime",
  5260. "sp-utils",
  5261. "substrate-prometheus-endpoint",
  5262. ]
  5263. [[package]]
  5264. name = "sc-finality-grandpa-rpc"
  5265. version = "0.8.0"
  5266. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5267. dependencies = [
  5268. "derive_more",
  5269. "finality-grandpa",
  5270. "futures 0.3.8",
  5271. "jsonrpc-core",
  5272. "jsonrpc-core-client",
  5273. "jsonrpc-derive",
  5274. "jsonrpc-pubsub",
  5275. "log",
  5276. "parity-scale-codec",
  5277. "sc-client-api",
  5278. "sc-finality-grandpa",
  5279. "sc-rpc",
  5280. "serde",
  5281. "serde_json",
  5282. "sp-blockchain",
  5283. "sp-core",
  5284. "sp-runtime",
  5285. ]
  5286. [[package]]
  5287. name = "sc-informant"
  5288. version = "0.8.0"
  5289. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5290. dependencies = [
  5291. "ansi_term 0.12.1",
  5292. "futures 0.3.8",
  5293. "log",
  5294. "parity-util-mem",
  5295. "sc-client-api",
  5296. "sc-network",
  5297. "sp-blockchain",
  5298. "sp-runtime",
  5299. "sp-transaction-pool",
  5300. "sp-utils",
  5301. "wasm-timer",
  5302. ]
  5303. [[package]]
  5304. name = "sc-keystore"
  5305. version = "2.0.0"
  5306. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5307. dependencies = [
  5308. "derive_more",
  5309. "hex",
  5310. "merlin",
  5311. "parking_lot 0.10.2",
  5312. "rand 0.7.3",
  5313. "serde_json",
  5314. "sp-application-crypto",
  5315. "sp-core",
  5316. "subtle 2.3.0",
  5317. ]
  5318. [[package]]
  5319. name = "sc-light"
  5320. version = "2.0.0"
  5321. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5322. dependencies = [
  5323. "hash-db",
  5324. "lazy_static",
  5325. "parity-scale-codec",
  5326. "parking_lot 0.10.2",
  5327. "sc-client-api",
  5328. "sc-executor",
  5329. "sp-api",
  5330. "sp-blockchain",
  5331. "sp-core",
  5332. "sp-externalities",
  5333. "sp-runtime",
  5334. "sp-state-machine",
  5335. ]
  5336. [[package]]
  5337. name = "sc-network"
  5338. version = "0.8.0"
  5339. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5340. dependencies = [
  5341. "async-std",
  5342. "async-trait",
  5343. "bitflags",
  5344. "bs58 0.3.1",
  5345. "bytes 0.5.6",
  5346. "derive_more",
  5347. "either",
  5348. "erased-serde",
  5349. "fnv",
  5350. "fork-tree",
  5351. "futures 0.3.8",
  5352. "futures-timer 3.0.2",
  5353. "futures_codec",
  5354. "hex",
  5355. "ip_network",
  5356. "libp2p",
  5357. "linked-hash-map",
  5358. "linked_hash_set",
  5359. "log",
  5360. "lru 0.4.3",
  5361. "nohash-hasher",
  5362. "parity-scale-codec",
  5363. "parking_lot 0.10.2",
  5364. "pin-project 0.4.27",
  5365. "prost",
  5366. "prost-build",
  5367. "rand 0.7.3",
  5368. "sc-block-builder",
  5369. "sc-client-api",
  5370. "sc-peerset",
  5371. "serde",
  5372. "serde_json",
  5373. "slog",
  5374. "slog_derive",
  5375. "smallvec 0.6.13",
  5376. "sp-arithmetic",
  5377. "sp-blockchain",
  5378. "sp-consensus",
  5379. "sp-core",
  5380. "sp-runtime",
  5381. "sp-utils",
  5382. "substrate-prometheus-endpoint",
  5383. "thiserror",
  5384. "unsigned-varint 0.4.0",
  5385. "void",
  5386. "wasm-timer",
  5387. "zeroize",
  5388. ]
  5389. [[package]]
  5390. name = "sc-network-gossip"
  5391. version = "0.8.0"
  5392. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5393. dependencies = [
  5394. "futures 0.3.8",
  5395. "futures-timer 3.0.2",
  5396. "libp2p",
  5397. "log",
  5398. "lru 0.4.3",
  5399. "sc-network",
  5400. "sp-runtime",
  5401. "wasm-timer",
  5402. ]
  5403. [[package]]
  5404. name = "sc-offchain"
  5405. version = "2.0.0"
  5406. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5407. dependencies = [
  5408. "bytes 0.5.6",
  5409. "fnv",
  5410. "futures 0.3.8",
  5411. "futures-timer 3.0.2",
  5412. "hyper 0.13.9",
  5413. "hyper-rustls",
  5414. "log",
  5415. "num_cpus",
  5416. "parity-scale-codec",
  5417. "parking_lot 0.10.2",
  5418. "rand 0.7.3",
  5419. "sc-client-api",
  5420. "sc-keystore",
  5421. "sc-network",
  5422. "sp-api",
  5423. "sp-core",
  5424. "sp-offchain",
  5425. "sp-runtime",
  5426. "sp-utils",
  5427. "threadpool",
  5428. ]
  5429. [[package]]
  5430. name = "sc-peerset"
  5431. version = "2.0.0"
  5432. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5433. dependencies = [
  5434. "futures 0.3.8",
  5435. "libp2p",
  5436. "log",
  5437. "serde_json",
  5438. "sp-utils",
  5439. "wasm-timer",
  5440. ]
  5441. [[package]]
  5442. name = "sc-proposer-metrics"
  5443. version = "0.8.0"
  5444. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5445. dependencies = [
  5446. "log",
  5447. "substrate-prometheus-endpoint",
  5448. ]
  5449. [[package]]
  5450. name = "sc-rpc"
  5451. version = "2.0.0"
  5452. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5453. dependencies = [
  5454. "futures 0.3.8",
  5455. "hash-db",
  5456. "jsonrpc-core",
  5457. "jsonrpc-pubsub",
  5458. "log",
  5459. "parity-scale-codec",
  5460. "parking_lot 0.10.2",
  5461. "sc-block-builder",
  5462. "sc-client-api",
  5463. "sc-executor",
  5464. "sc-keystore",
  5465. "sc-rpc-api",
  5466. "serde_json",
  5467. "sp-api",
  5468. "sp-blockchain",
  5469. "sp-chain-spec",
  5470. "sp-core",
  5471. "sp-offchain",
  5472. "sp-rpc",
  5473. "sp-runtime",
  5474. "sp-session",
  5475. "sp-state-machine",
  5476. "sp-transaction-pool",
  5477. "sp-utils",
  5478. "sp-version",
  5479. ]
  5480. [[package]]
  5481. name = "sc-rpc-api"
  5482. version = "0.8.0"
  5483. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5484. dependencies = [
  5485. "derive_more",
  5486. "futures 0.3.8",
  5487. "jsonrpc-core",
  5488. "jsonrpc-core-client",
  5489. "jsonrpc-derive",
  5490. "jsonrpc-pubsub",
  5491. "log",
  5492. "parity-scale-codec",
  5493. "parking_lot 0.10.2",
  5494. "serde",
  5495. "serde_json",
  5496. "sp-chain-spec",
  5497. "sp-core",
  5498. "sp-rpc",
  5499. "sp-runtime",
  5500. "sp-transaction-pool",
  5501. "sp-version",
  5502. ]
  5503. [[package]]
  5504. name = "sc-rpc-server"
  5505. version = "2.0.0"
  5506. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5507. dependencies = [
  5508. "futures 0.1.30",
  5509. "jsonrpc-core",
  5510. "jsonrpc-http-server",
  5511. "jsonrpc-ipc-server",
  5512. "jsonrpc-pubsub",
  5513. "jsonrpc-ws-server",
  5514. "log",
  5515. "serde",
  5516. "serde_json",
  5517. "sp-runtime",
  5518. "substrate-prometheus-endpoint",
  5519. ]
  5520. [[package]]
  5521. name = "sc-service"
  5522. version = "0.8.0"
  5523. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5524. dependencies = [
  5525. "derive_more",
  5526. "directories",
  5527. "exit-future",
  5528. "futures 0.1.30",
  5529. "futures 0.3.8",
  5530. "futures-timer 3.0.2",
  5531. "hash-db",
  5532. "jsonrpc-core",
  5533. "jsonrpc-pubsub",
  5534. "lazy_static",
  5535. "log",
  5536. "parity-scale-codec",
  5537. "parity-util-mem",
  5538. "parking_lot 0.10.2",
  5539. "pin-project 0.4.27",
  5540. "rand 0.7.3",
  5541. "sc-block-builder",
  5542. "sc-chain-spec",
  5543. "sc-client-api",
  5544. "sc-client-db",
  5545. "sc-executor",
  5546. "sc-informant",
  5547. "sc-keystore",
  5548. "sc-light",
  5549. "sc-network",
  5550. "sc-offchain",
  5551. "sc-rpc",
  5552. "sc-rpc-server",
  5553. "sc-telemetry",
  5554. "sc-tracing",
  5555. "sc-transaction-pool",
  5556. "serde",
  5557. "serde_json",
  5558. "slog",
  5559. "sp-api",
  5560. "sp-application-crypto",
  5561. "sp-block-builder",
  5562. "sp-blockchain",
  5563. "sp-consensus",
  5564. "sp-core",
  5565. "sp-externalities",
  5566. "sp-inherents",
  5567. "sp-io",
  5568. "sp-runtime",
  5569. "sp-session",
  5570. "sp-state-machine",
  5571. "sp-tracing",
  5572. "sp-transaction-pool",
  5573. "sp-trie",
  5574. "sp-utils",
  5575. "sp-version",
  5576. "substrate-prometheus-endpoint",
  5577. "tempfile",
  5578. "tracing",
  5579. "wasm-timer",
  5580. ]
  5581. [[package]]
  5582. name = "sc-service-test"
  5583. version = "2.0.0"
  5584. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5585. dependencies = [
  5586. "fdlimit",
  5587. "futures 0.1.30",
  5588. "futures 0.3.8",
  5589. "hex-literal",
  5590. "log",
  5591. "parity-scale-codec",
  5592. "parking_lot 0.10.2",
  5593. "sc-block-builder",
  5594. "sc-client-api",
  5595. "sc-client-db",
  5596. "sc-executor",
  5597. "sc-light",
  5598. "sc-network",
  5599. "sc-service",
  5600. "sp-api",
  5601. "sp-blockchain",
  5602. "sp-consensus",
  5603. "sp-core",
  5604. "sp-externalities",
  5605. "sp-panic-handler",
  5606. "sp-runtime",
  5607. "sp-state-machine",
  5608. "sp-storage",
  5609. "sp-tracing",
  5610. "sp-transaction-pool",
  5611. "sp-trie",
  5612. "substrate-test-runtime",
  5613. "substrate-test-runtime-client",
  5614. "tempfile",
  5615. "tokio 0.1.22",
  5616. ]
  5617. [[package]]
  5618. name = "sc-state-db"
  5619. version = "0.8.0"
  5620. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5621. dependencies = [
  5622. "log",
  5623. "parity-scale-codec",
  5624. "parity-util-mem",
  5625. "parity-util-mem-derive",
  5626. "parking_lot 0.10.2",
  5627. "sc-client-api",
  5628. "sp-core",
  5629. ]
  5630. [[package]]
  5631. name = "sc-telemetry"
  5632. version = "2.0.0"
  5633. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5634. dependencies = [
  5635. "futures 0.3.8",
  5636. "futures-timer 3.0.2",
  5637. "libp2p",
  5638. "log",
  5639. "parking_lot 0.10.2",
  5640. "pin-project 0.4.27",
  5641. "rand 0.7.3",
  5642. "serde",
  5643. "slog",
  5644. "slog-json",
  5645. "slog-scope",
  5646. "take_mut",
  5647. "void",
  5648. "wasm-timer",
  5649. ]
  5650. [[package]]
  5651. name = "sc-tracing"
  5652. version = "2.0.0"
  5653. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5654. dependencies = [
  5655. "erased-serde",
  5656. "log",
  5657. "parking_lot 0.10.2",
  5658. "rustc-hash",
  5659. "sc-telemetry",
  5660. "serde",
  5661. "serde_json",
  5662. "slog",
  5663. "sp-tracing",
  5664. "tracing",
  5665. "tracing-core",
  5666. "tracing-subscriber",
  5667. ]
  5668. [[package]]
  5669. name = "sc-transaction-graph"
  5670. version = "2.0.0"
  5671. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5672. dependencies = [
  5673. "derive_more",
  5674. "futures 0.3.8",
  5675. "linked-hash-map",
  5676. "log",
  5677. "parity-util-mem",
  5678. "parking_lot 0.10.2",
  5679. "retain_mut",
  5680. "serde",
  5681. "sp-blockchain",
  5682. "sp-core",
  5683. "sp-runtime",
  5684. "sp-transaction-pool",
  5685. "sp-utils",
  5686. "wasm-timer",
  5687. ]
  5688. [[package]]
  5689. name = "sc-transaction-pool"
  5690. version = "2.0.0"
  5691. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5692. dependencies = [
  5693. "derive_more",
  5694. "futures 0.3.8",
  5695. "futures-diagnose",
  5696. "intervalier",
  5697. "log",
  5698. "parity-scale-codec",
  5699. "parity-util-mem",
  5700. "parking_lot 0.10.2",
  5701. "sc-client-api",
  5702. "sc-transaction-graph",
  5703. "sp-api",
  5704. "sp-blockchain",
  5705. "sp-core",
  5706. "sp-runtime",
  5707. "sp-tracing",
  5708. "sp-transaction-pool",
  5709. "sp-utils",
  5710. "substrate-prometheus-endpoint",
  5711. "wasm-timer",
  5712. ]
  5713. [[package]]
  5714. name = "schannel"
  5715. version = "0.1.19"
  5716. source = "registry+https://github.com/rust-lang/crates.io-index"
  5717. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  5718. dependencies = [
  5719. "lazy_static",
  5720. "winapi 0.3.9",
  5721. ]
  5722. [[package]]
  5723. name = "schnorrkel"
  5724. version = "0.9.1"
  5725. source = "registry+https://github.com/rust-lang/crates.io-index"
  5726. checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"
  5727. dependencies = [
  5728. "arrayref",
  5729. "arrayvec 0.5.2",
  5730. "curve25519-dalek 2.1.0",
  5731. "getrandom 0.1.15",
  5732. "merlin",
  5733. "rand 0.7.3",
  5734. "rand_core 0.5.1",
  5735. "sha2 0.8.2",
  5736. "subtle 2.3.0",
  5737. "zeroize",
  5738. ]
  5739. [[package]]
  5740. name = "scoped-tls"
  5741. version = "1.0.0"
  5742. source = "registry+https://github.com/rust-lang/crates.io-index"
  5743. checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
  5744. [[package]]
  5745. name = "scopeguard"
  5746. version = "0.3.3"
  5747. source = "registry+https://github.com/rust-lang/crates.io-index"
  5748. checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
  5749. [[package]]
  5750. name = "scopeguard"
  5751. version = "1.1.0"
  5752. source = "registry+https://github.com/rust-lang/crates.io-index"
  5753. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  5754. [[package]]
  5755. name = "sct"
  5756. version = "0.6.0"
  5757. source = "registry+https://github.com/rust-lang/crates.io-index"
  5758. checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
  5759. dependencies = [
  5760. "ring",
  5761. "untrusted",
  5762. ]
  5763. [[package]]
  5764. name = "secrecy"
  5765. version = "0.6.0"
  5766. source = "registry+https://github.com/rust-lang/crates.io-index"
  5767. checksum = "9182278ed645df3477a9c27bfee0621c621aa16f6972635f7f795dae3d81070f"
  5768. dependencies = [
  5769. "zeroize",
  5770. ]
  5771. [[package]]
  5772. name = "security-framework"
  5773. version = "1.0.0"
  5774. source = "registry+https://github.com/rust-lang/crates.io-index"
  5775. checksum = "ad502866817f0575705bd7be36e2b2535cc33262d493aa733a2ec862baa2bc2b"
  5776. dependencies = [
  5777. "bitflags",
  5778. "core-foundation",
  5779. "core-foundation-sys",
  5780. "libc",
  5781. "security-framework-sys",
  5782. ]
  5783. [[package]]
  5784. name = "security-framework-sys"
  5785. version = "1.0.0"
  5786. source = "registry+https://github.com/rust-lang/crates.io-index"
  5787. checksum = "51ceb04988b17b6d1dcd555390fa822ca5637b4a14e1f5099f13d351bed4d6c7"
  5788. dependencies = [
  5789. "core-foundation-sys",
  5790. "libc",
  5791. ]
  5792. [[package]]
  5793. name = "semver"
  5794. version = "0.9.0"
  5795. source = "registry+https://github.com/rust-lang/crates.io-index"
  5796. checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  5797. dependencies = [
  5798. "semver-parser",
  5799. ]
  5800. [[package]]
  5801. name = "semver-parser"
  5802. version = "0.7.0"
  5803. source = "registry+https://github.com/rust-lang/crates.io-index"
  5804. checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  5805. [[package]]
  5806. name = "send_wrapper"
  5807. version = "0.3.0"
  5808. source = "registry+https://github.com/rust-lang/crates.io-index"
  5809. checksum = "686ef91cf020ad8d4aca9a7047641fd6add626b7b89e14546c2b6a76781cf822"
  5810. [[package]]
  5811. name = "send_wrapper"
  5812. version = "0.4.0"
  5813. source = "registry+https://github.com/rust-lang/crates.io-index"
  5814. checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
  5815. [[package]]
  5816. name = "serde"
  5817. version = "1.0.117"
  5818. source = "registry+https://github.com/rust-lang/crates.io-index"
  5819. checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
  5820. dependencies = [
  5821. "serde_derive",
  5822. ]
  5823. [[package]]
  5824. name = "serde_derive"
  5825. version = "1.0.117"
  5826. source = "registry+https://github.com/rust-lang/crates.io-index"
  5827. checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
  5828. dependencies = [
  5829. "proc-macro2",
  5830. "quote",
  5831. "syn",
  5832. ]
  5833. [[package]]
  5834. name = "serde_derive_internals"
  5835. version = "0.25.0"
  5836. source = "registry+https://github.com/rust-lang/crates.io-index"
  5837. checksum = "1dbab34ca63057a1f15280bdf3c39f2b1eb1b54c17e98360e511637aef7418c6"
  5838. dependencies = [
  5839. "proc-macro2",
  5840. "quote",
  5841. "syn",
  5842. ]
  5843. [[package]]
  5844. name = "serde_json"
  5845. version = "1.0.59"
  5846. source = "registry+https://github.com/rust-lang/crates.io-index"
  5847. checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
  5848. dependencies = [
  5849. "itoa",
  5850. "ryu",
  5851. "serde",
  5852. ]
  5853. [[package]]
  5854. name = "sha-1"
  5855. version = "0.8.2"
  5856. source = "registry+https://github.com/rust-lang/crates.io-index"
  5857. checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
  5858. dependencies = [
  5859. "block-buffer 0.7.3",
  5860. "digest 0.8.1",
  5861. "fake-simd",
  5862. "opaque-debug 0.2.3",
  5863. ]
  5864. [[package]]
  5865. name = "sha-1"
  5866. version = "0.9.2"
  5867. source = "registry+https://github.com/rust-lang/crates.io-index"
  5868. checksum = "ce3cdf1b5e620a498ee6f2a171885ac7e22f0e12089ec4b3d22b84921792507c"
  5869. dependencies = [
  5870. "block-buffer 0.9.0",
  5871. "cfg-if 1.0.0",
  5872. "cpuid-bool",
  5873. "digest 0.9.0",
  5874. "opaque-debug 0.3.0",
  5875. ]
  5876. [[package]]
  5877. name = "sha2"
  5878. version = "0.8.2"
  5879. source = "registry+https://github.com/rust-lang/crates.io-index"
  5880. checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
  5881. dependencies = [
  5882. "block-buffer 0.7.3",
  5883. "digest 0.8.1",
  5884. "fake-simd",
  5885. "opaque-debug 0.2.3",
  5886. ]
  5887. [[package]]
  5888. name = "sha2"
  5889. version = "0.9.2"
  5890. source = "registry+https://github.com/rust-lang/crates.io-index"
  5891. checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
  5892. dependencies = [
  5893. "block-buffer 0.9.0",
  5894. "cfg-if 1.0.0",
  5895. "cpuid-bool",
  5896. "digest 0.9.0",
  5897. "opaque-debug 0.3.0",
  5898. ]
  5899. [[package]]
  5900. name = "sha3"
  5901. version = "0.9.1"
  5902. source = "registry+https://github.com/rust-lang/crates.io-index"
  5903. checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
  5904. dependencies = [
  5905. "block-buffer 0.9.0",
  5906. "digest 0.9.0",
  5907. "keccak",
  5908. "opaque-debug 0.3.0",
  5909. ]
  5910. [[package]]
  5911. name = "sharded-slab"
  5912. version = "0.1.0"
  5913. source = "registry+https://github.com/rust-lang/crates.io-index"
  5914. checksum = "7b4921be914e16899a80adefb821f8ddb7974e3f1250223575a44ed994882127"
  5915. dependencies = [
  5916. "lazy_static",
  5917. "loom",
  5918. ]
  5919. [[package]]
  5920. name = "shlex"
  5921. version = "0.1.1"
  5922. source = "registry+https://github.com/rust-lang/crates.io-index"
  5923. checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
  5924. [[package]]
  5925. name = "signal-hook-registry"
  5926. version = "1.2.2"
  5927. source = "registry+https://github.com/rust-lang/crates.io-index"
  5928. checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
  5929. dependencies = [
  5930. "libc",
  5931. ]
  5932. [[package]]
  5933. name = "signature"
  5934. version = "1.2.2"
  5935. source = "registry+https://github.com/rust-lang/crates.io-index"
  5936. checksum = "29f060a7d147e33490ec10da418795238fd7545bba241504d6b31a409f2e6210"
  5937. [[package]]
  5938. name = "slab"
  5939. version = "0.4.2"
  5940. source = "registry+https://github.com/rust-lang/crates.io-index"
  5941. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  5942. [[package]]
  5943. name = "slog"
  5944. version = "2.7.0"
  5945. source = "registry+https://github.com/rust-lang/crates.io-index"
  5946. checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06"
  5947. dependencies = [
  5948. "erased-serde",
  5949. ]
  5950. [[package]]
  5951. name = "slog-json"
  5952. version = "2.3.0"
  5953. source = "registry+https://github.com/rust-lang/crates.io-index"
  5954. checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"
  5955. dependencies = [
  5956. "chrono",
  5957. "erased-serde",
  5958. "serde",
  5959. "serde_json",
  5960. "slog",
  5961. ]
  5962. [[package]]
  5963. name = "slog-scope"
  5964. version = "4.3.0"
  5965. source = "registry+https://github.com/rust-lang/crates.io-index"
  5966. checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"
  5967. dependencies = [
  5968. "arc-swap",
  5969. "lazy_static",
  5970. "slog",
  5971. ]
  5972. [[package]]
  5973. name = "slog_derive"
  5974. version = "0.2.0"
  5975. source = "registry+https://github.com/rust-lang/crates.io-index"
  5976. checksum = "a945ec7f7ce853e89ffa36be1e27dce9a43e82ff9093bf3461c30d5da74ed11b"
  5977. dependencies = [
  5978. "proc-macro2",
  5979. "quote",
  5980. "syn",
  5981. ]
  5982. [[package]]
  5983. name = "smallvec"
  5984. version = "0.6.13"
  5985. source = "registry+https://github.com/rust-lang/crates.io-index"
  5986. checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
  5987. dependencies = [
  5988. "maybe-uninit",
  5989. ]
  5990. [[package]]
  5991. name = "smallvec"
  5992. version = "1.5.0"
  5993. source = "registry+https://github.com/rust-lang/crates.io-index"
  5994. checksum = "7acad6f34eb9e8a259d3283d1e8c1d34d7415943d4895f65cc73813c7396fc85"
  5995. [[package]]
  5996. name = "snow"
  5997. version = "0.7.2"
  5998. source = "registry+https://github.com/rust-lang/crates.io-index"
  5999. checksum = "795dd7aeeee24468e5a32661f6d27f7b5cbed802031b2d7640c7b10f8fb2dd50"
  6000. dependencies = [
  6001. "aes-gcm",
  6002. "blake2",
  6003. "chacha20poly1305",
  6004. "rand 0.7.3",
  6005. "rand_core 0.5.1",
  6006. "ring",
  6007. "rustc_version",
  6008. "sha2 0.9.2",
  6009. "subtle 2.3.0",
  6010. "x25519-dalek 1.1.0",
  6011. ]
  6012. [[package]]
  6013. name = "socket2"
  6014. version = "0.3.17"
  6015. source = "registry+https://github.com/rust-lang/crates.io-index"
  6016. checksum = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902"
  6017. dependencies = [
  6018. "cfg-if 1.0.0",
  6019. "libc",
  6020. "redox_syscall",
  6021. "winapi 0.3.9",
  6022. ]
  6023. [[package]]
  6024. name = "soketto"
  6025. version = "0.4.2"
  6026. source = "registry+https://github.com/rust-lang/crates.io-index"
  6027. checksum = "b5c71ed3d54db0a699f4948e1bb3e45b450fa31fe602621dee6680361d569c88"
  6028. dependencies = [
  6029. "base64 0.12.3",
  6030. "bytes 0.5.6",
  6031. "flate2",
  6032. "futures 0.3.8",
  6033. "httparse",
  6034. "log",
  6035. "rand 0.7.3",
  6036. "sha-1 0.9.2",
  6037. ]
  6038. [[package]]
  6039. name = "sp-allocator"
  6040. version = "2.0.0"
  6041. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6042. dependencies = [
  6043. "derive_more",
  6044. "log",
  6045. "sp-core",
  6046. "sp-std",
  6047. "sp-wasm-interface",
  6048. ]
  6049. [[package]]
  6050. name = "sp-api"
  6051. version = "2.0.0"
  6052. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6053. dependencies = [
  6054. "hash-db",
  6055. "parity-scale-codec",
  6056. "sp-api-proc-macro",
  6057. "sp-core",
  6058. "sp-runtime",
  6059. "sp-state-machine",
  6060. "sp-std",
  6061. "sp-version",
  6062. ]
  6063. [[package]]
  6064. name = "sp-api-proc-macro"
  6065. version = "2.0.0"
  6066. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6067. dependencies = [
  6068. "blake2-rfc",
  6069. "proc-macro-crate",
  6070. "proc-macro2",
  6071. "quote",
  6072. "syn",
  6073. ]
  6074. [[package]]
  6075. name = "sp-application-crypto"
  6076. version = "2.0.0"
  6077. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6078. dependencies = [
  6079. "parity-scale-codec",
  6080. "serde",
  6081. "sp-core",
  6082. "sp-io",
  6083. "sp-std",
  6084. ]
  6085. [[package]]
  6086. name = "sp-arithmetic"
  6087. version = "2.0.0"
  6088. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6089. dependencies = [
  6090. "integer-sqrt",
  6091. "num-traits",
  6092. "parity-scale-codec",
  6093. "serde",
  6094. "sp-debug-derive",
  6095. "sp-std",
  6096. ]
  6097. [[package]]
  6098. name = "sp-authority-discovery"
  6099. version = "2.0.0"
  6100. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6101. dependencies = [
  6102. "parity-scale-codec",
  6103. "sp-api",
  6104. "sp-application-crypto",
  6105. "sp-runtime",
  6106. "sp-std",
  6107. ]
  6108. [[package]]
  6109. name = "sp-authorship"
  6110. version = "2.0.0"
  6111. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6112. dependencies = [
  6113. "parity-scale-codec",
  6114. "sp-inherents",
  6115. "sp-runtime",
  6116. "sp-std",
  6117. ]
  6118. [[package]]
  6119. name = "sp-block-builder"
  6120. version = "2.0.0"
  6121. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6122. dependencies = [
  6123. "parity-scale-codec",
  6124. "sp-api",
  6125. "sp-inherents",
  6126. "sp-runtime",
  6127. "sp-std",
  6128. ]
  6129. [[package]]
  6130. name = "sp-blockchain"
  6131. version = "2.0.0"
  6132. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6133. dependencies = [
  6134. "derive_more",
  6135. "log",
  6136. "lru 0.4.3",
  6137. "parity-scale-codec",
  6138. "parking_lot 0.10.2",
  6139. "sp-block-builder",
  6140. "sp-consensus",
  6141. "sp-database",
  6142. "sp-runtime",
  6143. "sp-state-machine",
  6144. ]
  6145. [[package]]
  6146. name = "sp-chain-spec"
  6147. version = "2.0.0"
  6148. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6149. dependencies = [
  6150. "serde",
  6151. "serde_json",
  6152. ]
  6153. [[package]]
  6154. name = "sp-consensus"
  6155. version = "0.8.0"
  6156. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6157. dependencies = [
  6158. "derive_more",
  6159. "futures 0.3.8",
  6160. "futures-timer 3.0.2",
  6161. "libp2p",
  6162. "log",
  6163. "parity-scale-codec",
  6164. "parking_lot 0.10.2",
  6165. "serde",
  6166. "sp-api",
  6167. "sp-core",
  6168. "sp-inherents",
  6169. "sp-runtime",
  6170. "sp-state-machine",
  6171. "sp-std",
  6172. "sp-trie",
  6173. "sp-utils",
  6174. "sp-version",
  6175. "substrate-prometheus-endpoint",
  6176. "wasm-timer",
  6177. ]
  6178. [[package]]
  6179. name = "sp-consensus-aura"
  6180. version = "0.8.0"
  6181. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6182. dependencies = [
  6183. "parity-scale-codec",
  6184. "sp-api",
  6185. "sp-application-crypto",
  6186. "sp-inherents",
  6187. "sp-runtime",
  6188. "sp-std",
  6189. "sp-timestamp",
  6190. ]
  6191. [[package]]
  6192. name = "sp-consensus-babe"
  6193. version = "0.8.0"
  6194. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6195. dependencies = [
  6196. "merlin",
  6197. "parity-scale-codec",
  6198. "sp-api",
  6199. "sp-application-crypto",
  6200. "sp-consensus",
  6201. "sp-consensus-slots",
  6202. "sp-consensus-vrf",
  6203. "sp-core",
  6204. "sp-inherents",
  6205. "sp-runtime",
  6206. "sp-std",
  6207. "sp-timestamp",
  6208. ]
  6209. [[package]]
  6210. name = "sp-consensus-slots"
  6211. version = "0.8.0"
  6212. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6213. dependencies = [
  6214. "parity-scale-codec",
  6215. "sp-runtime",
  6216. ]
  6217. [[package]]
  6218. name = "sp-consensus-vrf"
  6219. version = "0.8.0"
  6220. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6221. dependencies = [
  6222. "parity-scale-codec",
  6223. "schnorrkel",
  6224. "sp-core",
  6225. "sp-runtime",
  6226. "sp-std",
  6227. ]
  6228. [[package]]
  6229. name = "sp-core"
  6230. version = "2.0.0"
  6231. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6232. dependencies = [
  6233. "base58",
  6234. "blake2-rfc",
  6235. "byteorder 1.3.4",
  6236. "derive_more",
  6237. "dyn-clonable",
  6238. "ed25519-dalek",
  6239. "futures 0.3.8",
  6240. "hash-db",
  6241. "hash256-std-hasher",
  6242. "hex",
  6243. "impl-serde",
  6244. "lazy_static",
  6245. "libsecp256k1",
  6246. "log",
  6247. "merlin",
  6248. "num-traits",
  6249. "parity-scale-codec",
  6250. "parity-util-mem",
  6251. "parking_lot 0.10.2",
  6252. "primitive-types",
  6253. "rand 0.7.3",
  6254. "regex",
  6255. "schnorrkel",
  6256. "secrecy",
  6257. "serde",
  6258. "sha2 0.8.2",
  6259. "sp-debug-derive",
  6260. "sp-externalities",
  6261. "sp-runtime-interface",
  6262. "sp-std",
  6263. "sp-storage",
  6264. "substrate-bip39",
  6265. "tiny-bip39",
  6266. "tiny-keccak",
  6267. "twox-hash",
  6268. "wasmi",
  6269. "zeroize",
  6270. ]
  6271. [[package]]
  6272. name = "sp-database"
  6273. version = "2.0.0"
  6274. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6275. dependencies = [
  6276. "kvdb",
  6277. "parking_lot 0.10.2",
  6278. ]
  6279. [[package]]
  6280. name = "sp-debug-derive"
  6281. version = "2.0.0"
  6282. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6283. dependencies = [
  6284. "proc-macro2",
  6285. "quote",
  6286. "syn",
  6287. ]
  6288. [[package]]
  6289. name = "sp-externalities"
  6290. version = "0.8.0"
  6291. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6292. dependencies = [
  6293. "environmental",
  6294. "parity-scale-codec",
  6295. "sp-std",
  6296. "sp-storage",
  6297. ]
  6298. [[package]]
  6299. name = "sp-finality-grandpa"
  6300. version = "2.0.0"
  6301. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6302. dependencies = [
  6303. "finality-grandpa",
  6304. "log",
  6305. "parity-scale-codec",
  6306. "serde",
  6307. "sp-api",
  6308. "sp-application-crypto",
  6309. "sp-core",
  6310. "sp-runtime",
  6311. "sp-std",
  6312. ]
  6313. [[package]]
  6314. name = "sp-finality-tracker"
  6315. version = "2.0.0"
  6316. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6317. dependencies = [
  6318. "parity-scale-codec",
  6319. "sp-inherents",
  6320. "sp-std",
  6321. ]
  6322. [[package]]
  6323. name = "sp-inherents"
  6324. version = "2.0.0"
  6325. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6326. dependencies = [
  6327. "derive_more",
  6328. "parity-scale-codec",
  6329. "parking_lot 0.10.2",
  6330. "sp-core",
  6331. "sp-std",
  6332. ]
  6333. [[package]]
  6334. name = "sp-io"
  6335. version = "2.0.0"
  6336. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6337. dependencies = [
  6338. "futures 0.3.8",
  6339. "hash-db",
  6340. "libsecp256k1",
  6341. "log",
  6342. "parity-scale-codec",
  6343. "parking_lot 0.10.2",
  6344. "sp-core",
  6345. "sp-externalities",
  6346. "sp-runtime-interface",
  6347. "sp-state-machine",
  6348. "sp-std",
  6349. "sp-tracing",
  6350. "sp-trie",
  6351. "sp-wasm-interface",
  6352. "tracing",
  6353. "tracing-core",
  6354. ]
  6355. [[package]]
  6356. name = "sp-keyring"
  6357. version = "2.0.0"
  6358. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6359. dependencies = [
  6360. "lazy_static",
  6361. "sp-core",
  6362. "sp-runtime",
  6363. "strum 0.16.0",
  6364. ]
  6365. [[package]]
  6366. name = "sp-npos-elections"
  6367. version = "2.0.0"
  6368. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6369. dependencies = [
  6370. "parity-scale-codec",
  6371. "serde",
  6372. "sp-arithmetic",
  6373. "sp-npos-elections-compact",
  6374. "sp-std",
  6375. ]
  6376. [[package]]
  6377. name = "sp-npos-elections-compact"
  6378. version = "2.0.0"
  6379. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6380. dependencies = [
  6381. "proc-macro-crate",
  6382. "proc-macro2",
  6383. "quote",
  6384. "syn",
  6385. ]
  6386. [[package]]
  6387. name = "sp-offchain"
  6388. version = "2.0.0"
  6389. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6390. dependencies = [
  6391. "sp-api",
  6392. "sp-core",
  6393. "sp-runtime",
  6394. ]
  6395. [[package]]
  6396. name = "sp-panic-handler"
  6397. version = "2.0.0"
  6398. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6399. dependencies = [
  6400. "backtrace",
  6401. "log",
  6402. ]
  6403. [[package]]
  6404. name = "sp-rpc"
  6405. version = "2.0.0"
  6406. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6407. dependencies = [
  6408. "serde",
  6409. "sp-core",
  6410. ]
  6411. [[package]]
  6412. name = "sp-runtime"
  6413. version = "2.0.0"
  6414. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6415. dependencies = [
  6416. "either",
  6417. "hash256-std-hasher",
  6418. "impl-trait-for-tuples",
  6419. "log",
  6420. "parity-scale-codec",
  6421. "parity-util-mem",
  6422. "paste",
  6423. "rand 0.7.3",
  6424. "serde",
  6425. "sp-application-crypto",
  6426. "sp-arithmetic",
  6427. "sp-core",
  6428. "sp-inherents",
  6429. "sp-io",
  6430. "sp-std",
  6431. ]
  6432. [[package]]
  6433. name = "sp-runtime-interface"
  6434. version = "2.0.0"
  6435. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6436. dependencies = [
  6437. "parity-scale-codec",
  6438. "primitive-types",
  6439. "sp-externalities",
  6440. "sp-runtime-interface-proc-macro",
  6441. "sp-std",
  6442. "sp-storage",
  6443. "sp-tracing",
  6444. "sp-wasm-interface",
  6445. "static_assertions",
  6446. ]
  6447. [[package]]
  6448. name = "sp-runtime-interface-proc-macro"
  6449. version = "2.0.0"
  6450. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6451. dependencies = [
  6452. "Inflector",
  6453. "proc-macro-crate",
  6454. "proc-macro2",
  6455. "quote",
  6456. "syn",
  6457. ]
  6458. [[package]]
  6459. name = "sp-serializer"
  6460. version = "2.0.0"
  6461. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6462. dependencies = [
  6463. "serde",
  6464. "serde_json",
  6465. ]
  6466. [[package]]
  6467. name = "sp-session"
  6468. version = "2.0.0"
  6469. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6470. dependencies = [
  6471. "parity-scale-codec",
  6472. "sp-api",
  6473. "sp-core",
  6474. "sp-runtime",
  6475. "sp-staking",
  6476. "sp-std",
  6477. ]
  6478. [[package]]
  6479. name = "sp-staking"
  6480. version = "2.0.0"
  6481. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6482. dependencies = [
  6483. "parity-scale-codec",
  6484. "sp-runtime",
  6485. "sp-std",
  6486. ]
  6487. [[package]]
  6488. name = "sp-state-machine"
  6489. version = "0.8.0"
  6490. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6491. dependencies = [
  6492. "hash-db",
  6493. "log",
  6494. "num-traits",
  6495. "parity-scale-codec",
  6496. "parking_lot 0.10.2",
  6497. "rand 0.7.3",
  6498. "smallvec 1.5.0",
  6499. "sp-core",
  6500. "sp-externalities",
  6501. "sp-panic-handler",
  6502. "sp-std",
  6503. "sp-trie",
  6504. "trie-db",
  6505. "trie-root",
  6506. ]
  6507. [[package]]
  6508. name = "sp-std"
  6509. version = "2.0.0"
  6510. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6511. [[package]]
  6512. name = "sp-storage"
  6513. version = "2.0.0"
  6514. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6515. dependencies = [
  6516. "impl-serde",
  6517. "parity-scale-codec",
  6518. "ref-cast",
  6519. "serde",
  6520. "sp-debug-derive",
  6521. "sp-std",
  6522. ]
  6523. [[package]]
  6524. name = "sp-timestamp"
  6525. version = "2.0.0"
  6526. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6527. dependencies = [
  6528. "impl-trait-for-tuples",
  6529. "parity-scale-codec",
  6530. "sp-api",
  6531. "sp-inherents",
  6532. "sp-runtime",
  6533. "sp-std",
  6534. "wasm-timer",
  6535. ]
  6536. [[package]]
  6537. name = "sp-tracing"
  6538. version = "2.0.0"
  6539. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6540. dependencies = [
  6541. "log",
  6542. "parity-scale-codec",
  6543. "sp-std",
  6544. "tracing",
  6545. "tracing-core",
  6546. "tracing-subscriber",
  6547. ]
  6548. [[package]]
  6549. name = "sp-transaction-pool"
  6550. version = "2.0.0"
  6551. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6552. dependencies = [
  6553. "derive_more",
  6554. "futures 0.3.8",
  6555. "log",
  6556. "parity-scale-codec",
  6557. "serde",
  6558. "sp-api",
  6559. "sp-blockchain",
  6560. "sp-runtime",
  6561. ]
  6562. [[package]]
  6563. name = "sp-trie"
  6564. version = "2.0.0"
  6565. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6566. dependencies = [
  6567. "hash-db",
  6568. "memory-db",
  6569. "parity-scale-codec",
  6570. "sp-core",
  6571. "sp-std",
  6572. "trie-db",
  6573. "trie-root",
  6574. ]
  6575. [[package]]
  6576. name = "sp-utils"
  6577. version = "2.0.0"
  6578. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6579. dependencies = [
  6580. "futures 0.3.8",
  6581. "futures-core",
  6582. "futures-timer 3.0.2",
  6583. "lazy_static",
  6584. "prometheus",
  6585. ]
  6586. [[package]]
  6587. name = "sp-version"
  6588. version = "2.0.0"
  6589. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6590. dependencies = [
  6591. "impl-serde",
  6592. "parity-scale-codec",
  6593. "serde",
  6594. "sp-runtime",
  6595. "sp-std",
  6596. ]
  6597. [[package]]
  6598. name = "sp-wasm-interface"
  6599. version = "2.0.0"
  6600. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6601. dependencies = [
  6602. "impl-trait-for-tuples",
  6603. "parity-scale-codec",
  6604. "sp-std",
  6605. "wasmi",
  6606. ]
  6607. [[package]]
  6608. name = "spin"
  6609. version = "0.5.2"
  6610. source = "registry+https://github.com/rust-lang/crates.io-index"
  6611. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  6612. [[package]]
  6613. name = "stable_deref_trait"
  6614. version = "1.2.0"
  6615. source = "registry+https://github.com/rust-lang/crates.io-index"
  6616. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  6617. [[package]]
  6618. name = "staking-handler"
  6619. version = "1.0.0"
  6620. dependencies = [
  6621. "frame-support",
  6622. "frame-system",
  6623. "pallet-balances",
  6624. "pallet-common",
  6625. "pallet-membership",
  6626. "pallet-timestamp",
  6627. "parity-scale-codec",
  6628. "sp-arithmetic",
  6629. "sp-core",
  6630. "sp-io",
  6631. "sp-runtime",
  6632. "sp-std",
  6633. ]
  6634. [[package]]
  6635. name = "static_assertions"
  6636. version = "1.1.0"
  6637. source = "registry+https://github.com/rust-lang/crates.io-index"
  6638. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  6639. [[package]]
  6640. name = "statrs"
  6641. version = "0.10.0"
  6642. source = "registry+https://github.com/rust-lang/crates.io-index"
  6643. checksum = "10102ac8d55e35db2b3fafc26f81ba8647da2e15879ab686a67e6d19af2685e8"
  6644. dependencies = [
  6645. "rand 0.5.6",
  6646. ]
  6647. [[package]]
  6648. name = "stream-cipher"
  6649. version = "0.7.1"
  6650. source = "registry+https://github.com/rust-lang/crates.io-index"
  6651. checksum = "c80e15f898d8d8f25db24c253ea615cc14acf418ff307822995814e7d42cfa89"
  6652. dependencies = [
  6653. "block-cipher",
  6654. "generic-array 0.14.4",
  6655. ]
  6656. [[package]]
  6657. name = "string"
  6658. version = "0.2.1"
  6659. source = "registry+https://github.com/rust-lang/crates.io-index"
  6660. checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
  6661. dependencies = [
  6662. "bytes 0.4.12",
  6663. ]
  6664. [[package]]
  6665. name = "strsim"
  6666. version = "0.8.0"
  6667. source = "registry+https://github.com/rust-lang/crates.io-index"
  6668. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  6669. [[package]]
  6670. name = "structopt"
  6671. version = "0.3.21"
  6672. source = "registry+https://github.com/rust-lang/crates.io-index"
  6673. checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c"
  6674. dependencies = [
  6675. "clap",
  6676. "lazy_static",
  6677. "structopt-derive",
  6678. ]
  6679. [[package]]
  6680. name = "structopt-derive"
  6681. version = "0.4.14"
  6682. source = "registry+https://github.com/rust-lang/crates.io-index"
  6683. checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90"
  6684. dependencies = [
  6685. "heck",
  6686. "proc-macro-error",
  6687. "proc-macro2",
  6688. "quote",
  6689. "syn",
  6690. ]
  6691. [[package]]
  6692. name = "strum"
  6693. version = "0.16.0"
  6694. source = "registry+https://github.com/rust-lang/crates.io-index"
  6695. checksum = "6138f8f88a16d90134763314e3fc76fa3ed6a7db4725d6acf9a3ef95a3188d22"
  6696. dependencies = [
  6697. "strum_macros 0.16.0",
  6698. ]
  6699. [[package]]
  6700. name = "strum"
  6701. version = "0.19.5"
  6702. source = "registry+https://github.com/rust-lang/crates.io-index"
  6703. checksum = "b89a286a7e3b5720b9a477b23253bc50debac207c8d21505f8e70b36792f11b5"
  6704. [[package]]
  6705. name = "strum_macros"
  6706. version = "0.16.0"
  6707. source = "registry+https://github.com/rust-lang/crates.io-index"
  6708. checksum = "0054a7df764039a6cd8592b9de84be4bec368ff081d203a7d5371cbfa8e65c81"
  6709. dependencies = [
  6710. "heck",
  6711. "proc-macro2",
  6712. "quote",
  6713. "syn",
  6714. ]
  6715. [[package]]
  6716. name = "strum_macros"
  6717. version = "0.19.4"
  6718. source = "registry+https://github.com/rust-lang/crates.io-index"
  6719. checksum = "e61bb0be289045cb80bfce000512e32d09f8337e54c186725da381377ad1f8d5"
  6720. dependencies = [
  6721. "heck",
  6722. "proc-macro2",
  6723. "quote",
  6724. "syn",
  6725. ]
  6726. [[package]]
  6727. name = "substrate-bip39"
  6728. version = "0.4.2"
  6729. source = "registry+https://github.com/rust-lang/crates.io-index"
  6730. checksum = "bed6646a0159b9935b5d045611560eeef842b78d7adc3ba36f5ca325a13a0236"
  6731. dependencies = [
  6732. "hmac",
  6733. "pbkdf2",
  6734. "schnorrkel",
  6735. "sha2 0.8.2",
  6736. "zeroize",
  6737. ]
  6738. [[package]]
  6739. name = "substrate-browser-utils"
  6740. version = "0.8.0"
  6741. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6742. dependencies = [
  6743. "chrono",
  6744. "console_error_panic_hook",
  6745. "console_log",
  6746. "futures 0.1.30",
  6747. "futures 0.3.8",
  6748. "futures-timer 3.0.2",
  6749. "js-sys",
  6750. "kvdb-web",
  6751. "libp2p-wasm-ext",
  6752. "log",
  6753. "rand 0.6.5",
  6754. "rand 0.7.3",
  6755. "sc-chain-spec",
  6756. "sc-informant",
  6757. "sc-network",
  6758. "sc-service",
  6759. "sp-database",
  6760. "wasm-bindgen",
  6761. "wasm-bindgen-futures",
  6762. ]
  6763. [[package]]
  6764. name = "substrate-build-script-utils"
  6765. version = "2.0.0"
  6766. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6767. dependencies = [
  6768. "platforms",
  6769. ]
  6770. [[package]]
  6771. name = "substrate-frame-rpc-system"
  6772. version = "2.0.0"
  6773. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6774. dependencies = [
  6775. "frame-system-rpc-runtime-api",
  6776. "futures 0.3.8",
  6777. "jsonrpc-core",
  6778. "jsonrpc-core-client",
  6779. "jsonrpc-derive",
  6780. "log",
  6781. "parity-scale-codec",
  6782. "sc-client-api",
  6783. "sc-rpc-api",
  6784. "serde",
  6785. "sp-api",
  6786. "sp-block-builder",
  6787. "sp-blockchain",
  6788. "sp-core",
  6789. "sp-runtime",
  6790. "sp-transaction-pool",
  6791. ]
  6792. [[package]]
  6793. name = "substrate-prometheus-endpoint"
  6794. version = "0.8.0"
  6795. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6796. dependencies = [
  6797. "async-std",
  6798. "derive_more",
  6799. "futures-util",
  6800. "hyper 0.13.9",
  6801. "log",
  6802. "prometheus",
  6803. "tokio 0.2.23",
  6804. ]
  6805. [[package]]
  6806. name = "substrate-test-client"
  6807. version = "2.0.0"
  6808. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6809. dependencies = [
  6810. "futures 0.1.30",
  6811. "futures 0.3.8",
  6812. "hash-db",
  6813. "hex",
  6814. "parity-scale-codec",
  6815. "sc-client-api",
  6816. "sc-client-db",
  6817. "sc-consensus",
  6818. "sc-executor",
  6819. "sc-light",
  6820. "sc-service",
  6821. "serde",
  6822. "serde_json",
  6823. "sp-blockchain",
  6824. "sp-consensus",
  6825. "sp-core",
  6826. "sp-keyring",
  6827. "sp-runtime",
  6828. "sp-state-machine",
  6829. ]
  6830. [[package]]
  6831. name = "substrate-test-runtime"
  6832. version = "2.0.0"
  6833. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6834. dependencies = [
  6835. "cfg-if 0.1.10",
  6836. "frame-executive",
  6837. "frame-support",
  6838. "frame-system",
  6839. "frame-system-rpc-runtime-api",
  6840. "log",
  6841. "memory-db",
  6842. "pallet-babe",
  6843. "pallet-timestamp",
  6844. "parity-scale-codec",
  6845. "parity-util-mem",
  6846. "sc-service",
  6847. "serde",
  6848. "sp-api",
  6849. "sp-application-crypto",
  6850. "sp-block-builder",
  6851. "sp-consensus-aura",
  6852. "sp-consensus-babe",
  6853. "sp-core",
  6854. "sp-externalities",
  6855. "sp-finality-grandpa",
  6856. "sp-inherents",
  6857. "sp-io",
  6858. "sp-keyring",
  6859. "sp-offchain",
  6860. "sp-runtime",
  6861. "sp-runtime-interface",
  6862. "sp-session",
  6863. "sp-state-machine",
  6864. "sp-std",
  6865. "sp-transaction-pool",
  6866. "sp-trie",
  6867. "sp-version",
  6868. "substrate-wasm-builder-runner",
  6869. "trie-db",
  6870. ]
  6871. [[package]]
  6872. name = "substrate-test-runtime-client"
  6873. version = "2.0.0"
  6874. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6875. dependencies = [
  6876. "futures 0.3.8",
  6877. "parity-scale-codec",
  6878. "sc-block-builder",
  6879. "sc-client-api",
  6880. "sc-consensus",
  6881. "sc-light",
  6882. "sc-service",
  6883. "sp-api",
  6884. "sp-blockchain",
  6885. "sp-consensus",
  6886. "sp-core",
  6887. "sp-runtime",
  6888. "substrate-test-client",
  6889. "substrate-test-runtime",
  6890. ]
  6891. [[package]]
  6892. name = "substrate-wasm-builder-runner"
  6893. version = "1.0.6"
  6894. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6895. [[package]]
  6896. name = "subtle"
  6897. version = "1.0.0"
  6898. source = "registry+https://github.com/rust-lang/crates.io-index"
  6899. checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
  6900. [[package]]
  6901. name = "subtle"
  6902. version = "2.3.0"
  6903. source = "registry+https://github.com/rust-lang/crates.io-index"
  6904. checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
  6905. [[package]]
  6906. name = "syn"
  6907. version = "1.0.53"
  6908. source = "registry+https://github.com/rust-lang/crates.io-index"
  6909. checksum = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68"
  6910. dependencies = [
  6911. "proc-macro2",
  6912. "quote",
  6913. "unicode-xid",
  6914. ]
  6915. [[package]]
  6916. name = "synstructure"
  6917. version = "0.12.4"
  6918. source = "registry+https://github.com/rust-lang/crates.io-index"
  6919. checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
  6920. dependencies = [
  6921. "proc-macro2",
  6922. "quote",
  6923. "syn",
  6924. "unicode-xid",
  6925. ]
  6926. [[package]]
  6927. name = "take_mut"
  6928. version = "0.2.2"
  6929. source = "registry+https://github.com/rust-lang/crates.io-index"
  6930. checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
  6931. [[package]]
  6932. name = "tempfile"
  6933. version = "3.1.0"
  6934. source = "registry+https://github.com/rust-lang/crates.io-index"
  6935. checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  6936. dependencies = [
  6937. "cfg-if 0.1.10",
  6938. "libc",
  6939. "rand 0.7.3",
  6940. "redox_syscall",
  6941. "remove_dir_all",
  6942. "winapi 0.3.9",
  6943. ]
  6944. [[package]]
  6945. name = "termcolor"
  6946. version = "1.1.2"
  6947. source = "registry+https://github.com/rust-lang/crates.io-index"
  6948. checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
  6949. dependencies = [
  6950. "winapi-util",
  6951. ]
  6952. [[package]]
  6953. name = "textwrap"
  6954. version = "0.11.0"
  6955. source = "registry+https://github.com/rust-lang/crates.io-index"
  6956. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  6957. dependencies = [
  6958. "unicode-width",
  6959. ]
  6960. [[package]]
  6961. name = "thiserror"
  6962. version = "1.0.22"
  6963. source = "registry+https://github.com/rust-lang/crates.io-index"
  6964. checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
  6965. dependencies = [
  6966. "thiserror-impl",
  6967. ]
  6968. [[package]]
  6969. name = "thiserror-impl"
  6970. version = "1.0.22"
  6971. source = "registry+https://github.com/rust-lang/crates.io-index"
  6972. checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
  6973. dependencies = [
  6974. "proc-macro2",
  6975. "quote",
  6976. "syn",
  6977. ]
  6978. [[package]]
  6979. name = "thread_local"
  6980. version = "1.0.1"
  6981. source = "registry+https://github.com/rust-lang/crates.io-index"
  6982. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  6983. dependencies = [
  6984. "lazy_static",
  6985. ]
  6986. [[package]]
  6987. name = "threadpool"
  6988. version = "1.8.1"
  6989. source = "registry+https://github.com/rust-lang/crates.io-index"
  6990. checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
  6991. dependencies = [
  6992. "num_cpus",
  6993. ]
  6994. [[package]]
  6995. name = "time"
  6996. version = "0.1.44"
  6997. source = "registry+https://github.com/rust-lang/crates.io-index"
  6998. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  6999. dependencies = [
  7000. "libc",
  7001. "wasi 0.10.0+wasi-snapshot-preview1",
  7002. "winapi 0.3.9",
  7003. ]
  7004. [[package]]
  7005. name = "tiny-bip39"
  7006. version = "0.7.3"
  7007. source = "registry+https://github.com/rust-lang/crates.io-index"
  7008. checksum = "b0165e045cc2ae1660270ca65e1676dbaab60feb0f91b10f7d0665e9b47e31f2"
  7009. dependencies = [
  7010. "failure",
  7011. "hmac",
  7012. "once_cell 1.5.2",
  7013. "pbkdf2",
  7014. "rand 0.7.3",
  7015. "rustc-hash",
  7016. "sha2 0.8.2",
  7017. "unicode-normalization",
  7018. ]
  7019. [[package]]
  7020. name = "tiny-keccak"
  7021. version = "2.0.2"
  7022. source = "registry+https://github.com/rust-lang/crates.io-index"
  7023. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  7024. dependencies = [
  7025. "crunchy",
  7026. ]
  7027. [[package]]
  7028. name = "tinyvec"
  7029. version = "1.1.0"
  7030. source = "registry+https://github.com/rust-lang/crates.io-index"
  7031. checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
  7032. dependencies = [
  7033. "tinyvec_macros",
  7034. ]
  7035. [[package]]
  7036. name = "tinyvec_macros"
  7037. version = "0.1.0"
  7038. source = "registry+https://github.com/rust-lang/crates.io-index"
  7039. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  7040. [[package]]
  7041. name = "tokio"
  7042. version = "0.1.22"
  7043. source = "registry+https://github.com/rust-lang/crates.io-index"
  7044. checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
  7045. dependencies = [
  7046. "bytes 0.4.12",
  7047. "futures 0.1.30",
  7048. "mio",
  7049. "num_cpus",
  7050. "tokio-codec",
  7051. "tokio-current-thread",
  7052. "tokio-executor 0.1.10",
  7053. "tokio-fs",
  7054. "tokio-io",
  7055. "tokio-reactor",
  7056. "tokio-sync 0.1.8",
  7057. "tokio-tcp",
  7058. "tokio-threadpool",
  7059. "tokio-timer",
  7060. "tokio-udp",
  7061. "tokio-uds",
  7062. ]
  7063. [[package]]
  7064. name = "tokio"
  7065. version = "0.2.23"
  7066. source = "registry+https://github.com/rust-lang/crates.io-index"
  7067. checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
  7068. dependencies = [
  7069. "bytes 0.5.6",
  7070. "fnv",
  7071. "futures-core",
  7072. "iovec",
  7073. "lazy_static",
  7074. "libc",
  7075. "memchr",
  7076. "mio",
  7077. "mio-uds",
  7078. "num_cpus",
  7079. "pin-project-lite 0.1.11",
  7080. "signal-hook-registry",
  7081. "slab",
  7082. "winapi 0.3.9",
  7083. ]
  7084. [[package]]
  7085. name = "tokio-buf"
  7086. version = "0.1.1"
  7087. source = "registry+https://github.com/rust-lang/crates.io-index"
  7088. checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
  7089. dependencies = [
  7090. "bytes 0.4.12",
  7091. "either",
  7092. "futures 0.1.30",
  7093. ]
  7094. [[package]]
  7095. name = "tokio-codec"
  7096. version = "0.1.2"
  7097. source = "registry+https://github.com/rust-lang/crates.io-index"
  7098. checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
  7099. dependencies = [
  7100. "bytes 0.4.12",
  7101. "futures 0.1.30",
  7102. "tokio-io",
  7103. ]
  7104. [[package]]
  7105. name = "tokio-current-thread"
  7106. version = "0.1.7"
  7107. source = "registry+https://github.com/rust-lang/crates.io-index"
  7108. checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
  7109. dependencies = [
  7110. "futures 0.1.30",
  7111. "tokio-executor 0.1.10",
  7112. ]
  7113. [[package]]
  7114. name = "tokio-executor"
  7115. version = "0.1.10"
  7116. source = "registry+https://github.com/rust-lang/crates.io-index"
  7117. checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
  7118. dependencies = [
  7119. "crossbeam-utils 0.7.2",
  7120. "futures 0.1.30",
  7121. ]
  7122. [[package]]
  7123. name = "tokio-executor"
  7124. version = "0.2.0-alpha.6"
  7125. source = "registry+https://github.com/rust-lang/crates.io-index"
  7126. checksum = "9ee9ceecf69145923834ea73f32ba40c790fd877b74a7817dd0b089f1eb9c7c8"
  7127. dependencies = [
  7128. "futures-util-preview",
  7129. "lazy_static",
  7130. "tokio-sync 0.2.0-alpha.6",
  7131. ]
  7132. [[package]]
  7133. name = "tokio-fs"
  7134. version = "0.1.7"
  7135. source = "registry+https://github.com/rust-lang/crates.io-index"
  7136. checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"
  7137. dependencies = [
  7138. "futures 0.1.30",
  7139. "tokio-io",
  7140. "tokio-threadpool",
  7141. ]
  7142. [[package]]
  7143. name = "tokio-io"
  7144. version = "0.1.13"
  7145. source = "registry+https://github.com/rust-lang/crates.io-index"
  7146. checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
  7147. dependencies = [
  7148. "bytes 0.4.12",
  7149. "futures 0.1.30",
  7150. "log",
  7151. ]
  7152. [[package]]
  7153. name = "tokio-named-pipes"
  7154. version = "0.1.0"
  7155. source = "registry+https://github.com/rust-lang/crates.io-index"
  7156. checksum = "9d282d483052288b2308ba5ee795f5673b159c9bdf63c385a05609da782a5eae"
  7157. dependencies = [
  7158. "bytes 0.4.12",
  7159. "futures 0.1.30",
  7160. "mio",
  7161. "mio-named-pipes",
  7162. "tokio 0.1.22",
  7163. ]
  7164. [[package]]
  7165. name = "tokio-reactor"
  7166. version = "0.1.12"
  7167. source = "registry+https://github.com/rust-lang/crates.io-index"
  7168. checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
  7169. dependencies = [
  7170. "crossbeam-utils 0.7.2",
  7171. "futures 0.1.30",
  7172. "lazy_static",
  7173. "log",
  7174. "mio",
  7175. "num_cpus",
  7176. "parking_lot 0.9.0",
  7177. "slab",
  7178. "tokio-executor 0.1.10",
  7179. "tokio-io",
  7180. "tokio-sync 0.1.8",
  7181. ]
  7182. [[package]]
  7183. name = "tokio-rustls"
  7184. version = "0.14.1"
  7185. source = "registry+https://github.com/rust-lang/crates.io-index"
  7186. checksum = "e12831b255bcfa39dc0436b01e19fea231a37db570686c06ee72c423479f889a"
  7187. dependencies = [
  7188. "futures-core",
  7189. "rustls",
  7190. "tokio 0.2.23",
  7191. "webpki",
  7192. ]
  7193. [[package]]
  7194. name = "tokio-service"
  7195. version = "0.1.0"
  7196. source = "registry+https://github.com/rust-lang/crates.io-index"
  7197. checksum = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162"
  7198. dependencies = [
  7199. "futures 0.1.30",
  7200. ]
  7201. [[package]]
  7202. name = "tokio-sync"
  7203. version = "0.1.8"
  7204. source = "registry+https://github.com/rust-lang/crates.io-index"
  7205. checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
  7206. dependencies = [
  7207. "fnv",
  7208. "futures 0.1.30",
  7209. ]
  7210. [[package]]
  7211. name = "tokio-sync"
  7212. version = "0.2.0-alpha.6"
  7213. source = "registry+https://github.com/rust-lang/crates.io-index"
  7214. checksum = "4f1aaeb685540f7407ea0e27f1c9757d258c7c6bf4e3eb19da6fc59b747239d2"
  7215. dependencies = [
  7216. "fnv",
  7217. "futures-core-preview",
  7218. "futures-util-preview",
  7219. ]
  7220. [[package]]
  7221. name = "tokio-tcp"
  7222. version = "0.1.4"
  7223. source = "registry+https://github.com/rust-lang/crates.io-index"
  7224. checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
  7225. dependencies = [
  7226. "bytes 0.4.12",
  7227. "futures 0.1.30",
  7228. "iovec",
  7229. "mio",
  7230. "tokio-io",
  7231. "tokio-reactor",
  7232. ]
  7233. [[package]]
  7234. name = "tokio-threadpool"
  7235. version = "0.1.18"
  7236. source = "registry+https://github.com/rust-lang/crates.io-index"
  7237. checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
  7238. dependencies = [
  7239. "crossbeam-deque 0.7.3",
  7240. "crossbeam-queue",
  7241. "crossbeam-utils 0.7.2",
  7242. "futures 0.1.30",
  7243. "lazy_static",
  7244. "log",
  7245. "num_cpus",
  7246. "slab",
  7247. "tokio-executor 0.1.10",
  7248. ]
  7249. [[package]]
  7250. name = "tokio-timer"
  7251. version = "0.2.13"
  7252. source = "registry+https://github.com/rust-lang/crates.io-index"
  7253. checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
  7254. dependencies = [
  7255. "crossbeam-utils 0.7.2",
  7256. "futures 0.1.30",
  7257. "slab",
  7258. "tokio-executor 0.1.10",
  7259. ]
  7260. [[package]]
  7261. name = "tokio-udp"
  7262. version = "0.1.6"
  7263. source = "registry+https://github.com/rust-lang/crates.io-index"
  7264. checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"
  7265. dependencies = [
  7266. "bytes 0.4.12",
  7267. "futures 0.1.30",
  7268. "log",
  7269. "mio",
  7270. "tokio-codec",
  7271. "tokio-io",
  7272. "tokio-reactor",
  7273. ]
  7274. [[package]]
  7275. name = "tokio-uds"
  7276. version = "0.2.7"
  7277. source = "registry+https://github.com/rust-lang/crates.io-index"
  7278. checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0"
  7279. dependencies = [
  7280. "bytes 0.4.12",
  7281. "futures 0.1.30",
  7282. "iovec",
  7283. "libc",
  7284. "log",
  7285. "mio",
  7286. "mio-uds",
  7287. "tokio-codec",
  7288. "tokio-io",
  7289. "tokio-reactor",
  7290. ]
  7291. [[package]]
  7292. name = "tokio-util"
  7293. version = "0.3.1"
  7294. source = "registry+https://github.com/rust-lang/crates.io-index"
  7295. checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  7296. dependencies = [
  7297. "bytes 0.5.6",
  7298. "futures-core",
  7299. "futures-sink",
  7300. "log",
  7301. "pin-project-lite 0.1.11",
  7302. "tokio 0.2.23",
  7303. ]
  7304. [[package]]
  7305. name = "toml"
  7306. version = "0.5.7"
  7307. source = "registry+https://github.com/rust-lang/crates.io-index"
  7308. checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
  7309. dependencies = [
  7310. "serde",
  7311. ]
  7312. [[package]]
  7313. name = "tower-service"
  7314. version = "0.3.0"
  7315. source = "registry+https://github.com/rust-lang/crates.io-index"
  7316. checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
  7317. [[package]]
  7318. name = "tracing"
  7319. version = "0.1.22"
  7320. source = "registry+https://github.com/rust-lang/crates.io-index"
  7321. checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
  7322. dependencies = [
  7323. "cfg-if 1.0.0",
  7324. "log",
  7325. "pin-project-lite 0.2.0",
  7326. "tracing-attributes",
  7327. "tracing-core",
  7328. ]
  7329. [[package]]
  7330. name = "tracing-attributes"
  7331. version = "0.1.11"
  7332. source = "registry+https://github.com/rust-lang/crates.io-index"
  7333. checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
  7334. dependencies = [
  7335. "proc-macro2",
  7336. "quote",
  7337. "syn",
  7338. ]
  7339. [[package]]
  7340. name = "tracing-core"
  7341. version = "0.1.17"
  7342. source = "registry+https://github.com/rust-lang/crates.io-index"
  7343. checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
  7344. dependencies = [
  7345. "lazy_static",
  7346. ]
  7347. [[package]]
  7348. name = "tracing-futures"
  7349. version = "0.2.4"
  7350. source = "registry+https://github.com/rust-lang/crates.io-index"
  7351. checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
  7352. dependencies = [
  7353. "pin-project 0.4.27",
  7354. "tracing",
  7355. ]
  7356. [[package]]
  7357. name = "tracing-log"
  7358. version = "0.1.1"
  7359. source = "registry+https://github.com/rust-lang/crates.io-index"
  7360. checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
  7361. dependencies = [
  7362. "lazy_static",
  7363. "log",
  7364. "tracing-core",
  7365. ]
  7366. [[package]]
  7367. name = "tracing-serde"
  7368. version = "0.1.2"
  7369. source = "registry+https://github.com/rust-lang/crates.io-index"
  7370. checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"
  7371. dependencies = [
  7372. "serde",
  7373. "tracing-core",
  7374. ]
  7375. [[package]]
  7376. name = "tracing-subscriber"
  7377. version = "0.2.15"
  7378. source = "registry+https://github.com/rust-lang/crates.io-index"
  7379. checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
  7380. dependencies = [
  7381. "ansi_term 0.12.1",
  7382. "chrono",
  7383. "lazy_static",
  7384. "matchers",
  7385. "regex",
  7386. "serde",
  7387. "serde_json",
  7388. "sharded-slab",
  7389. "smallvec 1.5.0",
  7390. "thread_local",
  7391. "tracing",
  7392. "tracing-core",
  7393. "tracing-log",
  7394. "tracing-serde",
  7395. ]
  7396. [[package]]
  7397. name = "trie-db"
  7398. version = "0.22.1"
  7399. source = "registry+https://github.com/rust-lang/crates.io-index"
  7400. checksum = "9e55f7ace33d6237e14137e386f4e1672e2a5c6bbc97fef9f438581a143971f0"
  7401. dependencies = [
  7402. "hash-db",
  7403. "hashbrown 0.8.2",
  7404. "log",
  7405. "rustc-hex",
  7406. "smallvec 1.5.0",
  7407. ]
  7408. [[package]]
  7409. name = "trie-root"
  7410. version = "0.16.0"
  7411. source = "registry+https://github.com/rust-lang/crates.io-index"
  7412. checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"
  7413. dependencies = [
  7414. "hash-db",
  7415. ]
  7416. [[package]]
  7417. name = "try-lock"
  7418. version = "0.2.3"
  7419. source = "registry+https://github.com/rust-lang/crates.io-index"
  7420. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  7421. [[package]]
  7422. name = "twox-hash"
  7423. version = "1.6.0"
  7424. source = "registry+https://github.com/rust-lang/crates.io-index"
  7425. checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
  7426. dependencies = [
  7427. "cfg-if 0.1.10",
  7428. "rand 0.7.3",
  7429. "static_assertions",
  7430. ]
  7431. [[package]]
  7432. name = "typenum"
  7433. version = "1.12.0"
  7434. source = "registry+https://github.com/rust-lang/crates.io-index"
  7435. checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
  7436. [[package]]
  7437. name = "uint"
  7438. version = "0.8.5"
  7439. source = "registry+https://github.com/rust-lang/crates.io-index"
  7440. checksum = "9db035e67dfaf7edd9aebfe8676afcd63eed53c8a4044fed514c8cccf1835177"
  7441. dependencies = [
  7442. "byteorder 1.3.4",
  7443. "crunchy",
  7444. "rustc-hex",
  7445. "static_assertions",
  7446. ]
  7447. [[package]]
  7448. name = "unicase"
  7449. version = "2.6.0"
  7450. source = "registry+https://github.com/rust-lang/crates.io-index"
  7451. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  7452. dependencies = [
  7453. "version_check",
  7454. ]
  7455. [[package]]
  7456. name = "unicode-bidi"
  7457. version = "0.3.4"
  7458. source = "registry+https://github.com/rust-lang/crates.io-index"
  7459. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  7460. dependencies = [
  7461. "matches",
  7462. ]
  7463. [[package]]
  7464. name = "unicode-normalization"
  7465. version = "0.1.16"
  7466. source = "registry+https://github.com/rust-lang/crates.io-index"
  7467. checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
  7468. dependencies = [
  7469. "tinyvec",
  7470. ]
  7471. [[package]]
  7472. name = "unicode-segmentation"
  7473. version = "1.7.1"
  7474. source = "registry+https://github.com/rust-lang/crates.io-index"
  7475. checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
  7476. [[package]]
  7477. name = "unicode-width"
  7478. version = "0.1.8"
  7479. source = "registry+https://github.com/rust-lang/crates.io-index"
  7480. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  7481. [[package]]
  7482. name = "unicode-xid"
  7483. version = "0.2.1"
  7484. source = "registry+https://github.com/rust-lang/crates.io-index"
  7485. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  7486. [[package]]
  7487. name = "universal-hash"
  7488. version = "0.4.0"
  7489. source = "registry+https://github.com/rust-lang/crates.io-index"
  7490. checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
  7491. dependencies = [
  7492. "generic-array 0.14.4",
  7493. "subtle 2.3.0",
  7494. ]
  7495. [[package]]
  7496. name = "unsigned-varint"
  7497. version = "0.4.0"
  7498. source = "registry+https://github.com/rust-lang/crates.io-index"
  7499. checksum = "669d776983b692a906c881fcd0cfb34271a48e197e4d6cb8df32b05bfc3d3fa5"
  7500. dependencies = [
  7501. "bytes 0.5.6",
  7502. "futures-io",
  7503. "futures-util",
  7504. "futures_codec",
  7505. ]
  7506. [[package]]
  7507. name = "unsigned-varint"
  7508. version = "0.5.1"
  7509. source = "registry+https://github.com/rust-lang/crates.io-index"
  7510. checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35"
  7511. dependencies = [
  7512. "futures-io",
  7513. "futures-util",
  7514. ]
  7515. [[package]]
  7516. name = "untrusted"
  7517. version = "0.7.1"
  7518. source = "registry+https://github.com/rust-lang/crates.io-index"
  7519. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  7520. [[package]]
  7521. name = "url"
  7522. version = "1.7.2"
  7523. source = "registry+https://github.com/rust-lang/crates.io-index"
  7524. checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
  7525. dependencies = [
  7526. "idna 0.1.5",
  7527. "matches",
  7528. "percent-encoding 1.0.1",
  7529. ]
  7530. [[package]]
  7531. name = "url"
  7532. version = "2.2.0"
  7533. source = "registry+https://github.com/rust-lang/crates.io-index"
  7534. checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
  7535. dependencies = [
  7536. "form_urlencoded",
  7537. "idna 0.2.0",
  7538. "matches",
  7539. "percent-encoding 2.1.0",
  7540. ]
  7541. [[package]]
  7542. name = "vcpkg"
  7543. version = "0.2.10"
  7544. source = "registry+https://github.com/rust-lang/crates.io-index"
  7545. checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
  7546. [[package]]
  7547. name = "vec-arena"
  7548. version = "1.0.0"
  7549. source = "registry+https://github.com/rust-lang/crates.io-index"
  7550. checksum = "eafc1b9b2dfc6f5529177b62cf806484db55b32dc7c9658a118e11bbeb33061d"
  7551. [[package]]
  7552. name = "vec_map"
  7553. version = "0.8.2"
  7554. source = "registry+https://github.com/rust-lang/crates.io-index"
  7555. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  7556. [[package]]
  7557. name = "version_check"
  7558. version = "0.9.2"
  7559. source = "registry+https://github.com/rust-lang/crates.io-index"
  7560. checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
  7561. [[package]]
  7562. name = "void"
  7563. version = "1.0.2"
  7564. source = "registry+https://github.com/rust-lang/crates.io-index"
  7565. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  7566. [[package]]
  7567. name = "waker-fn"
  7568. version = "1.1.0"
  7569. source = "registry+https://github.com/rust-lang/crates.io-index"
  7570. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  7571. [[package]]
  7572. name = "want"
  7573. version = "0.2.0"
  7574. source = "registry+https://github.com/rust-lang/crates.io-index"
  7575. checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
  7576. dependencies = [
  7577. "futures 0.1.30",
  7578. "log",
  7579. "try-lock",
  7580. ]
  7581. [[package]]
  7582. name = "want"
  7583. version = "0.3.0"
  7584. source = "registry+https://github.com/rust-lang/crates.io-index"
  7585. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  7586. dependencies = [
  7587. "log",
  7588. "try-lock",
  7589. ]
  7590. [[package]]
  7591. name = "wasi"
  7592. version = "0.9.0+wasi-snapshot-preview1"
  7593. source = "registry+https://github.com/rust-lang/crates.io-index"
  7594. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  7595. [[package]]
  7596. name = "wasi"
  7597. version = "0.10.0+wasi-snapshot-preview1"
  7598. source = "registry+https://github.com/rust-lang/crates.io-index"
  7599. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  7600. [[package]]
  7601. name = "wasm-bindgen"
  7602. version = "0.2.69"
  7603. source = "registry+https://github.com/rust-lang/crates.io-index"
  7604. checksum = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e"
  7605. dependencies = [
  7606. "cfg-if 1.0.0",
  7607. "wasm-bindgen-macro",
  7608. ]
  7609. [[package]]
  7610. name = "wasm-bindgen-backend"
  7611. version = "0.2.69"
  7612. source = "registry+https://github.com/rust-lang/crates.io-index"
  7613. checksum = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62"
  7614. dependencies = [
  7615. "bumpalo",
  7616. "lazy_static",
  7617. "log",
  7618. "proc-macro2",
  7619. "quote",
  7620. "syn",
  7621. "wasm-bindgen-shared",
  7622. ]
  7623. [[package]]
  7624. name = "wasm-bindgen-futures"
  7625. version = "0.4.19"
  7626. source = "registry+https://github.com/rust-lang/crates.io-index"
  7627. checksum = "1fe9756085a84584ee9457a002b7cdfe0bfff169f45d2591d8be1345a6780e35"
  7628. dependencies = [
  7629. "cfg-if 1.0.0",
  7630. "js-sys",
  7631. "wasm-bindgen",
  7632. "web-sys",
  7633. ]
  7634. [[package]]
  7635. name = "wasm-bindgen-macro"
  7636. version = "0.2.69"
  7637. source = "registry+https://github.com/rust-lang/crates.io-index"
  7638. checksum = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084"
  7639. dependencies = [
  7640. "quote",
  7641. "wasm-bindgen-macro-support",
  7642. ]
  7643. [[package]]
  7644. name = "wasm-bindgen-macro-support"
  7645. version = "0.2.69"
  7646. source = "registry+https://github.com/rust-lang/crates.io-index"
  7647. checksum = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549"
  7648. dependencies = [
  7649. "proc-macro2",
  7650. "quote",
  7651. "syn",
  7652. "wasm-bindgen-backend",
  7653. "wasm-bindgen-shared",
  7654. ]
  7655. [[package]]
  7656. name = "wasm-bindgen-shared"
  7657. version = "0.2.69"
  7658. source = "registry+https://github.com/rust-lang/crates.io-index"
  7659. checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158"
  7660. [[package]]
  7661. name = "wasm-timer"
  7662. version = "0.2.5"
  7663. source = "registry+https://github.com/rust-lang/crates.io-index"
  7664. checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
  7665. dependencies = [
  7666. "futures 0.3.8",
  7667. "js-sys",
  7668. "parking_lot 0.11.1",
  7669. "pin-utils",
  7670. "wasm-bindgen",
  7671. "wasm-bindgen-futures",
  7672. "web-sys",
  7673. ]
  7674. [[package]]
  7675. name = "wasmi"
  7676. version = "0.6.2"
  7677. source = "registry+https://github.com/rust-lang/crates.io-index"
  7678. checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff"
  7679. dependencies = [
  7680. "libc",
  7681. "memory_units",
  7682. "num-rational",
  7683. "num-traits",
  7684. "parity-wasm",
  7685. "wasmi-validation",
  7686. ]
  7687. [[package]]
  7688. name = "wasmi-validation"
  7689. version = "0.3.0"
  7690. source = "registry+https://github.com/rust-lang/crates.io-index"
  7691. checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93"
  7692. dependencies = [
  7693. "parity-wasm",
  7694. ]
  7695. [[package]]
  7696. name = "web-sys"
  7697. version = "0.3.46"
  7698. source = "registry+https://github.com/rust-lang/crates.io-index"
  7699. checksum = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3"
  7700. dependencies = [
  7701. "js-sys",
  7702. "wasm-bindgen",
  7703. ]
  7704. [[package]]
  7705. name = "webpki"
  7706. version = "0.21.3"
  7707. source = "registry+https://github.com/rust-lang/crates.io-index"
  7708. checksum = "ab146130f5f790d45f82aeeb09e55a256573373ec64409fc19a6fb82fb1032ae"
  7709. dependencies = [
  7710. "ring",
  7711. "untrusted",
  7712. ]
  7713. [[package]]
  7714. name = "webpki-roots"
  7715. version = "0.18.0"
  7716. source = "registry+https://github.com/rust-lang/crates.io-index"
  7717. checksum = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4"
  7718. dependencies = [
  7719. "webpki",
  7720. ]
  7721. [[package]]
  7722. name = "webpki-roots"
  7723. version = "0.19.0"
  7724. source = "registry+https://github.com/rust-lang/crates.io-index"
  7725. checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
  7726. dependencies = [
  7727. "webpki",
  7728. ]
  7729. [[package]]
  7730. name = "wepoll-sys"
  7731. version = "3.0.1"
  7732. source = "registry+https://github.com/rust-lang/crates.io-index"
  7733. checksum = "0fcb14dea929042224824779fbc82d9fab8d2e6d3cbc0ac404de8edf489e77ff"
  7734. dependencies = [
  7735. "cc",
  7736. ]
  7737. [[package]]
  7738. name = "which"
  7739. version = "3.1.1"
  7740. source = "registry+https://github.com/rust-lang/crates.io-index"
  7741. checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
  7742. dependencies = [
  7743. "libc",
  7744. ]
  7745. [[package]]
  7746. name = "winapi"
  7747. version = "0.2.8"
  7748. source = "registry+https://github.com/rust-lang/crates.io-index"
  7749. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  7750. [[package]]
  7751. name = "winapi"
  7752. version = "0.3.9"
  7753. source = "registry+https://github.com/rust-lang/crates.io-index"
  7754. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7755. dependencies = [
  7756. "winapi-i686-pc-windows-gnu",
  7757. "winapi-x86_64-pc-windows-gnu",
  7758. ]
  7759. [[package]]
  7760. name = "winapi-build"
  7761. version = "0.1.1"
  7762. source = "registry+https://github.com/rust-lang/crates.io-index"
  7763. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  7764. [[package]]
  7765. name = "winapi-i686-pc-windows-gnu"
  7766. version = "0.4.0"
  7767. source = "registry+https://github.com/rust-lang/crates.io-index"
  7768. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7769. [[package]]
  7770. name = "winapi-util"
  7771. version = "0.1.5"
  7772. source = "registry+https://github.com/rust-lang/crates.io-index"
  7773. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  7774. dependencies = [
  7775. "winapi 0.3.9",
  7776. ]
  7777. [[package]]
  7778. name = "winapi-x86_64-pc-windows-gnu"
  7779. version = "0.4.0"
  7780. source = "registry+https://github.com/rust-lang/crates.io-index"
  7781. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  7782. [[package]]
  7783. name = "ws2_32-sys"
  7784. version = "0.2.1"
  7785. source = "registry+https://github.com/rust-lang/crates.io-index"
  7786. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  7787. dependencies = [
  7788. "winapi 0.2.8",
  7789. "winapi-build",
  7790. ]
  7791. [[package]]
  7792. name = "x25519-dalek"
  7793. version = "0.6.0"
  7794. source = "registry+https://github.com/rust-lang/crates.io-index"
  7795. checksum = "637ff90c9540fa3073bb577e65033069e4bae7c79d49d74aa3ffdf5342a53217"
  7796. dependencies = [
  7797. "curve25519-dalek 2.1.0",
  7798. "rand_core 0.5.1",
  7799. "zeroize",
  7800. ]
  7801. [[package]]
  7802. name = "x25519-dalek"
  7803. version = "1.1.0"
  7804. source = "registry+https://github.com/rust-lang/crates.io-index"
  7805. checksum = "bc614d95359fd7afc321b66d2107ede58b246b844cf5d8a0adcca413e439f088"
  7806. dependencies = [
  7807. "curve25519-dalek 3.0.0",
  7808. "rand_core 0.5.1",
  7809. "zeroize",
  7810. ]
  7811. [[package]]
  7812. name = "yamux"
  7813. version = "0.8.0"
  7814. source = "registry+https://github.com/rust-lang/crates.io-index"
  7815. checksum = "9aeb8c4043cac71c3c299dff107171c220d179492350ea198e109a414981b83c"
  7816. dependencies = [
  7817. "futures 0.3.8",
  7818. "log",
  7819. "nohash-hasher",
  7820. "parking_lot 0.11.1",
  7821. "rand 0.7.3",
  7822. "static_assertions",
  7823. ]
  7824. [[package]]
  7825. name = "zeroize"
  7826. version = "1.1.1"
  7827. source = "registry+https://github.com/rust-lang/crates.io-index"
  7828. checksum = "05f33972566adbd2d3588b0491eb94b98b43695c4ef897903470ede4f3f5a28a"
  7829. dependencies = [
  7830. "zeroize_derive",
  7831. ]
  7832. [[package]]
  7833. name = "zeroize_derive"
  7834. version = "1.0.1"
  7835. source = "registry+https://github.com/rust-lang/crates.io-index"
  7836. checksum = "c3f369ddb18862aba61aa49bf31e74d29f0f162dec753063200e1dc084345d16"
  7837. dependencies = [
  7838. "proc-macro2",
  7839. "quote",
  7840. "syn",
  7841. "synstructure",
  7842. ]