Cargo.lock 198 KB

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