Cargo.lock 197 KB

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