Cargo.lock 197 KB

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