Cargo.lock 201 KB

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