Cargo.lock 201 KB

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