Cargo.lock 198 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578
  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-finality-tracker",
  2123. "pallet-forum",
  2124. "pallet-governance",
  2125. "pallet-grandpa",
  2126. "pallet-im-online",
  2127. "pallet-membership",
  2128. "pallet-memo",
  2129. "pallet-offences",
  2130. "pallet-offences-benchmarking",
  2131. "pallet-proposals-codex",
  2132. "pallet-proposals-discussion",
  2133. "pallet-proposals-engine",
  2134. "pallet-randomness-collective-flip",
  2135. "pallet-recurring-reward",
  2136. "pallet-service-discovery",
  2137. "pallet-session",
  2138. "pallet-session-benchmarking",
  2139. "pallet-staking",
  2140. "pallet-staking-handler",
  2141. "pallet-staking-reward-curve",
  2142. "pallet-storage",
  2143. "pallet-sudo",
  2144. "pallet-timestamp",
  2145. "pallet-token-mint",
  2146. "pallet-transaction-payment",
  2147. "pallet-transaction-payment-rpc-runtime-api",
  2148. "pallet-utility",
  2149. "pallet-working-group",
  2150. "parity-scale-codec",
  2151. "serde",
  2152. "sp-api",
  2153. "sp-application-crypto",
  2154. "sp-arithmetic",
  2155. "sp-authority-discovery",
  2156. "sp-block-builder",
  2157. "sp-consensus-babe",
  2158. "sp-core",
  2159. "sp-io",
  2160. "sp-offchain",
  2161. "sp-runtime",
  2162. "sp-session",
  2163. "sp-staking",
  2164. "sp-std",
  2165. "sp-transaction-pool",
  2166. "sp-version",
  2167. "strum 0.19.5",
  2168. "substrate-wasm-builder-runner",
  2169. ]
  2170. [[package]]
  2171. name = "js-sys"
  2172. version = "0.3.46"
  2173. source = "registry+https://github.com/rust-lang/crates.io-index"
  2174. checksum = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175"
  2175. dependencies = [
  2176. "wasm-bindgen",
  2177. ]
  2178. [[package]]
  2179. name = "jsonrpc-client-transports"
  2180. version = "15.1.0"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "489b9c612e60c766f751ab40fcb43cbb55a1e10bb44a9b4307ed510ca598cbd7"
  2183. dependencies = [
  2184. "failure",
  2185. "futures 0.1.30",
  2186. "jsonrpc-core",
  2187. "jsonrpc-pubsub",
  2188. "log",
  2189. "serde",
  2190. "serde_json",
  2191. "url 1.7.2",
  2192. ]
  2193. [[package]]
  2194. name = "jsonrpc-core"
  2195. version = "15.1.0"
  2196. source = "registry+https://github.com/rust-lang/crates.io-index"
  2197. checksum = "0745a6379e3edc893c84ec203589790774e4247420033e71a76d3ab4687991fa"
  2198. dependencies = [
  2199. "futures 0.1.30",
  2200. "log",
  2201. "serde",
  2202. "serde_derive",
  2203. "serde_json",
  2204. ]
  2205. [[package]]
  2206. name = "jsonrpc-core-client"
  2207. version = "15.1.0"
  2208. source = "registry+https://github.com/rust-lang/crates.io-index"
  2209. checksum = "6f764902d7b891344a0acb65625f32f6f7c6db006952143bd650209fbe7d94db"
  2210. dependencies = [
  2211. "jsonrpc-client-transports",
  2212. ]
  2213. [[package]]
  2214. name = "jsonrpc-derive"
  2215. version = "15.1.0"
  2216. source = "registry+https://github.com/rust-lang/crates.io-index"
  2217. checksum = "99a847f9ec7bb52149b2786a17c9cb260d6effc6b8eeb8c16b343a487a7563a3"
  2218. dependencies = [
  2219. "proc-macro-crate",
  2220. "proc-macro2",
  2221. "quote",
  2222. "syn",
  2223. ]
  2224. [[package]]
  2225. name = "jsonrpc-http-server"
  2226. version = "15.1.0"
  2227. source = "registry+https://github.com/rust-lang/crates.io-index"
  2228. checksum = "4fb5c4513b7b542f42da107942b7b759f27120b5cc894729f88254b28dff44b7"
  2229. dependencies = [
  2230. "hyper 0.12.35",
  2231. "jsonrpc-core",
  2232. "jsonrpc-server-utils",
  2233. "log",
  2234. "net2",
  2235. "parking_lot 0.10.2",
  2236. "unicase",
  2237. ]
  2238. [[package]]
  2239. name = "jsonrpc-ipc-server"
  2240. version = "15.1.0"
  2241. source = "registry+https://github.com/rust-lang/crates.io-index"
  2242. checksum = "cf50e53e4eea8f421a7316c5f63e395f7bc7c4e786a6dc54d76fab6ff7aa7ce7"
  2243. dependencies = [
  2244. "jsonrpc-core",
  2245. "jsonrpc-server-utils",
  2246. "log",
  2247. "parity-tokio-ipc",
  2248. "parking_lot 0.10.2",
  2249. "tokio-service",
  2250. ]
  2251. [[package]]
  2252. name = "jsonrpc-pubsub"
  2253. version = "15.1.0"
  2254. source = "registry+https://github.com/rust-lang/crates.io-index"
  2255. checksum = "639558e0604013be9787ae52f798506ae42bf4220fe587bdc5625871cc8b9c77"
  2256. dependencies = [
  2257. "jsonrpc-core",
  2258. "log",
  2259. "parking_lot 0.10.2",
  2260. "rand 0.7.3",
  2261. "serde",
  2262. ]
  2263. [[package]]
  2264. name = "jsonrpc-server-utils"
  2265. version = "15.1.0"
  2266. source = "registry+https://github.com/rust-lang/crates.io-index"
  2267. checksum = "72f1f3990650c033bd8f6bd46deac76d990f9bbfb5f8dc8c4767bf0a00392176"
  2268. dependencies = [
  2269. "bytes 0.4.12",
  2270. "globset",
  2271. "jsonrpc-core",
  2272. "lazy_static",
  2273. "log",
  2274. "tokio 0.1.22",
  2275. "tokio-codec",
  2276. "unicase",
  2277. ]
  2278. [[package]]
  2279. name = "jsonrpc-ws-server"
  2280. version = "15.1.0"
  2281. source = "registry+https://github.com/rust-lang/crates.io-index"
  2282. checksum = "6596fe75209b73a2a75ebe1dce4e60e03b88a2b25e8807b667597f6315150d22"
  2283. dependencies = [
  2284. "jsonrpc-core",
  2285. "jsonrpc-server-utils",
  2286. "log",
  2287. "parity-ws",
  2288. "parking_lot 0.10.2",
  2289. "slab",
  2290. ]
  2291. [[package]]
  2292. name = "keccak"
  2293. version = "0.1.0"
  2294. source = "registry+https://github.com/rust-lang/crates.io-index"
  2295. checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
  2296. [[package]]
  2297. name = "kernel32-sys"
  2298. version = "0.2.2"
  2299. source = "registry+https://github.com/rust-lang/crates.io-index"
  2300. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  2301. dependencies = [
  2302. "winapi 0.2.8",
  2303. "winapi-build",
  2304. ]
  2305. [[package]]
  2306. name = "kv-log-macro"
  2307. version = "1.0.7"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2310. dependencies = [
  2311. "log",
  2312. ]
  2313. [[package]]
  2314. name = "kvdb"
  2315. version = "0.7.0"
  2316. source = "registry+https://github.com/rust-lang/crates.io-index"
  2317. checksum = "0315ef2f688e33844400b31f11c263f2b3dc21d8b9355c6891c5f185fae43f9a"
  2318. dependencies = [
  2319. "parity-util-mem",
  2320. "smallvec 1.5.1",
  2321. ]
  2322. [[package]]
  2323. name = "kvdb-memorydb"
  2324. version = "0.7.0"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. checksum = "73de822b260a3bdfb889dbbb65bb2d473eee2253973d6fa4a5d149a2a4a7c66e"
  2327. dependencies = [
  2328. "kvdb",
  2329. "parity-util-mem",
  2330. "parking_lot 0.10.2",
  2331. ]
  2332. [[package]]
  2333. name = "kvdb-rocksdb"
  2334. version = "0.9.1"
  2335. source = "registry+https://github.com/rust-lang/crates.io-index"
  2336. checksum = "44947dd392f09475af614d740fe0320b66d01cb5b977f664bbbb5e45a70ea4c1"
  2337. dependencies = [
  2338. "fs-swap",
  2339. "kvdb",
  2340. "log",
  2341. "num_cpus",
  2342. "owning_ref",
  2343. "parity-util-mem",
  2344. "parking_lot 0.10.2",
  2345. "regex",
  2346. "rocksdb",
  2347. "smallvec 1.5.1",
  2348. ]
  2349. [[package]]
  2350. name = "kvdb-web"
  2351. version = "0.7.0"
  2352. source = "registry+https://github.com/rust-lang/crates.io-index"
  2353. checksum = "2701a1369d6ea4f1b9f606db46e5e2a4a8e47f22530a07823d653f85ab1f6c34"
  2354. dependencies = [
  2355. "futures 0.3.8",
  2356. "js-sys",
  2357. "kvdb",
  2358. "kvdb-memorydb",
  2359. "log",
  2360. "parity-util-mem",
  2361. "send_wrapper 0.3.0",
  2362. "wasm-bindgen",
  2363. "web-sys",
  2364. ]
  2365. [[package]]
  2366. name = "lazy_static"
  2367. version = "1.4.0"
  2368. source = "registry+https://github.com/rust-lang/crates.io-index"
  2369. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2370. dependencies = [
  2371. "spin",
  2372. ]
  2373. [[package]]
  2374. name = "lazycell"
  2375. version = "1.3.0"
  2376. source = "registry+https://github.com/rust-lang/crates.io-index"
  2377. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  2378. [[package]]
  2379. name = "libc"
  2380. version = "0.2.81"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
  2383. [[package]]
  2384. name = "libloading"
  2385. version = "0.5.2"
  2386. source = "registry+https://github.com/rust-lang/crates.io-index"
  2387. checksum = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
  2388. dependencies = [
  2389. "cc",
  2390. "winapi 0.3.9",
  2391. ]
  2392. [[package]]
  2393. name = "libm"
  2394. version = "0.2.1"
  2395. source = "registry+https://github.com/rust-lang/crates.io-index"
  2396. checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
  2397. [[package]]
  2398. name = "libp2p"
  2399. version = "0.28.1"
  2400. source = "registry+https://github.com/rust-lang/crates.io-index"
  2401. checksum = "571f5a4604c1a40d75651da141dfde29ad15329f537a779528803297d2220274"
  2402. dependencies = [
  2403. "atomic",
  2404. "bytes 0.5.6",
  2405. "futures 0.3.8",
  2406. "lazy_static",
  2407. "libp2p-core",
  2408. "libp2p-core-derive",
  2409. "libp2p-deflate",
  2410. "libp2p-dns",
  2411. "libp2p-floodsub",
  2412. "libp2p-gossipsub",
  2413. "libp2p-identify",
  2414. "libp2p-kad",
  2415. "libp2p-mdns",
  2416. "libp2p-mplex",
  2417. "libp2p-noise",
  2418. "libp2p-ping",
  2419. "libp2p-plaintext",
  2420. "libp2p-pnet",
  2421. "libp2p-request-response",
  2422. "libp2p-swarm",
  2423. "libp2p-tcp",
  2424. "libp2p-uds",
  2425. "libp2p-wasm-ext",
  2426. "libp2p-websocket",
  2427. "libp2p-yamux",
  2428. "multihash",
  2429. "parity-multiaddr",
  2430. "parking_lot 0.10.2",
  2431. "pin-project 0.4.27",
  2432. "smallvec 1.5.1",
  2433. "wasm-timer",
  2434. ]
  2435. [[package]]
  2436. name = "libp2p-core"
  2437. version = "0.22.1"
  2438. source = "registry+https://github.com/rust-lang/crates.io-index"
  2439. checksum = "52f13ba8c7df0768af2eb391696d562c7de88cc3a35122531aaa6a7d77754d25"
  2440. dependencies = [
  2441. "asn1_der",
  2442. "bs58 0.3.1",
  2443. "ed25519-dalek",
  2444. "either",
  2445. "fnv",
  2446. "futures 0.3.8",
  2447. "futures-timer 3.0.2",
  2448. "lazy_static",
  2449. "libsecp256k1",
  2450. "log",
  2451. "multihash",
  2452. "multistream-select",
  2453. "parity-multiaddr",
  2454. "parking_lot 0.10.2",
  2455. "pin-project 0.4.27",
  2456. "prost",
  2457. "prost-build",
  2458. "rand 0.7.3",
  2459. "ring",
  2460. "rw-stream-sink",
  2461. "sha2 0.8.2",
  2462. "smallvec 1.5.1",
  2463. "thiserror",
  2464. "unsigned-varint 0.4.0",
  2465. "void",
  2466. "zeroize",
  2467. ]
  2468. [[package]]
  2469. name = "libp2p-core-derive"
  2470. version = "0.20.2"
  2471. source = "registry+https://github.com/rust-lang/crates.io-index"
  2472. checksum = "f753d9324cd3ec14bf04b8a8cd0d269c87f294153d6bf2a84497a63a5ad22213"
  2473. dependencies = [
  2474. "quote",
  2475. "syn",
  2476. ]
  2477. [[package]]
  2478. name = "libp2p-deflate"
  2479. version = "0.22.0"
  2480. source = "registry+https://github.com/rust-lang/crates.io-index"
  2481. checksum = "74029ae187f35f4b8ddf26b9779a68b340045d708528a103917cdca49a296db5"
  2482. dependencies = [
  2483. "flate2",
  2484. "futures 0.3.8",
  2485. "libp2p-core",
  2486. ]
  2487. [[package]]
  2488. name = "libp2p-dns"
  2489. version = "0.22.0"
  2490. source = "registry+https://github.com/rust-lang/crates.io-index"
  2491. checksum = "7cf319822e08dd65c8e060d2354e9f952895bbc433f5706c75ed010c152aee5e"
  2492. dependencies = [
  2493. "futures 0.3.8",
  2494. "libp2p-core",
  2495. "log",
  2496. ]
  2497. [[package]]
  2498. name = "libp2p-floodsub"
  2499. version = "0.22.0"
  2500. source = "registry+https://github.com/rust-lang/crates.io-index"
  2501. checksum = "d8a9acb43a3e4a4e413e0c4abe0fa49308df7c6335c88534757b647199cb8a51"
  2502. dependencies = [
  2503. "cuckoofilter",
  2504. "fnv",
  2505. "futures 0.3.8",
  2506. "libp2p-core",
  2507. "libp2p-swarm",
  2508. "prost",
  2509. "prost-build",
  2510. "rand 0.7.3",
  2511. "smallvec 1.5.1",
  2512. ]
  2513. [[package]]
  2514. name = "libp2p-gossipsub"
  2515. version = "0.22.0"
  2516. source = "registry+https://github.com/rust-lang/crates.io-index"
  2517. checksum = "ab20fcb60edebe3173bbb708c6ac3444afdf1e3152dc2866b10c4f5497f17467"
  2518. dependencies = [
  2519. "base64 0.11.0",
  2520. "byteorder 1.3.4",
  2521. "bytes 0.5.6",
  2522. "fnv",
  2523. "futures 0.3.8",
  2524. "futures_codec",
  2525. "hex_fmt",
  2526. "libp2p-core",
  2527. "libp2p-swarm",
  2528. "log",
  2529. "lru_time_cache",
  2530. "prost",
  2531. "prost-build",
  2532. "rand 0.7.3",
  2533. "sha2 0.8.2",
  2534. "smallvec 1.5.1",
  2535. "unsigned-varint 0.4.0",
  2536. "wasm-timer",
  2537. ]
  2538. [[package]]
  2539. name = "libp2p-identify"
  2540. version = "0.22.0"
  2541. source = "registry+https://github.com/rust-lang/crates.io-index"
  2542. checksum = "56396ee63aa9164eacf40c2c5d2bda8c4133c2f57e1b0425d51d3a4e362583b1"
  2543. dependencies = [
  2544. "futures 0.3.8",
  2545. "libp2p-core",
  2546. "libp2p-swarm",
  2547. "log",
  2548. "prost",
  2549. "prost-build",
  2550. "smallvec 1.5.1",
  2551. "wasm-timer",
  2552. ]
  2553. [[package]]
  2554. name = "libp2p-kad"
  2555. version = "0.23.0"
  2556. source = "registry+https://github.com/rust-lang/crates.io-index"
  2557. checksum = "cc7fa9047f8b8f544278a35c2d9d45d3b2c1785f2d86d4e1629d6edf97be3955"
  2558. dependencies = [
  2559. "arrayvec 0.5.2",
  2560. "bytes 0.5.6",
  2561. "either",
  2562. "fnv",
  2563. "futures 0.3.8",
  2564. "futures_codec",
  2565. "libp2p-core",
  2566. "libp2p-swarm",
  2567. "log",
  2568. "multihash",
  2569. "prost",
  2570. "prost-build",
  2571. "rand 0.7.3",
  2572. "sha2 0.8.2",
  2573. "smallvec 1.5.1",
  2574. "uint",
  2575. "unsigned-varint 0.4.0",
  2576. "void",
  2577. "wasm-timer",
  2578. ]
  2579. [[package]]
  2580. name = "libp2p-mdns"
  2581. version = "0.22.0"
  2582. source = "registry+https://github.com/rust-lang/crates.io-index"
  2583. checksum = "3173b5a6b2f690c29ae07798d85b9441a131ac76ddae9015ef22905b623d0c69"
  2584. dependencies = [
  2585. "async-std",
  2586. "data-encoding",
  2587. "dns-parser",
  2588. "either",
  2589. "futures 0.3.8",
  2590. "lazy_static",
  2591. "libp2p-core",
  2592. "libp2p-swarm",
  2593. "log",
  2594. "net2",
  2595. "rand 0.7.3",
  2596. "smallvec 1.5.1",
  2597. "void",
  2598. "wasm-timer",
  2599. ]
  2600. [[package]]
  2601. name = "libp2p-mplex"
  2602. version = "0.22.0"
  2603. source = "registry+https://github.com/rust-lang/crates.io-index"
  2604. checksum = "8a73a799cc8410b36e40b8f4c4b6babbcb9efd3727111bf517876e4acfa612d3"
  2605. dependencies = [
  2606. "bytes 0.5.6",
  2607. "fnv",
  2608. "futures 0.3.8",
  2609. "futures_codec",
  2610. "libp2p-core",
  2611. "log",
  2612. "parking_lot 0.10.2",
  2613. "unsigned-varint 0.4.0",
  2614. ]
  2615. [[package]]
  2616. name = "libp2p-noise"
  2617. version = "0.24.0"
  2618. source = "registry+https://github.com/rust-lang/crates.io-index"
  2619. checksum = "6ef6c490042f549fb1025f2892dfe6083d97a77558f450c1feebe748ca9eb15a"
  2620. dependencies = [
  2621. "bytes 0.5.6",
  2622. "curve25519-dalek 2.1.0",
  2623. "futures 0.3.8",
  2624. "lazy_static",
  2625. "libp2p-core",
  2626. "log",
  2627. "prost",
  2628. "prost-build",
  2629. "rand 0.7.3",
  2630. "sha2 0.8.2",
  2631. "snow",
  2632. "static_assertions",
  2633. "x25519-dalek 0.6.0",
  2634. "zeroize",
  2635. ]
  2636. [[package]]
  2637. name = "libp2p-ping"
  2638. version = "0.22.0"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "ad063c21dfcea4518ac9e8bd4119d33a5b26c41e674f602f41f05617a368a5c8"
  2641. dependencies = [
  2642. "futures 0.3.8",
  2643. "libp2p-core",
  2644. "libp2p-swarm",
  2645. "log",
  2646. "rand 0.7.3",
  2647. "void",
  2648. "wasm-timer",
  2649. ]
  2650. [[package]]
  2651. name = "libp2p-plaintext"
  2652. version = "0.22.0"
  2653. source = "registry+https://github.com/rust-lang/crates.io-index"
  2654. checksum = "903a12e99c72dbebefea258de887982adeacc7025baa1ceb10b7fa9928f54791"
  2655. dependencies = [
  2656. "bytes 0.5.6",
  2657. "futures 0.3.8",
  2658. "futures_codec",
  2659. "libp2p-core",
  2660. "log",
  2661. "prost",
  2662. "prost-build",
  2663. "rw-stream-sink",
  2664. "unsigned-varint 0.4.0",
  2665. "void",
  2666. ]
  2667. [[package]]
  2668. name = "libp2p-pnet"
  2669. version = "0.19.2"
  2670. source = "registry+https://github.com/rust-lang/crates.io-index"
  2671. checksum = "96b3c2d5d26a9500e959a0e19743897239a6c4be78dadf99b70414301a70c006"
  2672. dependencies = [
  2673. "futures 0.3.8",
  2674. "log",
  2675. "pin-project 0.4.27",
  2676. "rand 0.7.3",
  2677. "salsa20",
  2678. "sha3",
  2679. ]
  2680. [[package]]
  2681. name = "libp2p-request-response"
  2682. version = "0.3.0"
  2683. source = "registry+https://github.com/rust-lang/crates.io-index"
  2684. checksum = "9c0c9e8a4cd69d97e9646c54313d007512f411aba8c5226cfcda16df6a6e84a3"
  2685. dependencies = [
  2686. "async-trait",
  2687. "bytes 0.5.6",
  2688. "futures 0.3.8",
  2689. "libp2p-core",
  2690. "libp2p-swarm",
  2691. "log",
  2692. "lru 0.6.1",
  2693. "minicbor",
  2694. "rand 0.7.3",
  2695. "smallvec 1.5.1",
  2696. "unsigned-varint 0.5.1",
  2697. "wasm-timer",
  2698. ]
  2699. [[package]]
  2700. name = "libp2p-swarm"
  2701. version = "0.22.0"
  2702. source = "registry+https://github.com/rust-lang/crates.io-index"
  2703. checksum = "7193e444210132237b81b755ec7fe53f1c4bd2f53cf719729b94c0c72eb6eaa1"
  2704. dependencies = [
  2705. "either",
  2706. "futures 0.3.8",
  2707. "libp2p-core",
  2708. "log",
  2709. "rand 0.7.3",
  2710. "smallvec 1.5.1",
  2711. "void",
  2712. "wasm-timer",
  2713. ]
  2714. [[package]]
  2715. name = "libp2p-tcp"
  2716. version = "0.22.0"
  2717. source = "registry+https://github.com/rust-lang/crates.io-index"
  2718. checksum = "44f42ec130d7a37a7e47bf4398026b7ad9185c08ed26972e2720f8b94112796f"
  2719. dependencies = [
  2720. "async-std",
  2721. "futures 0.3.8",
  2722. "futures-timer 3.0.2",
  2723. "get_if_addrs",
  2724. "ipnet",
  2725. "libp2p-core",
  2726. "log",
  2727. "socket2",
  2728. ]
  2729. [[package]]
  2730. name = "libp2p-uds"
  2731. version = "0.22.0"
  2732. source = "registry+https://github.com/rust-lang/crates.io-index"
  2733. checksum = "dea7acb0a034f70d7db94c300eba3f65c0f6298820105624088a9609c9974d77"
  2734. dependencies = [
  2735. "async-std",
  2736. "futures 0.3.8",
  2737. "libp2p-core",
  2738. "log",
  2739. ]
  2740. [[package]]
  2741. name = "libp2p-wasm-ext"
  2742. version = "0.22.0"
  2743. source = "registry+https://github.com/rust-lang/crates.io-index"
  2744. checksum = "34c1faac6f92c21fbe155417957863ea822fba9e9fd5eb24c0912336a100e63f"
  2745. dependencies = [
  2746. "futures 0.3.8",
  2747. "js-sys",
  2748. "libp2p-core",
  2749. "parity-send-wrapper",
  2750. "wasm-bindgen",
  2751. "wasm-bindgen-futures",
  2752. ]
  2753. [[package]]
  2754. name = "libp2p-websocket"
  2755. version = "0.23.0"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "d650534ebd99f48f6fa292ed5db10d30df2444943afde4407ceeddab8e513fca"
  2758. dependencies = [
  2759. "async-tls",
  2760. "either",
  2761. "futures 0.3.8",
  2762. "libp2p-core",
  2763. "log",
  2764. "quicksink",
  2765. "rustls",
  2766. "rw-stream-sink",
  2767. "soketto",
  2768. "url 2.2.0",
  2769. "webpki",
  2770. "webpki-roots 0.18.0",
  2771. ]
  2772. [[package]]
  2773. name = "libp2p-yamux"
  2774. version = "0.25.0"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "781d9b9f043dcdabc40640807125368596b849fd4d96cdca2dcf052fdf6f33fd"
  2777. dependencies = [
  2778. "futures 0.3.8",
  2779. "libp2p-core",
  2780. "parking_lot 0.11.1",
  2781. "thiserror",
  2782. "yamux",
  2783. ]
  2784. [[package]]
  2785. name = "librocksdb-sys"
  2786. version = "6.11.4"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "eb5b56f651c204634b936be2f92dbb42c36867e00ff7fe2405591f3b9fa66f09"
  2789. dependencies = [
  2790. "bindgen",
  2791. "cc",
  2792. "glob",
  2793. "libc",
  2794. ]
  2795. [[package]]
  2796. name = "libsecp256k1"
  2797. version = "0.3.5"
  2798. source = "registry+https://github.com/rust-lang/crates.io-index"
  2799. checksum = "1fc1e2c808481a63dc6da2074752fdd4336a3c8fcc68b83db6f1fd5224ae7962"
  2800. dependencies = [
  2801. "arrayref",
  2802. "crunchy",
  2803. "digest 0.8.1",
  2804. "hmac-drbg",
  2805. "rand 0.7.3",
  2806. "sha2 0.8.2",
  2807. "subtle 2.3.0",
  2808. "typenum",
  2809. ]
  2810. [[package]]
  2811. name = "libz-sys"
  2812. version = "1.1.2"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
  2815. dependencies = [
  2816. "cc",
  2817. "pkg-config",
  2818. "vcpkg",
  2819. ]
  2820. [[package]]
  2821. name = "linked-hash-map"
  2822. version = "0.5.3"
  2823. source = "registry+https://github.com/rust-lang/crates.io-index"
  2824. checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
  2825. [[package]]
  2826. name = "linked_hash_set"
  2827. version = "0.1.4"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588"
  2830. dependencies = [
  2831. "linked-hash-map",
  2832. ]
  2833. [[package]]
  2834. name = "linregress"
  2835. version = "0.1.7"
  2836. source = "registry+https://github.com/rust-lang/crates.io-index"
  2837. checksum = "9290cf6f928576eeb9c096c6fad9d8d452a0a1a70a2bbffa6e36064eedc0aac9"
  2838. dependencies = [
  2839. "failure",
  2840. "nalgebra",
  2841. "statrs",
  2842. ]
  2843. [[package]]
  2844. name = "lite-json"
  2845. version = "0.1.3"
  2846. source = "registry+https://github.com/rust-lang/crates.io-index"
  2847. checksum = "0460d985423a026b4d9b828a7c6eed1bcf606f476322f3f9b507529686a61715"
  2848. dependencies = [
  2849. "lite-parser",
  2850. ]
  2851. [[package]]
  2852. name = "lite-parser"
  2853. version = "0.1.2"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "0c50092e40e0ccd1bf2015a10333fde0502ff95b832b0895dc1ca0d7ac6c52f6"
  2856. dependencies = [
  2857. "paste",
  2858. ]
  2859. [[package]]
  2860. name = "lock_api"
  2861. version = "0.1.5"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
  2864. dependencies = [
  2865. "scopeguard 0.3.3",
  2866. ]
  2867. [[package]]
  2868. name = "lock_api"
  2869. version = "0.3.4"
  2870. source = "registry+https://github.com/rust-lang/crates.io-index"
  2871. checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
  2872. dependencies = [
  2873. "scopeguard 1.1.0",
  2874. ]
  2875. [[package]]
  2876. name = "lock_api"
  2877. version = "0.4.2"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
  2880. dependencies = [
  2881. "scopeguard 1.1.0",
  2882. ]
  2883. [[package]]
  2884. name = "log"
  2885. version = "0.4.11"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  2888. dependencies = [
  2889. "cfg-if 0.1.10",
  2890. ]
  2891. [[package]]
  2892. name = "loom"
  2893. version = "0.3.6"
  2894. source = "registry+https://github.com/rust-lang/crates.io-index"
  2895. checksum = "a0e8460f2f2121162705187214720353c517b97bdfb3494c0b1e33d83ebe4bed"
  2896. dependencies = [
  2897. "cfg-if 0.1.10",
  2898. "generator",
  2899. "scoped-tls",
  2900. "serde",
  2901. "serde_json",
  2902. ]
  2903. [[package]]
  2904. name = "lru"
  2905. version = "0.4.3"
  2906. source = "registry+https://github.com/rust-lang/crates.io-index"
  2907. checksum = "0609345ddee5badacf857d4f547e0e5a2e987db77085c24cd887f73573a04237"
  2908. dependencies = [
  2909. "hashbrown 0.6.3",
  2910. ]
  2911. [[package]]
  2912. name = "lru"
  2913. version = "0.6.1"
  2914. source = "registry+https://github.com/rust-lang/crates.io-index"
  2915. checksum = "be716eb6878ca2263eb5d00a781aa13264a794f519fe6af4fbb2668b2d5441c0"
  2916. dependencies = [
  2917. "hashbrown 0.9.1",
  2918. ]
  2919. [[package]]
  2920. name = "lru_time_cache"
  2921. version = "0.10.0"
  2922. source = "registry+https://github.com/rust-lang/crates.io-index"
  2923. checksum = "adb241df5c4caeb888755363fc95f8a896618dc0d435e9e775f7930cb099beab"
  2924. [[package]]
  2925. name = "matchers"
  2926. version = "0.0.1"
  2927. source = "registry+https://github.com/rust-lang/crates.io-index"
  2928. checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
  2929. dependencies = [
  2930. "regex-automata",
  2931. ]
  2932. [[package]]
  2933. name = "matches"
  2934. version = "0.1.8"
  2935. source = "registry+https://github.com/rust-lang/crates.io-index"
  2936. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  2937. [[package]]
  2938. name = "matrixmultiply"
  2939. version = "0.2.3"
  2940. source = "registry+https://github.com/rust-lang/crates.io-index"
  2941. checksum = "d4f7ec66360130972f34830bfad9ef05c6610a43938a467bcc9ab9369ab3478f"
  2942. dependencies = [
  2943. "rawpointer",
  2944. ]
  2945. [[package]]
  2946. name = "maybe-uninit"
  2947. version = "2.0.0"
  2948. source = "registry+https://github.com/rust-lang/crates.io-index"
  2949. checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
  2950. [[package]]
  2951. name = "memchr"
  2952. version = "2.3.4"
  2953. source = "registry+https://github.com/rust-lang/crates.io-index"
  2954. checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
  2955. [[package]]
  2956. name = "memmap"
  2957. version = "0.7.0"
  2958. source = "registry+https://github.com/rust-lang/crates.io-index"
  2959. checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
  2960. dependencies = [
  2961. "libc",
  2962. "winapi 0.3.9",
  2963. ]
  2964. [[package]]
  2965. name = "memoffset"
  2966. version = "0.5.6"
  2967. source = "registry+https://github.com/rust-lang/crates.io-index"
  2968. checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
  2969. dependencies = [
  2970. "autocfg 1.0.1",
  2971. ]
  2972. [[package]]
  2973. name = "memoffset"
  2974. version = "0.6.1"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
  2977. dependencies = [
  2978. "autocfg 1.0.1",
  2979. ]
  2980. [[package]]
  2981. name = "memory-db"
  2982. version = "0.24.1"
  2983. source = "registry+https://github.com/rust-lang/crates.io-index"
  2984. checksum = "36f36ddb0b2cdc25d38babba472108798e3477f02be5165f038c5e393e50c57a"
  2985. dependencies = [
  2986. "hash-db",
  2987. "hashbrown 0.8.2",
  2988. "parity-util-mem",
  2989. ]
  2990. [[package]]
  2991. name = "memory_units"
  2992. version = "0.3.0"
  2993. source = "registry+https://github.com/rust-lang/crates.io-index"
  2994. checksum = "71d96e3f3c0b6325d8ccd83c33b28acb183edcb6c67938ba104ec546854b0882"
  2995. [[package]]
  2996. name = "merlin"
  2997. version = "2.0.0"
  2998. source = "registry+https://github.com/rust-lang/crates.io-index"
  2999. checksum = "c6feca46f4fa3443a01769d768727f10c10a20fdb65e52dc16a81f0c8269bb78"
  3000. dependencies = [
  3001. "byteorder 1.3.4",
  3002. "keccak",
  3003. "rand_core 0.5.1",
  3004. "zeroize",
  3005. ]
  3006. [[package]]
  3007. name = "minicbor"
  3008. version = "0.5.1"
  3009. source = "registry+https://github.com/rust-lang/crates.io-index"
  3010. checksum = "2fc03ad6f8f548db7194a5ff5a6f96342ecae4e3ef67d2bf18bacc0e245cd041"
  3011. dependencies = [
  3012. "minicbor-derive",
  3013. ]
  3014. [[package]]
  3015. name = "minicbor-derive"
  3016. version = "0.4.1"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "c214bf3d90099b52f3e4b328ae0fe34837fd0fab683ad1e10fceb4629106df48"
  3019. dependencies = [
  3020. "proc-macro2",
  3021. "quote",
  3022. "syn",
  3023. ]
  3024. [[package]]
  3025. name = "miniz_oxide"
  3026. version = "0.4.3"
  3027. source = "registry+https://github.com/rust-lang/crates.io-index"
  3028. checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
  3029. dependencies = [
  3030. "adler",
  3031. "autocfg 1.0.1",
  3032. ]
  3033. [[package]]
  3034. name = "mio"
  3035. version = "0.6.23"
  3036. source = "registry+https://github.com/rust-lang/crates.io-index"
  3037. checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
  3038. dependencies = [
  3039. "cfg-if 0.1.10",
  3040. "fuchsia-zircon",
  3041. "fuchsia-zircon-sys",
  3042. "iovec",
  3043. "kernel32-sys",
  3044. "libc",
  3045. "log",
  3046. "miow 0.2.2",
  3047. "net2",
  3048. "slab",
  3049. "winapi 0.2.8",
  3050. ]
  3051. [[package]]
  3052. name = "mio-extras"
  3053. version = "2.0.6"
  3054. source = "registry+https://github.com/rust-lang/crates.io-index"
  3055. checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
  3056. dependencies = [
  3057. "lazycell",
  3058. "log",
  3059. "mio",
  3060. "slab",
  3061. ]
  3062. [[package]]
  3063. name = "mio-named-pipes"
  3064. version = "0.1.7"
  3065. source = "registry+https://github.com/rust-lang/crates.io-index"
  3066. checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
  3067. dependencies = [
  3068. "log",
  3069. "mio",
  3070. "miow 0.3.6",
  3071. "winapi 0.3.9",
  3072. ]
  3073. [[package]]
  3074. name = "mio-uds"
  3075. version = "0.6.8"
  3076. source = "registry+https://github.com/rust-lang/crates.io-index"
  3077. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  3078. dependencies = [
  3079. "iovec",
  3080. "libc",
  3081. "mio",
  3082. ]
  3083. [[package]]
  3084. name = "miow"
  3085. version = "0.2.2"
  3086. source = "registry+https://github.com/rust-lang/crates.io-index"
  3087. checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
  3088. dependencies = [
  3089. "kernel32-sys",
  3090. "net2",
  3091. "winapi 0.2.8",
  3092. "ws2_32-sys",
  3093. ]
  3094. [[package]]
  3095. name = "miow"
  3096. version = "0.3.6"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
  3099. dependencies = [
  3100. "socket2",
  3101. "winapi 0.3.9",
  3102. ]
  3103. [[package]]
  3104. name = "multihash"
  3105. version = "0.11.4"
  3106. source = "registry+https://github.com/rust-lang/crates.io-index"
  3107. checksum = "567122ab6492f49b59def14ecc36e13e64dca4188196dd0cd41f9f3f979f3df6"
  3108. dependencies = [
  3109. "blake2b_simd",
  3110. "blake2s_simd",
  3111. "digest 0.9.0",
  3112. "sha-1 0.9.2",
  3113. "sha2 0.9.2",
  3114. "sha3",
  3115. "unsigned-varint 0.5.1",
  3116. ]
  3117. [[package]]
  3118. name = "multimap"
  3119. version = "0.8.2"
  3120. source = "registry+https://github.com/rust-lang/crates.io-index"
  3121. checksum = "1255076139a83bb467426e7f8d0134968a8118844faa755985e077cf31850333"
  3122. [[package]]
  3123. name = "multistream-select"
  3124. version = "0.8.5"
  3125. source = "registry+https://github.com/rust-lang/crates.io-index"
  3126. checksum = "93faf2e41f9ee62fb01680ed48f3cc26652352327aa2e59869070358f6b7dd75"
  3127. dependencies = [
  3128. "bytes 0.5.6",
  3129. "futures 0.3.8",
  3130. "log",
  3131. "pin-project 1.0.2",
  3132. "smallvec 1.5.1",
  3133. "unsigned-varint 0.5.1",
  3134. ]
  3135. [[package]]
  3136. name = "nalgebra"
  3137. version = "0.18.1"
  3138. source = "registry+https://github.com/rust-lang/crates.io-index"
  3139. checksum = "aaa9fddbc34c8c35dd2108515587b8ce0cab396f17977b8c738568e4edb521a2"
  3140. dependencies = [
  3141. "alga",
  3142. "approx",
  3143. "generic-array 0.12.3",
  3144. "matrixmultiply",
  3145. "num-complex",
  3146. "num-rational",
  3147. "num-traits",
  3148. "rand 0.6.5",
  3149. "typenum",
  3150. ]
  3151. [[package]]
  3152. name = "names"
  3153. version = "0.11.0"
  3154. source = "registry+https://github.com/rust-lang/crates.io-index"
  3155. checksum = "ef320dab323286b50fb5cdda23f61c796a72a89998ab565ca32525c5c556f2da"
  3156. dependencies = [
  3157. "rand 0.3.23",
  3158. ]
  3159. [[package]]
  3160. name = "nb-connect"
  3161. version = "1.0.2"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "8123a81538e457d44b933a02faf885d3fe8408806b23fa700e8f01c6c3a98998"
  3164. dependencies = [
  3165. "libc",
  3166. "winapi 0.3.9",
  3167. ]
  3168. [[package]]
  3169. name = "net2"
  3170. version = "0.2.36"
  3171. source = "registry+https://github.com/rust-lang/crates.io-index"
  3172. checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
  3173. dependencies = [
  3174. "cfg-if 0.1.10",
  3175. "libc",
  3176. "winapi 0.3.9",
  3177. ]
  3178. [[package]]
  3179. name = "nix"
  3180. version = "0.17.0"
  3181. source = "registry+https://github.com/rust-lang/crates.io-index"
  3182. checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
  3183. dependencies = [
  3184. "bitflags",
  3185. "cc",
  3186. "cfg-if 0.1.10",
  3187. "libc",
  3188. "void",
  3189. ]
  3190. [[package]]
  3191. name = "node-inspect"
  3192. version = "0.8.0"
  3193. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3194. dependencies = [
  3195. "derive_more",
  3196. "log",
  3197. "parity-scale-codec",
  3198. "sc-cli",
  3199. "sc-client-api",
  3200. "sc-service",
  3201. "sp-blockchain",
  3202. "sp-core",
  3203. "sp-runtime",
  3204. "structopt",
  3205. ]
  3206. [[package]]
  3207. name = "nodrop"
  3208. version = "0.1.14"
  3209. source = "registry+https://github.com/rust-lang/crates.io-index"
  3210. checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
  3211. [[package]]
  3212. name = "nohash-hasher"
  3213. version = "0.2.0"
  3214. source = "registry+https://github.com/rust-lang/crates.io-index"
  3215. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  3216. [[package]]
  3217. name = "nom"
  3218. version = "5.1.2"
  3219. source = "registry+https://github.com/rust-lang/crates.io-index"
  3220. checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
  3221. dependencies = [
  3222. "memchr",
  3223. "version_check",
  3224. ]
  3225. [[package]]
  3226. name = "num-bigint"
  3227. version = "0.2.6"
  3228. source = "registry+https://github.com/rust-lang/crates.io-index"
  3229. checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
  3230. dependencies = [
  3231. "autocfg 1.0.1",
  3232. "num-integer",
  3233. "num-traits",
  3234. ]
  3235. [[package]]
  3236. name = "num-complex"
  3237. version = "0.2.4"
  3238. source = "registry+https://github.com/rust-lang/crates.io-index"
  3239. checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
  3240. dependencies = [
  3241. "autocfg 1.0.1",
  3242. "num-traits",
  3243. ]
  3244. [[package]]
  3245. name = "num-integer"
  3246. version = "0.1.44"
  3247. source = "registry+https://github.com/rust-lang/crates.io-index"
  3248. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  3249. dependencies = [
  3250. "autocfg 1.0.1",
  3251. "num-traits",
  3252. ]
  3253. [[package]]
  3254. name = "num-rational"
  3255. version = "0.2.4"
  3256. source = "registry+https://github.com/rust-lang/crates.io-index"
  3257. checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
  3258. dependencies = [
  3259. "autocfg 1.0.1",
  3260. "num-bigint",
  3261. "num-integer",
  3262. "num-traits",
  3263. ]
  3264. [[package]]
  3265. name = "num-traits"
  3266. version = "0.2.14"
  3267. source = "registry+https://github.com/rust-lang/crates.io-index"
  3268. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  3269. dependencies = [
  3270. "autocfg 1.0.1",
  3271. "libm",
  3272. ]
  3273. [[package]]
  3274. name = "num_cpus"
  3275. version = "1.13.0"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  3278. dependencies = [
  3279. "hermit-abi",
  3280. "libc",
  3281. ]
  3282. [[package]]
  3283. name = "object"
  3284. version = "0.22.0"
  3285. source = "registry+https://github.com/rust-lang/crates.io-index"
  3286. checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
  3287. [[package]]
  3288. name = "once_cell"
  3289. version = "0.1.8"
  3290. source = "registry+https://github.com/rust-lang/crates.io-index"
  3291. checksum = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37"
  3292. dependencies = [
  3293. "parking_lot 0.7.1",
  3294. ]
  3295. [[package]]
  3296. name = "once_cell"
  3297. version = "1.5.2"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
  3300. dependencies = [
  3301. "parking_lot 0.11.1",
  3302. ]
  3303. [[package]]
  3304. name = "opaque-debug"
  3305. version = "0.2.3"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
  3308. [[package]]
  3309. name = "opaque-debug"
  3310. version = "0.3.0"
  3311. source = "registry+https://github.com/rust-lang/crates.io-index"
  3312. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  3313. [[package]]
  3314. name = "openssl-probe"
  3315. version = "0.1.2"
  3316. source = "registry+https://github.com/rust-lang/crates.io-index"
  3317. checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  3318. [[package]]
  3319. name = "owning_ref"
  3320. version = "0.4.1"
  3321. source = "registry+https://github.com/rust-lang/crates.io-index"
  3322. checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"
  3323. dependencies = [
  3324. "stable_deref_trait",
  3325. ]
  3326. [[package]]
  3327. name = "pallet-authority-discovery"
  3328. version = "2.0.0"
  3329. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3330. dependencies = [
  3331. "frame-support",
  3332. "frame-system",
  3333. "pallet-session",
  3334. "parity-scale-codec",
  3335. "serde",
  3336. "sp-application-crypto",
  3337. "sp-authority-discovery",
  3338. "sp-runtime",
  3339. "sp-std",
  3340. ]
  3341. [[package]]
  3342. name = "pallet-authorship"
  3343. version = "2.0.0"
  3344. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3345. dependencies = [
  3346. "frame-support",
  3347. "frame-system",
  3348. "impl-trait-for-tuples",
  3349. "parity-scale-codec",
  3350. "sp-authorship",
  3351. "sp-inherents",
  3352. "sp-runtime",
  3353. "sp-std",
  3354. ]
  3355. [[package]]
  3356. name = "pallet-babe"
  3357. version = "2.0.0"
  3358. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3359. dependencies = [
  3360. "frame-benchmarking",
  3361. "frame-support",
  3362. "frame-system",
  3363. "pallet-authorship",
  3364. "pallet-session",
  3365. "pallet-timestamp",
  3366. "parity-scale-codec",
  3367. "serde",
  3368. "sp-application-crypto",
  3369. "sp-consensus-babe",
  3370. "sp-consensus-vrf",
  3371. "sp-inherents",
  3372. "sp-io",
  3373. "sp-runtime",
  3374. "sp-session",
  3375. "sp-staking",
  3376. "sp-std",
  3377. "sp-timestamp",
  3378. ]
  3379. [[package]]
  3380. name = "pallet-balances"
  3381. version = "2.0.0"
  3382. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3383. dependencies = [
  3384. "frame-benchmarking",
  3385. "frame-support",
  3386. "frame-system",
  3387. "parity-scale-codec",
  3388. "serde",
  3389. "sp-runtime",
  3390. "sp-std",
  3391. ]
  3392. [[package]]
  3393. name = "pallet-common"
  3394. version = "3.1.0"
  3395. dependencies = [
  3396. "frame-support",
  3397. "frame-system",
  3398. "pallet-timestamp",
  3399. "parity-scale-codec",
  3400. "serde",
  3401. "sp-runtime",
  3402. "strum 0.19.5",
  3403. "strum_macros 0.19.4",
  3404. ]
  3405. [[package]]
  3406. name = "pallet-constitution"
  3407. version = "1.0.0"
  3408. dependencies = [
  3409. "frame-benchmarking",
  3410. "frame-support",
  3411. "frame-system",
  3412. "parity-scale-codec",
  3413. "serde",
  3414. "sp-core",
  3415. "sp-io",
  3416. "sp-runtime",
  3417. "sp-std",
  3418. ]
  3419. [[package]]
  3420. name = "pallet-content-directory"
  3421. version = "3.1.0"
  3422. dependencies = [
  3423. "frame-support",
  3424. "frame-system",
  3425. "parity-scale-codec",
  3426. "serde",
  3427. "sp-arithmetic",
  3428. "sp-core",
  3429. "sp-io",
  3430. "sp-runtime",
  3431. "sp-std",
  3432. ]
  3433. [[package]]
  3434. name = "pallet-council"
  3435. version = "1.0.0"
  3436. dependencies = [
  3437. "frame-support",
  3438. "frame-system",
  3439. "pallet-balances",
  3440. "pallet-membership",
  3441. "pallet-referendum",
  3442. "pallet-staking-handler",
  3443. "pallet-timestamp",
  3444. "parity-scale-codec",
  3445. "rand 0.7.3",
  3446. "serde",
  3447. "sp-arithmetic",
  3448. "sp-core",
  3449. "sp-io",
  3450. "sp-runtime",
  3451. ]
  3452. [[package]]
  3453. name = "pallet-finality-tracker"
  3454. version = "2.0.0"
  3455. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3456. dependencies = [
  3457. "frame-support",
  3458. "frame-system",
  3459. "impl-trait-for-tuples",
  3460. "parity-scale-codec",
  3461. "serde",
  3462. "sp-finality-tracker",
  3463. "sp-inherents",
  3464. "sp-runtime",
  3465. "sp-std",
  3466. ]
  3467. [[package]]
  3468. name = "pallet-forum"
  3469. version = "4.0.0"
  3470. dependencies = [
  3471. "frame-support",
  3472. "frame-system",
  3473. "pallet-common",
  3474. "pallet-timestamp",
  3475. "parity-scale-codec",
  3476. "serde",
  3477. "sp-arithmetic",
  3478. "sp-core",
  3479. "sp-io",
  3480. "sp-runtime",
  3481. "sp-std",
  3482. ]
  3483. [[package]]
  3484. name = "pallet-governance"
  3485. version = "3.1.0"
  3486. dependencies = [
  3487. "frame-support",
  3488. "frame-system",
  3489. "pallet-balances",
  3490. "pallet-common",
  3491. "pallet-membership",
  3492. "pallet-recurring-reward",
  3493. "pallet-timestamp",
  3494. "pallet-token-mint",
  3495. "parity-scale-codec",
  3496. "serde",
  3497. "sp-arithmetic",
  3498. "sp-core",
  3499. "sp-io",
  3500. "sp-runtime",
  3501. "sp-std",
  3502. ]
  3503. [[package]]
  3504. name = "pallet-grandpa"
  3505. version = "2.0.0"
  3506. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3507. dependencies = [
  3508. "frame-benchmarking",
  3509. "frame-support",
  3510. "frame-system",
  3511. "pallet-authorship",
  3512. "pallet-finality-tracker",
  3513. "pallet-session",
  3514. "parity-scale-codec",
  3515. "serde",
  3516. "sp-application-crypto",
  3517. "sp-core",
  3518. "sp-finality-grandpa",
  3519. "sp-runtime",
  3520. "sp-session",
  3521. "sp-staking",
  3522. "sp-std",
  3523. ]
  3524. [[package]]
  3525. name = "pallet-im-online"
  3526. version = "2.0.0"
  3527. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3528. dependencies = [
  3529. "frame-benchmarking",
  3530. "frame-support",
  3531. "frame-system",
  3532. "pallet-authorship",
  3533. "pallet-session",
  3534. "parity-scale-codec",
  3535. "serde",
  3536. "sp-application-crypto",
  3537. "sp-core",
  3538. "sp-io",
  3539. "sp-runtime",
  3540. "sp-staking",
  3541. "sp-std",
  3542. ]
  3543. [[package]]
  3544. name = "pallet-membership"
  3545. version = "3.1.0"
  3546. dependencies = [
  3547. "frame-support",
  3548. "frame-system",
  3549. "pallet-balances",
  3550. "pallet-common",
  3551. "pallet-timestamp",
  3552. "parity-scale-codec",
  3553. "serde",
  3554. "sp-arithmetic",
  3555. "sp-core",
  3556. "sp-io",
  3557. "sp-runtime",
  3558. "sp-std",
  3559. ]
  3560. [[package]]
  3561. name = "pallet-memo"
  3562. version = "3.1.0"
  3563. dependencies = [
  3564. "frame-support",
  3565. "frame-system",
  3566. "pallet-common",
  3567. "parity-scale-codec",
  3568. "sp-arithmetic",
  3569. "sp-std",
  3570. ]
  3571. [[package]]
  3572. name = "pallet-offences"
  3573. version = "2.0.0"
  3574. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3575. dependencies = [
  3576. "frame-support",
  3577. "frame-system",
  3578. "pallet-balances",
  3579. "parity-scale-codec",
  3580. "serde",
  3581. "sp-runtime",
  3582. "sp-staking",
  3583. "sp-std",
  3584. ]
  3585. [[package]]
  3586. name = "pallet-offences-benchmarking"
  3587. version = "2.0.0"
  3588. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3589. dependencies = [
  3590. "frame-benchmarking",
  3591. "frame-support",
  3592. "frame-system",
  3593. "pallet-babe",
  3594. "pallet-balances",
  3595. "pallet-grandpa",
  3596. "pallet-im-online",
  3597. "pallet-offences",
  3598. "pallet-session",
  3599. "pallet-staking",
  3600. "parity-scale-codec",
  3601. "sp-runtime",
  3602. "sp-staking",
  3603. "sp-std",
  3604. ]
  3605. [[package]]
  3606. name = "pallet-proposals-codex"
  3607. version = "4.0.0"
  3608. dependencies = [
  3609. "frame-support",
  3610. "frame-system",
  3611. "pallet-balances",
  3612. "pallet-common",
  3613. "pallet-constitution",
  3614. "pallet-governance",
  3615. "pallet-membership",
  3616. "pallet-proposals-discussion",
  3617. "pallet-proposals-engine",
  3618. "pallet-recurring-reward",
  3619. "pallet-staking",
  3620. "pallet-staking-handler",
  3621. "pallet-staking-reward-curve",
  3622. "pallet-timestamp",
  3623. "pallet-token-mint",
  3624. "pallet-working-group",
  3625. "parity-scale-codec",
  3626. "serde",
  3627. "sp-arithmetic",
  3628. "sp-core",
  3629. "sp-io",
  3630. "sp-runtime",
  3631. "sp-staking",
  3632. "sp-std",
  3633. "strum 0.19.5",
  3634. ]
  3635. [[package]]
  3636. name = "pallet-proposals-discussion"
  3637. version = "4.0.1"
  3638. dependencies = [
  3639. "frame-benchmarking",
  3640. "frame-support",
  3641. "frame-system",
  3642. "pallet-balances",
  3643. "pallet-common",
  3644. "pallet-membership",
  3645. "pallet-timestamp",
  3646. "parity-scale-codec",
  3647. "serde",
  3648. "sp-core",
  3649. "sp-io",
  3650. "sp-runtime",
  3651. "sp-std",
  3652. ]
  3653. [[package]]
  3654. name = "pallet-proposals-engine"
  3655. version = "4.0.1"
  3656. dependencies = [
  3657. "frame-benchmarking",
  3658. "frame-support",
  3659. "frame-system",
  3660. "pallet-balances",
  3661. "pallet-common",
  3662. "pallet-governance",
  3663. "pallet-membership",
  3664. "pallet-recurring-reward",
  3665. "pallet-staking-handler",
  3666. "pallet-timestamp",
  3667. "pallet-token-mint",
  3668. "parity-scale-codec",
  3669. "serde",
  3670. "sp-arithmetic",
  3671. "sp-core",
  3672. "sp-io",
  3673. "sp-runtime",
  3674. "sp-std",
  3675. ]
  3676. [[package]]
  3677. name = "pallet-randomness-collective-flip"
  3678. version = "2.0.0"
  3679. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3680. dependencies = [
  3681. "frame-support",
  3682. "frame-system",
  3683. "parity-scale-codec",
  3684. "safe-mix",
  3685. "sp-runtime",
  3686. "sp-std",
  3687. ]
  3688. [[package]]
  3689. name = "pallet-recurring-reward"
  3690. version = "3.1.0"
  3691. dependencies = [
  3692. "frame-support",
  3693. "frame-system",
  3694. "pallet-balances",
  3695. "pallet-token-mint",
  3696. "parity-scale-codec",
  3697. "sp-arithmetic",
  3698. "sp-core",
  3699. "sp-io",
  3700. "sp-runtime",
  3701. ]
  3702. [[package]]
  3703. name = "pallet-referendum"
  3704. version = "1.0.0"
  3705. dependencies = [
  3706. "frame-support",
  3707. "frame-system",
  3708. "pallet-balances",
  3709. "parity-scale-codec",
  3710. "rand 0.7.3",
  3711. "serde",
  3712. "sp-arithmetic",
  3713. "sp-core",
  3714. "sp-io",
  3715. "sp-runtime",
  3716. ]
  3717. [[package]]
  3718. name = "pallet-service-discovery"
  3719. version = "4.0.0"
  3720. dependencies = [
  3721. "frame-support",
  3722. "frame-system",
  3723. "pallet-balances",
  3724. "pallet-common",
  3725. "pallet-membership",
  3726. "pallet-recurring-reward",
  3727. "pallet-staking-handler",
  3728. "pallet-timestamp",
  3729. "pallet-token-mint",
  3730. "pallet-working-group",
  3731. "parity-scale-codec",
  3732. "serde",
  3733. "sp-arithmetic",
  3734. "sp-core",
  3735. "sp-io",
  3736. "sp-runtime",
  3737. "sp-std",
  3738. ]
  3739. [[package]]
  3740. name = "pallet-session"
  3741. version = "2.0.0"
  3742. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3743. dependencies = [
  3744. "frame-support",
  3745. "frame-system",
  3746. "impl-trait-for-tuples",
  3747. "pallet-timestamp",
  3748. "parity-scale-codec",
  3749. "serde",
  3750. "sp-core",
  3751. "sp-io",
  3752. "sp-runtime",
  3753. "sp-session",
  3754. "sp-staking",
  3755. "sp-std",
  3756. "sp-trie",
  3757. ]
  3758. [[package]]
  3759. name = "pallet-session-benchmarking"
  3760. version = "2.0.0"
  3761. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3762. dependencies = [
  3763. "frame-benchmarking",
  3764. "frame-support",
  3765. "frame-system",
  3766. "pallet-session",
  3767. "pallet-staking",
  3768. "rand 0.7.3",
  3769. "sp-runtime",
  3770. "sp-session",
  3771. "sp-std",
  3772. ]
  3773. [[package]]
  3774. name = "pallet-staking"
  3775. version = "2.0.0"
  3776. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3777. dependencies = [
  3778. "frame-benchmarking",
  3779. "frame-support",
  3780. "frame-system",
  3781. "pallet-authorship",
  3782. "pallet-session",
  3783. "parity-scale-codec",
  3784. "rand_chacha 0.2.2",
  3785. "serde",
  3786. "sp-application-crypto",
  3787. "sp-io",
  3788. "sp-npos-elections",
  3789. "sp-runtime",
  3790. "sp-staking",
  3791. "sp-std",
  3792. "static_assertions",
  3793. ]
  3794. [[package]]
  3795. name = "pallet-staking-handler"
  3796. version = "1.0.0"
  3797. dependencies = [
  3798. "frame-support",
  3799. "frame-system",
  3800. "pallet-balances",
  3801. "pallet-common",
  3802. "pallet-membership",
  3803. "pallet-timestamp",
  3804. "parity-scale-codec",
  3805. "sp-arithmetic",
  3806. "sp-core",
  3807. "sp-io",
  3808. "sp-runtime",
  3809. "sp-std",
  3810. ]
  3811. [[package]]
  3812. name = "pallet-staking-reward-curve"
  3813. version = "2.0.0"
  3814. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3815. dependencies = [
  3816. "proc-macro-crate",
  3817. "proc-macro2",
  3818. "quote",
  3819. "syn",
  3820. ]
  3821. [[package]]
  3822. name = "pallet-storage"
  3823. version = "4.0.0"
  3824. dependencies = [
  3825. "frame-support",
  3826. "frame-system",
  3827. "pallet-balances",
  3828. "pallet-common",
  3829. "pallet-membership",
  3830. "pallet-recurring-reward",
  3831. "pallet-staking-handler",
  3832. "pallet-timestamp",
  3833. "pallet-token-mint",
  3834. "pallet-working-group",
  3835. "parity-scale-codec",
  3836. "serde",
  3837. "sp-arithmetic",
  3838. "sp-core",
  3839. "sp-io",
  3840. "sp-runtime",
  3841. "sp-std",
  3842. ]
  3843. [[package]]
  3844. name = "pallet-sudo"
  3845. version = "2.0.0"
  3846. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3847. dependencies = [
  3848. "frame-support",
  3849. "frame-system",
  3850. "parity-scale-codec",
  3851. "serde",
  3852. "sp-io",
  3853. "sp-runtime",
  3854. "sp-std",
  3855. ]
  3856. [[package]]
  3857. name = "pallet-timestamp"
  3858. version = "2.0.0"
  3859. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3860. dependencies = [
  3861. "frame-benchmarking",
  3862. "frame-support",
  3863. "frame-system",
  3864. "impl-trait-for-tuples",
  3865. "parity-scale-codec",
  3866. "serde",
  3867. "sp-inherents",
  3868. "sp-io",
  3869. "sp-runtime",
  3870. "sp-std",
  3871. "sp-timestamp",
  3872. ]
  3873. [[package]]
  3874. name = "pallet-token-mint"
  3875. version = "3.1.0"
  3876. dependencies = [
  3877. "frame-support",
  3878. "frame-system",
  3879. "pallet-balances",
  3880. "parity-scale-codec",
  3881. "sp-arithmetic",
  3882. "sp-core",
  3883. "sp-io",
  3884. "sp-runtime",
  3885. ]
  3886. [[package]]
  3887. name = "pallet-transaction-payment"
  3888. version = "2.0.0"
  3889. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3890. dependencies = [
  3891. "frame-support",
  3892. "frame-system",
  3893. "pallet-transaction-payment-rpc-runtime-api",
  3894. "parity-scale-codec",
  3895. "serde",
  3896. "smallvec 1.5.1",
  3897. "sp-core",
  3898. "sp-io",
  3899. "sp-runtime",
  3900. "sp-std",
  3901. ]
  3902. [[package]]
  3903. name = "pallet-transaction-payment-rpc"
  3904. version = "2.0.0"
  3905. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3906. dependencies = [
  3907. "jsonrpc-core",
  3908. "jsonrpc-core-client",
  3909. "jsonrpc-derive",
  3910. "pallet-transaction-payment-rpc-runtime-api",
  3911. "parity-scale-codec",
  3912. "serde",
  3913. "sp-api",
  3914. "sp-blockchain",
  3915. "sp-core",
  3916. "sp-rpc",
  3917. "sp-runtime",
  3918. ]
  3919. [[package]]
  3920. name = "pallet-transaction-payment-rpc-runtime-api"
  3921. version = "2.0.0"
  3922. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3923. dependencies = [
  3924. "frame-support",
  3925. "parity-scale-codec",
  3926. "serde",
  3927. "sp-api",
  3928. "sp-runtime",
  3929. "sp-std",
  3930. ]
  3931. [[package]]
  3932. name = "pallet-utility"
  3933. version = "2.0.0"
  3934. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  3935. dependencies = [
  3936. "frame-benchmarking",
  3937. "frame-support",
  3938. "frame-system",
  3939. "parity-scale-codec",
  3940. "serde",
  3941. "sp-core",
  3942. "sp-io",
  3943. "sp-runtime",
  3944. "sp-std",
  3945. ]
  3946. [[package]]
  3947. name = "pallet-working-group"
  3948. version = "4.0.0"
  3949. dependencies = [
  3950. "frame-benchmarking",
  3951. "frame-support",
  3952. "frame-system",
  3953. "pallet-balances",
  3954. "pallet-common",
  3955. "pallet-membership",
  3956. "pallet-staking-handler",
  3957. "pallet-timestamp",
  3958. "parity-scale-codec",
  3959. "serde",
  3960. "sp-arithmetic",
  3961. "sp-core",
  3962. "sp-io",
  3963. "sp-runtime",
  3964. "sp-std",
  3965. ]
  3966. [[package]]
  3967. name = "parity-db"
  3968. version = "0.1.2"
  3969. source = "registry+https://github.com/rust-lang/crates.io-index"
  3970. checksum = "00d595e372d119261593297debbe4193811a4dc811d2a1ccbb8caaa6666ad7ab"
  3971. dependencies = [
  3972. "blake2-rfc",
  3973. "crc32fast",
  3974. "libc",
  3975. "log",
  3976. "memmap",
  3977. "parking_lot 0.10.2",
  3978. ]
  3979. [[package]]
  3980. name = "parity-multiaddr"
  3981. version = "0.9.6"
  3982. source = "registry+https://github.com/rust-lang/crates.io-index"
  3983. checksum = "43244a26dc1ddd3097216bb12eaa6cf8a07b060c72718d9ebd60fd297d6401df"
  3984. dependencies = [
  3985. "arrayref",
  3986. "bs58 0.4.0",
  3987. "byteorder 1.3.4",
  3988. "data-encoding",
  3989. "multihash",
  3990. "percent-encoding 2.1.0",
  3991. "serde",
  3992. "static_assertions",
  3993. "unsigned-varint 0.5.1",
  3994. "url 2.2.0",
  3995. ]
  3996. [[package]]
  3997. name = "parity-scale-codec"
  3998. version = "1.3.5"
  3999. source = "registry+https://github.com/rust-lang/crates.io-index"
  4000. checksum = "7c740e5fbcb6847058b40ac7e5574766c6388f585e184d769910fe0d3a2ca861"
  4001. dependencies = [
  4002. "arrayvec 0.5.2",
  4003. "bitvec",
  4004. "byte-slice-cast",
  4005. "parity-scale-codec-derive",
  4006. "serde",
  4007. ]
  4008. [[package]]
  4009. name = "parity-scale-codec-derive"
  4010. version = "1.2.2"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "198db82bb1c18fc00176004462dd809b2a6d851669550aa17af6dacd21ae0c14"
  4013. dependencies = [
  4014. "proc-macro-crate",
  4015. "proc-macro2",
  4016. "quote",
  4017. "syn",
  4018. ]
  4019. [[package]]
  4020. name = "parity-send-wrapper"
  4021. version = "0.1.0"
  4022. source = "registry+https://github.com/rust-lang/crates.io-index"
  4023. checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f"
  4024. [[package]]
  4025. name = "parity-tokio-ipc"
  4026. version = "0.4.0"
  4027. source = "registry+https://github.com/rust-lang/crates.io-index"
  4028. checksum = "1e57fea504fea33f9fbb5f49f378359030e7e026a6ab849bb9e8f0787376f1bf"
  4029. dependencies = [
  4030. "bytes 0.4.12",
  4031. "futures 0.1.30",
  4032. "libc",
  4033. "log",
  4034. "mio-named-pipes",
  4035. "miow 0.3.6",
  4036. "rand 0.7.3",
  4037. "tokio 0.1.22",
  4038. "tokio-named-pipes",
  4039. "tokio-uds",
  4040. "winapi 0.3.9",
  4041. ]
  4042. [[package]]
  4043. name = "parity-util-mem"
  4044. version = "0.7.0"
  4045. source = "registry+https://github.com/rust-lang/crates.io-index"
  4046. checksum = "297ff91fa36aec49ce183484b102f6b75b46776822bd81525bfc4cc9b0dd0f5c"
  4047. dependencies = [
  4048. "cfg-if 0.1.10",
  4049. "hashbrown 0.8.2",
  4050. "impl-trait-for-tuples",
  4051. "parity-util-mem-derive",
  4052. "parking_lot 0.10.2",
  4053. "primitive-types",
  4054. "smallvec 1.5.1",
  4055. "winapi 0.3.9",
  4056. ]
  4057. [[package]]
  4058. name = "parity-util-mem-derive"
  4059. version = "0.1.0"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. checksum = "f557c32c6d268a07c921471619c0295f5efad3a0e76d4f97a05c091a51d110b2"
  4062. dependencies = [
  4063. "proc-macro2",
  4064. "syn",
  4065. "synstructure",
  4066. ]
  4067. [[package]]
  4068. name = "parity-wasm"
  4069. version = "0.41.0"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "ddfc878dac00da22f8f61e7af3157988424567ab01d9920b962ef7dcbd7cd865"
  4072. [[package]]
  4073. name = "parity-ws"
  4074. version = "0.10.0"
  4075. source = "registry+https://github.com/rust-lang/crates.io-index"
  4076. checksum = "9e02a625dd75084c2a7024f07c575b61b782f729d18702dabb3cdbf31911dc61"
  4077. dependencies = [
  4078. "byteorder 1.3.4",
  4079. "bytes 0.4.12",
  4080. "httparse",
  4081. "log",
  4082. "mio",
  4083. "mio-extras",
  4084. "rand 0.7.3",
  4085. "sha-1 0.8.2",
  4086. "slab",
  4087. "url 2.2.0",
  4088. ]
  4089. [[package]]
  4090. name = "parking"
  4091. version = "2.0.0"
  4092. source = "registry+https://github.com/rust-lang/crates.io-index"
  4093. checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
  4094. [[package]]
  4095. name = "parking_lot"
  4096. version = "0.7.1"
  4097. source = "registry+https://github.com/rust-lang/crates.io-index"
  4098. checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
  4099. dependencies = [
  4100. "lock_api 0.1.5",
  4101. "parking_lot_core 0.4.0",
  4102. ]
  4103. [[package]]
  4104. name = "parking_lot"
  4105. version = "0.9.0"
  4106. source = "registry+https://github.com/rust-lang/crates.io-index"
  4107. checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
  4108. dependencies = [
  4109. "lock_api 0.3.4",
  4110. "parking_lot_core 0.6.2",
  4111. "rustc_version",
  4112. ]
  4113. [[package]]
  4114. name = "parking_lot"
  4115. version = "0.10.2"
  4116. source = "registry+https://github.com/rust-lang/crates.io-index"
  4117. checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
  4118. dependencies = [
  4119. "lock_api 0.3.4",
  4120. "parking_lot_core 0.7.2",
  4121. ]
  4122. [[package]]
  4123. name = "parking_lot"
  4124. version = "0.11.1"
  4125. source = "registry+https://github.com/rust-lang/crates.io-index"
  4126. checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
  4127. dependencies = [
  4128. "instant",
  4129. "lock_api 0.4.2",
  4130. "parking_lot_core 0.8.1",
  4131. ]
  4132. [[package]]
  4133. name = "parking_lot_core"
  4134. version = "0.4.0"
  4135. source = "registry+https://github.com/rust-lang/crates.io-index"
  4136. checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
  4137. dependencies = [
  4138. "libc",
  4139. "rand 0.6.5",
  4140. "rustc_version",
  4141. "smallvec 0.6.13",
  4142. "winapi 0.3.9",
  4143. ]
  4144. [[package]]
  4145. name = "parking_lot_core"
  4146. version = "0.6.2"
  4147. source = "registry+https://github.com/rust-lang/crates.io-index"
  4148. checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
  4149. dependencies = [
  4150. "cfg-if 0.1.10",
  4151. "cloudabi",
  4152. "libc",
  4153. "redox_syscall",
  4154. "rustc_version",
  4155. "smallvec 0.6.13",
  4156. "winapi 0.3.9",
  4157. ]
  4158. [[package]]
  4159. name = "parking_lot_core"
  4160. version = "0.7.2"
  4161. source = "registry+https://github.com/rust-lang/crates.io-index"
  4162. checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
  4163. dependencies = [
  4164. "cfg-if 0.1.10",
  4165. "cloudabi",
  4166. "libc",
  4167. "redox_syscall",
  4168. "smallvec 1.5.1",
  4169. "winapi 0.3.9",
  4170. ]
  4171. [[package]]
  4172. name = "parking_lot_core"
  4173. version = "0.8.1"
  4174. source = "registry+https://github.com/rust-lang/crates.io-index"
  4175. checksum = "d7c6d9b8427445284a09c55be860a15855ab580a417ccad9da88f5a06787ced0"
  4176. dependencies = [
  4177. "cfg-if 1.0.0",
  4178. "instant",
  4179. "libc",
  4180. "redox_syscall",
  4181. "smallvec 1.5.1",
  4182. "winapi 0.3.9",
  4183. ]
  4184. [[package]]
  4185. name = "paste"
  4186. version = "0.1.18"
  4187. source = "registry+https://github.com/rust-lang/crates.io-index"
  4188. checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
  4189. dependencies = [
  4190. "paste-impl",
  4191. "proc-macro-hack",
  4192. ]
  4193. [[package]]
  4194. name = "paste-impl"
  4195. version = "0.1.18"
  4196. source = "registry+https://github.com/rust-lang/crates.io-index"
  4197. checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
  4198. dependencies = [
  4199. "proc-macro-hack",
  4200. ]
  4201. [[package]]
  4202. name = "pbkdf2"
  4203. version = "0.3.0"
  4204. source = "registry+https://github.com/rust-lang/crates.io-index"
  4205. checksum = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
  4206. dependencies = [
  4207. "byteorder 1.3.4",
  4208. "crypto-mac 0.7.0",
  4209. "rayon",
  4210. ]
  4211. [[package]]
  4212. name = "pdqselect"
  4213. version = "0.1.0"
  4214. source = "registry+https://github.com/rust-lang/crates.io-index"
  4215. checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
  4216. [[package]]
  4217. name = "peeking_take_while"
  4218. version = "0.1.2"
  4219. source = "registry+https://github.com/rust-lang/crates.io-index"
  4220. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  4221. [[package]]
  4222. name = "percent-encoding"
  4223. version = "1.0.1"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
  4226. [[package]]
  4227. name = "percent-encoding"
  4228. version = "2.1.0"
  4229. source = "registry+https://github.com/rust-lang/crates.io-index"
  4230. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  4231. [[package]]
  4232. name = "petgraph"
  4233. version = "0.5.1"
  4234. source = "registry+https://github.com/rust-lang/crates.io-index"
  4235. checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"
  4236. dependencies = [
  4237. "fixedbitset",
  4238. "indexmap",
  4239. ]
  4240. [[package]]
  4241. name = "pin-project"
  4242. version = "0.4.27"
  4243. source = "registry+https://github.com/rust-lang/crates.io-index"
  4244. checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
  4245. dependencies = [
  4246. "pin-project-internal 0.4.27",
  4247. ]
  4248. [[package]]
  4249. name = "pin-project"
  4250. version = "1.0.2"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "9ccc2237c2c489783abd8c4c80e5450fc0e98644555b1364da68cc29aa151ca7"
  4253. dependencies = [
  4254. "pin-project-internal 1.0.2",
  4255. ]
  4256. [[package]]
  4257. name = "pin-project-internal"
  4258. version = "0.4.27"
  4259. source = "registry+https://github.com/rust-lang/crates.io-index"
  4260. checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
  4261. dependencies = [
  4262. "proc-macro2",
  4263. "quote",
  4264. "syn",
  4265. ]
  4266. [[package]]
  4267. name = "pin-project-internal"
  4268. version = "1.0.2"
  4269. source = "registry+https://github.com/rust-lang/crates.io-index"
  4270. checksum = "f8e8d2bf0b23038a4424865103a4df472855692821aab4e4f5c3312d461d9e5f"
  4271. dependencies = [
  4272. "proc-macro2",
  4273. "quote",
  4274. "syn",
  4275. ]
  4276. [[package]]
  4277. name = "pin-project-lite"
  4278. version = "0.1.11"
  4279. source = "registry+https://github.com/rust-lang/crates.io-index"
  4280. checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
  4281. [[package]]
  4282. name = "pin-project-lite"
  4283. version = "0.2.0"
  4284. source = "registry+https://github.com/rust-lang/crates.io-index"
  4285. checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
  4286. [[package]]
  4287. name = "pin-utils"
  4288. version = "0.1.0"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4291. [[package]]
  4292. name = "pkg-config"
  4293. version = "0.3.19"
  4294. source = "registry+https://github.com/rust-lang/crates.io-index"
  4295. checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
  4296. [[package]]
  4297. name = "platforms"
  4298. version = "0.2.1"
  4299. source = "registry+https://github.com/rust-lang/crates.io-index"
  4300. checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e"
  4301. [[package]]
  4302. name = "polling"
  4303. version = "2.0.2"
  4304. source = "registry+https://github.com/rust-lang/crates.io-index"
  4305. checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4"
  4306. dependencies = [
  4307. "cfg-if 0.1.10",
  4308. "libc",
  4309. "log",
  4310. "wepoll-sys",
  4311. "winapi 0.3.9",
  4312. ]
  4313. [[package]]
  4314. name = "poly1305"
  4315. version = "0.6.1"
  4316. source = "registry+https://github.com/rust-lang/crates.io-index"
  4317. checksum = "22ce46de8e53ee414ca4d02bfefac75d8c12fba948b76622a40b4be34dfce980"
  4318. dependencies = [
  4319. "universal-hash",
  4320. ]
  4321. [[package]]
  4322. name = "polyval"
  4323. version = "0.4.2"
  4324. source = "registry+https://github.com/rust-lang/crates.io-index"
  4325. checksum = "b3fd900a291ceb8b99799cc8cd3d1d3403a51721e015bc533528b2ceafcc443c"
  4326. dependencies = [
  4327. "cfg-if 1.0.0",
  4328. "universal-hash",
  4329. ]
  4330. [[package]]
  4331. name = "ppv-lite86"
  4332. version = "0.2.10"
  4333. source = "registry+https://github.com/rust-lang/crates.io-index"
  4334. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  4335. [[package]]
  4336. name = "primitive-types"
  4337. version = "0.7.3"
  4338. source = "registry+https://github.com/rust-lang/crates.io-index"
  4339. checksum = "7dd39dcacf71411ba488570da7bbc89b717225e46478b30ba99b92db6b149809"
  4340. dependencies = [
  4341. "fixed-hash",
  4342. "impl-codec",
  4343. "impl-serde",
  4344. "uint",
  4345. ]
  4346. [[package]]
  4347. name = "proc-macro-crate"
  4348. version = "0.1.5"
  4349. source = "registry+https://github.com/rust-lang/crates.io-index"
  4350. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  4351. dependencies = [
  4352. "toml",
  4353. ]
  4354. [[package]]
  4355. name = "proc-macro-error"
  4356. version = "1.0.4"
  4357. source = "registry+https://github.com/rust-lang/crates.io-index"
  4358. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4359. dependencies = [
  4360. "proc-macro-error-attr",
  4361. "proc-macro2",
  4362. "quote",
  4363. "syn",
  4364. "version_check",
  4365. ]
  4366. [[package]]
  4367. name = "proc-macro-error-attr"
  4368. version = "1.0.4"
  4369. source = "registry+https://github.com/rust-lang/crates.io-index"
  4370. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4371. dependencies = [
  4372. "proc-macro2",
  4373. "quote",
  4374. "version_check",
  4375. ]
  4376. [[package]]
  4377. name = "proc-macro-hack"
  4378. version = "0.5.19"
  4379. source = "registry+https://github.com/rust-lang/crates.io-index"
  4380. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  4381. [[package]]
  4382. name = "proc-macro-nested"
  4383. version = "0.1.6"
  4384. source = "registry+https://github.com/rust-lang/crates.io-index"
  4385. checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
  4386. [[package]]
  4387. name = "proc-macro2"
  4388. version = "1.0.24"
  4389. source = "registry+https://github.com/rust-lang/crates.io-index"
  4390. checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  4391. dependencies = [
  4392. "unicode-xid",
  4393. ]
  4394. [[package]]
  4395. name = "prometheus"
  4396. version = "0.10.0"
  4397. source = "registry+https://github.com/rust-lang/crates.io-index"
  4398. checksum = "30d70cf4412832bcac9cffe27906f4a66e450d323525e977168c70d1b36120ae"
  4399. dependencies = [
  4400. "cfg-if 0.1.10",
  4401. "fnv",
  4402. "lazy_static",
  4403. "parking_lot 0.11.1",
  4404. "regex",
  4405. "thiserror",
  4406. ]
  4407. [[package]]
  4408. name = "prost"
  4409. version = "0.6.1"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. checksum = "ce49aefe0a6144a45de32927c77bd2859a5f7677b55f220ae5b744e87389c212"
  4412. dependencies = [
  4413. "bytes 0.5.6",
  4414. "prost-derive",
  4415. ]
  4416. [[package]]
  4417. name = "prost-build"
  4418. version = "0.6.1"
  4419. source = "registry+https://github.com/rust-lang/crates.io-index"
  4420. checksum = "02b10678c913ecbd69350e8535c3aef91a8676c0773fc1d7b95cdd196d7f2f26"
  4421. dependencies = [
  4422. "bytes 0.5.6",
  4423. "heck",
  4424. "itertools",
  4425. "log",
  4426. "multimap",
  4427. "petgraph",
  4428. "prost",
  4429. "prost-types",
  4430. "tempfile",
  4431. "which",
  4432. ]
  4433. [[package]]
  4434. name = "prost-derive"
  4435. version = "0.6.1"
  4436. source = "registry+https://github.com/rust-lang/crates.io-index"
  4437. checksum = "537aa19b95acde10a12fec4301466386f757403de4cd4e5b4fa78fb5ecb18f72"
  4438. dependencies = [
  4439. "anyhow",
  4440. "itertools",
  4441. "proc-macro2",
  4442. "quote",
  4443. "syn",
  4444. ]
  4445. [[package]]
  4446. name = "prost-types"
  4447. version = "0.6.1"
  4448. source = "registry+https://github.com/rust-lang/crates.io-index"
  4449. checksum = "1834f67c0697c001304b75be76f67add9c89742eda3a085ad8ee0bb38c3417aa"
  4450. dependencies = [
  4451. "bytes 0.5.6",
  4452. "prost",
  4453. ]
  4454. [[package]]
  4455. name = "quick-error"
  4456. version = "1.2.3"
  4457. source = "registry+https://github.com/rust-lang/crates.io-index"
  4458. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4459. [[package]]
  4460. name = "quicksink"
  4461. version = "0.1.2"
  4462. source = "registry+https://github.com/rust-lang/crates.io-index"
  4463. checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"
  4464. dependencies = [
  4465. "futures-core",
  4466. "futures-sink",
  4467. "pin-project-lite 0.1.11",
  4468. ]
  4469. [[package]]
  4470. name = "quote"
  4471. version = "1.0.7"
  4472. source = "registry+https://github.com/rust-lang/crates.io-index"
  4473. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  4474. dependencies = [
  4475. "proc-macro2",
  4476. ]
  4477. [[package]]
  4478. name = "radium"
  4479. version = "0.3.0"
  4480. source = "registry+https://github.com/rust-lang/crates.io-index"
  4481. checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"
  4482. [[package]]
  4483. name = "rand"
  4484. version = "0.3.23"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c"
  4487. dependencies = [
  4488. "libc",
  4489. "rand 0.4.6",
  4490. ]
  4491. [[package]]
  4492. name = "rand"
  4493. version = "0.4.6"
  4494. source = "registry+https://github.com/rust-lang/crates.io-index"
  4495. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  4496. dependencies = [
  4497. "fuchsia-cprng",
  4498. "libc",
  4499. "rand_core 0.3.1",
  4500. "rdrand",
  4501. "winapi 0.3.9",
  4502. ]
  4503. [[package]]
  4504. name = "rand"
  4505. version = "0.5.6"
  4506. source = "registry+https://github.com/rust-lang/crates.io-index"
  4507. checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
  4508. dependencies = [
  4509. "cloudabi",
  4510. "fuchsia-cprng",
  4511. "libc",
  4512. "rand_core 0.3.1",
  4513. "winapi 0.3.9",
  4514. ]
  4515. [[package]]
  4516. name = "rand"
  4517. version = "0.6.5"
  4518. source = "registry+https://github.com/rust-lang/crates.io-index"
  4519. checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
  4520. dependencies = [
  4521. "autocfg 0.1.7",
  4522. "libc",
  4523. "rand_chacha 0.1.1",
  4524. "rand_core 0.4.2",
  4525. "rand_hc 0.1.0",
  4526. "rand_isaac",
  4527. "rand_jitter",
  4528. "rand_os",
  4529. "rand_pcg 0.1.2",
  4530. "rand_xorshift",
  4531. "winapi 0.3.9",
  4532. ]
  4533. [[package]]
  4534. name = "rand"
  4535. version = "0.7.3"
  4536. source = "registry+https://github.com/rust-lang/crates.io-index"
  4537. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  4538. dependencies = [
  4539. "getrandom 0.1.15",
  4540. "libc",
  4541. "rand_chacha 0.2.2",
  4542. "rand_core 0.5.1",
  4543. "rand_hc 0.2.0",
  4544. "rand_pcg 0.2.1",
  4545. ]
  4546. [[package]]
  4547. name = "rand_chacha"
  4548. version = "0.1.1"
  4549. source = "registry+https://github.com/rust-lang/crates.io-index"
  4550. checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
  4551. dependencies = [
  4552. "autocfg 0.1.7",
  4553. "rand_core 0.3.1",
  4554. ]
  4555. [[package]]
  4556. name = "rand_chacha"
  4557. version = "0.2.2"
  4558. source = "registry+https://github.com/rust-lang/crates.io-index"
  4559. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  4560. dependencies = [
  4561. "ppv-lite86",
  4562. "rand_core 0.5.1",
  4563. ]
  4564. [[package]]
  4565. name = "rand_core"
  4566. version = "0.3.1"
  4567. source = "registry+https://github.com/rust-lang/crates.io-index"
  4568. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  4569. dependencies = [
  4570. "rand_core 0.4.2",
  4571. ]
  4572. [[package]]
  4573. name = "rand_core"
  4574. version = "0.4.2"
  4575. source = "registry+https://github.com/rust-lang/crates.io-index"
  4576. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  4577. [[package]]
  4578. name = "rand_core"
  4579. version = "0.5.1"
  4580. source = "registry+https://github.com/rust-lang/crates.io-index"
  4581. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  4582. dependencies = [
  4583. "getrandom 0.1.15",
  4584. ]
  4585. [[package]]
  4586. name = "rand_hc"
  4587. version = "0.1.0"
  4588. source = "registry+https://github.com/rust-lang/crates.io-index"
  4589. checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
  4590. dependencies = [
  4591. "rand_core 0.3.1",
  4592. ]
  4593. [[package]]
  4594. name = "rand_hc"
  4595. version = "0.2.0"
  4596. source = "registry+https://github.com/rust-lang/crates.io-index"
  4597. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  4598. dependencies = [
  4599. "rand_core 0.5.1",
  4600. ]
  4601. [[package]]
  4602. name = "rand_isaac"
  4603. version = "0.1.1"
  4604. source = "registry+https://github.com/rust-lang/crates.io-index"
  4605. checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
  4606. dependencies = [
  4607. "rand_core 0.3.1",
  4608. ]
  4609. [[package]]
  4610. name = "rand_jitter"
  4611. version = "0.1.4"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
  4614. dependencies = [
  4615. "libc",
  4616. "rand_core 0.4.2",
  4617. "winapi 0.3.9",
  4618. ]
  4619. [[package]]
  4620. name = "rand_os"
  4621. version = "0.1.3"
  4622. source = "registry+https://github.com/rust-lang/crates.io-index"
  4623. checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
  4624. dependencies = [
  4625. "cloudabi",
  4626. "fuchsia-cprng",
  4627. "libc",
  4628. "rand_core 0.4.2",
  4629. "rdrand",
  4630. "wasm-bindgen",
  4631. "winapi 0.3.9",
  4632. ]
  4633. [[package]]
  4634. name = "rand_pcg"
  4635. version = "0.1.2"
  4636. source = "registry+https://github.com/rust-lang/crates.io-index"
  4637. checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
  4638. dependencies = [
  4639. "autocfg 0.1.7",
  4640. "rand_core 0.4.2",
  4641. ]
  4642. [[package]]
  4643. name = "rand_pcg"
  4644. version = "0.2.1"
  4645. source = "registry+https://github.com/rust-lang/crates.io-index"
  4646. checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
  4647. dependencies = [
  4648. "rand_core 0.5.1",
  4649. ]
  4650. [[package]]
  4651. name = "rand_xorshift"
  4652. version = "0.1.1"
  4653. source = "registry+https://github.com/rust-lang/crates.io-index"
  4654. checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
  4655. dependencies = [
  4656. "rand_core 0.3.1",
  4657. ]
  4658. [[package]]
  4659. name = "rawpointer"
  4660. version = "0.2.1"
  4661. source = "registry+https://github.com/rust-lang/crates.io-index"
  4662. checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
  4663. [[package]]
  4664. name = "rayon"
  4665. version = "1.5.0"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
  4668. dependencies = [
  4669. "autocfg 1.0.1",
  4670. "crossbeam-deque 0.8.0",
  4671. "either",
  4672. "rayon-core",
  4673. ]
  4674. [[package]]
  4675. name = "rayon-core"
  4676. version = "1.9.0"
  4677. source = "registry+https://github.com/rust-lang/crates.io-index"
  4678. checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
  4679. dependencies = [
  4680. "crossbeam-channel",
  4681. "crossbeam-deque 0.8.0",
  4682. "crossbeam-utils 0.8.1",
  4683. "lazy_static",
  4684. "num_cpus",
  4685. ]
  4686. [[package]]
  4687. name = "rdrand"
  4688. version = "0.4.0"
  4689. source = "registry+https://github.com/rust-lang/crates.io-index"
  4690. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  4691. dependencies = [
  4692. "rand_core 0.3.1",
  4693. ]
  4694. [[package]]
  4695. name = "redox_syscall"
  4696. version = "0.1.57"
  4697. source = "registry+https://github.com/rust-lang/crates.io-index"
  4698. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  4699. [[package]]
  4700. name = "redox_users"
  4701. version = "0.3.5"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
  4704. dependencies = [
  4705. "getrandom 0.1.15",
  4706. "redox_syscall",
  4707. "rust-argon2",
  4708. ]
  4709. [[package]]
  4710. name = "ref-cast"
  4711. version = "1.0.3"
  4712. source = "registry+https://github.com/rust-lang/crates.io-index"
  4713. checksum = "e17626b2f4bcf35b84bf379072a66e28cfe5c3c6ae58b38e4914bb8891dabece"
  4714. dependencies = [
  4715. "ref-cast-impl",
  4716. ]
  4717. [[package]]
  4718. name = "ref-cast-impl"
  4719. version = "1.0.3"
  4720. source = "registry+https://github.com/rust-lang/crates.io-index"
  4721. checksum = "0c523ccaed8ac4b0288948849a350b37d3035827413c458b6a40ddb614bb4f72"
  4722. dependencies = [
  4723. "proc-macro2",
  4724. "quote",
  4725. "syn",
  4726. ]
  4727. [[package]]
  4728. name = "regex"
  4729. version = "1.4.2"
  4730. source = "registry+https://github.com/rust-lang/crates.io-index"
  4731. checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
  4732. dependencies = [
  4733. "aho-corasick",
  4734. "memchr",
  4735. "regex-syntax",
  4736. "thread_local",
  4737. ]
  4738. [[package]]
  4739. name = "regex-automata"
  4740. version = "0.1.9"
  4741. source = "registry+https://github.com/rust-lang/crates.io-index"
  4742. checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
  4743. dependencies = [
  4744. "byteorder 1.3.4",
  4745. "regex-syntax",
  4746. ]
  4747. [[package]]
  4748. name = "regex-syntax"
  4749. version = "0.6.21"
  4750. source = "registry+https://github.com/rust-lang/crates.io-index"
  4751. checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
  4752. [[package]]
  4753. name = "remove_dir_all"
  4754. version = "0.5.3"
  4755. source = "registry+https://github.com/rust-lang/crates.io-index"
  4756. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  4757. dependencies = [
  4758. "winapi 0.3.9",
  4759. ]
  4760. [[package]]
  4761. name = "retain_mut"
  4762. version = "0.1.1"
  4763. source = "registry+https://github.com/rust-lang/crates.io-index"
  4764. checksum = "e005d658ad26eacc2b6c506dfde519f4e277e328d0eb3379ca61647d70a8f531"
  4765. [[package]]
  4766. name = "ring"
  4767. version = "0.16.19"
  4768. source = "registry+https://github.com/rust-lang/crates.io-index"
  4769. checksum = "024a1e66fea74c66c66624ee5622a7ff0e4b73a13b4f5c326ddb50c708944226"
  4770. dependencies = [
  4771. "cc",
  4772. "libc",
  4773. "once_cell 1.5.2",
  4774. "spin",
  4775. "untrusted",
  4776. "web-sys",
  4777. "winapi 0.3.9",
  4778. ]
  4779. [[package]]
  4780. name = "rocksdb"
  4781. version = "0.15.0"
  4782. source = "registry+https://github.com/rust-lang/crates.io-index"
  4783. checksum = "23d83c02c429044d58474eaf5ae31e062d0de894e21125b47437ec0edc1397e6"
  4784. dependencies = [
  4785. "libc",
  4786. "librocksdb-sys",
  4787. ]
  4788. [[package]]
  4789. name = "rpassword"
  4790. version = "4.0.5"
  4791. source = "registry+https://github.com/rust-lang/crates.io-index"
  4792. checksum = "99371657d3c8e4d816fb6221db98fa408242b0b53bac08f8676a41f8554fe99f"
  4793. dependencies = [
  4794. "libc",
  4795. "winapi 0.3.9",
  4796. ]
  4797. [[package]]
  4798. name = "rust-argon2"
  4799. version = "0.8.3"
  4800. source = "registry+https://github.com/rust-lang/crates.io-index"
  4801. checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
  4802. dependencies = [
  4803. "base64 0.13.0",
  4804. "blake2b_simd",
  4805. "constant_time_eq",
  4806. "crossbeam-utils 0.8.1",
  4807. ]
  4808. [[package]]
  4809. name = "rustc-demangle"
  4810. version = "0.1.18"
  4811. source = "registry+https://github.com/rust-lang/crates.io-index"
  4812. checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
  4813. [[package]]
  4814. name = "rustc-hash"
  4815. version = "1.1.0"
  4816. source = "registry+https://github.com/rust-lang/crates.io-index"
  4817. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4818. [[package]]
  4819. name = "rustc-hex"
  4820. version = "2.1.0"
  4821. source = "registry+https://github.com/rust-lang/crates.io-index"
  4822. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  4823. [[package]]
  4824. name = "rustc_version"
  4825. version = "0.2.3"
  4826. source = "registry+https://github.com/rust-lang/crates.io-index"
  4827. checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  4828. dependencies = [
  4829. "semver",
  4830. ]
  4831. [[package]]
  4832. name = "rustls"
  4833. version = "0.18.1"
  4834. source = "registry+https://github.com/rust-lang/crates.io-index"
  4835. checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
  4836. dependencies = [
  4837. "base64 0.12.3",
  4838. "log",
  4839. "ring",
  4840. "sct",
  4841. "webpki",
  4842. ]
  4843. [[package]]
  4844. name = "rustls-native-certs"
  4845. version = "0.4.0"
  4846. source = "registry+https://github.com/rust-lang/crates.io-index"
  4847. checksum = "629d439a7672da82dd955498445e496ee2096fe2117b9f796558a43fdb9e59b8"
  4848. dependencies = [
  4849. "openssl-probe",
  4850. "rustls",
  4851. "schannel",
  4852. "security-framework",
  4853. ]
  4854. [[package]]
  4855. name = "rw-stream-sink"
  4856. version = "0.2.1"
  4857. source = "registry+https://github.com/rust-lang/crates.io-index"
  4858. checksum = "4da5fcb054c46f5a5dff833b129285a93d3f0179531735e6c866e8cc307d2020"
  4859. dependencies = [
  4860. "futures 0.3.8",
  4861. "pin-project 0.4.27",
  4862. "static_assertions",
  4863. ]
  4864. [[package]]
  4865. name = "ryu"
  4866. version = "1.0.5"
  4867. source = "registry+https://github.com/rust-lang/crates.io-index"
  4868. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  4869. [[package]]
  4870. name = "safe-mix"
  4871. version = "1.0.1"
  4872. source = "registry+https://github.com/rust-lang/crates.io-index"
  4873. checksum = "6d3d055a2582e6b00ed7a31c1524040aa391092bf636328350813f3a0605215c"
  4874. dependencies = [
  4875. "rustc_version",
  4876. ]
  4877. [[package]]
  4878. name = "salsa20"
  4879. version = "0.6.0"
  4880. source = "registry+https://github.com/rust-lang/crates.io-index"
  4881. checksum = "c7f47b10fa80f6969bbbd9c8e7cc998f082979d402a9e10579e2303a87955395"
  4882. dependencies = [
  4883. "stream-cipher",
  4884. ]
  4885. [[package]]
  4886. name = "sc-authority-discovery"
  4887. version = "0.8.0"
  4888. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4889. dependencies = [
  4890. "bytes 0.5.6",
  4891. "derive_more",
  4892. "either",
  4893. "futures 0.3.8",
  4894. "futures-timer 3.0.2",
  4895. "libp2p",
  4896. "log",
  4897. "parity-scale-codec",
  4898. "prost",
  4899. "prost-build",
  4900. "rand 0.7.3",
  4901. "sc-client-api",
  4902. "sc-keystore",
  4903. "sc-network",
  4904. "serde_json",
  4905. "sp-api",
  4906. "sp-authority-discovery",
  4907. "sp-blockchain",
  4908. "sp-core",
  4909. "sp-runtime",
  4910. "substrate-prometheus-endpoint",
  4911. ]
  4912. [[package]]
  4913. name = "sc-basic-authorship"
  4914. version = "0.8.0"
  4915. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4916. dependencies = [
  4917. "futures 0.3.8",
  4918. "futures-timer 3.0.2",
  4919. "log",
  4920. "parity-scale-codec",
  4921. "sc-block-builder",
  4922. "sc-client-api",
  4923. "sc-proposer-metrics",
  4924. "sc-telemetry",
  4925. "sp-api",
  4926. "sp-blockchain",
  4927. "sp-consensus",
  4928. "sp-core",
  4929. "sp-inherents",
  4930. "sp-runtime",
  4931. "sp-transaction-pool",
  4932. "substrate-prometheus-endpoint",
  4933. "tokio-executor 0.2.0-alpha.6",
  4934. ]
  4935. [[package]]
  4936. name = "sc-block-builder"
  4937. version = "0.8.0"
  4938. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4939. dependencies = [
  4940. "parity-scale-codec",
  4941. "sc-client-api",
  4942. "sp-api",
  4943. "sp-block-builder",
  4944. "sp-blockchain",
  4945. "sp-consensus",
  4946. "sp-core",
  4947. "sp-inherents",
  4948. "sp-runtime",
  4949. "sp-state-machine",
  4950. ]
  4951. [[package]]
  4952. name = "sc-chain-spec"
  4953. version = "2.0.0"
  4954. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4955. dependencies = [
  4956. "impl-trait-for-tuples",
  4957. "parity-scale-codec",
  4958. "sc-chain-spec-derive",
  4959. "sc-network",
  4960. "sc-telemetry",
  4961. "serde",
  4962. "serde_json",
  4963. "sp-chain-spec",
  4964. "sp-core",
  4965. "sp-runtime",
  4966. ]
  4967. [[package]]
  4968. name = "sc-chain-spec-derive"
  4969. version = "2.0.0"
  4970. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4971. dependencies = [
  4972. "proc-macro-crate",
  4973. "proc-macro2",
  4974. "quote",
  4975. "syn",
  4976. ]
  4977. [[package]]
  4978. name = "sc-cli"
  4979. version = "0.8.0"
  4980. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  4981. dependencies = [
  4982. "ansi_term 0.12.1",
  4983. "atty",
  4984. "bip39",
  4985. "chrono",
  4986. "derive_more",
  4987. "fdlimit",
  4988. "futures 0.3.8",
  4989. "hex",
  4990. "lazy_static",
  4991. "libp2p",
  4992. "log",
  4993. "names",
  4994. "nix",
  4995. "parity-scale-codec",
  4996. "parity-util-mem",
  4997. "rand 0.7.3",
  4998. "regex",
  4999. "rpassword",
  5000. "sc-client-api",
  5001. "sc-informant",
  5002. "sc-keystore",
  5003. "sc-network",
  5004. "sc-service",
  5005. "sc-telemetry",
  5006. "sc-tracing",
  5007. "serde",
  5008. "serde_json",
  5009. "sp-blockchain",
  5010. "sp-core",
  5011. "sp-keyring",
  5012. "sp-panic-handler",
  5013. "sp-runtime",
  5014. "sp-state-machine",
  5015. "sp-utils",
  5016. "sp-version",
  5017. "structopt",
  5018. "substrate-prometheus-endpoint",
  5019. "time",
  5020. "tokio 0.2.23",
  5021. "tracing",
  5022. "tracing-log",
  5023. "tracing-subscriber",
  5024. ]
  5025. [[package]]
  5026. name = "sc-client-api"
  5027. version = "2.0.0"
  5028. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5029. dependencies = [
  5030. "derive_more",
  5031. "fnv",
  5032. "futures 0.3.8",
  5033. "hash-db",
  5034. "hex-literal",
  5035. "kvdb",
  5036. "lazy_static",
  5037. "log",
  5038. "parity-scale-codec",
  5039. "parking_lot 0.10.2",
  5040. "sc-executor",
  5041. "sc-telemetry",
  5042. "sp-api",
  5043. "sp-blockchain",
  5044. "sp-consensus",
  5045. "sp-core",
  5046. "sp-database",
  5047. "sp-externalities",
  5048. "sp-inherents",
  5049. "sp-keyring",
  5050. "sp-runtime",
  5051. "sp-state-machine",
  5052. "sp-std",
  5053. "sp-storage",
  5054. "sp-transaction-pool",
  5055. "sp-trie",
  5056. "sp-utils",
  5057. "sp-version",
  5058. "substrate-prometheus-endpoint",
  5059. ]
  5060. [[package]]
  5061. name = "sc-client-db"
  5062. version = "0.8.0"
  5063. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5064. dependencies = [
  5065. "blake2-rfc",
  5066. "hash-db",
  5067. "kvdb",
  5068. "kvdb-memorydb",
  5069. "kvdb-rocksdb",
  5070. "linked-hash-map",
  5071. "log",
  5072. "parity-db",
  5073. "parity-scale-codec",
  5074. "parity-util-mem",
  5075. "parking_lot 0.10.2",
  5076. "sc-client-api",
  5077. "sc-executor",
  5078. "sc-state-db",
  5079. "sp-arithmetic",
  5080. "sp-blockchain",
  5081. "sp-consensus",
  5082. "sp-core",
  5083. "sp-database",
  5084. "sp-runtime",
  5085. "sp-state-machine",
  5086. "sp-trie",
  5087. "substrate-prometheus-endpoint",
  5088. ]
  5089. [[package]]
  5090. name = "sc-consensus"
  5091. version = "0.8.0"
  5092. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5093. dependencies = [
  5094. "sc-client-api",
  5095. "sp-blockchain",
  5096. "sp-consensus",
  5097. "sp-runtime",
  5098. ]
  5099. [[package]]
  5100. name = "sc-consensus-babe"
  5101. version = "0.8.0"
  5102. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5103. dependencies = [
  5104. "derive_more",
  5105. "fork-tree",
  5106. "futures 0.3.8",
  5107. "futures-timer 3.0.2",
  5108. "log",
  5109. "merlin",
  5110. "num-bigint",
  5111. "num-rational",
  5112. "num-traits",
  5113. "parity-scale-codec",
  5114. "parking_lot 0.10.2",
  5115. "pdqselect",
  5116. "rand 0.7.3",
  5117. "retain_mut",
  5118. "sc-client-api",
  5119. "sc-consensus-epochs",
  5120. "sc-consensus-slots",
  5121. "sc-consensus-uncles",
  5122. "sc-keystore",
  5123. "sc-telemetry",
  5124. "schnorrkel",
  5125. "serde",
  5126. "sp-api",
  5127. "sp-application-crypto",
  5128. "sp-block-builder",
  5129. "sp-blockchain",
  5130. "sp-consensus",
  5131. "sp-consensus-babe",
  5132. "sp-consensus-vrf",
  5133. "sp-core",
  5134. "sp-inherents",
  5135. "sp-io",
  5136. "sp-runtime",
  5137. "sp-timestamp",
  5138. "sp-utils",
  5139. "sp-version",
  5140. "substrate-prometheus-endpoint",
  5141. ]
  5142. [[package]]
  5143. name = "sc-consensus-babe-rpc"
  5144. version = "0.8.0"
  5145. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5146. dependencies = [
  5147. "derive_more",
  5148. "futures 0.3.8",
  5149. "jsonrpc-core",
  5150. "jsonrpc-core-client",
  5151. "jsonrpc-derive",
  5152. "sc-consensus-babe",
  5153. "sc-consensus-epochs",
  5154. "sc-keystore",
  5155. "sc-rpc-api",
  5156. "serde",
  5157. "sp-api",
  5158. "sp-application-crypto",
  5159. "sp-blockchain",
  5160. "sp-consensus",
  5161. "sp-consensus-babe",
  5162. "sp-core",
  5163. "sp-runtime",
  5164. ]
  5165. [[package]]
  5166. name = "sc-consensus-epochs"
  5167. version = "0.8.0"
  5168. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5169. dependencies = [
  5170. "fork-tree",
  5171. "parity-scale-codec",
  5172. "parking_lot 0.10.2",
  5173. "sc-client-api",
  5174. "sp-blockchain",
  5175. "sp-runtime",
  5176. ]
  5177. [[package]]
  5178. name = "sc-consensus-slots"
  5179. version = "0.8.0"
  5180. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5181. dependencies = [
  5182. "futures 0.3.8",
  5183. "futures-timer 3.0.2",
  5184. "log",
  5185. "parity-scale-codec",
  5186. "parking_lot 0.10.2",
  5187. "sc-client-api",
  5188. "sc-telemetry",
  5189. "sp-api",
  5190. "sp-application-crypto",
  5191. "sp-blockchain",
  5192. "sp-consensus",
  5193. "sp-consensus-slots",
  5194. "sp-core",
  5195. "sp-inherents",
  5196. "sp-runtime",
  5197. "sp-state-machine",
  5198. ]
  5199. [[package]]
  5200. name = "sc-consensus-uncles"
  5201. version = "0.8.0"
  5202. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5203. dependencies = [
  5204. "log",
  5205. "sc-client-api",
  5206. "sp-authorship",
  5207. "sp-consensus",
  5208. "sp-core",
  5209. "sp-inherents",
  5210. "sp-runtime",
  5211. ]
  5212. [[package]]
  5213. name = "sc-executor"
  5214. version = "0.8.0"
  5215. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5216. dependencies = [
  5217. "derive_more",
  5218. "lazy_static",
  5219. "libsecp256k1",
  5220. "log",
  5221. "parity-scale-codec",
  5222. "parity-wasm",
  5223. "parking_lot 0.10.2",
  5224. "sc-executor-common",
  5225. "sc-executor-wasmi",
  5226. "sp-api",
  5227. "sp-core",
  5228. "sp-externalities",
  5229. "sp-io",
  5230. "sp-panic-handler",
  5231. "sp-runtime-interface",
  5232. "sp-serializer",
  5233. "sp-trie",
  5234. "sp-version",
  5235. "sp-wasm-interface",
  5236. "wasmi",
  5237. ]
  5238. [[package]]
  5239. name = "sc-executor-common"
  5240. version = "0.8.0"
  5241. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5242. dependencies = [
  5243. "derive_more",
  5244. "log",
  5245. "parity-scale-codec",
  5246. "parity-wasm",
  5247. "sp-allocator",
  5248. "sp-core",
  5249. "sp-runtime-interface",
  5250. "sp-serializer",
  5251. "sp-wasm-interface",
  5252. "wasmi",
  5253. ]
  5254. [[package]]
  5255. name = "sc-executor-wasmi"
  5256. version = "0.8.0"
  5257. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5258. dependencies = [
  5259. "log",
  5260. "parity-scale-codec",
  5261. "sc-executor-common",
  5262. "sp-allocator",
  5263. "sp-core",
  5264. "sp-runtime-interface",
  5265. "sp-wasm-interface",
  5266. "wasmi",
  5267. ]
  5268. [[package]]
  5269. name = "sc-finality-grandpa"
  5270. version = "0.8.0"
  5271. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5272. dependencies = [
  5273. "derive_more",
  5274. "finality-grandpa",
  5275. "fork-tree",
  5276. "futures 0.3.8",
  5277. "futures-timer 3.0.2",
  5278. "log",
  5279. "parity-scale-codec",
  5280. "parking_lot 0.10.2",
  5281. "pin-project 0.4.27",
  5282. "rand 0.7.3",
  5283. "sc-block-builder",
  5284. "sc-client-api",
  5285. "sc-consensus",
  5286. "sc-keystore",
  5287. "sc-network",
  5288. "sc-network-gossip",
  5289. "sc-telemetry",
  5290. "serde_json",
  5291. "sp-api",
  5292. "sp-application-crypto",
  5293. "sp-arithmetic",
  5294. "sp-blockchain",
  5295. "sp-consensus",
  5296. "sp-core",
  5297. "sp-finality-grandpa",
  5298. "sp-finality-tracker",
  5299. "sp-inherents",
  5300. "sp-runtime",
  5301. "sp-utils",
  5302. "substrate-prometheus-endpoint",
  5303. ]
  5304. [[package]]
  5305. name = "sc-finality-grandpa-rpc"
  5306. version = "0.8.0"
  5307. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5308. dependencies = [
  5309. "derive_more",
  5310. "finality-grandpa",
  5311. "futures 0.3.8",
  5312. "jsonrpc-core",
  5313. "jsonrpc-core-client",
  5314. "jsonrpc-derive",
  5315. "jsonrpc-pubsub",
  5316. "log",
  5317. "parity-scale-codec",
  5318. "sc-client-api",
  5319. "sc-finality-grandpa",
  5320. "sc-rpc",
  5321. "serde",
  5322. "serde_json",
  5323. "sp-blockchain",
  5324. "sp-core",
  5325. "sp-runtime",
  5326. ]
  5327. [[package]]
  5328. name = "sc-informant"
  5329. version = "0.8.0"
  5330. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5331. dependencies = [
  5332. "ansi_term 0.12.1",
  5333. "futures 0.3.8",
  5334. "log",
  5335. "parity-util-mem",
  5336. "sc-client-api",
  5337. "sc-network",
  5338. "sp-blockchain",
  5339. "sp-runtime",
  5340. "sp-transaction-pool",
  5341. "sp-utils",
  5342. "wasm-timer",
  5343. ]
  5344. [[package]]
  5345. name = "sc-keystore"
  5346. version = "2.0.0"
  5347. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5348. dependencies = [
  5349. "derive_more",
  5350. "hex",
  5351. "merlin",
  5352. "parking_lot 0.10.2",
  5353. "rand 0.7.3",
  5354. "serde_json",
  5355. "sp-application-crypto",
  5356. "sp-core",
  5357. "subtle 2.3.0",
  5358. ]
  5359. [[package]]
  5360. name = "sc-light"
  5361. version = "2.0.0"
  5362. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5363. dependencies = [
  5364. "hash-db",
  5365. "lazy_static",
  5366. "parity-scale-codec",
  5367. "parking_lot 0.10.2",
  5368. "sc-client-api",
  5369. "sc-executor",
  5370. "sp-api",
  5371. "sp-blockchain",
  5372. "sp-core",
  5373. "sp-externalities",
  5374. "sp-runtime",
  5375. "sp-state-machine",
  5376. ]
  5377. [[package]]
  5378. name = "sc-network"
  5379. version = "0.8.0"
  5380. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5381. dependencies = [
  5382. "async-std",
  5383. "async-trait",
  5384. "bitflags",
  5385. "bs58 0.3.1",
  5386. "bytes 0.5.6",
  5387. "derive_more",
  5388. "either",
  5389. "erased-serde",
  5390. "fnv",
  5391. "fork-tree",
  5392. "futures 0.3.8",
  5393. "futures-timer 3.0.2",
  5394. "futures_codec",
  5395. "hex",
  5396. "ip_network",
  5397. "libp2p",
  5398. "linked-hash-map",
  5399. "linked_hash_set",
  5400. "log",
  5401. "lru 0.4.3",
  5402. "nohash-hasher",
  5403. "parity-scale-codec",
  5404. "parking_lot 0.10.2",
  5405. "pin-project 0.4.27",
  5406. "prost",
  5407. "prost-build",
  5408. "rand 0.7.3",
  5409. "sc-block-builder",
  5410. "sc-client-api",
  5411. "sc-peerset",
  5412. "serde",
  5413. "serde_json",
  5414. "slog",
  5415. "slog_derive",
  5416. "smallvec 0.6.13",
  5417. "sp-arithmetic",
  5418. "sp-blockchain",
  5419. "sp-consensus",
  5420. "sp-core",
  5421. "sp-runtime",
  5422. "sp-utils",
  5423. "substrate-prometheus-endpoint",
  5424. "thiserror",
  5425. "unsigned-varint 0.4.0",
  5426. "void",
  5427. "wasm-timer",
  5428. "zeroize",
  5429. ]
  5430. [[package]]
  5431. name = "sc-network-gossip"
  5432. version = "0.8.0"
  5433. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5434. dependencies = [
  5435. "futures 0.3.8",
  5436. "futures-timer 3.0.2",
  5437. "libp2p",
  5438. "log",
  5439. "lru 0.4.3",
  5440. "sc-network",
  5441. "sp-runtime",
  5442. "wasm-timer",
  5443. ]
  5444. [[package]]
  5445. name = "sc-offchain"
  5446. version = "2.0.0"
  5447. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5448. dependencies = [
  5449. "bytes 0.5.6",
  5450. "fnv",
  5451. "futures 0.3.8",
  5452. "futures-timer 3.0.2",
  5453. "hyper 0.13.9",
  5454. "hyper-rustls",
  5455. "log",
  5456. "num_cpus",
  5457. "parity-scale-codec",
  5458. "parking_lot 0.10.2",
  5459. "rand 0.7.3",
  5460. "sc-client-api",
  5461. "sc-keystore",
  5462. "sc-network",
  5463. "sp-api",
  5464. "sp-core",
  5465. "sp-offchain",
  5466. "sp-runtime",
  5467. "sp-utils",
  5468. "threadpool",
  5469. ]
  5470. [[package]]
  5471. name = "sc-peerset"
  5472. version = "2.0.0"
  5473. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5474. dependencies = [
  5475. "futures 0.3.8",
  5476. "libp2p",
  5477. "log",
  5478. "serde_json",
  5479. "sp-utils",
  5480. "wasm-timer",
  5481. ]
  5482. [[package]]
  5483. name = "sc-proposer-metrics"
  5484. version = "0.8.0"
  5485. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5486. dependencies = [
  5487. "log",
  5488. "substrate-prometheus-endpoint",
  5489. ]
  5490. [[package]]
  5491. name = "sc-rpc"
  5492. version = "2.0.0"
  5493. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5494. dependencies = [
  5495. "futures 0.3.8",
  5496. "hash-db",
  5497. "jsonrpc-core",
  5498. "jsonrpc-pubsub",
  5499. "log",
  5500. "parity-scale-codec",
  5501. "parking_lot 0.10.2",
  5502. "sc-block-builder",
  5503. "sc-client-api",
  5504. "sc-executor",
  5505. "sc-keystore",
  5506. "sc-rpc-api",
  5507. "serde_json",
  5508. "sp-api",
  5509. "sp-blockchain",
  5510. "sp-chain-spec",
  5511. "sp-core",
  5512. "sp-offchain",
  5513. "sp-rpc",
  5514. "sp-runtime",
  5515. "sp-session",
  5516. "sp-state-machine",
  5517. "sp-transaction-pool",
  5518. "sp-utils",
  5519. "sp-version",
  5520. ]
  5521. [[package]]
  5522. name = "sc-rpc-api"
  5523. version = "0.8.0"
  5524. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5525. dependencies = [
  5526. "derive_more",
  5527. "futures 0.3.8",
  5528. "jsonrpc-core",
  5529. "jsonrpc-core-client",
  5530. "jsonrpc-derive",
  5531. "jsonrpc-pubsub",
  5532. "log",
  5533. "parity-scale-codec",
  5534. "parking_lot 0.10.2",
  5535. "serde",
  5536. "serde_json",
  5537. "sp-chain-spec",
  5538. "sp-core",
  5539. "sp-rpc",
  5540. "sp-runtime",
  5541. "sp-transaction-pool",
  5542. "sp-version",
  5543. ]
  5544. [[package]]
  5545. name = "sc-rpc-server"
  5546. version = "2.0.0"
  5547. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5548. dependencies = [
  5549. "futures 0.1.30",
  5550. "jsonrpc-core",
  5551. "jsonrpc-http-server",
  5552. "jsonrpc-ipc-server",
  5553. "jsonrpc-pubsub",
  5554. "jsonrpc-ws-server",
  5555. "log",
  5556. "serde",
  5557. "serde_json",
  5558. "sp-runtime",
  5559. "substrate-prometheus-endpoint",
  5560. ]
  5561. [[package]]
  5562. name = "sc-service"
  5563. version = "0.8.0"
  5564. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5565. dependencies = [
  5566. "derive_more",
  5567. "directories",
  5568. "exit-future",
  5569. "futures 0.1.30",
  5570. "futures 0.3.8",
  5571. "futures-timer 3.0.2",
  5572. "hash-db",
  5573. "jsonrpc-core",
  5574. "jsonrpc-pubsub",
  5575. "lazy_static",
  5576. "log",
  5577. "parity-scale-codec",
  5578. "parity-util-mem",
  5579. "parking_lot 0.10.2",
  5580. "pin-project 0.4.27",
  5581. "rand 0.7.3",
  5582. "sc-block-builder",
  5583. "sc-chain-spec",
  5584. "sc-client-api",
  5585. "sc-client-db",
  5586. "sc-executor",
  5587. "sc-informant",
  5588. "sc-keystore",
  5589. "sc-light",
  5590. "sc-network",
  5591. "sc-offchain",
  5592. "sc-rpc",
  5593. "sc-rpc-server",
  5594. "sc-telemetry",
  5595. "sc-tracing",
  5596. "sc-transaction-pool",
  5597. "serde",
  5598. "serde_json",
  5599. "slog",
  5600. "sp-api",
  5601. "sp-application-crypto",
  5602. "sp-block-builder",
  5603. "sp-blockchain",
  5604. "sp-consensus",
  5605. "sp-core",
  5606. "sp-externalities",
  5607. "sp-inherents",
  5608. "sp-io",
  5609. "sp-runtime",
  5610. "sp-session",
  5611. "sp-state-machine",
  5612. "sp-tracing",
  5613. "sp-transaction-pool",
  5614. "sp-trie",
  5615. "sp-utils",
  5616. "sp-version",
  5617. "substrate-prometheus-endpoint",
  5618. "tempfile",
  5619. "tracing",
  5620. "wasm-timer",
  5621. ]
  5622. [[package]]
  5623. name = "sc-service-test"
  5624. version = "2.0.0"
  5625. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5626. dependencies = [
  5627. "fdlimit",
  5628. "futures 0.1.30",
  5629. "futures 0.3.8",
  5630. "hex-literal",
  5631. "log",
  5632. "parity-scale-codec",
  5633. "parking_lot 0.10.2",
  5634. "sc-block-builder",
  5635. "sc-client-api",
  5636. "sc-client-db",
  5637. "sc-executor",
  5638. "sc-light",
  5639. "sc-network",
  5640. "sc-service",
  5641. "sp-api",
  5642. "sp-blockchain",
  5643. "sp-consensus",
  5644. "sp-core",
  5645. "sp-externalities",
  5646. "sp-panic-handler",
  5647. "sp-runtime",
  5648. "sp-state-machine",
  5649. "sp-storage",
  5650. "sp-tracing",
  5651. "sp-transaction-pool",
  5652. "sp-trie",
  5653. "substrate-test-runtime",
  5654. "substrate-test-runtime-client",
  5655. "tempfile",
  5656. "tokio 0.1.22",
  5657. ]
  5658. [[package]]
  5659. name = "sc-state-db"
  5660. version = "0.8.0"
  5661. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5662. dependencies = [
  5663. "log",
  5664. "parity-scale-codec",
  5665. "parity-util-mem",
  5666. "parity-util-mem-derive",
  5667. "parking_lot 0.10.2",
  5668. "sc-client-api",
  5669. "sp-core",
  5670. ]
  5671. [[package]]
  5672. name = "sc-telemetry"
  5673. version = "2.0.0"
  5674. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5675. dependencies = [
  5676. "futures 0.3.8",
  5677. "futures-timer 3.0.2",
  5678. "libp2p",
  5679. "log",
  5680. "parking_lot 0.10.2",
  5681. "pin-project 0.4.27",
  5682. "rand 0.7.3",
  5683. "serde",
  5684. "slog",
  5685. "slog-json",
  5686. "slog-scope",
  5687. "take_mut",
  5688. "void",
  5689. "wasm-timer",
  5690. ]
  5691. [[package]]
  5692. name = "sc-tracing"
  5693. version = "2.0.0"
  5694. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5695. dependencies = [
  5696. "erased-serde",
  5697. "log",
  5698. "parking_lot 0.10.2",
  5699. "rustc-hash",
  5700. "sc-telemetry",
  5701. "serde",
  5702. "serde_json",
  5703. "slog",
  5704. "sp-tracing",
  5705. "tracing",
  5706. "tracing-core",
  5707. "tracing-subscriber",
  5708. ]
  5709. [[package]]
  5710. name = "sc-transaction-graph"
  5711. version = "2.0.0"
  5712. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5713. dependencies = [
  5714. "derive_more",
  5715. "futures 0.3.8",
  5716. "linked-hash-map",
  5717. "log",
  5718. "parity-util-mem",
  5719. "parking_lot 0.10.2",
  5720. "retain_mut",
  5721. "serde",
  5722. "sp-blockchain",
  5723. "sp-core",
  5724. "sp-runtime",
  5725. "sp-transaction-pool",
  5726. "sp-utils",
  5727. "wasm-timer",
  5728. ]
  5729. [[package]]
  5730. name = "sc-transaction-pool"
  5731. version = "2.0.0"
  5732. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  5733. dependencies = [
  5734. "derive_more",
  5735. "futures 0.3.8",
  5736. "futures-diagnose",
  5737. "intervalier",
  5738. "log",
  5739. "parity-scale-codec",
  5740. "parity-util-mem",
  5741. "parking_lot 0.10.2",
  5742. "sc-client-api",
  5743. "sc-transaction-graph",
  5744. "sp-api",
  5745. "sp-blockchain",
  5746. "sp-core",
  5747. "sp-runtime",
  5748. "sp-tracing",
  5749. "sp-transaction-pool",
  5750. "sp-utils",
  5751. "substrate-prometheus-endpoint",
  5752. "wasm-timer",
  5753. ]
  5754. [[package]]
  5755. name = "schannel"
  5756. version = "0.1.19"
  5757. source = "registry+https://github.com/rust-lang/crates.io-index"
  5758. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  5759. dependencies = [
  5760. "lazy_static",
  5761. "winapi 0.3.9",
  5762. ]
  5763. [[package]]
  5764. name = "schnorrkel"
  5765. version = "0.9.1"
  5766. source = "registry+https://github.com/rust-lang/crates.io-index"
  5767. checksum = "021b403afe70d81eea68f6ea12f6b3c9588e5d536a94c3bf80f15e7faa267862"
  5768. dependencies = [
  5769. "arrayref",
  5770. "arrayvec 0.5.2",
  5771. "curve25519-dalek 2.1.0",
  5772. "getrandom 0.1.15",
  5773. "merlin",
  5774. "rand 0.7.3",
  5775. "rand_core 0.5.1",
  5776. "sha2 0.8.2",
  5777. "subtle 2.3.0",
  5778. "zeroize",
  5779. ]
  5780. [[package]]
  5781. name = "scoped-tls"
  5782. version = "1.0.0"
  5783. source = "registry+https://github.com/rust-lang/crates.io-index"
  5784. checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
  5785. [[package]]
  5786. name = "scopeguard"
  5787. version = "0.3.3"
  5788. source = "registry+https://github.com/rust-lang/crates.io-index"
  5789. checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
  5790. [[package]]
  5791. name = "scopeguard"
  5792. version = "1.1.0"
  5793. source = "registry+https://github.com/rust-lang/crates.io-index"
  5794. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  5795. [[package]]
  5796. name = "sct"
  5797. version = "0.6.0"
  5798. source = "registry+https://github.com/rust-lang/crates.io-index"
  5799. checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
  5800. dependencies = [
  5801. "ring",
  5802. "untrusted",
  5803. ]
  5804. [[package]]
  5805. name = "secrecy"
  5806. version = "0.6.0"
  5807. source = "registry+https://github.com/rust-lang/crates.io-index"
  5808. checksum = "9182278ed645df3477a9c27bfee0621c621aa16f6972635f7f795dae3d81070f"
  5809. dependencies = [
  5810. "zeroize",
  5811. ]
  5812. [[package]]
  5813. name = "security-framework"
  5814. version = "1.0.0"
  5815. source = "registry+https://github.com/rust-lang/crates.io-index"
  5816. checksum = "ad502866817f0575705bd7be36e2b2535cc33262d493aa733a2ec862baa2bc2b"
  5817. dependencies = [
  5818. "bitflags",
  5819. "core-foundation",
  5820. "core-foundation-sys",
  5821. "libc",
  5822. "security-framework-sys",
  5823. ]
  5824. [[package]]
  5825. name = "security-framework-sys"
  5826. version = "1.0.0"
  5827. source = "registry+https://github.com/rust-lang/crates.io-index"
  5828. checksum = "51ceb04988b17b6d1dcd555390fa822ca5637b4a14e1f5099f13d351bed4d6c7"
  5829. dependencies = [
  5830. "core-foundation-sys",
  5831. "libc",
  5832. ]
  5833. [[package]]
  5834. name = "semver"
  5835. version = "0.9.0"
  5836. source = "registry+https://github.com/rust-lang/crates.io-index"
  5837. checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  5838. dependencies = [
  5839. "semver-parser",
  5840. ]
  5841. [[package]]
  5842. name = "semver-parser"
  5843. version = "0.7.0"
  5844. source = "registry+https://github.com/rust-lang/crates.io-index"
  5845. checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  5846. [[package]]
  5847. name = "send_wrapper"
  5848. version = "0.3.0"
  5849. source = "registry+https://github.com/rust-lang/crates.io-index"
  5850. checksum = "686ef91cf020ad8d4aca9a7047641fd6add626b7b89e14546c2b6a76781cf822"
  5851. [[package]]
  5852. name = "send_wrapper"
  5853. version = "0.4.0"
  5854. source = "registry+https://github.com/rust-lang/crates.io-index"
  5855. checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
  5856. [[package]]
  5857. name = "serde"
  5858. version = "1.0.118"
  5859. source = "registry+https://github.com/rust-lang/crates.io-index"
  5860. checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800"
  5861. dependencies = [
  5862. "serde_derive",
  5863. ]
  5864. [[package]]
  5865. name = "serde_derive"
  5866. version = "1.0.118"
  5867. source = "registry+https://github.com/rust-lang/crates.io-index"
  5868. checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df"
  5869. dependencies = [
  5870. "proc-macro2",
  5871. "quote",
  5872. "syn",
  5873. ]
  5874. [[package]]
  5875. name = "serde_derive_internals"
  5876. version = "0.25.0"
  5877. source = "registry+https://github.com/rust-lang/crates.io-index"
  5878. checksum = "1dbab34ca63057a1f15280bdf3c39f2b1eb1b54c17e98360e511637aef7418c6"
  5879. dependencies = [
  5880. "proc-macro2",
  5881. "quote",
  5882. "syn",
  5883. ]
  5884. [[package]]
  5885. name = "serde_json"
  5886. version = "1.0.60"
  5887. source = "registry+https://github.com/rust-lang/crates.io-index"
  5888. checksum = "1500e84d27fe482ed1dc791a56eddc2f230046a040fa908c08bda1d9fb615779"
  5889. dependencies = [
  5890. "itoa",
  5891. "ryu",
  5892. "serde",
  5893. ]
  5894. [[package]]
  5895. name = "sha-1"
  5896. version = "0.8.2"
  5897. source = "registry+https://github.com/rust-lang/crates.io-index"
  5898. checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
  5899. dependencies = [
  5900. "block-buffer 0.7.3",
  5901. "digest 0.8.1",
  5902. "fake-simd",
  5903. "opaque-debug 0.2.3",
  5904. ]
  5905. [[package]]
  5906. name = "sha-1"
  5907. version = "0.9.2"
  5908. source = "registry+https://github.com/rust-lang/crates.io-index"
  5909. checksum = "ce3cdf1b5e620a498ee6f2a171885ac7e22f0e12089ec4b3d22b84921792507c"
  5910. dependencies = [
  5911. "block-buffer 0.9.0",
  5912. "cfg-if 1.0.0",
  5913. "cpuid-bool",
  5914. "digest 0.9.0",
  5915. "opaque-debug 0.3.0",
  5916. ]
  5917. [[package]]
  5918. name = "sha2"
  5919. version = "0.8.2"
  5920. source = "registry+https://github.com/rust-lang/crates.io-index"
  5921. checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
  5922. dependencies = [
  5923. "block-buffer 0.7.3",
  5924. "digest 0.8.1",
  5925. "fake-simd",
  5926. "opaque-debug 0.2.3",
  5927. ]
  5928. [[package]]
  5929. name = "sha2"
  5930. version = "0.9.2"
  5931. source = "registry+https://github.com/rust-lang/crates.io-index"
  5932. checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
  5933. dependencies = [
  5934. "block-buffer 0.9.0",
  5935. "cfg-if 1.0.0",
  5936. "cpuid-bool",
  5937. "digest 0.9.0",
  5938. "opaque-debug 0.3.0",
  5939. ]
  5940. [[package]]
  5941. name = "sha3"
  5942. version = "0.9.1"
  5943. source = "registry+https://github.com/rust-lang/crates.io-index"
  5944. checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
  5945. dependencies = [
  5946. "block-buffer 0.9.0",
  5947. "digest 0.9.0",
  5948. "keccak",
  5949. "opaque-debug 0.3.0",
  5950. ]
  5951. [[package]]
  5952. name = "sharded-slab"
  5953. version = "0.1.0"
  5954. source = "registry+https://github.com/rust-lang/crates.io-index"
  5955. checksum = "7b4921be914e16899a80adefb821f8ddb7974e3f1250223575a44ed994882127"
  5956. dependencies = [
  5957. "lazy_static",
  5958. "loom",
  5959. ]
  5960. [[package]]
  5961. name = "shlex"
  5962. version = "0.1.1"
  5963. source = "registry+https://github.com/rust-lang/crates.io-index"
  5964. checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
  5965. [[package]]
  5966. name = "signal-hook-registry"
  5967. version = "1.2.2"
  5968. source = "registry+https://github.com/rust-lang/crates.io-index"
  5969. checksum = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
  5970. dependencies = [
  5971. "libc",
  5972. ]
  5973. [[package]]
  5974. name = "signature"
  5975. version = "1.2.2"
  5976. source = "registry+https://github.com/rust-lang/crates.io-index"
  5977. checksum = "29f060a7d147e33490ec10da418795238fd7545bba241504d6b31a409f2e6210"
  5978. [[package]]
  5979. name = "slab"
  5980. version = "0.4.2"
  5981. source = "registry+https://github.com/rust-lang/crates.io-index"
  5982. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  5983. [[package]]
  5984. name = "slog"
  5985. version = "2.7.0"
  5986. source = "registry+https://github.com/rust-lang/crates.io-index"
  5987. checksum = "8347046d4ebd943127157b94d63abb990fcf729dc4e9978927fdf4ac3c998d06"
  5988. dependencies = [
  5989. "erased-serde",
  5990. ]
  5991. [[package]]
  5992. name = "slog-json"
  5993. version = "2.3.0"
  5994. source = "registry+https://github.com/rust-lang/crates.io-index"
  5995. checksum = "ddc0d2aff1f8f325ef660d9a0eb6e6dcd20b30b3f581a5897f58bf42d061c37a"
  5996. dependencies = [
  5997. "chrono",
  5998. "erased-serde",
  5999. "serde",
  6000. "serde_json",
  6001. "slog",
  6002. ]
  6003. [[package]]
  6004. name = "slog-scope"
  6005. version = "4.3.0"
  6006. source = "registry+https://github.com/rust-lang/crates.io-index"
  6007. checksum = "7c44c89dd8b0ae4537d1ae318353eaf7840b4869c536e31c41e963d1ea523ee6"
  6008. dependencies = [
  6009. "arc-swap",
  6010. "lazy_static",
  6011. "slog",
  6012. ]
  6013. [[package]]
  6014. name = "slog_derive"
  6015. version = "0.2.0"
  6016. source = "registry+https://github.com/rust-lang/crates.io-index"
  6017. checksum = "a945ec7f7ce853e89ffa36be1e27dce9a43e82ff9093bf3461c30d5da74ed11b"
  6018. dependencies = [
  6019. "proc-macro2",
  6020. "quote",
  6021. "syn",
  6022. ]
  6023. [[package]]
  6024. name = "smallvec"
  6025. version = "0.6.13"
  6026. source = "registry+https://github.com/rust-lang/crates.io-index"
  6027. checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
  6028. dependencies = [
  6029. "maybe-uninit",
  6030. ]
  6031. [[package]]
  6032. name = "smallvec"
  6033. version = "1.5.1"
  6034. source = "registry+https://github.com/rust-lang/crates.io-index"
  6035. checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
  6036. [[package]]
  6037. name = "snow"
  6038. version = "0.7.2"
  6039. source = "registry+https://github.com/rust-lang/crates.io-index"
  6040. checksum = "795dd7aeeee24468e5a32661f6d27f7b5cbed802031b2d7640c7b10f8fb2dd50"
  6041. dependencies = [
  6042. "aes-gcm",
  6043. "blake2",
  6044. "chacha20poly1305",
  6045. "rand 0.7.3",
  6046. "rand_core 0.5.1",
  6047. "ring",
  6048. "rustc_version",
  6049. "sha2 0.9.2",
  6050. "subtle 2.3.0",
  6051. "x25519-dalek 1.1.0",
  6052. ]
  6053. [[package]]
  6054. name = "socket2"
  6055. version = "0.3.17"
  6056. source = "registry+https://github.com/rust-lang/crates.io-index"
  6057. checksum = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902"
  6058. dependencies = [
  6059. "cfg-if 1.0.0",
  6060. "libc",
  6061. "redox_syscall",
  6062. "winapi 0.3.9",
  6063. ]
  6064. [[package]]
  6065. name = "soketto"
  6066. version = "0.4.2"
  6067. source = "registry+https://github.com/rust-lang/crates.io-index"
  6068. checksum = "b5c71ed3d54db0a699f4948e1bb3e45b450fa31fe602621dee6680361d569c88"
  6069. dependencies = [
  6070. "base64 0.12.3",
  6071. "bytes 0.5.6",
  6072. "flate2",
  6073. "futures 0.3.8",
  6074. "httparse",
  6075. "log",
  6076. "rand 0.7.3",
  6077. "sha-1 0.9.2",
  6078. ]
  6079. [[package]]
  6080. name = "sp-allocator"
  6081. version = "2.0.0"
  6082. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6083. dependencies = [
  6084. "derive_more",
  6085. "log",
  6086. "sp-core",
  6087. "sp-std",
  6088. "sp-wasm-interface",
  6089. ]
  6090. [[package]]
  6091. name = "sp-api"
  6092. version = "2.0.0"
  6093. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6094. dependencies = [
  6095. "hash-db",
  6096. "parity-scale-codec",
  6097. "sp-api-proc-macro",
  6098. "sp-core",
  6099. "sp-runtime",
  6100. "sp-state-machine",
  6101. "sp-std",
  6102. "sp-version",
  6103. ]
  6104. [[package]]
  6105. name = "sp-api-proc-macro"
  6106. version = "2.0.0"
  6107. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6108. dependencies = [
  6109. "blake2-rfc",
  6110. "proc-macro-crate",
  6111. "proc-macro2",
  6112. "quote",
  6113. "syn",
  6114. ]
  6115. [[package]]
  6116. name = "sp-application-crypto"
  6117. version = "2.0.0"
  6118. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6119. dependencies = [
  6120. "parity-scale-codec",
  6121. "serde",
  6122. "sp-core",
  6123. "sp-io",
  6124. "sp-std",
  6125. ]
  6126. [[package]]
  6127. name = "sp-arithmetic"
  6128. version = "2.0.0"
  6129. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6130. dependencies = [
  6131. "integer-sqrt",
  6132. "num-traits",
  6133. "parity-scale-codec",
  6134. "serde",
  6135. "sp-debug-derive",
  6136. "sp-std",
  6137. ]
  6138. [[package]]
  6139. name = "sp-authority-discovery"
  6140. version = "2.0.0"
  6141. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6142. dependencies = [
  6143. "parity-scale-codec",
  6144. "sp-api",
  6145. "sp-application-crypto",
  6146. "sp-runtime",
  6147. "sp-std",
  6148. ]
  6149. [[package]]
  6150. name = "sp-authorship"
  6151. version = "2.0.0"
  6152. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6153. dependencies = [
  6154. "parity-scale-codec",
  6155. "sp-inherents",
  6156. "sp-runtime",
  6157. "sp-std",
  6158. ]
  6159. [[package]]
  6160. name = "sp-block-builder"
  6161. version = "2.0.0"
  6162. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6163. dependencies = [
  6164. "parity-scale-codec",
  6165. "sp-api",
  6166. "sp-inherents",
  6167. "sp-runtime",
  6168. "sp-std",
  6169. ]
  6170. [[package]]
  6171. name = "sp-blockchain"
  6172. version = "2.0.0"
  6173. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6174. dependencies = [
  6175. "derive_more",
  6176. "log",
  6177. "lru 0.4.3",
  6178. "parity-scale-codec",
  6179. "parking_lot 0.10.2",
  6180. "sp-block-builder",
  6181. "sp-consensus",
  6182. "sp-database",
  6183. "sp-runtime",
  6184. "sp-state-machine",
  6185. ]
  6186. [[package]]
  6187. name = "sp-chain-spec"
  6188. version = "2.0.0"
  6189. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6190. dependencies = [
  6191. "serde",
  6192. "serde_json",
  6193. ]
  6194. [[package]]
  6195. name = "sp-consensus"
  6196. version = "0.8.0"
  6197. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6198. dependencies = [
  6199. "derive_more",
  6200. "futures 0.3.8",
  6201. "futures-timer 3.0.2",
  6202. "libp2p",
  6203. "log",
  6204. "parity-scale-codec",
  6205. "parking_lot 0.10.2",
  6206. "serde",
  6207. "sp-api",
  6208. "sp-core",
  6209. "sp-inherents",
  6210. "sp-runtime",
  6211. "sp-state-machine",
  6212. "sp-std",
  6213. "sp-trie",
  6214. "sp-utils",
  6215. "sp-version",
  6216. "substrate-prometheus-endpoint",
  6217. "wasm-timer",
  6218. ]
  6219. [[package]]
  6220. name = "sp-consensus-aura"
  6221. version = "0.8.0"
  6222. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6223. dependencies = [
  6224. "parity-scale-codec",
  6225. "sp-api",
  6226. "sp-application-crypto",
  6227. "sp-inherents",
  6228. "sp-runtime",
  6229. "sp-std",
  6230. "sp-timestamp",
  6231. ]
  6232. [[package]]
  6233. name = "sp-consensus-babe"
  6234. version = "0.8.0"
  6235. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6236. dependencies = [
  6237. "merlin",
  6238. "parity-scale-codec",
  6239. "sp-api",
  6240. "sp-application-crypto",
  6241. "sp-consensus",
  6242. "sp-consensus-slots",
  6243. "sp-consensus-vrf",
  6244. "sp-core",
  6245. "sp-inherents",
  6246. "sp-runtime",
  6247. "sp-std",
  6248. "sp-timestamp",
  6249. ]
  6250. [[package]]
  6251. name = "sp-consensus-slots"
  6252. version = "0.8.0"
  6253. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6254. dependencies = [
  6255. "parity-scale-codec",
  6256. "sp-runtime",
  6257. ]
  6258. [[package]]
  6259. name = "sp-consensus-vrf"
  6260. version = "0.8.0"
  6261. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6262. dependencies = [
  6263. "parity-scale-codec",
  6264. "schnorrkel",
  6265. "sp-core",
  6266. "sp-runtime",
  6267. "sp-std",
  6268. ]
  6269. [[package]]
  6270. name = "sp-core"
  6271. version = "2.0.0"
  6272. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6273. dependencies = [
  6274. "base58",
  6275. "blake2-rfc",
  6276. "byteorder 1.3.4",
  6277. "derive_more",
  6278. "dyn-clonable",
  6279. "ed25519-dalek",
  6280. "futures 0.3.8",
  6281. "hash-db",
  6282. "hash256-std-hasher",
  6283. "hex",
  6284. "impl-serde",
  6285. "lazy_static",
  6286. "libsecp256k1",
  6287. "log",
  6288. "merlin",
  6289. "num-traits",
  6290. "parity-scale-codec",
  6291. "parity-util-mem",
  6292. "parking_lot 0.10.2",
  6293. "primitive-types",
  6294. "rand 0.7.3",
  6295. "regex",
  6296. "schnorrkel",
  6297. "secrecy",
  6298. "serde",
  6299. "sha2 0.8.2",
  6300. "sp-debug-derive",
  6301. "sp-externalities",
  6302. "sp-runtime-interface",
  6303. "sp-std",
  6304. "sp-storage",
  6305. "substrate-bip39",
  6306. "tiny-bip39",
  6307. "tiny-keccak",
  6308. "twox-hash",
  6309. "wasmi",
  6310. "zeroize",
  6311. ]
  6312. [[package]]
  6313. name = "sp-database"
  6314. version = "2.0.0"
  6315. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6316. dependencies = [
  6317. "kvdb",
  6318. "parking_lot 0.10.2",
  6319. ]
  6320. [[package]]
  6321. name = "sp-debug-derive"
  6322. version = "2.0.0"
  6323. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6324. dependencies = [
  6325. "proc-macro2",
  6326. "quote",
  6327. "syn",
  6328. ]
  6329. [[package]]
  6330. name = "sp-externalities"
  6331. version = "0.8.0"
  6332. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6333. dependencies = [
  6334. "environmental",
  6335. "parity-scale-codec",
  6336. "sp-std",
  6337. "sp-storage",
  6338. ]
  6339. [[package]]
  6340. name = "sp-finality-grandpa"
  6341. version = "2.0.0"
  6342. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6343. dependencies = [
  6344. "finality-grandpa",
  6345. "log",
  6346. "parity-scale-codec",
  6347. "serde",
  6348. "sp-api",
  6349. "sp-application-crypto",
  6350. "sp-core",
  6351. "sp-runtime",
  6352. "sp-std",
  6353. ]
  6354. [[package]]
  6355. name = "sp-finality-tracker"
  6356. version = "2.0.0"
  6357. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6358. dependencies = [
  6359. "parity-scale-codec",
  6360. "sp-inherents",
  6361. "sp-std",
  6362. ]
  6363. [[package]]
  6364. name = "sp-inherents"
  6365. version = "2.0.0"
  6366. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6367. dependencies = [
  6368. "derive_more",
  6369. "parity-scale-codec",
  6370. "parking_lot 0.10.2",
  6371. "sp-core",
  6372. "sp-std",
  6373. ]
  6374. [[package]]
  6375. name = "sp-io"
  6376. version = "2.0.0"
  6377. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6378. dependencies = [
  6379. "futures 0.3.8",
  6380. "hash-db",
  6381. "libsecp256k1",
  6382. "log",
  6383. "parity-scale-codec",
  6384. "parking_lot 0.10.2",
  6385. "sp-core",
  6386. "sp-externalities",
  6387. "sp-runtime-interface",
  6388. "sp-state-machine",
  6389. "sp-std",
  6390. "sp-tracing",
  6391. "sp-trie",
  6392. "sp-wasm-interface",
  6393. "tracing",
  6394. "tracing-core",
  6395. ]
  6396. [[package]]
  6397. name = "sp-keyring"
  6398. version = "2.0.0"
  6399. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6400. dependencies = [
  6401. "lazy_static",
  6402. "sp-core",
  6403. "sp-runtime",
  6404. "strum 0.16.0",
  6405. ]
  6406. [[package]]
  6407. name = "sp-npos-elections"
  6408. version = "2.0.0"
  6409. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6410. dependencies = [
  6411. "parity-scale-codec",
  6412. "serde",
  6413. "sp-arithmetic",
  6414. "sp-npos-elections-compact",
  6415. "sp-std",
  6416. ]
  6417. [[package]]
  6418. name = "sp-npos-elections-compact"
  6419. version = "2.0.0"
  6420. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6421. dependencies = [
  6422. "proc-macro-crate",
  6423. "proc-macro2",
  6424. "quote",
  6425. "syn",
  6426. ]
  6427. [[package]]
  6428. name = "sp-offchain"
  6429. version = "2.0.0"
  6430. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6431. dependencies = [
  6432. "sp-api",
  6433. "sp-core",
  6434. "sp-runtime",
  6435. ]
  6436. [[package]]
  6437. name = "sp-panic-handler"
  6438. version = "2.0.0"
  6439. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6440. dependencies = [
  6441. "backtrace",
  6442. "log",
  6443. ]
  6444. [[package]]
  6445. name = "sp-rpc"
  6446. version = "2.0.0"
  6447. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6448. dependencies = [
  6449. "serde",
  6450. "sp-core",
  6451. ]
  6452. [[package]]
  6453. name = "sp-runtime"
  6454. version = "2.0.0"
  6455. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6456. dependencies = [
  6457. "either",
  6458. "hash256-std-hasher",
  6459. "impl-trait-for-tuples",
  6460. "log",
  6461. "parity-scale-codec",
  6462. "parity-util-mem",
  6463. "paste",
  6464. "rand 0.7.3",
  6465. "serde",
  6466. "sp-application-crypto",
  6467. "sp-arithmetic",
  6468. "sp-core",
  6469. "sp-inherents",
  6470. "sp-io",
  6471. "sp-std",
  6472. ]
  6473. [[package]]
  6474. name = "sp-runtime-interface"
  6475. version = "2.0.0"
  6476. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6477. dependencies = [
  6478. "parity-scale-codec",
  6479. "primitive-types",
  6480. "sp-externalities",
  6481. "sp-runtime-interface-proc-macro",
  6482. "sp-std",
  6483. "sp-storage",
  6484. "sp-tracing",
  6485. "sp-wasm-interface",
  6486. "static_assertions",
  6487. ]
  6488. [[package]]
  6489. name = "sp-runtime-interface-proc-macro"
  6490. version = "2.0.0"
  6491. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6492. dependencies = [
  6493. "Inflector",
  6494. "proc-macro-crate",
  6495. "proc-macro2",
  6496. "quote",
  6497. "syn",
  6498. ]
  6499. [[package]]
  6500. name = "sp-serializer"
  6501. version = "2.0.0"
  6502. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6503. dependencies = [
  6504. "serde",
  6505. "serde_json",
  6506. ]
  6507. [[package]]
  6508. name = "sp-session"
  6509. version = "2.0.0"
  6510. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6511. dependencies = [
  6512. "parity-scale-codec",
  6513. "sp-api",
  6514. "sp-core",
  6515. "sp-runtime",
  6516. "sp-staking",
  6517. "sp-std",
  6518. ]
  6519. [[package]]
  6520. name = "sp-staking"
  6521. version = "2.0.0"
  6522. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6523. dependencies = [
  6524. "parity-scale-codec",
  6525. "sp-runtime",
  6526. "sp-std",
  6527. ]
  6528. [[package]]
  6529. name = "sp-state-machine"
  6530. version = "0.8.0"
  6531. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6532. dependencies = [
  6533. "hash-db",
  6534. "log",
  6535. "num-traits",
  6536. "parity-scale-codec",
  6537. "parking_lot 0.10.2",
  6538. "rand 0.7.3",
  6539. "smallvec 1.5.1",
  6540. "sp-core",
  6541. "sp-externalities",
  6542. "sp-panic-handler",
  6543. "sp-std",
  6544. "sp-trie",
  6545. "trie-db",
  6546. "trie-root",
  6547. ]
  6548. [[package]]
  6549. name = "sp-std"
  6550. version = "2.0.0"
  6551. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6552. [[package]]
  6553. name = "sp-storage"
  6554. version = "2.0.0"
  6555. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6556. dependencies = [
  6557. "impl-serde",
  6558. "parity-scale-codec",
  6559. "ref-cast",
  6560. "serde",
  6561. "sp-debug-derive",
  6562. "sp-std",
  6563. ]
  6564. [[package]]
  6565. name = "sp-timestamp"
  6566. version = "2.0.0"
  6567. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6568. dependencies = [
  6569. "impl-trait-for-tuples",
  6570. "parity-scale-codec",
  6571. "sp-api",
  6572. "sp-inherents",
  6573. "sp-runtime",
  6574. "sp-std",
  6575. "wasm-timer",
  6576. ]
  6577. [[package]]
  6578. name = "sp-tracing"
  6579. version = "2.0.0"
  6580. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6581. dependencies = [
  6582. "log",
  6583. "parity-scale-codec",
  6584. "sp-std",
  6585. "tracing",
  6586. "tracing-core",
  6587. "tracing-subscriber",
  6588. ]
  6589. [[package]]
  6590. name = "sp-transaction-pool"
  6591. version = "2.0.0"
  6592. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6593. dependencies = [
  6594. "derive_more",
  6595. "futures 0.3.8",
  6596. "log",
  6597. "parity-scale-codec",
  6598. "serde",
  6599. "sp-api",
  6600. "sp-blockchain",
  6601. "sp-runtime",
  6602. ]
  6603. [[package]]
  6604. name = "sp-trie"
  6605. version = "2.0.0"
  6606. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6607. dependencies = [
  6608. "hash-db",
  6609. "memory-db",
  6610. "parity-scale-codec",
  6611. "sp-core",
  6612. "sp-std",
  6613. "trie-db",
  6614. "trie-root",
  6615. ]
  6616. [[package]]
  6617. name = "sp-utils"
  6618. version = "2.0.0"
  6619. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6620. dependencies = [
  6621. "futures 0.3.8",
  6622. "futures-core",
  6623. "futures-timer 3.0.2",
  6624. "lazy_static",
  6625. "prometheus",
  6626. ]
  6627. [[package]]
  6628. name = "sp-version"
  6629. version = "2.0.0"
  6630. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6631. dependencies = [
  6632. "impl-serde",
  6633. "parity-scale-codec",
  6634. "serde",
  6635. "sp-runtime",
  6636. "sp-std",
  6637. ]
  6638. [[package]]
  6639. name = "sp-wasm-interface"
  6640. version = "2.0.0"
  6641. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6642. dependencies = [
  6643. "impl-trait-for-tuples",
  6644. "parity-scale-codec",
  6645. "sp-std",
  6646. "wasmi",
  6647. ]
  6648. [[package]]
  6649. name = "spin"
  6650. version = "0.5.2"
  6651. source = "registry+https://github.com/rust-lang/crates.io-index"
  6652. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  6653. [[package]]
  6654. name = "stable_deref_trait"
  6655. version = "1.2.0"
  6656. source = "registry+https://github.com/rust-lang/crates.io-index"
  6657. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  6658. [[package]]
  6659. name = "static_assertions"
  6660. version = "1.1.0"
  6661. source = "registry+https://github.com/rust-lang/crates.io-index"
  6662. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  6663. [[package]]
  6664. name = "statrs"
  6665. version = "0.10.0"
  6666. source = "registry+https://github.com/rust-lang/crates.io-index"
  6667. checksum = "10102ac8d55e35db2b3fafc26f81ba8647da2e15879ab686a67e6d19af2685e8"
  6668. dependencies = [
  6669. "rand 0.5.6",
  6670. ]
  6671. [[package]]
  6672. name = "stream-cipher"
  6673. version = "0.7.1"
  6674. source = "registry+https://github.com/rust-lang/crates.io-index"
  6675. checksum = "c80e15f898d8d8f25db24c253ea615cc14acf418ff307822995814e7d42cfa89"
  6676. dependencies = [
  6677. "block-cipher",
  6678. "generic-array 0.14.4",
  6679. ]
  6680. [[package]]
  6681. name = "string"
  6682. version = "0.2.1"
  6683. source = "registry+https://github.com/rust-lang/crates.io-index"
  6684. checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
  6685. dependencies = [
  6686. "bytes 0.4.12",
  6687. ]
  6688. [[package]]
  6689. name = "strsim"
  6690. version = "0.8.0"
  6691. source = "registry+https://github.com/rust-lang/crates.io-index"
  6692. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  6693. [[package]]
  6694. name = "structopt"
  6695. version = "0.3.21"
  6696. source = "registry+https://github.com/rust-lang/crates.io-index"
  6697. checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c"
  6698. dependencies = [
  6699. "clap",
  6700. "lazy_static",
  6701. "structopt-derive",
  6702. ]
  6703. [[package]]
  6704. name = "structopt-derive"
  6705. version = "0.4.14"
  6706. source = "registry+https://github.com/rust-lang/crates.io-index"
  6707. checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90"
  6708. dependencies = [
  6709. "heck",
  6710. "proc-macro-error",
  6711. "proc-macro2",
  6712. "quote",
  6713. "syn",
  6714. ]
  6715. [[package]]
  6716. name = "strum"
  6717. version = "0.16.0"
  6718. source = "registry+https://github.com/rust-lang/crates.io-index"
  6719. checksum = "6138f8f88a16d90134763314e3fc76fa3ed6a7db4725d6acf9a3ef95a3188d22"
  6720. dependencies = [
  6721. "strum_macros 0.16.0",
  6722. ]
  6723. [[package]]
  6724. name = "strum"
  6725. version = "0.19.5"
  6726. source = "registry+https://github.com/rust-lang/crates.io-index"
  6727. checksum = "b89a286a7e3b5720b9a477b23253bc50debac207c8d21505f8e70b36792f11b5"
  6728. [[package]]
  6729. name = "strum_macros"
  6730. version = "0.16.0"
  6731. source = "registry+https://github.com/rust-lang/crates.io-index"
  6732. checksum = "0054a7df764039a6cd8592b9de84be4bec368ff081d203a7d5371cbfa8e65c81"
  6733. dependencies = [
  6734. "heck",
  6735. "proc-macro2",
  6736. "quote",
  6737. "syn",
  6738. ]
  6739. [[package]]
  6740. name = "strum_macros"
  6741. version = "0.19.4"
  6742. source = "registry+https://github.com/rust-lang/crates.io-index"
  6743. checksum = "e61bb0be289045cb80bfce000512e32d09f8337e54c186725da381377ad1f8d5"
  6744. dependencies = [
  6745. "heck",
  6746. "proc-macro2",
  6747. "quote",
  6748. "syn",
  6749. ]
  6750. [[package]]
  6751. name = "substrate-bip39"
  6752. version = "0.4.2"
  6753. source = "registry+https://github.com/rust-lang/crates.io-index"
  6754. checksum = "bed6646a0159b9935b5d045611560eeef842b78d7adc3ba36f5ca325a13a0236"
  6755. dependencies = [
  6756. "hmac",
  6757. "pbkdf2",
  6758. "schnorrkel",
  6759. "sha2 0.8.2",
  6760. "zeroize",
  6761. ]
  6762. [[package]]
  6763. name = "substrate-browser-utils"
  6764. version = "0.8.0"
  6765. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6766. dependencies = [
  6767. "chrono",
  6768. "console_error_panic_hook",
  6769. "console_log",
  6770. "futures 0.1.30",
  6771. "futures 0.3.8",
  6772. "futures-timer 3.0.2",
  6773. "js-sys",
  6774. "kvdb-web",
  6775. "libp2p-wasm-ext",
  6776. "log",
  6777. "rand 0.6.5",
  6778. "rand 0.7.3",
  6779. "sc-chain-spec",
  6780. "sc-informant",
  6781. "sc-network",
  6782. "sc-service",
  6783. "sp-database",
  6784. "wasm-bindgen",
  6785. "wasm-bindgen-futures",
  6786. ]
  6787. [[package]]
  6788. name = "substrate-build-script-utils"
  6789. version = "2.0.0"
  6790. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6791. dependencies = [
  6792. "platforms",
  6793. ]
  6794. [[package]]
  6795. name = "substrate-frame-rpc-system"
  6796. version = "2.0.0"
  6797. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6798. dependencies = [
  6799. "frame-system-rpc-runtime-api",
  6800. "futures 0.3.8",
  6801. "jsonrpc-core",
  6802. "jsonrpc-core-client",
  6803. "jsonrpc-derive",
  6804. "log",
  6805. "parity-scale-codec",
  6806. "sc-client-api",
  6807. "sc-rpc-api",
  6808. "serde",
  6809. "sp-api",
  6810. "sp-block-builder",
  6811. "sp-blockchain",
  6812. "sp-core",
  6813. "sp-runtime",
  6814. "sp-transaction-pool",
  6815. ]
  6816. [[package]]
  6817. name = "substrate-prometheus-endpoint"
  6818. version = "0.8.0"
  6819. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6820. dependencies = [
  6821. "async-std",
  6822. "derive_more",
  6823. "futures-util",
  6824. "hyper 0.13.9",
  6825. "log",
  6826. "prometheus",
  6827. "tokio 0.2.23",
  6828. ]
  6829. [[package]]
  6830. name = "substrate-test-client"
  6831. version = "2.0.0"
  6832. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6833. dependencies = [
  6834. "futures 0.1.30",
  6835. "futures 0.3.8",
  6836. "hash-db",
  6837. "hex",
  6838. "parity-scale-codec",
  6839. "sc-client-api",
  6840. "sc-client-db",
  6841. "sc-consensus",
  6842. "sc-executor",
  6843. "sc-light",
  6844. "sc-service",
  6845. "serde",
  6846. "serde_json",
  6847. "sp-blockchain",
  6848. "sp-consensus",
  6849. "sp-core",
  6850. "sp-keyring",
  6851. "sp-runtime",
  6852. "sp-state-machine",
  6853. ]
  6854. [[package]]
  6855. name = "substrate-test-runtime"
  6856. version = "2.0.0"
  6857. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6858. dependencies = [
  6859. "cfg-if 0.1.10",
  6860. "frame-executive",
  6861. "frame-support",
  6862. "frame-system",
  6863. "frame-system-rpc-runtime-api",
  6864. "log",
  6865. "memory-db",
  6866. "pallet-babe",
  6867. "pallet-timestamp",
  6868. "parity-scale-codec",
  6869. "parity-util-mem",
  6870. "sc-service",
  6871. "serde",
  6872. "sp-api",
  6873. "sp-application-crypto",
  6874. "sp-block-builder",
  6875. "sp-consensus-aura",
  6876. "sp-consensus-babe",
  6877. "sp-core",
  6878. "sp-externalities",
  6879. "sp-finality-grandpa",
  6880. "sp-inherents",
  6881. "sp-io",
  6882. "sp-keyring",
  6883. "sp-offchain",
  6884. "sp-runtime",
  6885. "sp-runtime-interface",
  6886. "sp-session",
  6887. "sp-state-machine",
  6888. "sp-std",
  6889. "sp-transaction-pool",
  6890. "sp-trie",
  6891. "sp-version",
  6892. "substrate-wasm-builder-runner",
  6893. "trie-db",
  6894. ]
  6895. [[package]]
  6896. name = "substrate-test-runtime-client"
  6897. version = "2.0.0"
  6898. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6899. dependencies = [
  6900. "futures 0.3.8",
  6901. "parity-scale-codec",
  6902. "sc-block-builder",
  6903. "sc-client-api",
  6904. "sc-consensus",
  6905. "sc-light",
  6906. "sc-service",
  6907. "sp-api",
  6908. "sp-blockchain",
  6909. "sp-consensus",
  6910. "sp-core",
  6911. "sp-runtime",
  6912. "substrate-test-client",
  6913. "substrate-test-runtime",
  6914. ]
  6915. [[package]]
  6916. name = "substrate-wasm-builder-runner"
  6917. version = "1.0.6"
  6918. source = "git+https://github.com/paritytech/substrate.git?rev=a200cdb93c6af5763b9c7bf313fa708764ac88ca#a200cdb93c6af5763b9c7bf313fa708764ac88ca"
  6919. [[package]]
  6920. name = "subtle"
  6921. version = "1.0.0"
  6922. source = "registry+https://github.com/rust-lang/crates.io-index"
  6923. checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
  6924. [[package]]
  6925. name = "subtle"
  6926. version = "2.3.0"
  6927. source = "registry+https://github.com/rust-lang/crates.io-index"
  6928. checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
  6929. [[package]]
  6930. name = "syn"
  6931. version = "1.0.53"
  6932. source = "registry+https://github.com/rust-lang/crates.io-index"
  6933. checksum = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68"
  6934. dependencies = [
  6935. "proc-macro2",
  6936. "quote",
  6937. "unicode-xid",
  6938. ]
  6939. [[package]]
  6940. name = "synstructure"
  6941. version = "0.12.4"
  6942. source = "registry+https://github.com/rust-lang/crates.io-index"
  6943. checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
  6944. dependencies = [
  6945. "proc-macro2",
  6946. "quote",
  6947. "syn",
  6948. "unicode-xid",
  6949. ]
  6950. [[package]]
  6951. name = "take_mut"
  6952. version = "0.2.2"
  6953. source = "registry+https://github.com/rust-lang/crates.io-index"
  6954. checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
  6955. [[package]]
  6956. name = "tempfile"
  6957. version = "3.1.0"
  6958. source = "registry+https://github.com/rust-lang/crates.io-index"
  6959. checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  6960. dependencies = [
  6961. "cfg-if 0.1.10",
  6962. "libc",
  6963. "rand 0.7.3",
  6964. "redox_syscall",
  6965. "remove_dir_all",
  6966. "winapi 0.3.9",
  6967. ]
  6968. [[package]]
  6969. name = "termcolor"
  6970. version = "1.1.2"
  6971. source = "registry+https://github.com/rust-lang/crates.io-index"
  6972. checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
  6973. dependencies = [
  6974. "winapi-util",
  6975. ]
  6976. [[package]]
  6977. name = "textwrap"
  6978. version = "0.11.0"
  6979. source = "registry+https://github.com/rust-lang/crates.io-index"
  6980. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  6981. dependencies = [
  6982. "unicode-width",
  6983. ]
  6984. [[package]]
  6985. name = "thiserror"
  6986. version = "1.0.22"
  6987. source = "registry+https://github.com/rust-lang/crates.io-index"
  6988. checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
  6989. dependencies = [
  6990. "thiserror-impl",
  6991. ]
  6992. [[package]]
  6993. name = "thiserror-impl"
  6994. version = "1.0.22"
  6995. source = "registry+https://github.com/rust-lang/crates.io-index"
  6996. checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
  6997. dependencies = [
  6998. "proc-macro2",
  6999. "quote",
  7000. "syn",
  7001. ]
  7002. [[package]]
  7003. name = "thread_local"
  7004. version = "1.0.1"
  7005. source = "registry+https://github.com/rust-lang/crates.io-index"
  7006. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  7007. dependencies = [
  7008. "lazy_static",
  7009. ]
  7010. [[package]]
  7011. name = "threadpool"
  7012. version = "1.8.1"
  7013. source = "registry+https://github.com/rust-lang/crates.io-index"
  7014. checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
  7015. dependencies = [
  7016. "num_cpus",
  7017. ]
  7018. [[package]]
  7019. name = "time"
  7020. version = "0.1.44"
  7021. source = "registry+https://github.com/rust-lang/crates.io-index"
  7022. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  7023. dependencies = [
  7024. "libc",
  7025. "wasi 0.10.0+wasi-snapshot-preview1",
  7026. "winapi 0.3.9",
  7027. ]
  7028. [[package]]
  7029. name = "tiny-bip39"
  7030. version = "0.7.3"
  7031. source = "registry+https://github.com/rust-lang/crates.io-index"
  7032. checksum = "b0165e045cc2ae1660270ca65e1676dbaab60feb0f91b10f7d0665e9b47e31f2"
  7033. dependencies = [
  7034. "failure",
  7035. "hmac",
  7036. "once_cell 1.5.2",
  7037. "pbkdf2",
  7038. "rand 0.7.3",
  7039. "rustc-hash",
  7040. "sha2 0.8.2",
  7041. "unicode-normalization",
  7042. ]
  7043. [[package]]
  7044. name = "tiny-keccak"
  7045. version = "2.0.2"
  7046. source = "registry+https://github.com/rust-lang/crates.io-index"
  7047. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  7048. dependencies = [
  7049. "crunchy",
  7050. ]
  7051. [[package]]
  7052. name = "tinyvec"
  7053. version = "1.1.0"
  7054. source = "registry+https://github.com/rust-lang/crates.io-index"
  7055. checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
  7056. dependencies = [
  7057. "tinyvec_macros",
  7058. ]
  7059. [[package]]
  7060. name = "tinyvec_macros"
  7061. version = "0.1.0"
  7062. source = "registry+https://github.com/rust-lang/crates.io-index"
  7063. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  7064. [[package]]
  7065. name = "tokio"
  7066. version = "0.1.22"
  7067. source = "registry+https://github.com/rust-lang/crates.io-index"
  7068. checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
  7069. dependencies = [
  7070. "bytes 0.4.12",
  7071. "futures 0.1.30",
  7072. "mio",
  7073. "num_cpus",
  7074. "tokio-codec",
  7075. "tokio-current-thread",
  7076. "tokio-executor 0.1.10",
  7077. "tokio-fs",
  7078. "tokio-io",
  7079. "tokio-reactor",
  7080. "tokio-sync 0.1.8",
  7081. "tokio-tcp",
  7082. "tokio-threadpool",
  7083. "tokio-timer",
  7084. "tokio-udp",
  7085. "tokio-uds",
  7086. ]
  7087. [[package]]
  7088. name = "tokio"
  7089. version = "0.2.23"
  7090. source = "registry+https://github.com/rust-lang/crates.io-index"
  7091. checksum = "a6d7ad61edd59bfcc7e80dababf0f4aed2e6d5e0ba1659356ae889752dfc12ff"
  7092. dependencies = [
  7093. "bytes 0.5.6",
  7094. "fnv",
  7095. "futures-core",
  7096. "iovec",
  7097. "lazy_static",
  7098. "libc",
  7099. "memchr",
  7100. "mio",
  7101. "mio-uds",
  7102. "num_cpus",
  7103. "pin-project-lite 0.1.11",
  7104. "signal-hook-registry",
  7105. "slab",
  7106. "winapi 0.3.9",
  7107. ]
  7108. [[package]]
  7109. name = "tokio-buf"
  7110. version = "0.1.1"
  7111. source = "registry+https://github.com/rust-lang/crates.io-index"
  7112. checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
  7113. dependencies = [
  7114. "bytes 0.4.12",
  7115. "either",
  7116. "futures 0.1.30",
  7117. ]
  7118. [[package]]
  7119. name = "tokio-codec"
  7120. version = "0.1.2"
  7121. source = "registry+https://github.com/rust-lang/crates.io-index"
  7122. checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b"
  7123. dependencies = [
  7124. "bytes 0.4.12",
  7125. "futures 0.1.30",
  7126. "tokio-io",
  7127. ]
  7128. [[package]]
  7129. name = "tokio-current-thread"
  7130. version = "0.1.7"
  7131. source = "registry+https://github.com/rust-lang/crates.io-index"
  7132. checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
  7133. dependencies = [
  7134. "futures 0.1.30",
  7135. "tokio-executor 0.1.10",
  7136. ]
  7137. [[package]]
  7138. name = "tokio-executor"
  7139. version = "0.1.10"
  7140. source = "registry+https://github.com/rust-lang/crates.io-index"
  7141. checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
  7142. dependencies = [
  7143. "crossbeam-utils 0.7.2",
  7144. "futures 0.1.30",
  7145. ]
  7146. [[package]]
  7147. name = "tokio-executor"
  7148. version = "0.2.0-alpha.6"
  7149. source = "registry+https://github.com/rust-lang/crates.io-index"
  7150. checksum = "9ee9ceecf69145923834ea73f32ba40c790fd877b74a7817dd0b089f1eb9c7c8"
  7151. dependencies = [
  7152. "futures-util-preview",
  7153. "lazy_static",
  7154. "tokio-sync 0.2.0-alpha.6",
  7155. ]
  7156. [[package]]
  7157. name = "tokio-fs"
  7158. version = "0.1.7"
  7159. source = "registry+https://github.com/rust-lang/crates.io-index"
  7160. checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4"
  7161. dependencies = [
  7162. "futures 0.1.30",
  7163. "tokio-io",
  7164. "tokio-threadpool",
  7165. ]
  7166. [[package]]
  7167. name = "tokio-io"
  7168. version = "0.1.13"
  7169. source = "registry+https://github.com/rust-lang/crates.io-index"
  7170. checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
  7171. dependencies = [
  7172. "bytes 0.4.12",
  7173. "futures 0.1.30",
  7174. "log",
  7175. ]
  7176. [[package]]
  7177. name = "tokio-named-pipes"
  7178. version = "0.1.0"
  7179. source = "registry+https://github.com/rust-lang/crates.io-index"
  7180. checksum = "9d282d483052288b2308ba5ee795f5673b159c9bdf63c385a05609da782a5eae"
  7181. dependencies = [
  7182. "bytes 0.4.12",
  7183. "futures 0.1.30",
  7184. "mio",
  7185. "mio-named-pipes",
  7186. "tokio 0.1.22",
  7187. ]
  7188. [[package]]
  7189. name = "tokio-reactor"
  7190. version = "0.1.12"
  7191. source = "registry+https://github.com/rust-lang/crates.io-index"
  7192. checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
  7193. dependencies = [
  7194. "crossbeam-utils 0.7.2",
  7195. "futures 0.1.30",
  7196. "lazy_static",
  7197. "log",
  7198. "mio",
  7199. "num_cpus",
  7200. "parking_lot 0.9.0",
  7201. "slab",
  7202. "tokio-executor 0.1.10",
  7203. "tokio-io",
  7204. "tokio-sync 0.1.8",
  7205. ]
  7206. [[package]]
  7207. name = "tokio-rustls"
  7208. version = "0.14.1"
  7209. source = "registry+https://github.com/rust-lang/crates.io-index"
  7210. checksum = "e12831b255bcfa39dc0436b01e19fea231a37db570686c06ee72c423479f889a"
  7211. dependencies = [
  7212. "futures-core",
  7213. "rustls",
  7214. "tokio 0.2.23",
  7215. "webpki",
  7216. ]
  7217. [[package]]
  7218. name = "tokio-service"
  7219. version = "0.1.0"
  7220. source = "registry+https://github.com/rust-lang/crates.io-index"
  7221. checksum = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162"
  7222. dependencies = [
  7223. "futures 0.1.30",
  7224. ]
  7225. [[package]]
  7226. name = "tokio-sync"
  7227. version = "0.1.8"
  7228. source = "registry+https://github.com/rust-lang/crates.io-index"
  7229. checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
  7230. dependencies = [
  7231. "fnv",
  7232. "futures 0.1.30",
  7233. ]
  7234. [[package]]
  7235. name = "tokio-sync"
  7236. version = "0.2.0-alpha.6"
  7237. source = "registry+https://github.com/rust-lang/crates.io-index"
  7238. checksum = "4f1aaeb685540f7407ea0e27f1c9757d258c7c6bf4e3eb19da6fc59b747239d2"
  7239. dependencies = [
  7240. "fnv",
  7241. "futures-core-preview",
  7242. "futures-util-preview",
  7243. ]
  7244. [[package]]
  7245. name = "tokio-tcp"
  7246. version = "0.1.4"
  7247. source = "registry+https://github.com/rust-lang/crates.io-index"
  7248. checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
  7249. dependencies = [
  7250. "bytes 0.4.12",
  7251. "futures 0.1.30",
  7252. "iovec",
  7253. "mio",
  7254. "tokio-io",
  7255. "tokio-reactor",
  7256. ]
  7257. [[package]]
  7258. name = "tokio-threadpool"
  7259. version = "0.1.18"
  7260. source = "registry+https://github.com/rust-lang/crates.io-index"
  7261. checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
  7262. dependencies = [
  7263. "crossbeam-deque 0.7.3",
  7264. "crossbeam-queue",
  7265. "crossbeam-utils 0.7.2",
  7266. "futures 0.1.30",
  7267. "lazy_static",
  7268. "log",
  7269. "num_cpus",
  7270. "slab",
  7271. "tokio-executor 0.1.10",
  7272. ]
  7273. [[package]]
  7274. name = "tokio-timer"
  7275. version = "0.2.13"
  7276. source = "registry+https://github.com/rust-lang/crates.io-index"
  7277. checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
  7278. dependencies = [
  7279. "crossbeam-utils 0.7.2",
  7280. "futures 0.1.30",
  7281. "slab",
  7282. "tokio-executor 0.1.10",
  7283. ]
  7284. [[package]]
  7285. name = "tokio-udp"
  7286. version = "0.1.6"
  7287. source = "registry+https://github.com/rust-lang/crates.io-index"
  7288. checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82"
  7289. dependencies = [
  7290. "bytes 0.4.12",
  7291. "futures 0.1.30",
  7292. "log",
  7293. "mio",
  7294. "tokio-codec",
  7295. "tokio-io",
  7296. "tokio-reactor",
  7297. ]
  7298. [[package]]
  7299. name = "tokio-uds"
  7300. version = "0.2.7"
  7301. source = "registry+https://github.com/rust-lang/crates.io-index"
  7302. checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0"
  7303. dependencies = [
  7304. "bytes 0.4.12",
  7305. "futures 0.1.30",
  7306. "iovec",
  7307. "libc",
  7308. "log",
  7309. "mio",
  7310. "mio-uds",
  7311. "tokio-codec",
  7312. "tokio-io",
  7313. "tokio-reactor",
  7314. ]
  7315. [[package]]
  7316. name = "tokio-util"
  7317. version = "0.3.1"
  7318. source = "registry+https://github.com/rust-lang/crates.io-index"
  7319. checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  7320. dependencies = [
  7321. "bytes 0.5.6",
  7322. "futures-core",
  7323. "futures-sink",
  7324. "log",
  7325. "pin-project-lite 0.1.11",
  7326. "tokio 0.2.23",
  7327. ]
  7328. [[package]]
  7329. name = "toml"
  7330. version = "0.5.7"
  7331. source = "registry+https://github.com/rust-lang/crates.io-index"
  7332. checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
  7333. dependencies = [
  7334. "serde",
  7335. ]
  7336. [[package]]
  7337. name = "tower-service"
  7338. version = "0.3.0"
  7339. source = "registry+https://github.com/rust-lang/crates.io-index"
  7340. checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
  7341. [[package]]
  7342. name = "tracing"
  7343. version = "0.1.22"
  7344. source = "registry+https://github.com/rust-lang/crates.io-index"
  7345. checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
  7346. dependencies = [
  7347. "cfg-if 1.0.0",
  7348. "log",
  7349. "pin-project-lite 0.2.0",
  7350. "tracing-attributes",
  7351. "tracing-core",
  7352. ]
  7353. [[package]]
  7354. name = "tracing-attributes"
  7355. version = "0.1.11"
  7356. source = "registry+https://github.com/rust-lang/crates.io-index"
  7357. checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
  7358. dependencies = [
  7359. "proc-macro2",
  7360. "quote",
  7361. "syn",
  7362. ]
  7363. [[package]]
  7364. name = "tracing-core"
  7365. version = "0.1.17"
  7366. source = "registry+https://github.com/rust-lang/crates.io-index"
  7367. checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
  7368. dependencies = [
  7369. "lazy_static",
  7370. ]
  7371. [[package]]
  7372. name = "tracing-futures"
  7373. version = "0.2.4"
  7374. source = "registry+https://github.com/rust-lang/crates.io-index"
  7375. checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
  7376. dependencies = [
  7377. "pin-project 0.4.27",
  7378. "tracing",
  7379. ]
  7380. [[package]]
  7381. name = "tracing-log"
  7382. version = "0.1.1"
  7383. source = "registry+https://github.com/rust-lang/crates.io-index"
  7384. checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
  7385. dependencies = [
  7386. "lazy_static",
  7387. "log",
  7388. "tracing-core",
  7389. ]
  7390. [[package]]
  7391. name = "tracing-serde"
  7392. version = "0.1.2"
  7393. source = "registry+https://github.com/rust-lang/crates.io-index"
  7394. checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"
  7395. dependencies = [
  7396. "serde",
  7397. "tracing-core",
  7398. ]
  7399. [[package]]
  7400. name = "tracing-subscriber"
  7401. version = "0.2.15"
  7402. source = "registry+https://github.com/rust-lang/crates.io-index"
  7403. checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
  7404. dependencies = [
  7405. "ansi_term 0.12.1",
  7406. "chrono",
  7407. "lazy_static",
  7408. "matchers",
  7409. "regex",
  7410. "serde",
  7411. "serde_json",
  7412. "sharded-slab",
  7413. "smallvec 1.5.1",
  7414. "thread_local",
  7415. "tracing",
  7416. "tracing-core",
  7417. "tracing-log",
  7418. "tracing-serde",
  7419. ]
  7420. [[package]]
  7421. name = "trie-db"
  7422. version = "0.22.1"
  7423. source = "registry+https://github.com/rust-lang/crates.io-index"
  7424. checksum = "9e55f7ace33d6237e14137e386f4e1672e2a5c6bbc97fef9f438581a143971f0"
  7425. dependencies = [
  7426. "hash-db",
  7427. "hashbrown 0.8.2",
  7428. "log",
  7429. "rustc-hex",
  7430. "smallvec 1.5.1",
  7431. ]
  7432. [[package]]
  7433. name = "trie-root"
  7434. version = "0.16.0"
  7435. source = "registry+https://github.com/rust-lang/crates.io-index"
  7436. checksum = "652931506d2c1244d7217a70b99f56718a7b4161b37f04e7cd868072a99f68cd"
  7437. dependencies = [
  7438. "hash-db",
  7439. ]
  7440. [[package]]
  7441. name = "try-lock"
  7442. version = "0.2.3"
  7443. source = "registry+https://github.com/rust-lang/crates.io-index"
  7444. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  7445. [[package]]
  7446. name = "twox-hash"
  7447. version = "1.6.0"
  7448. source = "registry+https://github.com/rust-lang/crates.io-index"
  7449. checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
  7450. dependencies = [
  7451. "cfg-if 0.1.10",
  7452. "rand 0.7.3",
  7453. "static_assertions",
  7454. ]
  7455. [[package]]
  7456. name = "typenum"
  7457. version = "1.12.0"
  7458. source = "registry+https://github.com/rust-lang/crates.io-index"
  7459. checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
  7460. [[package]]
  7461. name = "uint"
  7462. version = "0.8.5"
  7463. source = "registry+https://github.com/rust-lang/crates.io-index"
  7464. checksum = "9db035e67dfaf7edd9aebfe8676afcd63eed53c8a4044fed514c8cccf1835177"
  7465. dependencies = [
  7466. "byteorder 1.3.4",
  7467. "crunchy",
  7468. "rustc-hex",
  7469. "static_assertions",
  7470. ]
  7471. [[package]]
  7472. name = "unicase"
  7473. version = "2.6.0"
  7474. source = "registry+https://github.com/rust-lang/crates.io-index"
  7475. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  7476. dependencies = [
  7477. "version_check",
  7478. ]
  7479. [[package]]
  7480. name = "unicode-bidi"
  7481. version = "0.3.4"
  7482. source = "registry+https://github.com/rust-lang/crates.io-index"
  7483. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  7484. dependencies = [
  7485. "matches",
  7486. ]
  7487. [[package]]
  7488. name = "unicode-normalization"
  7489. version = "0.1.16"
  7490. source = "registry+https://github.com/rust-lang/crates.io-index"
  7491. checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
  7492. dependencies = [
  7493. "tinyvec",
  7494. ]
  7495. [[package]]
  7496. name = "unicode-segmentation"
  7497. version = "1.7.1"
  7498. source = "registry+https://github.com/rust-lang/crates.io-index"
  7499. checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
  7500. [[package]]
  7501. name = "unicode-width"
  7502. version = "0.1.8"
  7503. source = "registry+https://github.com/rust-lang/crates.io-index"
  7504. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  7505. [[package]]
  7506. name = "unicode-xid"
  7507. version = "0.2.1"
  7508. source = "registry+https://github.com/rust-lang/crates.io-index"
  7509. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  7510. [[package]]
  7511. name = "universal-hash"
  7512. version = "0.4.0"
  7513. source = "registry+https://github.com/rust-lang/crates.io-index"
  7514. checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
  7515. dependencies = [
  7516. "generic-array 0.14.4",
  7517. "subtle 2.3.0",
  7518. ]
  7519. [[package]]
  7520. name = "unsigned-varint"
  7521. version = "0.4.0"
  7522. source = "registry+https://github.com/rust-lang/crates.io-index"
  7523. checksum = "669d776983b692a906c881fcd0cfb34271a48e197e4d6cb8df32b05bfc3d3fa5"
  7524. dependencies = [
  7525. "bytes 0.5.6",
  7526. "futures-io",
  7527. "futures-util",
  7528. "futures_codec",
  7529. ]
  7530. [[package]]
  7531. name = "unsigned-varint"
  7532. version = "0.5.1"
  7533. source = "registry+https://github.com/rust-lang/crates.io-index"
  7534. checksum = "f7fdeedbf205afadfe39ae559b75c3240f24e257d0ca27e85f85cb82aa19ac35"
  7535. dependencies = [
  7536. "futures-io",
  7537. "futures-util",
  7538. ]
  7539. [[package]]
  7540. name = "untrusted"
  7541. version = "0.7.1"
  7542. source = "registry+https://github.com/rust-lang/crates.io-index"
  7543. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  7544. [[package]]
  7545. name = "url"
  7546. version = "1.7.2"
  7547. source = "registry+https://github.com/rust-lang/crates.io-index"
  7548. checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
  7549. dependencies = [
  7550. "idna 0.1.5",
  7551. "matches",
  7552. "percent-encoding 1.0.1",
  7553. ]
  7554. [[package]]
  7555. name = "url"
  7556. version = "2.2.0"
  7557. source = "registry+https://github.com/rust-lang/crates.io-index"
  7558. checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
  7559. dependencies = [
  7560. "form_urlencoded",
  7561. "idna 0.2.0",
  7562. "matches",
  7563. "percent-encoding 2.1.0",
  7564. ]
  7565. [[package]]
  7566. name = "vcpkg"
  7567. version = "0.2.10"
  7568. source = "registry+https://github.com/rust-lang/crates.io-index"
  7569. checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
  7570. [[package]]
  7571. name = "vec-arena"
  7572. version = "1.0.0"
  7573. source = "registry+https://github.com/rust-lang/crates.io-index"
  7574. checksum = "eafc1b9b2dfc6f5529177b62cf806484db55b32dc7c9658a118e11bbeb33061d"
  7575. [[package]]
  7576. name = "vec_map"
  7577. version = "0.8.2"
  7578. source = "registry+https://github.com/rust-lang/crates.io-index"
  7579. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  7580. [[package]]
  7581. name = "version_check"
  7582. version = "0.9.2"
  7583. source = "registry+https://github.com/rust-lang/crates.io-index"
  7584. checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
  7585. [[package]]
  7586. name = "void"
  7587. version = "1.0.2"
  7588. source = "registry+https://github.com/rust-lang/crates.io-index"
  7589. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  7590. [[package]]
  7591. name = "waker-fn"
  7592. version = "1.1.0"
  7593. source = "registry+https://github.com/rust-lang/crates.io-index"
  7594. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  7595. [[package]]
  7596. name = "want"
  7597. version = "0.2.0"
  7598. source = "registry+https://github.com/rust-lang/crates.io-index"
  7599. checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
  7600. dependencies = [
  7601. "futures 0.1.30",
  7602. "log",
  7603. "try-lock",
  7604. ]
  7605. [[package]]
  7606. name = "want"
  7607. version = "0.3.0"
  7608. source = "registry+https://github.com/rust-lang/crates.io-index"
  7609. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  7610. dependencies = [
  7611. "log",
  7612. "try-lock",
  7613. ]
  7614. [[package]]
  7615. name = "wasi"
  7616. version = "0.9.0+wasi-snapshot-preview1"
  7617. source = "registry+https://github.com/rust-lang/crates.io-index"
  7618. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  7619. [[package]]
  7620. name = "wasi"
  7621. version = "0.10.0+wasi-snapshot-preview1"
  7622. source = "registry+https://github.com/rust-lang/crates.io-index"
  7623. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  7624. [[package]]
  7625. name = "wasm-bindgen"
  7626. version = "0.2.69"
  7627. source = "registry+https://github.com/rust-lang/crates.io-index"
  7628. checksum = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e"
  7629. dependencies = [
  7630. "cfg-if 1.0.0",
  7631. "wasm-bindgen-macro",
  7632. ]
  7633. [[package]]
  7634. name = "wasm-bindgen-backend"
  7635. version = "0.2.69"
  7636. source = "registry+https://github.com/rust-lang/crates.io-index"
  7637. checksum = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62"
  7638. dependencies = [
  7639. "bumpalo",
  7640. "lazy_static",
  7641. "log",
  7642. "proc-macro2",
  7643. "quote",
  7644. "syn",
  7645. "wasm-bindgen-shared",
  7646. ]
  7647. [[package]]
  7648. name = "wasm-bindgen-futures"
  7649. version = "0.4.19"
  7650. source = "registry+https://github.com/rust-lang/crates.io-index"
  7651. checksum = "1fe9756085a84584ee9457a002b7cdfe0bfff169f45d2591d8be1345a6780e35"
  7652. dependencies = [
  7653. "cfg-if 1.0.0",
  7654. "js-sys",
  7655. "wasm-bindgen",
  7656. "web-sys",
  7657. ]
  7658. [[package]]
  7659. name = "wasm-bindgen-macro"
  7660. version = "0.2.69"
  7661. source = "registry+https://github.com/rust-lang/crates.io-index"
  7662. checksum = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084"
  7663. dependencies = [
  7664. "quote",
  7665. "wasm-bindgen-macro-support",
  7666. ]
  7667. [[package]]
  7668. name = "wasm-bindgen-macro-support"
  7669. version = "0.2.69"
  7670. source = "registry+https://github.com/rust-lang/crates.io-index"
  7671. checksum = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549"
  7672. dependencies = [
  7673. "proc-macro2",
  7674. "quote",
  7675. "syn",
  7676. "wasm-bindgen-backend",
  7677. "wasm-bindgen-shared",
  7678. ]
  7679. [[package]]
  7680. name = "wasm-bindgen-shared"
  7681. version = "0.2.69"
  7682. source = "registry+https://github.com/rust-lang/crates.io-index"
  7683. checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158"
  7684. [[package]]
  7685. name = "wasm-timer"
  7686. version = "0.2.5"
  7687. source = "registry+https://github.com/rust-lang/crates.io-index"
  7688. checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
  7689. dependencies = [
  7690. "futures 0.3.8",
  7691. "js-sys",
  7692. "parking_lot 0.11.1",
  7693. "pin-utils",
  7694. "wasm-bindgen",
  7695. "wasm-bindgen-futures",
  7696. "web-sys",
  7697. ]
  7698. [[package]]
  7699. name = "wasmi"
  7700. version = "0.6.2"
  7701. source = "registry+https://github.com/rust-lang/crates.io-index"
  7702. checksum = "bf617d864d25af3587aa745529f7aaa541066c876d57e050c0d0c85c61c92aff"
  7703. dependencies = [
  7704. "libc",
  7705. "memory_units",
  7706. "num-rational",
  7707. "num-traits",
  7708. "parity-wasm",
  7709. "wasmi-validation",
  7710. ]
  7711. [[package]]
  7712. name = "wasmi-validation"
  7713. version = "0.3.0"
  7714. source = "registry+https://github.com/rust-lang/crates.io-index"
  7715. checksum = "ea78c597064ba73596099281e2f4cfc019075122a65cdda3205af94f0b264d93"
  7716. dependencies = [
  7717. "parity-wasm",
  7718. ]
  7719. [[package]]
  7720. name = "web-sys"
  7721. version = "0.3.46"
  7722. source = "registry+https://github.com/rust-lang/crates.io-index"
  7723. checksum = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3"
  7724. dependencies = [
  7725. "js-sys",
  7726. "wasm-bindgen",
  7727. ]
  7728. [[package]]
  7729. name = "webpki"
  7730. version = "0.21.4"
  7731. source = "registry+https://github.com/rust-lang/crates.io-index"
  7732. checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
  7733. dependencies = [
  7734. "ring",
  7735. "untrusted",
  7736. ]
  7737. [[package]]
  7738. name = "webpki-roots"
  7739. version = "0.18.0"
  7740. source = "registry+https://github.com/rust-lang/crates.io-index"
  7741. checksum = "91cd5736df7f12a964a5067a12c62fa38e1bd8080aff1f80bc29be7c80d19ab4"
  7742. dependencies = [
  7743. "webpki",
  7744. ]
  7745. [[package]]
  7746. name = "webpki-roots"
  7747. version = "0.19.0"
  7748. source = "registry+https://github.com/rust-lang/crates.io-index"
  7749. checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
  7750. dependencies = [
  7751. "webpki",
  7752. ]
  7753. [[package]]
  7754. name = "wepoll-sys"
  7755. version = "3.0.1"
  7756. source = "registry+https://github.com/rust-lang/crates.io-index"
  7757. checksum = "0fcb14dea929042224824779fbc82d9fab8d2e6d3cbc0ac404de8edf489e77ff"
  7758. dependencies = [
  7759. "cc",
  7760. ]
  7761. [[package]]
  7762. name = "which"
  7763. version = "3.1.1"
  7764. source = "registry+https://github.com/rust-lang/crates.io-index"
  7765. checksum = "d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724"
  7766. dependencies = [
  7767. "libc",
  7768. ]
  7769. [[package]]
  7770. name = "winapi"
  7771. version = "0.2.8"
  7772. source = "registry+https://github.com/rust-lang/crates.io-index"
  7773. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  7774. [[package]]
  7775. name = "winapi"
  7776. version = "0.3.9"
  7777. source = "registry+https://github.com/rust-lang/crates.io-index"
  7778. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7779. dependencies = [
  7780. "winapi-i686-pc-windows-gnu",
  7781. "winapi-x86_64-pc-windows-gnu",
  7782. ]
  7783. [[package]]
  7784. name = "winapi-build"
  7785. version = "0.1.1"
  7786. source = "registry+https://github.com/rust-lang/crates.io-index"
  7787. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  7788. [[package]]
  7789. name = "winapi-i686-pc-windows-gnu"
  7790. version = "0.4.0"
  7791. source = "registry+https://github.com/rust-lang/crates.io-index"
  7792. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7793. [[package]]
  7794. name = "winapi-util"
  7795. version = "0.1.5"
  7796. source = "registry+https://github.com/rust-lang/crates.io-index"
  7797. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  7798. dependencies = [
  7799. "winapi 0.3.9",
  7800. ]
  7801. [[package]]
  7802. name = "winapi-x86_64-pc-windows-gnu"
  7803. version = "0.4.0"
  7804. source = "registry+https://github.com/rust-lang/crates.io-index"
  7805. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  7806. [[package]]
  7807. name = "ws2_32-sys"
  7808. version = "0.2.1"
  7809. source = "registry+https://github.com/rust-lang/crates.io-index"
  7810. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  7811. dependencies = [
  7812. "winapi 0.2.8",
  7813. "winapi-build",
  7814. ]
  7815. [[package]]
  7816. name = "x25519-dalek"
  7817. version = "0.6.0"
  7818. source = "registry+https://github.com/rust-lang/crates.io-index"
  7819. checksum = "637ff90c9540fa3073bb577e65033069e4bae7c79d49d74aa3ffdf5342a53217"
  7820. dependencies = [
  7821. "curve25519-dalek 2.1.0",
  7822. "rand_core 0.5.1",
  7823. "zeroize",
  7824. ]
  7825. [[package]]
  7826. name = "x25519-dalek"
  7827. version = "1.1.0"
  7828. source = "registry+https://github.com/rust-lang/crates.io-index"
  7829. checksum = "bc614d95359fd7afc321b66d2107ede58b246b844cf5d8a0adcca413e439f088"
  7830. dependencies = [
  7831. "curve25519-dalek 3.0.0",
  7832. "rand_core 0.5.1",
  7833. "zeroize",
  7834. ]
  7835. [[package]]
  7836. name = "yamux"
  7837. version = "0.8.0"
  7838. source = "registry+https://github.com/rust-lang/crates.io-index"
  7839. checksum = "9aeb8c4043cac71c3c299dff107171c220d179492350ea198e109a414981b83c"
  7840. dependencies = [
  7841. "futures 0.3.8",
  7842. "log",
  7843. "nohash-hasher",
  7844. "parking_lot 0.11.1",
  7845. "rand 0.7.3",
  7846. "static_assertions",
  7847. ]
  7848. [[package]]
  7849. name = "zeroize"
  7850. version = "1.1.1"
  7851. source = "registry+https://github.com/rust-lang/crates.io-index"
  7852. checksum = "05f33972566adbd2d3588b0491eb94b98b43695c4ef897903470ede4f3f5a28a"
  7853. dependencies = [
  7854. "zeroize_derive",
  7855. ]
  7856. [[package]]
  7857. name = "zeroize_derive"
  7858. version = "1.0.1"
  7859. source = "registry+https://github.com/rust-lang/crates.io-index"
  7860. checksum = "c3f369ddb18862aba61aa49bf31e74d29f0f162dec753063200e1dc084345d16"
  7861. dependencies = [
  7862. "proc-macro2",
  7863. "quote",
  7864. "syn",
  7865. "synstructure",
  7866. ]