Cargo.lock 198 KB

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