Cargo.lock 270 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "adler32"
  5. version = "1.0.4"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. [[package]]
  8. name = "aho-corasick"
  9. version = "0.5.3"
  10. source = "registry+https://github.com/rust-lang/crates.io-index"
  11. dependencies = [
  12. "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
  13. ]
  14. [[package]]
  15. name = "aho-corasick"
  16. version = "0.7.6"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. dependencies = [
  19. "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  20. ]
  21. [[package]]
  22. name = "ansi_term"
  23. version = "0.11.0"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. dependencies = [
  26. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  27. ]
  28. [[package]]
  29. name = "approx"
  30. version = "0.1.1"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. [[package]]
  33. name = "ar"
  34. version = "0.6.2"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. dependencies = [
  37. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  38. ]
  39. [[package]]
  40. name = "arc-swap"
  41. version = "0.3.11"
  42. source = "registry+https://github.com/rust-lang/crates.io-index"
  43. [[package]]
  44. name = "argon2rs"
  45. version = "0.2.5"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. dependencies = [
  48. "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
  49. "scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  50. ]
  51. [[package]]
  52. name = "arrayref"
  53. version = "0.3.5"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. [[package]]
  56. name = "arrayvec"
  57. version = "0.4.11"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. dependencies = [
  60. "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)",
  61. ]
  62. [[package]]
  63. name = "ascii"
  64. version = "0.7.1"
  65. source = "registry+https://github.com/rust-lang/crates.io-index"
  66. [[package]]
  67. name = "ascii-canvas"
  68. version = "2.0.0"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. dependencies = [
  71. "term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  72. ]
  73. [[package]]
  74. name = "assert_cmd"
  75. version = "0.11.1"
  76. source = "registry+https://github.com/rust-lang/crates.io-index"
  77. dependencies = [
  78. "escargot 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  79. "predicates 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  80. "predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  81. "predicates-tree 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  82. ]
  83. [[package]]
  84. name = "assert_matches"
  85. version = "1.3.0"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. [[package]]
  88. name = "atty"
  89. version = "0.2.13"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. dependencies = [
  92. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  93. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  94. ]
  95. [[package]]
  96. name = "autocfg"
  97. version = "0.1.5"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. [[package]]
  100. name = "backtrace"
  101. version = "0.3.40"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. dependencies = [
  104. "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
  105. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  106. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  107. "rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  108. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  109. ]
  110. [[package]]
  111. name = "backtrace-sys"
  112. version = "0.1.32"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. dependencies = [
  115. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  116. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  117. ]
  118. [[package]]
  119. name = "base64"
  120. version = "0.10.1"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. dependencies = [
  123. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  124. ]
  125. [[package]]
  126. name = "base64"
  127. version = "0.11.0"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. [[package]]
  130. name = "bech32"
  131. version = "0.6.0"
  132. source = "registry+https://github.com/rust-lang/crates.io-index"
  133. [[package]]
  134. name = "bincode"
  135. version = "1.2.0"
  136. source = "registry+https://github.com/rust-lang/crates.io-index"
  137. dependencies = [
  138. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  139. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  140. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  141. ]
  142. [[package]]
  143. name = "bindgen"
  144. version = "0.49.2"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. dependencies = [
  147. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  148. "cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  149. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  150. "clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)",
  151. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  152. "env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  153. "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  154. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  155. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  156. "peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  157. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  158. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  159. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  160. "shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  161. "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  162. ]
  163. [[package]]
  164. name = "bit-set"
  165. version = "0.5.1"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. dependencies = [
  168. "bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  169. ]
  170. [[package]]
  171. name = "bit-vec"
  172. version = "0.4.4"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. [[package]]
  175. name = "bit-vec"
  176. version = "0.5.1"
  177. source = "registry+https://github.com/rust-lang/crates.io-index"
  178. [[package]]
  179. name = "bit-vec"
  180. version = "0.6.1"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. [[package]]
  183. name = "bitflags"
  184. version = "1.1.0"
  185. source = "registry+https://github.com/rust-lang/crates.io-index"
  186. [[package]]
  187. name = "blake2"
  188. version = "0.8.1"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. dependencies = [
  191. "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  192. "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  193. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  194. "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  195. ]
  196. [[package]]
  197. name = "blake2-rfc"
  198. version = "0.2.18"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. dependencies = [
  201. "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  202. "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  203. ]
  204. [[package]]
  205. name = "block-buffer"
  206. version = "0.3.3"
  207. source = "registry+https://github.com/rust-lang/crates.io-index"
  208. dependencies = [
  209. "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  210. "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  211. ]
  212. [[package]]
  213. name = "block-buffer"
  214. version = "0.7.3"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. dependencies = [
  217. "block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  218. "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  219. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  220. "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
  221. ]
  222. [[package]]
  223. name = "block-padding"
  224. version = "0.1.4"
  225. source = "registry+https://github.com/rust-lang/crates.io-index"
  226. dependencies = [
  227. "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  228. ]
  229. [[package]]
  230. name = "bloom"
  231. version = "0.3.2"
  232. source = "registry+https://github.com/rust-lang/crates.io-index"
  233. dependencies = [
  234. "bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  235. ]
  236. [[package]]
  237. name = "bs58"
  238. version = "0.2.5"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. [[package]]
  241. name = "bs58"
  242. version = "0.3.0"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. [[package]]
  245. name = "bstr"
  246. version = "0.2.6"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. dependencies = [
  249. "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  250. ]
  251. [[package]]
  252. name = "btc_spv_bin"
  253. version = "0.21.0"
  254. dependencies = [
  255. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  256. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  257. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  258. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  259. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  260. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  261. ]
  262. [[package]]
  263. name = "build_const"
  264. version = "0.2.1"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. [[package]]
  267. name = "bumpalo"
  268. version = "2.6.0"
  269. source = "registry+https://github.com/rust-lang/crates.io-index"
  270. [[package]]
  271. name = "bv"
  272. version = "0.11.0"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. dependencies = [
  275. "feature-probe 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  276. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  277. ]
  278. [[package]]
  279. name = "byte-tools"
  280. version = "0.2.0"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. [[package]]
  283. name = "byte-tools"
  284. version = "0.3.1"
  285. source = "registry+https://github.com/rust-lang/crates.io-index"
  286. [[package]]
  287. name = "byte-unit"
  288. version = "3.0.3"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. [[package]]
  291. name = "byteorder"
  292. version = "1.3.2"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. [[package]]
  295. name = "bytes"
  296. version = "0.4.12"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. dependencies = [
  299. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  300. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  301. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  302. ]
  303. [[package]]
  304. name = "bzip2"
  305. version = "0.3.3"
  306. source = "registry+https://github.com/rust-lang/crates.io-index"
  307. dependencies = [
  308. "bzip2-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
  309. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  310. ]
  311. [[package]]
  312. name = "bzip2-sys"
  313. version = "0.1.7"
  314. source = "registry+https://github.com/rust-lang/crates.io-index"
  315. dependencies = [
  316. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  317. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  318. ]
  319. [[package]]
  320. name = "c2-chacha"
  321. version = "0.2.2"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. dependencies = [
  324. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  325. "ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  326. ]
  327. [[package]]
  328. name = "c_linked_list"
  329. version = "1.1.1"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. [[package]]
  332. name = "cast"
  333. version = "0.2.2"
  334. source = "registry+https://github.com/rust-lang/crates.io-index"
  335. [[package]]
  336. name = "cbindgen"
  337. version = "0.9.1"
  338. source = "registry+https://github.com/rust-lang/crates.io-index"
  339. dependencies = [
  340. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  341. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  342. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  343. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  344. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  345. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  346. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  347. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  348. "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
  349. ]
  350. [[package]]
  351. name = "cc"
  352. version = "1.0.47"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. dependencies = [
  355. "jobserver 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
  356. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  357. ]
  358. [[package]]
  359. name = "cexpr"
  360. version = "0.3.5"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. dependencies = [
  363. "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  364. ]
  365. [[package]]
  366. name = "cfg-if"
  367. version = "0.1.9"
  368. source = "registry+https://github.com/rust-lang/crates.io-index"
  369. [[package]]
  370. name = "cgmath"
  371. version = "0.16.1"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. dependencies = [
  374. "approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  375. "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
  376. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  377. ]
  378. [[package]]
  379. name = "chashmap"
  380. version = "2.2.2"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. dependencies = [
  383. "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  384. "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  385. ]
  386. [[package]]
  387. name = "chrono"
  388. version = "0.4.9"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. dependencies = [
  391. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  392. "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
  393. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  394. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  395. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  396. ]
  397. [[package]]
  398. name = "clang-sys"
  399. version = "0.28.1"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. dependencies = [
  402. "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  403. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  404. "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  405. ]
  406. [[package]]
  407. name = "clap"
  408. version = "2.33.0"
  409. source = "registry+https://github.com/rust-lang/crates.io-index"
  410. dependencies = [
  411. "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  412. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  413. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  414. "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  415. "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  416. "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  417. "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  418. ]
  419. [[package]]
  420. name = "clear_on_drop"
  421. version = "0.2.3"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. dependencies = [
  424. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  425. ]
  426. [[package]]
  427. name = "clicolors-control"
  428. version = "1.0.0"
  429. source = "registry+https://github.com/rust-lang/crates.io-index"
  430. dependencies = [
  431. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  432. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  433. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  434. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  435. ]
  436. [[package]]
  437. name = "cloudabi"
  438. version = "0.0.3"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. dependencies = [
  441. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  442. ]
  443. [[package]]
  444. name = "codespan"
  445. version = "0.2.1"
  446. source = "registry+https://github.com/rust-lang/crates.io-index"
  447. dependencies = [
  448. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  449. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  450. ]
  451. [[package]]
  452. name = "codespan-reporting"
  453. version = "0.2.1"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. dependencies = [
  456. "codespan 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  457. "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  458. ]
  459. [[package]]
  460. name = "colored"
  461. version = "1.8.0"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. dependencies = [
  464. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  465. "winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  466. ]
  467. [[package]]
  468. name = "combine"
  469. version = "2.5.2"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. dependencies = [
  472. "ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  473. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  474. ]
  475. [[package]]
  476. name = "console"
  477. version = "0.9.1"
  478. source = "registry+https://github.com/rust-lang/crates.io-index"
  479. dependencies = [
  480. "clicolors-control 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  481. "encode_unicode 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  482. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  483. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  484. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  485. "termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  486. "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  487. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  488. ]
  489. [[package]]
  490. name = "constant_time_eq"
  491. version = "0.1.3"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. [[package]]
  494. name = "cookie"
  495. version = "0.12.0"
  496. source = "registry+https://github.com/rust-lang/crates.io-index"
  497. dependencies = [
  498. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  499. "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  500. ]
  501. [[package]]
  502. name = "cookie_store"
  503. version = "0.7.0"
  504. source = "registry+https://github.com/rust-lang/crates.io-index"
  505. dependencies = [
  506. "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
  507. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  508. "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  509. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  510. "publicsuffix 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  511. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  512. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  513. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  514. "try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  515. "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  516. ]
  517. [[package]]
  518. name = "core_affinity"
  519. version = "0.5.9"
  520. source = "registry+https://github.com/rust-lang/crates.io-index"
  521. dependencies = [
  522. "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  523. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  524. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  525. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  526. ]
  527. [[package]]
  528. name = "crc"
  529. version = "1.9.0"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. dependencies = [
  532. "build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  533. ]
  534. [[package]]
  535. name = "crc32fast"
  536. version = "1.2.0"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. dependencies = [
  539. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  540. ]
  541. [[package]]
  542. name = "criterion-stats"
  543. version = "0.3.0"
  544. source = "registry+https://github.com/rust-lang/crates.io-index"
  545. dependencies = [
  546. "cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  547. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  548. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  549. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  550. "thread-scoped 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  551. ]
  552. [[package]]
  553. name = "crossbeam"
  554. version = "0.2.12"
  555. source = "registry+https://github.com/rust-lang/crates.io-index"
  556. [[package]]
  557. name = "crossbeam"
  558. version = "0.7.2"
  559. source = "registry+https://github.com/rust-lang/crates.io-index"
  560. dependencies = [
  561. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  562. "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  563. "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  564. "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  565. "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  566. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  567. ]
  568. [[package]]
  569. name = "crossbeam-channel"
  570. version = "0.3.9"
  571. source = "registry+https://github.com/rust-lang/crates.io-index"
  572. dependencies = [
  573. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  574. ]
  575. [[package]]
  576. name = "crossbeam-deque"
  577. version = "0.7.1"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. dependencies = [
  580. "crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  581. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  582. ]
  583. [[package]]
  584. name = "crossbeam-epoch"
  585. version = "0.7.2"
  586. source = "registry+https://github.com/rust-lang/crates.io-index"
  587. dependencies = [
  588. "arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)",
  589. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  590. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  591. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  592. "memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  593. "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  594. ]
  595. [[package]]
  596. name = "crossbeam-queue"
  597. version = "0.1.2"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. dependencies = [
  600. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  601. ]
  602. [[package]]
  603. name = "crossbeam-utils"
  604. version = "0.6.6"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. dependencies = [
  607. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  608. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  609. ]
  610. [[package]]
  611. name = "crunchy"
  612. version = "0.2.2"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. [[package]]
  615. name = "crypto-mac"
  616. version = "0.7.0"
  617. source = "registry+https://github.com/rust-lang/crates.io-index"
  618. dependencies = [
  619. "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
  620. "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  621. ]
  622. [[package]]
  623. name = "ct-logs"
  624. version = "0.6.0"
  625. source = "registry+https://github.com/rust-lang/crates.io-index"
  626. dependencies = [
  627. "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  628. ]
  629. [[package]]
  630. name = "ctrlc"
  631. version = "3.1.3"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. dependencies = [
  634. "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)",
  635. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  636. ]
  637. [[package]]
  638. name = "curve25519-dalek"
  639. version = "1.2.3"
  640. source = "registry+https://github.com/rust-lang/crates.io-index"
  641. dependencies = [
  642. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  643. "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  644. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  645. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  646. "subtle 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  647. ]
  648. [[package]]
  649. name = "data-encoding"
  650. version = "2.1.2"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. [[package]]
  653. name = "derivative"
  654. version = "1.0.3"
  655. source = "registry+https://github.com/rust-lang/crates.io-index"
  656. dependencies = [
  657. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  658. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  659. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  660. ]
  661. [[package]]
  662. name = "diff"
  663. version = "0.1.11"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. [[package]]
  666. name = "difference"
  667. version = "2.0.0"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. [[package]]
  670. name = "digest"
  671. version = "0.7.6"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. dependencies = [
  674. "generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  675. ]
  676. [[package]]
  677. name = "digest"
  678. version = "0.8.1"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. dependencies = [
  681. "generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
  682. ]
  683. [[package]]
  684. name = "dir-diff"
  685. version = "0.3.2"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. dependencies = [
  688. "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
  689. ]
  690. [[package]]
  691. name = "dirs"
  692. version = "1.0.5"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. dependencies = [
  695. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  696. "redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  697. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  698. ]
  699. [[package]]
  700. name = "dirs"
  701. version = "2.0.2"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. dependencies = [
  704. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  705. "dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
  706. ]
  707. [[package]]
  708. name = "dirs-sys"
  709. version = "0.3.4"
  710. source = "registry+https://github.com/rust-lang/crates.io-index"
  711. dependencies = [
  712. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  713. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  714. "redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  715. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  716. ]
  717. [[package]]
  718. name = "dlopen"
  719. version = "0.1.8"
  720. source = "registry+https://github.com/rust-lang/crates.io-index"
  721. dependencies = [
  722. "dlopen_derive 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  723. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  724. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  725. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  726. ]
  727. [[package]]
  728. name = "dlopen_derive"
  729. version = "0.1.4"
  730. source = "registry+https://github.com/rust-lang/crates.io-index"
  731. dependencies = [
  732. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  733. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  734. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  735. ]
  736. [[package]]
  737. name = "docopt"
  738. version = "1.1.0"
  739. source = "registry+https://github.com/rust-lang/crates.io-index"
  740. dependencies = [
  741. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  742. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  743. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  744. "strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
  745. ]
  746. [[package]]
  747. name = "dtoa"
  748. version = "0.4.4"
  749. source = "registry+https://github.com/rust-lang/crates.io-index"
  750. [[package]]
  751. name = "ed25519-dalek"
  752. version = "1.0.0-pre.1"
  753. source = "registry+https://github.com/rust-lang/crates.io-index"
  754. dependencies = [
  755. "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  756. "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  757. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  758. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  759. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  760. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  761. ]
  762. [[package]]
  763. name = "either"
  764. version = "1.5.3"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. [[package]]
  767. name = "elfkit"
  768. version = "0.0.6"
  769. source = "registry+https://github.com/rust-lang/crates.io-index"
  770. dependencies = [
  771. "ar 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  772. "bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  773. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  774. "bloom 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  775. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  776. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  777. "colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  778. "enum-primitive-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  779. "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
  780. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  781. "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
  782. "indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  783. "itertools 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)",
  784. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  785. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  786. "pretty_env_logger 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  787. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  788. "sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  789. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  790. ]
  791. [[package]]
  792. name = "ena"
  793. version = "0.13.1"
  794. source = "registry+https://github.com/rust-lang/crates.io-index"
  795. dependencies = [
  796. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  797. ]
  798. [[package]]
  799. name = "encode_unicode"
  800. version = "0.3.5"
  801. source = "registry+https://github.com/rust-lang/crates.io-index"
  802. [[package]]
  803. name = "encoding_rs"
  804. version = "0.8.20"
  805. source = "registry+https://github.com/rust-lang/crates.io-index"
  806. dependencies = [
  807. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  808. ]
  809. [[package]]
  810. name = "endian-type"
  811. version = "0.1.2"
  812. source = "registry+https://github.com/rust-lang/crates.io-index"
  813. [[package]]
  814. name = "enum-primitive-derive"
  815. version = "0.1.2"
  816. source = "registry+https://github.com/rust-lang/crates.io-index"
  817. dependencies = [
  818. "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
  819. "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
  820. "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)",
  821. ]
  822. [[package]]
  823. name = "env_logger"
  824. version = "0.5.13"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. dependencies = [
  827. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  828. "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  829. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  830. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  831. "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  832. ]
  833. [[package]]
  834. name = "env_logger"
  835. version = "0.6.2"
  836. source = "registry+https://github.com/rust-lang/crates.io-index"
  837. dependencies = [
  838. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  839. "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  840. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  841. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  842. "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  843. ]
  844. [[package]]
  845. name = "env_logger"
  846. version = "0.7.1"
  847. source = "registry+https://github.com/rust-lang/crates.io-index"
  848. dependencies = [
  849. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  850. "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  851. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  852. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  853. "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  854. ]
  855. [[package]]
  856. name = "errno"
  857. version = "0.2.4"
  858. source = "registry+https://github.com/rust-lang/crates.io-index"
  859. dependencies = [
  860. "errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  861. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  862. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  863. ]
  864. [[package]]
  865. name = "errno-dragonfly"
  866. version = "0.1.1"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. dependencies = [
  869. "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
  870. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  871. ]
  872. [[package]]
  873. name = "error-chain"
  874. version = "0.12.1"
  875. source = "registry+https://github.com/rust-lang/crates.io-index"
  876. dependencies = [
  877. "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
  878. "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  879. ]
  880. [[package]]
  881. name = "escargot"
  882. version = "0.4.0"
  883. source = "registry+https://github.com/rust-lang/crates.io-index"
  884. dependencies = [
  885. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  886. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  887. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  888. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  889. ]
  890. [[package]]
  891. name = "failure"
  892. version = "0.1.5"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. dependencies = [
  895. "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
  896. "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  897. ]
  898. [[package]]
  899. name = "failure_derive"
  900. version = "0.1.5"
  901. source = "registry+https://github.com/rust-lang/crates.io-index"
  902. dependencies = [
  903. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  904. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  905. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  906. "synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
  907. ]
  908. [[package]]
  909. name = "fake-simd"
  910. version = "0.1.2"
  911. source = "registry+https://github.com/rust-lang/crates.io-index"
  912. [[package]]
  913. name = "feature-probe"
  914. version = "0.1.1"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. [[package]]
  917. name = "filetime"
  918. version = "0.2.6"
  919. source = "registry+https://github.com/rust-lang/crates.io-index"
  920. dependencies = [
  921. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  922. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  923. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  924. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  925. ]
  926. [[package]]
  927. name = "fixedbitset"
  928. version = "0.1.9"
  929. source = "registry+https://github.com/rust-lang/crates.io-index"
  930. [[package]]
  931. name = "flate2"
  932. version = "1.0.11"
  933. source = "registry+https://github.com/rust-lang/crates.io-index"
  934. dependencies = [
  935. "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  936. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  937. "miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  938. ]
  939. [[package]]
  940. name = "fnv"
  941. version = "1.0.6"
  942. source = "registry+https://github.com/rust-lang/crates.io-index"
  943. [[package]]
  944. name = "fs_extra"
  945. version = "1.1.0"
  946. source = "registry+https://github.com/rust-lang/crates.io-index"
  947. [[package]]
  948. name = "fuchsia-cprng"
  949. version = "0.1.1"
  950. source = "registry+https://github.com/rust-lang/crates.io-index"
  951. [[package]]
  952. name = "fuchsia-zircon"
  953. version = "0.3.3"
  954. source = "registry+https://github.com/rust-lang/crates.io-index"
  955. dependencies = [
  956. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  957. "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  958. ]
  959. [[package]]
  960. name = "fuchsia-zircon-sys"
  961. version = "0.3.3"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. [[package]]
  964. name = "futures"
  965. version = "0.1.28"
  966. source = "registry+https://github.com/rust-lang/crates.io-index"
  967. [[package]]
  968. name = "futures-cpupool"
  969. version = "0.1.8"
  970. source = "registry+https://github.com/rust-lang/crates.io-index"
  971. dependencies = [
  972. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  973. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  974. ]
  975. [[package]]
  976. name = "fxhash"
  977. version = "0.2.1"
  978. source = "registry+https://github.com/rust-lang/crates.io-index"
  979. dependencies = [
  980. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  981. ]
  982. [[package]]
  983. name = "gag"
  984. version = "0.1.10"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. dependencies = [
  987. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  988. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  989. ]
  990. [[package]]
  991. name = "gcc"
  992. version = "0.3.55"
  993. source = "registry+https://github.com/rust-lang/crates.io-index"
  994. [[package]]
  995. name = "generic-array"
  996. version = "0.9.0"
  997. source = "registry+https://github.com/rust-lang/crates.io-index"
  998. dependencies = [
  999. "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1000. ]
  1001. [[package]]
  1002. name = "generic-array"
  1003. version = "0.12.3"
  1004. source = "registry+https://github.com/rust-lang/crates.io-index"
  1005. dependencies = [
  1006. "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1007. ]
  1008. [[package]]
  1009. name = "generic-array"
  1010. version = "0.13.2"
  1011. source = "registry+https://github.com/rust-lang/crates.io-index"
  1012. dependencies = [
  1013. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1014. "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1015. ]
  1016. [[package]]
  1017. name = "get_if_addrs"
  1018. version = "0.5.3"
  1019. source = "registry+https://github.com/rust-lang/crates.io-index"
  1020. dependencies = [
  1021. "c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1022. "get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1023. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1024. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1025. ]
  1026. [[package]]
  1027. name = "get_if_addrs-sys"
  1028. version = "0.1.1"
  1029. source = "registry+https://github.com/rust-lang/crates.io-index"
  1030. dependencies = [
  1031. "gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)",
  1032. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1033. ]
  1034. [[package]]
  1035. name = "getrandom"
  1036. version = "0.1.6"
  1037. source = "registry+https://github.com/rust-lang/crates.io-index"
  1038. dependencies = [
  1039. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1040. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1041. ]
  1042. [[package]]
  1043. name = "glob"
  1044. version = "0.2.11"
  1045. source = "registry+https://github.com/rust-lang/crates.io-index"
  1046. [[package]]
  1047. name = "glob"
  1048. version = "0.3.0"
  1049. source = "registry+https://github.com/rust-lang/crates.io-index"
  1050. [[package]]
  1051. name = "globset"
  1052. version = "0.4.4"
  1053. source = "registry+https://github.com/rust-lang/crates.io-index"
  1054. dependencies = [
  1055. "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1056. "bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1057. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1058. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1059. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1060. ]
  1061. [[package]]
  1062. name = "h2"
  1063. version = "0.1.26"
  1064. source = "registry+https://github.com/rust-lang/crates.io-index"
  1065. dependencies = [
  1066. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1067. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1068. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1069. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  1070. "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
  1071. "indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1072. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1073. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1074. "string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1075. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1076. ]
  1077. [[package]]
  1078. name = "hash32"
  1079. version = "0.1.0"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. dependencies = [
  1082. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1083. ]
  1084. [[package]]
  1085. name = "hashbrown"
  1086. version = "0.1.8"
  1087. source = "registry+https://github.com/rust-lang/crates.io-index"
  1088. dependencies = [
  1089. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1090. "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1091. ]
  1092. [[package]]
  1093. name = "heck"
  1094. version = "0.3.1"
  1095. source = "registry+https://github.com/rust-lang/crates.io-index"
  1096. dependencies = [
  1097. "unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1098. ]
  1099. [[package]]
  1100. name = "hermit-abi"
  1101. version = "0.1.3"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. dependencies = [
  1104. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1105. ]
  1106. [[package]]
  1107. name = "hex"
  1108. version = "0.3.2"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. [[package]]
  1111. name = "hex"
  1112. version = "0.4.0"
  1113. source = "registry+https://github.com/rust-lang/crates.io-index"
  1114. [[package]]
  1115. name = "hex-literal"
  1116. version = "0.2.1"
  1117. source = "registry+https://github.com/rust-lang/crates.io-index"
  1118. dependencies = [
  1119. "hex-literal-impl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1120. "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1121. ]
  1122. [[package]]
  1123. name = "hex-literal-impl"
  1124. version = "0.2.0"
  1125. source = "registry+https://github.com/rust-lang/crates.io-index"
  1126. dependencies = [
  1127. "proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1128. ]
  1129. [[package]]
  1130. name = "hex_fmt"
  1131. version = "0.3.0"
  1132. source = "registry+https://github.com/rust-lang/crates.io-index"
  1133. [[package]]
  1134. name = "hmac"
  1135. version = "0.7.1"
  1136. source = "registry+https://github.com/rust-lang/crates.io-index"
  1137. dependencies = [
  1138. "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1139. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1140. ]
  1141. [[package]]
  1142. name = "http"
  1143. version = "0.1.18"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. dependencies = [
  1146. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1147. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1148. "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1149. ]
  1150. [[package]]
  1151. name = "http-body"
  1152. version = "0.1.0"
  1153. source = "registry+https://github.com/rust-lang/crates.io-index"
  1154. dependencies = [
  1155. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1156. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  1157. "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
  1158. "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1159. ]
  1160. [[package]]
  1161. name = "httparse"
  1162. version = "1.3.4"
  1163. source = "registry+https://github.com/rust-lang/crates.io-index"
  1164. [[package]]
  1165. name = "humantime"
  1166. version = "1.3.0"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. dependencies = [
  1169. "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1170. ]
  1171. [[package]]
  1172. name = "hyper"
  1173. version = "0.12.35"
  1174. source = "registry+https://github.com/rust-lang/crates.io-index"
  1175. dependencies = [
  1176. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1177. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  1178. "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1179. "h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
  1180. "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
  1181. "http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1182. "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1183. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1184. "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1185. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1186. "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
  1187. "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1188. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  1189. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  1190. "tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1191. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1192. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1193. "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1194. "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1195. "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  1196. "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
  1197. "want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1198. ]
  1199. [[package]]
  1200. name = "hyper-rustls"
  1201. version = "0.17.1"
  1202. source = "registry+https://github.com/rust-lang/crates.io-index"
  1203. dependencies = [
  1204. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1205. "ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1206. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  1207. "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
  1208. "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1209. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1210. "tokio-rustls 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1211. "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1212. "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1213. ]
  1214. [[package]]
  1215. name = "idna"
  1216. version = "0.1.5"
  1217. source = "registry+https://github.com/rust-lang/crates.io-index"
  1218. dependencies = [
  1219. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1220. "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1221. "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1222. ]
  1223. [[package]]
  1224. name = "idna"
  1225. version = "0.2.0"
  1226. source = "registry+https://github.com/rust-lang/crates.io-index"
  1227. dependencies = [
  1228. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1229. "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1230. "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1231. ]
  1232. [[package]]
  1233. name = "indexmap"
  1234. version = "1.1.0"
  1235. source = "registry+https://github.com/rust-lang/crates.io-index"
  1236. [[package]]
  1237. name = "indicatif"
  1238. version = "0.13.0"
  1239. source = "registry+https://github.com/rust-lang/crates.io-index"
  1240. dependencies = [
  1241. "console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1242. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1243. "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1244. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1245. ]
  1246. [[package]]
  1247. name = "iovec"
  1248. version = "0.1.2"
  1249. source = "registry+https://github.com/rust-lang/crates.io-index"
  1250. dependencies = [
  1251. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1252. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1253. ]
  1254. [[package]]
  1255. name = "itertools"
  1256. version = "0.7.11"
  1257. source = "registry+https://github.com/rust-lang/crates.io-index"
  1258. dependencies = [
  1259. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1260. ]
  1261. [[package]]
  1262. name = "itertools"
  1263. version = "0.8.1"
  1264. source = "registry+https://github.com/rust-lang/crates.io-index"
  1265. dependencies = [
  1266. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1267. ]
  1268. [[package]]
  1269. name = "itoa"
  1270. version = "0.4.4"
  1271. source = "registry+https://github.com/rust-lang/crates.io-index"
  1272. [[package]]
  1273. name = "jobserver"
  1274. version = "0.1.16"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. dependencies = [
  1277. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1278. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1279. "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1280. ]
  1281. [[package]]
  1282. name = "js-sys"
  1283. version = "0.3.27"
  1284. source = "registry+https://github.com/rust-lang/crates.io-index"
  1285. dependencies = [
  1286. "wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  1287. ]
  1288. [[package]]
  1289. name = "jsonrpc-core"
  1290. version = "14.0.3"
  1291. source = "registry+https://github.com/rust-lang/crates.io-index"
  1292. dependencies = [
  1293. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  1294. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1295. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1296. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1297. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  1298. ]
  1299. [[package]]
  1300. name = "jsonrpc-derive"
  1301. version = "14.0.3"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. dependencies = [
  1304. "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1305. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1306. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1307. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1308. ]
  1309. [[package]]
  1310. name = "jsonrpc-http-server"
  1311. version = "14.0.3"
  1312. source = "registry+https://github.com/rust-lang/crates.io-index"
  1313. dependencies = [
  1314. "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
  1315. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1316. "jsonrpc-server-utils 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1317. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1318. "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
  1319. "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1320. "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1321. ]
  1322. [[package]]
  1323. name = "jsonrpc-pubsub"
  1324. version = "14.0.3"
  1325. source = "registry+https://github.com/rust-lang/crates.io-index"
  1326. dependencies = [
  1327. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1328. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1329. "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1330. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1331. ]
  1332. [[package]]
  1333. name = "jsonrpc-server-utils"
  1334. version = "14.0.0"
  1335. source = "registry+https://github.com/rust-lang/crates.io-index"
  1336. dependencies = [
  1337. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1338. "globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1339. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1340. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1341. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1342. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  1343. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1344. "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1345. ]
  1346. [[package]]
  1347. name = "jsonrpc-ws-server"
  1348. version = "14.0.3"
  1349. source = "registry+https://github.com/rust-lang/crates.io-index"
  1350. dependencies = [
  1351. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1352. "jsonrpc-server-utils 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1353. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1354. "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1355. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1356. "ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1357. ]
  1358. [[package]]
  1359. name = "keccak"
  1360. version = "0.1.0"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. [[package]]
  1363. name = "kernel32-sys"
  1364. version = "0.2.2"
  1365. source = "registry+https://github.com/rust-lang/crates.io-index"
  1366. dependencies = [
  1367. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1368. "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1369. ]
  1370. [[package]]
  1371. name = "lalrpop"
  1372. version = "0.17.2"
  1373. source = "registry+https://github.com/rust-lang/crates.io-index"
  1374. dependencies = [
  1375. "ascii-canvas 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1376. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1377. "bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1378. "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
  1379. "docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1380. "ena 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1381. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1382. "lalrpop-util 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1383. "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1384. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1385. "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1386. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1387. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1388. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1389. "string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1390. "term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1391. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1392. ]
  1393. [[package]]
  1394. name = "lalrpop-util"
  1395. version = "0.17.2"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. [[package]]
  1398. name = "lazy_static"
  1399. version = "1.4.0"
  1400. source = "registry+https://github.com/rust-lang/crates.io-index"
  1401. dependencies = [
  1402. "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1403. ]
  1404. [[package]]
  1405. name = "lazycell"
  1406. version = "1.2.1"
  1407. source = "registry+https://github.com/rust-lang/crates.io-index"
  1408. [[package]]
  1409. name = "libc"
  1410. version = "0.2.65"
  1411. source = "registry+https://github.com/rust-lang/crates.io-index"
  1412. [[package]]
  1413. name = "libloading"
  1414. version = "0.5.2"
  1415. source = "registry+https://github.com/rust-lang/crates.io-index"
  1416. dependencies = [
  1417. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  1418. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1419. ]
  1420. [[package]]
  1421. name = "librocksdb-sys"
  1422. version = "6.1.3"
  1423. source = "registry+https://github.com/rust-lang/crates.io-index"
  1424. dependencies = [
  1425. "bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1426. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  1427. "glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1428. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1429. ]
  1430. [[package]]
  1431. name = "linked-hash-map"
  1432. version = "0.5.2"
  1433. source = "registry+https://github.com/rust-lang/crates.io-index"
  1434. [[package]]
  1435. name = "lock_api"
  1436. version = "0.1.5"
  1437. source = "registry+https://github.com/rust-lang/crates.io-index"
  1438. dependencies = [
  1439. "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1440. "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1441. ]
  1442. [[package]]
  1443. name = "lock_api"
  1444. version = "0.3.1"
  1445. source = "registry+https://github.com/rust-lang/crates.io-index"
  1446. dependencies = [
  1447. "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1448. ]
  1449. [[package]]
  1450. name = "log"
  1451. version = "0.3.9"
  1452. source = "registry+https://github.com/rust-lang/crates.io-index"
  1453. dependencies = [
  1454. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1455. ]
  1456. [[package]]
  1457. name = "log"
  1458. version = "0.4.8"
  1459. source = "registry+https://github.com/rust-lang/crates.io-index"
  1460. dependencies = [
  1461. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1462. ]
  1463. [[package]]
  1464. name = "mach_o_sys"
  1465. version = "0.1.1"
  1466. source = "registry+https://github.com/rust-lang/crates.io-index"
  1467. [[package]]
  1468. name = "matches"
  1469. version = "0.1.8"
  1470. source = "registry+https://github.com/rust-lang/crates.io-index"
  1471. [[package]]
  1472. name = "memchr"
  1473. version = "0.1.11"
  1474. source = "registry+https://github.com/rust-lang/crates.io-index"
  1475. dependencies = [
  1476. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1477. ]
  1478. [[package]]
  1479. name = "memchr"
  1480. version = "2.2.1"
  1481. source = "registry+https://github.com/rust-lang/crates.io-index"
  1482. [[package]]
  1483. name = "memmap"
  1484. version = "0.6.2"
  1485. source = "registry+https://github.com/rust-lang/crates.io-index"
  1486. dependencies = [
  1487. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1488. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1489. ]
  1490. [[package]]
  1491. name = "memmap"
  1492. version = "0.7.0"
  1493. source = "registry+https://github.com/rust-lang/crates.io-index"
  1494. dependencies = [
  1495. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1496. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1497. ]
  1498. [[package]]
  1499. name = "memoffset"
  1500. version = "0.5.1"
  1501. source = "registry+https://github.com/rust-lang/crates.io-index"
  1502. dependencies = [
  1503. "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1504. ]
  1505. [[package]]
  1506. name = "memsec"
  1507. version = "0.5.6"
  1508. source = "registry+https://github.com/rust-lang/crates.io-index"
  1509. dependencies = [
  1510. "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1511. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1512. "mach_o_sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1513. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1514. ]
  1515. [[package]]
  1516. name = "mime"
  1517. version = "0.3.13"
  1518. source = "registry+https://github.com/rust-lang/crates.io-index"
  1519. dependencies = [
  1520. "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1521. ]
  1522. [[package]]
  1523. name = "mime_guess"
  1524. version = "2.0.1"
  1525. source = "registry+https://github.com/rust-lang/crates.io-index"
  1526. dependencies = [
  1527. "mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1528. "unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1529. ]
  1530. [[package]]
  1531. name = "miniz_oxide"
  1532. version = "0.3.2"
  1533. source = "registry+https://github.com/rust-lang/crates.io-index"
  1534. dependencies = [
  1535. "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1536. ]
  1537. [[package]]
  1538. name = "mio"
  1539. version = "0.6.19"
  1540. source = "registry+https://github.com/rust-lang/crates.io-index"
  1541. dependencies = [
  1542. "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1543. "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1544. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1545. "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1546. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1547. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1548. "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1549. "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
  1550. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1551. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1552. ]
  1553. [[package]]
  1554. name = "mio-extras"
  1555. version = "2.0.5"
  1556. source = "registry+https://github.com/rust-lang/crates.io-index"
  1557. dependencies = [
  1558. "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1559. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1560. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  1561. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1562. ]
  1563. [[package]]
  1564. name = "mio-uds"
  1565. version = "0.6.7"
  1566. source = "registry+https://github.com/rust-lang/crates.io-index"
  1567. dependencies = [
  1568. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1569. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1570. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  1571. ]
  1572. [[package]]
  1573. name = "miow"
  1574. version = "0.2.1"
  1575. source = "registry+https://github.com/rust-lang/crates.io-index"
  1576. dependencies = [
  1577. "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1578. "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)",
  1579. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1580. "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1581. ]
  1582. [[package]]
  1583. name = "mirai-annotations"
  1584. version = "1.5.0"
  1585. source = "registry+https://github.com/rust-lang/crates.io-index"
  1586. [[package]]
  1587. name = "multimap"
  1588. version = "0.4.0"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. [[package]]
  1591. name = "net2"
  1592. version = "0.2.33"
  1593. source = "registry+https://github.com/rust-lang/crates.io-index"
  1594. dependencies = [
  1595. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1596. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1597. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1598. ]
  1599. [[package]]
  1600. name = "new_debug_unreachable"
  1601. version = "1.0.3"
  1602. source = "registry+https://github.com/rust-lang/crates.io-index"
  1603. [[package]]
  1604. name = "nibble_vec"
  1605. version = "0.0.4"
  1606. source = "registry+https://github.com/rust-lang/crates.io-index"
  1607. [[package]]
  1608. name = "nix"
  1609. version = "0.14.1"
  1610. source = "registry+https://github.com/rust-lang/crates.io-index"
  1611. dependencies = [
  1612. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1613. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  1614. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1615. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1616. "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1617. ]
  1618. [[package]]
  1619. name = "nix"
  1620. version = "0.15.0"
  1621. source = "registry+https://github.com/rust-lang/crates.io-index"
  1622. dependencies = [
  1623. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1624. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  1625. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1626. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1627. "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1628. ]
  1629. [[package]]
  1630. name = "nodrop"
  1631. version = "0.1.13"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. [[package]]
  1634. name = "nom"
  1635. version = "4.2.3"
  1636. source = "registry+https://github.com/rust-lang/crates.io-index"
  1637. dependencies = [
  1638. "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1639. "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1640. ]
  1641. [[package]]
  1642. name = "num-derive"
  1643. version = "0.2.5"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. dependencies = [
  1646. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  1647. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1648. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  1649. ]
  1650. [[package]]
  1651. name = "num-derive"
  1652. version = "0.3.0"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. dependencies = [
  1655. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1656. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1657. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1658. ]
  1659. [[package]]
  1660. name = "num-integer"
  1661. version = "0.1.41"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. dependencies = [
  1664. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1665. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1666. ]
  1667. [[package]]
  1668. name = "num-traits"
  1669. version = "0.1.43"
  1670. source = "registry+https://github.com/rust-lang/crates.io-index"
  1671. dependencies = [
  1672. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1673. ]
  1674. [[package]]
  1675. name = "num-traits"
  1676. version = "0.2.8"
  1677. source = "registry+https://github.com/rust-lang/crates.io-index"
  1678. dependencies = [
  1679. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1680. ]
  1681. [[package]]
  1682. name = "num_cpus"
  1683. version = "1.11.0"
  1684. source = "registry+https://github.com/rust-lang/crates.io-index"
  1685. dependencies = [
  1686. "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1687. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1688. ]
  1689. [[package]]
  1690. name = "num_enum"
  1691. version = "0.4.2"
  1692. source = "registry+https://github.com/rust-lang/crates.io-index"
  1693. dependencies = [
  1694. "derivative 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1695. "num_enum_derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1696. ]
  1697. [[package]]
  1698. name = "num_enum_derive"
  1699. version = "0.4.2"
  1700. source = "registry+https://github.com/rust-lang/crates.io-index"
  1701. dependencies = [
  1702. "proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1703. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1704. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1705. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1706. ]
  1707. [[package]]
  1708. name = "number_prefix"
  1709. version = "0.3.0"
  1710. source = "registry+https://github.com/rust-lang/crates.io-index"
  1711. [[package]]
  1712. name = "once_cell"
  1713. version = "0.1.8"
  1714. source = "registry+https://github.com/rust-lang/crates.io-index"
  1715. dependencies = [
  1716. "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1717. ]
  1718. [[package]]
  1719. name = "opaque-debug"
  1720. version = "0.2.2"
  1721. source = "registry+https://github.com/rust-lang/crates.io-index"
  1722. [[package]]
  1723. name = "ordermap"
  1724. version = "0.3.5"
  1725. source = "registry+https://github.com/rust-lang/crates.io-index"
  1726. [[package]]
  1727. name = "owning_ref"
  1728. version = "0.3.3"
  1729. source = "registry+https://github.com/rust-lang/crates.io-index"
  1730. dependencies = [
  1731. "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1732. ]
  1733. [[package]]
  1734. name = "owning_ref"
  1735. version = "0.4.0"
  1736. source = "registry+https://github.com/rust-lang/crates.io-index"
  1737. dependencies = [
  1738. "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1739. ]
  1740. [[package]]
  1741. name = "pairing"
  1742. version = "0.14.2"
  1743. source = "registry+https://github.com/rust-lang/crates.io-index"
  1744. dependencies = [
  1745. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1746. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1747. ]
  1748. [[package]]
  1749. name = "parity-multiaddr"
  1750. version = "0.5.0"
  1751. source = "registry+https://github.com/rust-lang/crates.io-index"
  1752. dependencies = [
  1753. "arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1754. "bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1755. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1756. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1757. "data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1758. "parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1759. "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1760. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  1761. "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1762. "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1763. ]
  1764. [[package]]
  1765. name = "parity-multihash"
  1766. version = "0.1.3"
  1767. source = "registry+https://github.com/rust-lang/crates.io-index"
  1768. dependencies = [
  1769. "blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1770. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1771. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1772. "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1773. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1774. "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1775. "unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1776. ]
  1777. [[package]]
  1778. name = "parking_lot"
  1779. version = "0.4.8"
  1780. source = "registry+https://github.com/rust-lang/crates.io-index"
  1781. dependencies = [
  1782. "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1783. "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
  1784. ]
  1785. [[package]]
  1786. name = "parking_lot"
  1787. version = "0.7.1"
  1788. source = "registry+https://github.com/rust-lang/crates.io-index"
  1789. dependencies = [
  1790. "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1791. "parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1792. ]
  1793. [[package]]
  1794. name = "parking_lot"
  1795. version = "0.9.0"
  1796. source = "registry+https://github.com/rust-lang/crates.io-index"
  1797. dependencies = [
  1798. "lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1799. "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1800. "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1801. ]
  1802. [[package]]
  1803. name = "parking_lot_core"
  1804. version = "0.2.14"
  1805. source = "registry+https://github.com/rust-lang/crates.io-index"
  1806. dependencies = [
  1807. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1808. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1809. "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  1810. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1811. ]
  1812. [[package]]
  1813. name = "parking_lot_core"
  1814. version = "0.4.0"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. dependencies = [
  1817. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1818. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1819. "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1820. "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  1821. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1822. ]
  1823. [[package]]
  1824. name = "parking_lot_core"
  1825. version = "0.6.2"
  1826. source = "registry+https://github.com/rust-lang/crates.io-index"
  1827. dependencies = [
  1828. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1829. "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1830. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  1831. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  1832. "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1833. "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  1834. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1835. ]
  1836. [[package]]
  1837. name = "pbkdf2"
  1838. version = "0.3.0"
  1839. source = "registry+https://github.com/rust-lang/crates.io-index"
  1840. dependencies = [
  1841. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1842. "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1843. ]
  1844. [[package]]
  1845. name = "peeking_take_while"
  1846. version = "0.1.2"
  1847. source = "registry+https://github.com/rust-lang/crates.io-index"
  1848. [[package]]
  1849. name = "percent-encoding"
  1850. version = "1.0.1"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. [[package]]
  1853. name = "percent-encoding"
  1854. version = "2.0.0"
  1855. source = "registry+https://github.com/rust-lang/crates.io-index"
  1856. [[package]]
  1857. name = "petgraph"
  1858. version = "0.4.13"
  1859. source = "registry+https://github.com/rust-lang/crates.io-index"
  1860. dependencies = [
  1861. "fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1862. "ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1863. ]
  1864. [[package]]
  1865. name = "phf_generator"
  1866. version = "0.7.24"
  1867. source = "registry+https://github.com/rust-lang/crates.io-index"
  1868. dependencies = [
  1869. "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)",
  1870. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1871. ]
  1872. [[package]]
  1873. name = "phf_shared"
  1874. version = "0.7.24"
  1875. source = "registry+https://github.com/rust-lang/crates.io-index"
  1876. dependencies = [
  1877. "siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1878. ]
  1879. [[package]]
  1880. name = "ppv-lite86"
  1881. version = "0.2.5"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. [[package]]
  1884. name = "precomputed-hash"
  1885. version = "0.1.1"
  1886. source = "registry+https://github.com/rust-lang/crates.io-index"
  1887. [[package]]
  1888. name = "predicates"
  1889. version = "1.0.1"
  1890. source = "registry+https://github.com/rust-lang/crates.io-index"
  1891. dependencies = [
  1892. "difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1893. "predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1894. ]
  1895. [[package]]
  1896. name = "predicates-core"
  1897. version = "1.0.0"
  1898. source = "registry+https://github.com/rust-lang/crates.io-index"
  1899. [[package]]
  1900. name = "predicates-tree"
  1901. version = "1.0.0"
  1902. source = "registry+https://github.com/rust-lang/crates.io-index"
  1903. dependencies = [
  1904. "predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1905. "treeline 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1906. ]
  1907. [[package]]
  1908. name = "pretty-hex"
  1909. version = "0.1.1"
  1910. source = "registry+https://github.com/rust-lang/crates.io-index"
  1911. [[package]]
  1912. name = "pretty_env_logger"
  1913. version = "0.2.5"
  1914. source = "registry+https://github.com/rust-lang/crates.io-index"
  1915. dependencies = [
  1916. "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1917. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1918. "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1919. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1920. ]
  1921. [[package]]
  1922. name = "proc-macro-crate"
  1923. version = "0.1.4"
  1924. source = "registry+https://github.com/rust-lang/crates.io-index"
  1925. dependencies = [
  1926. "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
  1927. ]
  1928. [[package]]
  1929. name = "proc-macro-error"
  1930. version = "0.2.6"
  1931. source = "registry+https://github.com/rust-lang/crates.io-index"
  1932. dependencies = [
  1933. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1934. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1935. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  1936. ]
  1937. [[package]]
  1938. name = "proc-macro-hack"
  1939. version = "0.5.8"
  1940. source = "registry+https://github.com/rust-lang/crates.io-index"
  1941. dependencies = [
  1942. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  1943. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1944. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  1945. ]
  1946. [[package]]
  1947. name = "proc-macro2"
  1948. version = "0.4.30"
  1949. source = "registry+https://github.com/rust-lang/crates.io-index"
  1950. dependencies = [
  1951. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1952. ]
  1953. [[package]]
  1954. name = "proc-macro2"
  1955. version = "1.0.1"
  1956. source = "registry+https://github.com/rust-lang/crates.io-index"
  1957. dependencies = [
  1958. "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1959. ]
  1960. [[package]]
  1961. name = "prometheus"
  1962. version = "0.7.0"
  1963. source = "registry+https://github.com/rust-lang/crates.io-index"
  1964. dependencies = [
  1965. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  1966. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  1967. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1968. "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1969. "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1970. ]
  1971. [[package]]
  1972. name = "proptest"
  1973. version = "0.9.4"
  1974. source = "registry+https://github.com/rust-lang/crates.io-index"
  1975. dependencies = [
  1976. "bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1977. "bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1978. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1979. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1980. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  1981. "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1982. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  1983. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1984. "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  1985. "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
  1986. "rusty-fork 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  1987. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1988. ]
  1989. [[package]]
  1990. name = "proptest-derive"
  1991. version = "0.1.2"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. dependencies = [
  1994. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  1995. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  1996. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  1997. ]
  1998. [[package]]
  1999. name = "prost"
  2000. version = "0.5.0"
  2001. source = "registry+https://github.com/rust-lang/crates.io-index"
  2002. dependencies = [
  2003. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2004. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2005. "prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2006. ]
  2007. [[package]]
  2008. name = "prost-build"
  2009. version = "0.5.0"
  2010. source = "registry+https://github.com/rust-lang/crates.io-index"
  2011. dependencies = [
  2012. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2013. "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2014. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2015. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2016. "multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2017. "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2018. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2019. "prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2020. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2021. "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2022. ]
  2023. [[package]]
  2024. name = "prost-derive"
  2025. version = "0.5.0"
  2026. source = "registry+https://github.com/rust-lang/crates.io-index"
  2027. dependencies = [
  2028. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2029. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2030. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  2031. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2032. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  2033. ]
  2034. [[package]]
  2035. name = "prost-types"
  2036. version = "0.5.0"
  2037. source = "registry+https://github.com/rust-lang/crates.io-index"
  2038. dependencies = [
  2039. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2040. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2041. ]
  2042. [[package]]
  2043. name = "publicsuffix"
  2044. version = "1.5.3"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. dependencies = [
  2047. "error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2048. "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2049. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2050. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2051. "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2052. ]
  2053. [[package]]
  2054. name = "quick-error"
  2055. version = "1.2.2"
  2056. source = "registry+https://github.com/rust-lang/crates.io-index"
  2057. [[package]]
  2058. name = "quote"
  2059. version = "0.3.15"
  2060. source = "registry+https://github.com/rust-lang/crates.io-index"
  2061. [[package]]
  2062. name = "quote"
  2063. version = "0.6.13"
  2064. source = "registry+https://github.com/rust-lang/crates.io-index"
  2065. dependencies = [
  2066. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  2067. ]
  2068. [[package]]
  2069. name = "quote"
  2070. version = "1.0.2"
  2071. source = "registry+https://github.com/rust-lang/crates.io-index"
  2072. dependencies = [
  2073. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2074. ]
  2075. [[package]]
  2076. name = "radix_trie"
  2077. version = "0.1.4"
  2078. source = "registry+https://github.com/rust-lang/crates.io-index"
  2079. dependencies = [
  2080. "endian-type 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2081. "nibble_vec 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2082. ]
  2083. [[package]]
  2084. name = "rand"
  2085. version = "0.4.6"
  2086. source = "registry+https://github.com/rust-lang/crates.io-index"
  2087. dependencies = [
  2088. "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2089. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2090. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2091. "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2092. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2093. ]
  2094. [[package]]
  2095. name = "rand"
  2096. version = "0.6.5"
  2097. source = "registry+https://github.com/rust-lang/crates.io-index"
  2098. dependencies = [
  2099. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2100. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2101. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2102. "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2103. "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2104. "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2105. "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2106. "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2107. "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2108. "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2109. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2110. ]
  2111. [[package]]
  2112. name = "rand"
  2113. version = "0.7.0"
  2114. source = "registry+https://github.com/rust-lang/crates.io-index"
  2115. dependencies = [
  2116. "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2117. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2118. "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2119. "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2120. "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2121. ]
  2122. [[package]]
  2123. name = "rand04"
  2124. version = "0.1.1"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. dependencies = [
  2127. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2128. ]
  2129. [[package]]
  2130. name = "rand04_compat"
  2131. version = "0.1.1"
  2132. source = "registry+https://github.com/rust-lang/crates.io-index"
  2133. dependencies = [
  2134. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2135. "rand04 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2136. ]
  2137. [[package]]
  2138. name = "rand_chacha"
  2139. version = "0.1.1"
  2140. source = "registry+https://github.com/rust-lang/crates.io-index"
  2141. dependencies = [
  2142. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2143. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2144. ]
  2145. [[package]]
  2146. name = "rand_chacha"
  2147. version = "0.2.1"
  2148. source = "registry+https://github.com/rust-lang/crates.io-index"
  2149. dependencies = [
  2150. "c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2151. "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2152. ]
  2153. [[package]]
  2154. name = "rand_core"
  2155. version = "0.3.1"
  2156. source = "registry+https://github.com/rust-lang/crates.io-index"
  2157. dependencies = [
  2158. "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2159. ]
  2160. [[package]]
  2161. name = "rand_core"
  2162. version = "0.4.0"
  2163. source = "registry+https://github.com/rust-lang/crates.io-index"
  2164. [[package]]
  2165. name = "rand_core"
  2166. version = "0.5.0"
  2167. source = "registry+https://github.com/rust-lang/crates.io-index"
  2168. dependencies = [
  2169. "getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2170. ]
  2171. [[package]]
  2172. name = "rand_hc"
  2173. version = "0.1.0"
  2174. source = "registry+https://github.com/rust-lang/crates.io-index"
  2175. dependencies = [
  2176. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2177. ]
  2178. [[package]]
  2179. name = "rand_hc"
  2180. version = "0.2.0"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. dependencies = [
  2183. "rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2184. ]
  2185. [[package]]
  2186. name = "rand_isaac"
  2187. version = "0.1.1"
  2188. source = "registry+https://github.com/rust-lang/crates.io-index"
  2189. dependencies = [
  2190. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2191. ]
  2192. [[package]]
  2193. name = "rand_jitter"
  2194. version = "0.1.4"
  2195. source = "registry+https://github.com/rust-lang/crates.io-index"
  2196. dependencies = [
  2197. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2198. "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2199. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2200. ]
  2201. [[package]]
  2202. name = "rand_os"
  2203. version = "0.1.3"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. dependencies = [
  2206. "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2207. "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2208. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2209. "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2210. "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2211. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2212. ]
  2213. [[package]]
  2214. name = "rand_pcg"
  2215. version = "0.1.2"
  2216. source = "registry+https://github.com/rust-lang/crates.io-index"
  2217. dependencies = [
  2218. "autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2219. "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2220. ]
  2221. [[package]]
  2222. name = "rand_xorshift"
  2223. version = "0.1.1"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. dependencies = [
  2226. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2227. ]
  2228. [[package]]
  2229. name = "rayon"
  2230. version = "1.2.0"
  2231. source = "registry+https://github.com/rust-lang/crates.io-index"
  2232. dependencies = [
  2233. "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2234. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2235. "rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2236. ]
  2237. [[package]]
  2238. name = "rayon-core"
  2239. version = "1.6.0"
  2240. source = "registry+https://github.com/rust-lang/crates.io-index"
  2241. dependencies = [
  2242. "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2243. "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2244. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2245. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2246. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2247. ]
  2248. [[package]]
  2249. name = "rdrand"
  2250. version = "0.4.0"
  2251. source = "registry+https://github.com/rust-lang/crates.io-index"
  2252. dependencies = [
  2253. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2254. ]
  2255. [[package]]
  2256. name = "redox_syscall"
  2257. version = "0.1.56"
  2258. source = "registry+https://github.com/rust-lang/crates.io-index"
  2259. [[package]]
  2260. name = "redox_users"
  2261. version = "0.3.0"
  2262. source = "registry+https://github.com/rust-lang/crates.io-index"
  2263. dependencies = [
  2264. "argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2265. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2266. "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2267. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  2268. ]
  2269. [[package]]
  2270. name = "regex"
  2271. version = "0.1.80"
  2272. source = "registry+https://github.com/rust-lang/crates.io-index"
  2273. dependencies = [
  2274. "aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2275. "memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2276. "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2277. "thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
  2278. "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2279. ]
  2280. [[package]]
  2281. name = "regex"
  2282. version = "1.3.1"
  2283. source = "registry+https://github.com/rust-lang/crates.io-index"
  2284. dependencies = [
  2285. "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2286. "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2287. "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2288. "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2289. ]
  2290. [[package]]
  2291. name = "regex-syntax"
  2292. version = "0.3.9"
  2293. source = "registry+https://github.com/rust-lang/crates.io-index"
  2294. [[package]]
  2295. name = "regex-syntax"
  2296. version = "0.6.12"
  2297. source = "registry+https://github.com/rust-lang/crates.io-index"
  2298. [[package]]
  2299. name = "remove_dir_all"
  2300. version = "0.5.2"
  2301. source = "registry+https://github.com/rust-lang/crates.io-index"
  2302. dependencies = [
  2303. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2304. ]
  2305. [[package]]
  2306. name = "rental"
  2307. version = "0.5.4"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. dependencies = [
  2310. "rental-impl 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2311. "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2312. ]
  2313. [[package]]
  2314. name = "rental-impl"
  2315. version = "0.5.4"
  2316. source = "registry+https://github.com/rust-lang/crates.io-index"
  2317. dependencies = [
  2318. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  2319. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2320. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  2321. ]
  2322. [[package]]
  2323. name = "reqwest"
  2324. version = "0.9.22"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. dependencies = [
  2327. "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2328. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2329. "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2330. "cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2331. "encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)",
  2332. "flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2333. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  2334. "http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
  2335. "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
  2336. "hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2337. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2338. "mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2339. "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2340. "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2341. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2342. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2343. "serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2344. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  2345. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  2346. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2347. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2348. "tokio-rustls 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2349. "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  2350. "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2351. "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2352. "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2353. "webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2354. "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2355. ]
  2356. [[package]]
  2357. name = "rgb"
  2358. version = "0.8.13"
  2359. source = "registry+https://github.com/rust-lang/crates.io-index"
  2360. [[package]]
  2361. name = "ring"
  2362. version = "0.16.7"
  2363. source = "registry+https://github.com/rust-lang/crates.io-index"
  2364. dependencies = [
  2365. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  2366. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2367. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2368. "spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2369. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2370. "web-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)",
  2371. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2372. ]
  2373. [[package]]
  2374. name = "rocksdb"
  2375. version = "0.12.4"
  2376. source = "registry+https://github.com/rust-lang/crates.io-index"
  2377. dependencies = [
  2378. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2379. "librocksdb-sys 6.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2380. ]
  2381. [[package]]
  2382. name = "rpassword"
  2383. version = "4.0.1"
  2384. source = "registry+https://github.com/rust-lang/crates.io-index"
  2385. dependencies = [
  2386. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2387. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2388. ]
  2389. [[package]]
  2390. name = "rustc-demangle"
  2391. version = "0.1.15"
  2392. source = "registry+https://github.com/rust-lang/crates.io-index"
  2393. [[package]]
  2394. name = "rustc_version"
  2395. version = "0.2.3"
  2396. source = "registry+https://github.com/rust-lang/crates.io-index"
  2397. dependencies = [
  2398. "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2399. ]
  2400. [[package]]
  2401. name = "rustls"
  2402. version = "0.16.0"
  2403. source = "registry+https://github.com/rust-lang/crates.io-index"
  2404. dependencies = [
  2405. "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2406. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2407. "ring 0.16.7 (registry+https://github.com/rust-lang/crates.io-index)",
  2408. "sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2409. "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2410. ]
  2411. [[package]]
  2412. name = "rusty-fork"
  2413. version = "0.2.2"
  2414. source = "registry+https://github.com/rust-lang/crates.io-index"
  2415. dependencies = [
  2416. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2417. "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2418. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2419. "wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2420. ]
  2421. [[package]]
  2422. name = "ryu"
  2423. version = "1.0.0"
  2424. source = "registry+https://github.com/rust-lang/crates.io-index"
  2425. [[package]]
  2426. name = "same-file"
  2427. version = "1.0.5"
  2428. source = "registry+https://github.com/rust-lang/crates.io-index"
  2429. dependencies = [
  2430. "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2431. ]
  2432. [[package]]
  2433. name = "scoped_threadpool"
  2434. version = "0.1.9"
  2435. source = "registry+https://github.com/rust-lang/crates.io-index"
  2436. [[package]]
  2437. name = "scopeguard"
  2438. version = "0.3.3"
  2439. source = "registry+https://github.com/rust-lang/crates.io-index"
  2440. [[package]]
  2441. name = "scopeguard"
  2442. version = "1.0.0"
  2443. source = "registry+https://github.com/rust-lang/crates.io-index"
  2444. [[package]]
  2445. name = "sct"
  2446. version = "0.6.0"
  2447. source = "registry+https://github.com/rust-lang/crates.io-index"
  2448. dependencies = [
  2449. "ring 0.16.7 (registry+https://github.com/rust-lang/crates.io-index)",
  2450. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2451. ]
  2452. [[package]]
  2453. name = "semver"
  2454. version = "0.9.0"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. dependencies = [
  2457. "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2458. ]
  2459. [[package]]
  2460. name = "semver-parser"
  2461. version = "0.7.0"
  2462. source = "registry+https://github.com/rust-lang/crates.io-index"
  2463. [[package]]
  2464. name = "serde"
  2465. version = "1.0.102"
  2466. source = "registry+https://github.com/rust-lang/crates.io-index"
  2467. dependencies = [
  2468. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2469. ]
  2470. [[package]]
  2471. name = "serde_bytes"
  2472. version = "0.11.2"
  2473. source = "registry+https://github.com/rust-lang/crates.io-index"
  2474. dependencies = [
  2475. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2476. ]
  2477. [[package]]
  2478. name = "serde_derive"
  2479. version = "1.0.102"
  2480. source = "registry+https://github.com/rust-lang/crates.io-index"
  2481. dependencies = [
  2482. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2483. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2484. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2485. ]
  2486. [[package]]
  2487. name = "serde_json"
  2488. version = "1.0.41"
  2489. source = "registry+https://github.com/rust-lang/crates.io-index"
  2490. dependencies = [
  2491. "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2492. "ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2493. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2494. ]
  2495. [[package]]
  2496. name = "serde_urlencoded"
  2497. version = "0.5.5"
  2498. source = "registry+https://github.com/rust-lang/crates.io-index"
  2499. dependencies = [
  2500. "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2501. "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2502. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2503. "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2504. ]
  2505. [[package]]
  2506. name = "serde_yaml"
  2507. version = "0.8.11"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. dependencies = [
  2510. "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  2511. "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2512. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2513. "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2514. ]
  2515. [[package]]
  2516. name = "serial_test"
  2517. version = "0.2.0"
  2518. source = "registry+https://github.com/rust-lang/crates.io-index"
  2519. dependencies = [
  2520. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2521. ]
  2522. [[package]]
  2523. name = "serial_test_derive"
  2524. version = "0.2.0"
  2525. source = "registry+https://github.com/rust-lang/crates.io-index"
  2526. dependencies = [
  2527. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2528. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  2529. ]
  2530. [[package]]
  2531. name = "sha-1"
  2532. version = "0.8.1"
  2533. source = "registry+https://github.com/rust-lang/crates.io-index"
  2534. dependencies = [
  2535. "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2536. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2537. "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2538. "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2539. ]
  2540. [[package]]
  2541. name = "sha2"
  2542. version = "0.7.1"
  2543. source = "registry+https://github.com/rust-lang/crates.io-index"
  2544. dependencies = [
  2545. "block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2546. "byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2547. "digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2548. "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2549. ]
  2550. [[package]]
  2551. name = "sha2"
  2552. version = "0.8.0"
  2553. source = "registry+https://github.com/rust-lang/crates.io-index"
  2554. dependencies = [
  2555. "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2556. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2557. "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2558. "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2559. ]
  2560. [[package]]
  2561. name = "sha3"
  2562. version = "0.8.2"
  2563. source = "registry+https://github.com/rust-lang/crates.io-index"
  2564. dependencies = [
  2565. "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2566. "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2567. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2568. "keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2569. "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2570. ]
  2571. [[package]]
  2572. name = "shlex"
  2573. version = "0.1.1"
  2574. source = "registry+https://github.com/rust-lang/crates.io-index"
  2575. [[package]]
  2576. name = "siphasher"
  2577. version = "0.2.3"
  2578. source = "registry+https://github.com/rust-lang/crates.io-index"
  2579. [[package]]
  2580. name = "slab"
  2581. version = "0.4.2"
  2582. source = "registry+https://github.com/rust-lang/crates.io-index"
  2583. [[package]]
  2584. name = "slog"
  2585. version = "2.5.2"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. [[package]]
  2588. name = "slog-async"
  2589. version = "2.3.0"
  2590. source = "registry+https://github.com/rust-lang/crates.io-index"
  2591. dependencies = [
  2592. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2593. "take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2594. "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2595. ]
  2596. [[package]]
  2597. name = "slog-envlogger"
  2598. version = "2.1.0"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. dependencies = [
  2601. "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2602. "regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)",
  2603. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2604. "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2605. "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2606. "slog-stdlog 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2607. "slog-term 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2608. ]
  2609. [[package]]
  2610. name = "slog-scope"
  2611. version = "4.1.2"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. dependencies = [
  2614. "arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2615. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2616. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2617. ]
  2618. [[package]]
  2619. name = "slog-stdlog"
  2620. version = "3.0.5"
  2621. source = "registry+https://github.com/rust-lang/crates.io-index"
  2622. dependencies = [
  2623. "crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2624. "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2625. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2626. "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2627. ]
  2628. [[package]]
  2629. name = "slog-term"
  2630. version = "2.4.1"
  2631. source = "registry+https://github.com/rust-lang/crates.io-index"
  2632. dependencies = [
  2633. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  2634. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2635. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2636. "term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2637. "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2638. ]
  2639. [[package]]
  2640. name = "smallvec"
  2641. version = "0.6.10"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. [[package]]
  2644. name = "socket2"
  2645. version = "0.3.11"
  2646. source = "registry+https://github.com/rust-lang/crates.io-index"
  2647. dependencies = [
  2648. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2649. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2650. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  2651. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2652. ]
  2653. [[package]]
  2654. name = "solana-archiver"
  2655. version = "0.21.0"
  2656. dependencies = [
  2657. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2658. "console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2659. "solana-clap-utils 0.21.0",
  2660. "solana-core 0.21.0",
  2661. "solana-logger 0.21.0",
  2662. "solana-metrics 0.21.0",
  2663. "solana-net-utils 0.21.0",
  2664. "solana-sdk 0.21.0",
  2665. ]
  2666. [[package]]
  2667. name = "solana-banking-bench"
  2668. version = "0.21.0"
  2669. dependencies = [
  2670. "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2671. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2672. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2673. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2674. "solana-core 0.21.0",
  2675. "solana-ledger 0.21.0",
  2676. "solana-logger 0.21.0",
  2677. "solana-measure 0.21.0",
  2678. "solana-runtime 0.21.0",
  2679. "solana-sdk 0.21.0",
  2680. ]
  2681. [[package]]
  2682. name = "solana-bench-exchange"
  2683. version = "0.21.0"
  2684. dependencies = [
  2685. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2686. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2687. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2688. "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2689. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2690. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2691. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2692. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2693. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2694. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2695. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2696. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2697. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2698. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2699. "solana-client 0.21.0",
  2700. "solana-core 0.21.0",
  2701. "solana-drone 0.21.0",
  2702. "solana-exchange-api 0.21.0",
  2703. "solana-exchange-program 0.21.0",
  2704. "solana-genesis 0.21.0",
  2705. "solana-logger 0.21.0",
  2706. "solana-metrics 0.21.0",
  2707. "solana-net-utils 0.21.0",
  2708. "solana-runtime 0.21.0",
  2709. "solana-sdk 0.21.0",
  2710. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2711. "ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2712. ]
  2713. [[package]]
  2714. name = "solana-bench-streamer"
  2715. version = "0.21.0"
  2716. dependencies = [
  2717. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2718. "solana-core 0.21.0",
  2719. "solana-logger 0.21.0",
  2720. "solana-net-utils 0.21.0",
  2721. ]
  2722. [[package]]
  2723. name = "solana-bench-tps"
  2724. version = "0.21.0"
  2725. dependencies = [
  2726. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2727. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2728. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2729. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2730. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2731. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2732. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2733. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2734. "serial_test 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2735. "serial_test_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2736. "solana-client 0.21.0",
  2737. "solana-core 0.21.0",
  2738. "solana-drone 0.21.0",
  2739. "solana-genesis 0.21.0",
  2740. "solana-librapay-api 0.21.0",
  2741. "solana-logger 0.21.0",
  2742. "solana-measure 0.21.0",
  2743. "solana-metrics 0.21.0",
  2744. "solana-move-loader-api 0.21.0",
  2745. "solana-move-loader-program 0.21.0",
  2746. "solana-net-utils 0.21.0",
  2747. "solana-runtime 0.21.0",
  2748. "solana-sdk 0.21.0",
  2749. ]
  2750. [[package]]
  2751. name = "solana-bitcoin-spv-program"
  2752. version = "0.21.0"
  2753. dependencies = [
  2754. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2755. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2756. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2757. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2758. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2759. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2760. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2761. "solana-btc-spv-api 0.21.0",
  2762. "solana-sdk 0.21.0",
  2763. ]
  2764. [[package]]
  2765. name = "solana-bpf-loader-api"
  2766. version = "0.21.0"
  2767. dependencies = [
  2768. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2769. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2770. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2771. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2772. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2773. "solana-logger 0.21.0",
  2774. "solana-sdk 0.21.0",
  2775. "solana_rbpf 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)",
  2776. ]
  2777. [[package]]
  2778. name = "solana-bpf-loader-program"
  2779. version = "0.21.0"
  2780. dependencies = [
  2781. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2782. "solana-bpf-loader-api 0.21.0",
  2783. "solana-logger 0.21.0",
  2784. "solana-sdk 0.21.0",
  2785. ]
  2786. [[package]]
  2787. name = "solana-btc-spv-api"
  2788. version = "0.21.0"
  2789. dependencies = [
  2790. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2791. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2792. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2793. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2794. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2795. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2796. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2797. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2798. "solana-sdk 0.21.0",
  2799. ]
  2800. [[package]]
  2801. name = "solana-budget-api"
  2802. version = "0.21.0"
  2803. dependencies = [
  2804. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2805. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2806. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2807. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2808. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2809. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2810. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2811. "solana-runtime 0.21.0",
  2812. "solana-sdk 0.21.0",
  2813. ]
  2814. [[package]]
  2815. name = "solana-budget-program"
  2816. version = "0.21.0"
  2817. dependencies = [
  2818. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2819. "solana-budget-api 0.21.0",
  2820. "solana-logger 0.21.0",
  2821. "solana-sdk 0.21.0",
  2822. ]
  2823. [[package]]
  2824. name = "solana-chacha-sys"
  2825. version = "0.21.0"
  2826. dependencies = [
  2827. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  2828. ]
  2829. [[package]]
  2830. name = "solana-clap-utils"
  2831. version = "0.21.0"
  2832. dependencies = [
  2833. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2834. "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2835. "solana-sdk 0.21.0",
  2836. "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2837. ]
  2838. [[package]]
  2839. name = "solana-cli"
  2840. version = "0.21.0"
  2841. dependencies = [
  2842. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2843. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2844. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2845. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2846. "console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2847. "criterion-stats 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2848. "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2849. "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2850. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2851. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2852. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2853. "pretty-hex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2854. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  2855. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2856. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2857. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2858. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  2859. "solana-budget-api 0.21.0",
  2860. "solana-budget-program 0.21.0",
  2861. "solana-clap-utils 0.21.0",
  2862. "solana-client 0.21.0",
  2863. "solana-config-api 0.21.0",
  2864. "solana-core 0.21.0",
  2865. "solana-drone 0.21.0",
  2866. "solana-logger 0.21.0",
  2867. "solana-net-utils 0.21.0",
  2868. "solana-runtime 0.21.0",
  2869. "solana-sdk 0.21.0",
  2870. "solana-stake-api 0.21.0",
  2871. "solana-storage-api 0.21.0",
  2872. "solana-vote-api 0.21.0",
  2873. "solana-vote-signer 0.21.0",
  2874. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2875. "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2876. ]
  2877. [[package]]
  2878. name = "solana-client"
  2879. version = "0.21.0"
  2880. dependencies = [
  2881. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2882. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2883. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2884. "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2885. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2886. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2887. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2888. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  2889. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2890. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2891. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2892. "solana-logger 0.21.0",
  2893. "solana-net-utils 0.21.0",
  2894. "solana-sdk 0.21.0",
  2895. ]
  2896. [[package]]
  2897. name = "solana-config-api"
  2898. version = "0.21.0"
  2899. dependencies = [
  2900. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2901. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2902. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2903. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2904. "solana-sdk 0.21.0",
  2905. ]
  2906. [[package]]
  2907. name = "solana-config-program"
  2908. version = "0.21.0"
  2909. dependencies = [
  2910. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2911. "solana-config-api 0.21.0",
  2912. "solana-logger 0.21.0",
  2913. "solana-sdk 0.21.0",
  2914. ]
  2915. [[package]]
  2916. name = "solana-config-tests"
  2917. version = "0.21.0"
  2918. dependencies = [
  2919. "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2920. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2921. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2922. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2923. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2924. "solana-config-api 0.21.0",
  2925. "solana-config-program 0.21.0",
  2926. "solana-logger 0.21.0",
  2927. "solana-runtime 0.21.0",
  2928. "solana-sdk 0.21.0",
  2929. ]
  2930. [[package]]
  2931. name = "solana-core"
  2932. version = "0.21.0"
  2933. dependencies = [
  2934. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2935. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2936. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  2937. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2938. "core_affinity 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2939. "crc 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2940. "crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
  2941. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2942. "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2943. "hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2944. "indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2945. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2946. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2947. "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2948. "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2949. "jsonrpc-pubsub 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2950. "jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  2951. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2952. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  2953. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2954. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2955. "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2956. "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2957. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2958. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  2959. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2960. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2961. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  2962. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2963. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  2964. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  2965. "serial_test 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2966. "serial_test_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2967. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2968. "solana-budget-api 0.21.0",
  2969. "solana-budget-program 0.21.0",
  2970. "solana-chacha-sys 0.21.0",
  2971. "solana-client 0.21.0",
  2972. "solana-drone 0.21.0",
  2973. "solana-ledger 0.21.0",
  2974. "solana-logger 0.21.0",
  2975. "solana-measure 0.21.0",
  2976. "solana-merkle-tree 0.21.0",
  2977. "solana-metrics 0.21.0",
  2978. "solana-net-utils 0.21.0",
  2979. "solana-perf 0.21.0",
  2980. "solana-rayon-threadlimit 0.21.0",
  2981. "solana-reed-solomon-erasure 4.0.1-3 (registry+https://github.com/rust-lang/crates.io-index)",
  2982. "solana-runtime 0.21.0",
  2983. "solana-sdk 0.21.0",
  2984. "solana-stake-api 0.21.0",
  2985. "solana-storage-api 0.21.0",
  2986. "solana-storage-program 0.21.0",
  2987. "solana-vote-api 0.21.0",
  2988. "solana-vote-signer 0.21.0",
  2989. "symlink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2990. "sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  2991. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2992. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  2993. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  2994. "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  2995. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  2996. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  2997. ]
  2998. [[package]]
  2999. name = "solana-crate-features"
  3000. version = "0.21.0"
  3001. dependencies = [
  3002. "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
  3003. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3004. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  3005. "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3006. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3007. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3008. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3009. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3010. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3011. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3012. "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3013. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3014. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3015. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  3016. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3017. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3018. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3019. ]
  3020. [[package]]
  3021. name = "solana-drone"
  3022. version = "0.21.0"
  3023. dependencies = [
  3024. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3025. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3026. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3027. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3028. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3029. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3030. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3031. "solana-logger 0.21.0",
  3032. "solana-metrics 0.21.0",
  3033. "solana-sdk 0.21.0",
  3034. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3035. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3036. ]
  3037. [[package]]
  3038. name = "solana-exchange-api"
  3039. version = "0.21.0"
  3040. dependencies = [
  3041. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3042. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3043. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3044. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3045. "solana-logger 0.21.0",
  3046. "solana-metrics 0.21.0",
  3047. "solana-runtime 0.21.0",
  3048. "solana-sdk 0.21.0",
  3049. ]
  3050. [[package]]
  3051. name = "solana-exchange-program"
  3052. version = "0.21.0"
  3053. dependencies = [
  3054. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3055. "solana-exchange-api 0.21.0",
  3056. "solana-logger 0.21.0",
  3057. "solana-sdk 0.21.0",
  3058. ]
  3059. [[package]]
  3060. name = "solana-failure-program"
  3061. version = "0.21.0"
  3062. dependencies = [
  3063. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3064. "solana-runtime 0.21.0",
  3065. "solana-sdk 0.21.0",
  3066. ]
  3067. [[package]]
  3068. name = "solana-fixed-buf"
  3069. version = "0.21.0"
  3070. dependencies = [
  3071. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3072. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3073. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3074. ]
  3075. [[package]]
  3076. name = "solana-genesis"
  3077. version = "0.21.0"
  3078. dependencies = [
  3079. "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3080. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3081. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3082. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3083. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3084. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  3085. "solana-genesis-programs 0.21.0",
  3086. "solana-ledger 0.21.0",
  3087. "solana-sdk 0.21.0",
  3088. "solana-stake-api 0.21.0",
  3089. "solana-storage-api 0.21.0",
  3090. "solana-vote-api 0.21.0",
  3091. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3092. ]
  3093. [[package]]
  3094. name = "solana-genesis-programs"
  3095. version = "0.21.0"
  3096. dependencies = [
  3097. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3098. "solana-bpf-loader-api 0.21.0",
  3099. "solana-bpf-loader-program 0.21.0",
  3100. "solana-budget-api 0.21.0",
  3101. "solana-budget-program 0.21.0",
  3102. "solana-config-api 0.21.0",
  3103. "solana-config-program 0.21.0",
  3104. "solana-exchange-api 0.21.0",
  3105. "solana-exchange-program 0.21.0",
  3106. "solana-runtime 0.21.0",
  3107. "solana-sdk 0.21.0",
  3108. "solana-stake-api 0.21.0",
  3109. "solana-stake-program 0.21.0",
  3110. "solana-storage-api 0.21.0",
  3111. "solana-storage-program 0.21.0",
  3112. "solana-vest-api 0.21.0",
  3113. "solana-vest-program 0.21.0",
  3114. "solana-vote-api 0.21.0",
  3115. "solana-vote-program 0.21.0",
  3116. ]
  3117. [[package]]
  3118. name = "solana-gossip"
  3119. version = "0.21.0"
  3120. dependencies = [
  3121. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3122. "solana-clap-utils 0.21.0",
  3123. "solana-client 0.21.0",
  3124. "solana-core 0.21.0",
  3125. "solana-logger 0.21.0",
  3126. "solana-net-utils 0.21.0",
  3127. "solana-sdk 0.21.0",
  3128. ]
  3129. [[package]]
  3130. name = "solana-install"
  3131. version = "0.21.0"
  3132. dependencies = [
  3133. "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
  3134. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3135. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3136. "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3137. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3138. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3139. "console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3140. "ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3141. "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3142. "indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3143. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3144. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3145. "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3146. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3147. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3148. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3149. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  3150. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3151. "solana-clap-utils 0.21.0",
  3152. "solana-client 0.21.0",
  3153. "solana-config-api 0.21.0",
  3154. "solana-logger 0.21.0",
  3155. "solana-sdk 0.21.0",
  3156. "tar 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)",
  3157. "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
  3158. "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3159. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3160. "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3161. ]
  3162. [[package]]
  3163. name = "solana-keygen"
  3164. version = "0.21.0"
  3165. dependencies = [
  3166. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3167. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3168. "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3169. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3170. "rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3171. "solana-sdk 0.21.0",
  3172. "tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3173. ]
  3174. [[package]]
  3175. name = "solana-ledger"
  3176. version = "0.21.0"
  3177. dependencies = [
  3178. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3179. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3180. "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3181. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3182. "dir-diff 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3183. "dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3184. "dlopen_derive 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3185. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3186. "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3187. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3188. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3189. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3190. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3191. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3192. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3193. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3194. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3195. "rocksdb 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3196. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3197. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3198. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3199. "solana-budget-api 0.21.0",
  3200. "solana-genesis-programs 0.21.0",
  3201. "solana-logger 0.21.0",
  3202. "solana-measure 0.21.0",
  3203. "solana-merkle-tree 0.21.0",
  3204. "solana-metrics 0.21.0",
  3205. "solana-perf 0.21.0",
  3206. "solana-rayon-threadlimit 0.21.0",
  3207. "solana-reed-solomon-erasure 4.0.1-3 (registry+https://github.com/rust-lang/crates.io-index)",
  3208. "solana-runtime 0.21.0",
  3209. "solana-sdk 0.21.0",
  3210. "solana-stake-api 0.21.0",
  3211. "solana-vote-api 0.21.0",
  3212. "sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3213. "tar 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)",
  3214. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3215. ]
  3216. [[package]]
  3217. name = "solana-ledger-tool"
  3218. version = "0.21.0"
  3219. dependencies = [
  3220. "assert_cmd 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3221. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3222. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3223. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3224. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3225. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3226. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  3227. "solana-ledger 0.21.0",
  3228. "solana-logger 0.21.0",
  3229. "solana-runtime 0.21.0",
  3230. "solana-sdk 0.21.0",
  3231. "solana-vote-api 0.21.0",
  3232. ]
  3233. [[package]]
  3234. name = "solana-librapay-api"
  3235. version = "0.21.0"
  3236. dependencies = [
  3237. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3238. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3239. "solana-logger 0.21.0",
  3240. "solana-move-loader-api 0.21.0",
  3241. "solana-runtime 0.21.0",
  3242. "solana-sdk 0.21.0",
  3243. "solana_libra_language_e2e_tests 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3244. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3245. ]
  3246. [[package]]
  3247. name = "solana-local-cluster"
  3248. version = "0.21.0"
  3249. dependencies = [
  3250. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3251. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3252. "serial_test 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3253. "serial_test_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3254. "solana-bench-exchange 0.21.0",
  3255. "solana-bench-tps 0.21.0",
  3256. "solana-client 0.21.0",
  3257. "solana-config-api 0.21.0",
  3258. "solana-core 0.21.0",
  3259. "solana-drone 0.21.0",
  3260. "solana-exchange-api 0.21.0",
  3261. "solana-exchange-program 0.21.0",
  3262. "solana-genesis-programs 0.21.0",
  3263. "solana-ledger 0.21.0",
  3264. "solana-logger 0.21.0",
  3265. "solana-move-loader-api 0.21.0",
  3266. "solana-move-loader-program 0.21.0",
  3267. "solana-rayon-threadlimit 0.21.0",
  3268. "solana-runtime 0.21.0",
  3269. "solana-sdk 0.21.0",
  3270. "solana-stake-api 0.21.0",
  3271. "solana-storage-api 0.21.0",
  3272. "solana-storage-program 0.21.0",
  3273. "solana-vest-api 0.21.0",
  3274. "solana-vote-api 0.21.0",
  3275. "symlink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3276. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3277. ]
  3278. [[package]]
  3279. name = "solana-logger"
  3280. version = "0.21.0"
  3281. dependencies = [
  3282. "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3283. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3284. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3285. ]
  3286. [[package]]
  3287. name = "solana-measure"
  3288. version = "0.21.0"
  3289. dependencies = [
  3290. "solana-sdk 0.21.0",
  3291. ]
  3292. [[package]]
  3293. name = "solana-merkle-tree"
  3294. version = "0.21.0"
  3295. dependencies = [
  3296. "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3297. "solana-sdk 0.21.0",
  3298. ]
  3299. [[package]]
  3300. name = "solana-metrics"
  3301. version = "0.21.0"
  3302. dependencies = [
  3303. "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3304. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3305. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3306. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3307. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3308. "serial_test 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3309. "serial_test_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3310. "solana-sdk 0.21.0",
  3311. "sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3312. ]
  3313. [[package]]
  3314. name = "solana-move-loader-api"
  3315. version = "0.21.0"
  3316. dependencies = [
  3317. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3318. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3319. "indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3320. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3321. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3322. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3323. "serde_bytes 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3324. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3325. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3326. "solana-logger 0.21.0",
  3327. "solana-sdk 0.21.0",
  3328. "solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3329. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3330. "solana_libra_compiler 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3331. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3332. "solana_libra_language_e2e_tests 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3333. "solana_libra_state_view 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3334. "solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3335. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3336. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3337. "solana_libra_vm_cache_map 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3338. "solana_libra_vm_runtime 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3339. "solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3340. ]
  3341. [[package]]
  3342. name = "solana-move-loader-program"
  3343. version = "0.21.0"
  3344. dependencies = [
  3345. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3346. "solana-logger 0.21.0",
  3347. "solana-move-loader-api 0.21.0",
  3348. "solana-sdk 0.21.0",
  3349. ]
  3350. [[package]]
  3351. name = "solana-net-utils"
  3352. version = "0.21.0"
  3353. dependencies = [
  3354. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3355. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3356. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3357. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3358. "nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3359. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3360. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3361. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3362. "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
  3363. "solana-logger 0.21.0",
  3364. "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3365. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3366. ]
  3367. [[package]]
  3368. name = "solana-network-tool"
  3369. version = "0.1.0"
  3370. dependencies = [
  3371. "byte-unit 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3372. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3373. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3374. "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3375. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3376. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3377. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3378. "solana-logger 0.21.0",
  3379. ]
  3380. [[package]]
  3381. name = "solana-noop-program"
  3382. version = "0.21.0"
  3383. dependencies = [
  3384. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3385. "solana-logger 0.21.0",
  3386. "solana-sdk 0.21.0",
  3387. ]
  3388. [[package]]
  3389. name = "solana-perf"
  3390. version = "0.21.0"
  3391. dependencies = [
  3392. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3393. "dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3394. "dlopen_derive 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3395. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3396. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3397. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3398. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3399. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3400. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3401. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3402. "solana-budget-api 0.21.0",
  3403. "solana-logger 0.21.0",
  3404. "solana-metrics 0.21.0",
  3405. "solana-rayon-threadlimit 0.21.0",
  3406. "solana-sdk 0.21.0",
  3407. ]
  3408. [[package]]
  3409. name = "solana-rayon-threadlimit"
  3410. version = "0.21.0"
  3411. dependencies = [
  3412. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3413. "sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3414. ]
  3415. [[package]]
  3416. name = "solana-reed-solomon-erasure"
  3417. version = "4.0.1-3"
  3418. source = "registry+https://github.com/rust-lang/crates.io-index"
  3419. dependencies = [
  3420. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  3421. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3422. "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  3423. ]
  3424. [[package]]
  3425. name = "solana-runtime"
  3426. version = "0.21.0"
  3427. dependencies = [
  3428. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3429. "bv 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3430. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3431. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  3432. "fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3433. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3434. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3435. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3436. "libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3437. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3438. "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3439. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3440. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3441. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3442. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3443. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3444. "solana-bpf-loader-api 0.21.0",
  3445. "solana-bpf-loader-program 0.21.0",
  3446. "solana-logger 0.21.0",
  3447. "solana-measure 0.21.0",
  3448. "solana-metrics 0.21.0",
  3449. "solana-noop-program 0.21.0",
  3450. "solana-rayon-threadlimit 0.21.0",
  3451. "solana-sdk 0.21.0",
  3452. "solana-stake-api 0.21.0",
  3453. "solana-stake-program 0.21.0",
  3454. "solana-storage-api 0.21.0",
  3455. "solana-vote-api 0.21.0",
  3456. "solana-vote-program 0.21.0",
  3457. "sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3458. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3459. ]
  3460. [[package]]
  3461. name = "solana-sdk"
  3462. version = "0.21.0"
  3463. dependencies = [
  3464. "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3465. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3466. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3467. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3468. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3469. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3470. "generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3471. "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3472. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3473. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3474. "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3475. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3476. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3477. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3478. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3479. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3480. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3481. "serde_bytes 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3482. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3483. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3484. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3485. "solana-crate-features 0.21.0",
  3486. "solana-logger 0.21.0",
  3487. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3488. ]
  3489. [[package]]
  3490. name = "solana-sdk-c"
  3491. version = "0.21.0"
  3492. dependencies = [
  3493. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3494. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3495. "cbindgen 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3496. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3497. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  3498. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3499. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3500. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3501. "solana-sdk 0.21.0",
  3502. ]
  3503. [[package]]
  3504. name = "solana-stake-api"
  3505. version = "0.21.0"
  3506. dependencies = [
  3507. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3508. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3509. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3510. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3511. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3512. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3513. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3514. "solana-config-api 0.21.0",
  3515. "solana-logger 0.21.0",
  3516. "solana-metrics 0.21.0",
  3517. "solana-sdk 0.21.0",
  3518. "solana-vote-api 0.21.0",
  3519. ]
  3520. [[package]]
  3521. name = "solana-stake-program"
  3522. version = "0.21.0"
  3523. dependencies = [
  3524. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3525. "solana-logger 0.21.0",
  3526. "solana-sdk 0.21.0",
  3527. "solana-stake-api 0.21.0",
  3528. ]
  3529. [[package]]
  3530. name = "solana-stake-tests"
  3531. version = "0.21.0"
  3532. dependencies = [
  3533. "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3534. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3535. "solana-logger 0.21.0",
  3536. "solana-runtime 0.21.0",
  3537. "solana-sdk 0.21.0",
  3538. "solana-stake-api 0.21.0",
  3539. "solana-stake-program 0.21.0",
  3540. "solana-vote-api 0.21.0",
  3541. ]
  3542. [[package]]
  3543. name = "solana-storage-api"
  3544. version = "0.21.0"
  3545. dependencies = [
  3546. "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3547. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3548. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3549. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3550. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3551. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3552. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3553. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3554. "solana-logger 0.21.0",
  3555. "solana-sdk 0.21.0",
  3556. ]
  3557. [[package]]
  3558. name = "solana-storage-program"
  3559. version = "0.21.0"
  3560. dependencies = [
  3561. "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3562. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3563. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3564. "solana-logger 0.21.0",
  3565. "solana-runtime 0.21.0",
  3566. "solana-sdk 0.21.0",
  3567. "solana-storage-api 0.21.0",
  3568. ]
  3569. [[package]]
  3570. name = "solana-upload-perf"
  3571. version = "0.21.0"
  3572. dependencies = [
  3573. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3574. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3575. "solana-metrics 0.21.0",
  3576. ]
  3577. [[package]]
  3578. name = "solana-validator"
  3579. version = "0.21.0"
  3580. dependencies = [
  3581. "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3582. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3583. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3584. "console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3585. "gag 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
  3586. "indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3587. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3588. "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)",
  3589. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3590. "solana-clap-utils 0.21.0",
  3591. "solana-client 0.21.0",
  3592. "solana-core 0.21.0",
  3593. "solana-drone 0.21.0",
  3594. "solana-ledger 0.21.0",
  3595. "solana-logger 0.21.0",
  3596. "solana-metrics 0.21.0",
  3597. "solana-net-utils 0.21.0",
  3598. "solana-perf 0.21.0",
  3599. "solana-runtime 0.21.0",
  3600. "solana-sdk 0.21.0",
  3601. "solana-vote-api 0.21.0",
  3602. "solana-vote-signer 0.21.0",
  3603. "tar 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)",
  3604. "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3605. ]
  3606. [[package]]
  3607. name = "solana-vest-api"
  3608. version = "0.21.0"
  3609. dependencies = [
  3610. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3611. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3612. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3613. "num-derive 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3614. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3615. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3616. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3617. "solana-config-api 0.21.0",
  3618. "solana-runtime 0.21.0",
  3619. "solana-sdk 0.21.0",
  3620. ]
  3621. [[package]]
  3622. name = "solana-vest-program"
  3623. version = "0.21.0"
  3624. dependencies = [
  3625. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3626. "solana-logger 0.21.0",
  3627. "solana-sdk 0.21.0",
  3628. "solana-vest-api 0.21.0",
  3629. ]
  3630. [[package]]
  3631. name = "solana-vote-api"
  3632. version = "0.21.0"
  3633. dependencies = [
  3634. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3635. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3636. "num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3637. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3638. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3639. "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3640. "solana-logger 0.21.0",
  3641. "solana-metrics 0.21.0",
  3642. "solana-sdk 0.21.0",
  3643. ]
  3644. [[package]]
  3645. name = "solana-vote-program"
  3646. version = "0.21.0"
  3647. dependencies = [
  3648. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3649. "solana-logger 0.21.0",
  3650. "solana-sdk 0.21.0",
  3651. "solana-vote-api 0.21.0",
  3652. ]
  3653. [[package]]
  3654. name = "solana-vote-signer"
  3655. version = "0.21.0"
  3656. dependencies = [
  3657. "bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3658. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3659. "jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3660. "jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3661. "jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3662. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3663. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3664. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3665. "solana-metrics 0.21.0",
  3666. "solana-sdk 0.21.0",
  3667. ]
  3668. [[package]]
  3669. name = "solana_libra_bytecode_verifier"
  3670. version = "0.0.1-sol4"
  3671. source = "registry+https://github.com/rust-lang/crates.io-index"
  3672. dependencies = [
  3673. "mirai-annotations 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3674. "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)",
  3675. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3676. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3677. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3678. "solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3679. ]
  3680. [[package]]
  3681. name = "solana_libra_canonical_serialization"
  3682. version = "0.0.1-sol4"
  3683. source = "registry+https://github.com/rust-lang/crates.io-index"
  3684. dependencies = [
  3685. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3686. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3687. ]
  3688. [[package]]
  3689. name = "solana_libra_compiler"
  3690. version = "0.0.1-sol4"
  3691. source = "registry+https://github.com/rust-lang/crates.io-index"
  3692. dependencies = [
  3693. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3694. "solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3695. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3696. "solana_libra_ir_to_bytecode 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3697. "solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3698. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3699. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3700. "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3701. ]
  3702. [[package]]
  3703. name = "solana_libra_config"
  3704. version = "0.0.1-sol4"
  3705. source = "registry+https://github.com/rust-lang/crates.io-index"
  3706. dependencies = [
  3707. "get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3708. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3709. "mirai-annotations 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3710. "parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3711. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3712. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3713. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3714. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3715. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3716. "solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3717. "solana_libra_tools 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3718. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3719. "toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3720. ]
  3721. [[package]]
  3722. name = "solana_libra_crypto"
  3723. version = "0.0.1-sol4"
  3724. source = "registry+https://github.com/rust-lang/crates.io-index"
  3725. dependencies = [
  3726. "bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3727. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3728. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3729. "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3730. "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3731. "ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3732. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3733. "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3734. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3735. "pairing 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3736. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3737. "proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3738. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3739. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3740. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3741. "sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3742. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3743. "solana_libra_crypto-derive 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3744. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3745. "solana_libra_nibble 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3746. "threshold_crypto 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3747. "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3748. "x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3749. ]
  3750. [[package]]
  3751. name = "solana_libra_crypto-derive"
  3752. version = "0.0.1-sol4"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. dependencies = [
  3755. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3756. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3757. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  3758. ]
  3759. [[package]]
  3760. name = "solana_libra_failure_ext"
  3761. version = "0.0.1-sol4"
  3762. source = "registry+https://github.com/rust-lang/crates.io-index"
  3763. dependencies = [
  3764. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3765. "solana_libra_failure_macros 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3766. ]
  3767. [[package]]
  3768. name = "solana_libra_failure_macros"
  3769. version = "0.0.1-sol4"
  3770. source = "registry+https://github.com/rust-lang/crates.io-index"
  3771. [[package]]
  3772. name = "solana_libra_ir_to_bytecode"
  3773. version = "0.0.1-sol4"
  3774. source = "registry+https://github.com/rust-lang/crates.io-index"
  3775. dependencies = [
  3776. "codespan 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3777. "codespan-reporting 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3778. "lalrpop-util 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3779. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  3780. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3781. "solana_libra_ir_to_bytecode_syntax 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3782. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3783. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3784. ]
  3785. [[package]]
  3786. name = "solana_libra_ir_to_bytecode_syntax"
  3787. version = "0.0.1-sol4"
  3788. source = "registry+https://github.com/rust-lang/crates.io-index"
  3789. dependencies = [
  3790. "codespan 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3791. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3792. "lalrpop 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3793. "lalrpop-util 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3794. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3795. "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3796. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3797. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3798. ]
  3799. [[package]]
  3800. name = "solana_libra_language_e2e_tests"
  3801. version = "0.0.1-sol4"
  3802. source = "registry+https://github.com/rust-lang/crates.io-index"
  3803. dependencies = [
  3804. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3805. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3806. "proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3807. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3808. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3809. "solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3810. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3811. "solana_libra_compiler 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3812. "solana_libra_config 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3813. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3814. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3815. "solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3816. "solana_libra_proptest_helpers 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3817. "solana_libra_state_view 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3818. "solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3819. "solana_libra_transaction_builder 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3820. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3821. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3822. "solana_libra_vm_genesis 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3823. "solana_libra_vm_runtime 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3824. "solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3825. "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3826. ]
  3827. [[package]]
  3828. name = "solana_libra_logger"
  3829. version = "0.0.1-sol4"
  3830. source = "registry+https://github.com/rust-lang/crates.io-index"
  3831. dependencies = [
  3832. "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)",
  3833. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3834. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3835. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3836. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3837. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3838. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3839. "slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3840. "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3841. "slog-envlogger 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3842. "slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3843. "slog-term 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3844. "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3845. ]
  3846. [[package]]
  3847. name = "solana_libra_metrics"
  3848. version = "0.0.1-sol4"
  3849. source = "registry+https://github.com/rust-lang/crates.io-index"
  3850. dependencies = [
  3851. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  3852. "hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)",
  3853. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3854. "prometheus 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3855. "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
  3856. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3857. "solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3858. ]
  3859. [[package]]
  3860. name = "solana_libra_nibble"
  3861. version = "0.0.1-sol4"
  3862. source = "registry+https://github.com/rust-lang/crates.io-index"
  3863. dependencies = [
  3864. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3865. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3866. ]
  3867. [[package]]
  3868. name = "solana_libra_proptest_helpers"
  3869. version = "0.0.1-sol4"
  3870. source = "registry+https://github.com/rust-lang/crates.io-index"
  3871. dependencies = [
  3872. "crossbeam 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3873. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3874. "proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3875. ]
  3876. [[package]]
  3877. name = "solana_libra_prost_ext"
  3878. version = "0.0.1-sol4"
  3879. source = "registry+https://github.com/rust-lang/crates.io-index"
  3880. dependencies = [
  3881. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3882. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3883. ]
  3884. [[package]]
  3885. name = "solana_libra_state_view"
  3886. version = "0.0.1-sol4"
  3887. source = "registry+https://github.com/rust-lang/crates.io-index"
  3888. dependencies = [
  3889. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3890. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3891. ]
  3892. [[package]]
  3893. name = "solana_libra_stdlib"
  3894. version = "0.0.1-sol4"
  3895. source = "registry+https://github.com/rust-lang/crates.io-index"
  3896. dependencies = [
  3897. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3898. "solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3899. "solana_libra_ir_to_bytecode 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3900. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3901. ]
  3902. [[package]]
  3903. name = "solana_libra_tools"
  3904. version = "0.0.1-sol4"
  3905. source = "registry+https://github.com/rust-lang/crates.io-index"
  3906. dependencies = [
  3907. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3908. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3909. ]
  3910. [[package]]
  3911. name = "solana_libra_transaction_builder"
  3912. version = "0.0.1-sol4"
  3913. source = "registry+https://github.com/rust-lang/crates.io-index"
  3914. dependencies = [
  3915. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3916. "solana_libra_config 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3917. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3918. "solana_libra_ir_to_bytecode 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3919. "solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3920. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3921. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3922. ]
  3923. [[package]]
  3924. name = "solana_libra_types"
  3925. version = "0.0.1-sol4"
  3926. source = "registry+https://github.com/rust-lang/crates.io-index"
  3927. dependencies = [
  3928. "bech32 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3929. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3930. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  3931. "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",
  3932. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3933. "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3934. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3935. "num_enum 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3936. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3937. "proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3938. "prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3939. "prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3940. "radix_trie 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3941. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3942. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3943. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3944. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3945. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3946. "solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3947. "solana_libra_proptest_helpers 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3948. "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3949. ]
  3950. [[package]]
  3951. name = "solana_libra_vm"
  3952. version = "0.0.1-sol4"
  3953. source = "registry+https://github.com/rust-lang/crates.io-index"
  3954. dependencies = [
  3955. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3956. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3957. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3958. "mirai-annotations 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3959. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  3960. "proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3961. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  3962. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3963. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3964. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3965. "solana_libra_proptest_helpers 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3966. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3967. ]
  3968. [[package]]
  3969. name = "solana_libra_vm_cache_map"
  3970. version = "0.0.1-sol4"
  3971. source = "registry+https://github.com/rust-lang/crates.io-index"
  3972. dependencies = [
  3973. "chashmap 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  3974. "typed-arena 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
  3975. ]
  3976. [[package]]
  3977. name = "solana_libra_vm_genesis"
  3978. version = "0.0.1-sol4"
  3979. source = "registry+https://github.com/rust-lang/crates.io-index"
  3980. dependencies = [
  3981. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  3982. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  3983. "solana_libra_config 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3984. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3985. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3986. "solana_libra_prost_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3987. "solana_libra_state_view 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3988. "solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3989. "solana_libra_transaction_builder 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3990. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3991. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3992. "solana_libra_vm_cache_map 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3993. "solana_libra_vm_runtime 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3994. "solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  3995. ]
  3996. [[package]]
  3997. name = "solana_libra_vm_runtime"
  3998. version = "0.0.1-sol4"
  3999. source = "registry+https://github.com/rust-lang/crates.io-index"
  4000. dependencies = [
  4001. "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4002. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4003. "mirai-annotations 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4004. "prometheus 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4005. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4006. "rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4007. "rental 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4008. "solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4009. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4010. "solana_libra_config 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4011. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4012. "solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4013. "solana_libra_metrics 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4014. "solana_libra_state_view 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4015. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4016. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4017. "solana_libra_vm_cache_map 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4018. "solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4019. ]
  4020. [[package]]
  4021. name = "solana_libra_vm_runtime_types"
  4022. version = "0.0.1-sol4"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. dependencies = [
  4025. "bit-vec 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4026. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4027. "proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4028. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4029. "solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4030. "solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4031. "solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4032. "solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4033. "solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)",
  4034. ]
  4035. [[package]]
  4036. name = "solana_rbpf"
  4037. version = "0.1.19"
  4038. source = "registry+https://github.com/rust-lang/crates.io-index"
  4039. dependencies = [
  4040. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4041. "combine 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4042. "elfkit 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4043. "hash32 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4044. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4045. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4046. "num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4047. "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)",
  4048. ]
  4049. [[package]]
  4050. name = "sourcefile"
  4051. version = "0.1.4"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. [[package]]
  4054. name = "spin"
  4055. version = "0.5.2"
  4056. source = "registry+https://github.com/rust-lang/crates.io-index"
  4057. [[package]]
  4058. name = "stable_deref_trait"
  4059. version = "1.1.1"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. [[package]]
  4062. name = "string"
  4063. version = "0.2.1"
  4064. source = "registry+https://github.com/rust-lang/crates.io-index"
  4065. dependencies = [
  4066. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4067. ]
  4068. [[package]]
  4069. name = "string_cache"
  4070. version = "0.7.3"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. dependencies = [
  4073. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4074. "new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4075. "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)",
  4076. "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4077. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  4078. "string_cache_codegen 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4079. "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4080. ]
  4081. [[package]]
  4082. name = "string_cache_codegen"
  4083. version = "0.4.2"
  4084. source = "registry+https://github.com/rust-lang/crates.io-index"
  4085. dependencies = [
  4086. "phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)",
  4087. "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)",
  4088. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  4089. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  4090. "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4091. ]
  4092. [[package]]
  4093. name = "string_cache_shared"
  4094. version = "0.3.0"
  4095. source = "registry+https://github.com/rust-lang/crates.io-index"
  4096. [[package]]
  4097. name = "strsim"
  4098. version = "0.8.0"
  4099. source = "registry+https://github.com/rust-lang/crates.io-index"
  4100. [[package]]
  4101. name = "strsim"
  4102. version = "0.9.2"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. [[package]]
  4105. name = "structopt"
  4106. version = "0.3.3"
  4107. source = "registry+https://github.com/rust-lang/crates.io-index"
  4108. dependencies = [
  4109. "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4110. "structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4111. ]
  4112. [[package]]
  4113. name = "structopt-derive"
  4114. version = "0.3.3"
  4115. source = "registry+https://github.com/rust-lang/crates.io-index"
  4116. dependencies = [
  4117. "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4118. "proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4119. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4120. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4121. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4122. ]
  4123. [[package]]
  4124. name = "subtle"
  4125. version = "1.0.0"
  4126. source = "registry+https://github.com/rust-lang/crates.io-index"
  4127. [[package]]
  4128. name = "subtle"
  4129. version = "2.1.0"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. [[package]]
  4132. name = "symlink"
  4133. version = "0.1.0"
  4134. source = "registry+https://github.com/rust-lang/crates.io-index"
  4135. [[package]]
  4136. name = "syn"
  4137. version = "0.11.11"
  4138. source = "registry+https://github.com/rust-lang/crates.io-index"
  4139. dependencies = [
  4140. "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
  4141. "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4142. "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4143. ]
  4144. [[package]]
  4145. name = "syn"
  4146. version = "0.15.42"
  4147. source = "registry+https://github.com/rust-lang/crates.io-index"
  4148. dependencies = [
  4149. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  4150. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  4151. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4152. ]
  4153. [[package]]
  4154. name = "syn"
  4155. version = "1.0.3"
  4156. source = "registry+https://github.com/rust-lang/crates.io-index"
  4157. dependencies = [
  4158. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4159. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4160. "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4161. ]
  4162. [[package]]
  4163. name = "synom"
  4164. version = "0.11.3"
  4165. source = "registry+https://github.com/rust-lang/crates.io-index"
  4166. dependencies = [
  4167. "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4168. ]
  4169. [[package]]
  4170. name = "synstructure"
  4171. version = "0.10.2"
  4172. source = "registry+https://github.com/rust-lang/crates.io-index"
  4173. dependencies = [
  4174. "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
  4175. "quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
  4176. "syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)",
  4177. "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4178. ]
  4179. [[package]]
  4180. name = "sys-info"
  4181. version = "0.5.8"
  4182. source = "registry+https://github.com/rust-lang/crates.io-index"
  4183. dependencies = [
  4184. "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)",
  4185. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4186. ]
  4187. [[package]]
  4188. name = "take_mut"
  4189. version = "0.2.2"
  4190. source = "registry+https://github.com/rust-lang/crates.io-index"
  4191. [[package]]
  4192. name = "tar"
  4193. version = "0.4.26"
  4194. source = "registry+https://github.com/rust-lang/crates.io-index"
  4195. dependencies = [
  4196. "filetime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4197. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4198. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  4199. "xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4200. ]
  4201. [[package]]
  4202. name = "tempdir"
  4203. version = "0.3.7"
  4204. source = "registry+https://github.com/rust-lang/crates.io-index"
  4205. dependencies = [
  4206. "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4207. "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4208. ]
  4209. [[package]]
  4210. name = "tempfile"
  4211. version = "3.1.0"
  4212. source = "registry+https://github.com/rust-lang/crates.io-index"
  4213. dependencies = [
  4214. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4215. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4216. "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4217. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  4218. "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4219. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4220. ]
  4221. [[package]]
  4222. name = "term"
  4223. version = "0.5.2"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. dependencies = [
  4226. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4227. "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4228. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4229. ]
  4230. [[package]]
  4231. name = "termcolor"
  4232. version = "1.0.5"
  4233. source = "registry+https://github.com/rust-lang/crates.io-index"
  4234. dependencies = [
  4235. "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4236. ]
  4237. [[package]]
  4238. name = "termios"
  4239. version = "0.3.1"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. dependencies = [
  4242. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4243. ]
  4244. [[package]]
  4245. name = "textwrap"
  4246. version = "0.11.0"
  4247. source = "registry+https://github.com/rust-lang/crates.io-index"
  4248. dependencies = [
  4249. "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4250. ]
  4251. [[package]]
  4252. name = "thread-id"
  4253. version = "2.0.0"
  4254. source = "registry+https://github.com/rust-lang/crates.io-index"
  4255. dependencies = [
  4256. "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4257. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4258. ]
  4259. [[package]]
  4260. name = "thread-id"
  4261. version = "3.3.0"
  4262. source = "registry+https://github.com/rust-lang/crates.io-index"
  4263. dependencies = [
  4264. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4265. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  4266. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4267. ]
  4268. [[package]]
  4269. name = "thread-scoped"
  4270. version = "1.0.2"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. [[package]]
  4273. name = "thread_local"
  4274. version = "0.2.7"
  4275. source = "registry+https://github.com/rust-lang/crates.io-index"
  4276. dependencies = [
  4277. "thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4278. ]
  4279. [[package]]
  4280. name = "thread_local"
  4281. version = "0.3.6"
  4282. source = "registry+https://github.com/rust-lang/crates.io-index"
  4283. dependencies = [
  4284. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4285. ]
  4286. [[package]]
  4287. name = "threshold_crypto"
  4288. version = "0.3.2"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. dependencies = [
  4291. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4292. "errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4293. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4294. "hex_fmt 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4295. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4296. "memsec 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4297. "pairing 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4298. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4299. "rand04_compat 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4300. "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4301. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  4302. "tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4303. ]
  4304. [[package]]
  4305. name = "time"
  4306. version = "0.1.42"
  4307. source = "registry+https://github.com/rust-lang/crates.io-index"
  4308. dependencies = [
  4309. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4310. "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
  4311. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4312. ]
  4313. [[package]]
  4314. name = "tiny-bip39"
  4315. version = "0.6.2"
  4316. source = "registry+https://github.com/rust-lang/crates.io-index"
  4317. dependencies = [
  4318. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4319. "hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4320. "hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4321. "once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4322. "pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4323. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4324. "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4325. ]
  4326. [[package]]
  4327. name = "tiny-keccak"
  4328. version = "1.5.0"
  4329. source = "registry+https://github.com/rust-lang/crates.io-index"
  4330. dependencies = [
  4331. "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4332. ]
  4333. [[package]]
  4334. name = "tokio"
  4335. version = "0.1.22"
  4336. source = "registry+https://github.com/rust-lang/crates.io-index"
  4337. dependencies = [
  4338. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4339. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4340. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4341. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4342. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4343. "tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4344. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4345. "tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4346. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4347. "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4348. "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4349. "tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4350. "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  4351. "tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
  4352. "tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4353. "tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4354. ]
  4355. [[package]]
  4356. name = "tokio-buf"
  4357. version = "0.1.1"
  4358. source = "registry+https://github.com/rust-lang/crates.io-index"
  4359. dependencies = [
  4360. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4361. "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4362. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4363. ]
  4364. [[package]]
  4365. name = "tokio-codec"
  4366. version = "0.1.1"
  4367. source = "registry+https://github.com/rust-lang/crates.io-index"
  4368. dependencies = [
  4369. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4370. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4371. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4372. ]
  4373. [[package]]
  4374. name = "tokio-current-thread"
  4375. version = "0.1.6"
  4376. source = "registry+https://github.com/rust-lang/crates.io-index"
  4377. dependencies = [
  4378. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4379. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4380. ]
  4381. [[package]]
  4382. name = "tokio-executor"
  4383. version = "0.1.8"
  4384. source = "registry+https://github.com/rust-lang/crates.io-index"
  4385. dependencies = [
  4386. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4387. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4388. ]
  4389. [[package]]
  4390. name = "tokio-fs"
  4391. version = "0.1.6"
  4392. source = "registry+https://github.com/rust-lang/crates.io-index"
  4393. dependencies = [
  4394. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4395. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4396. "tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
  4397. ]
  4398. [[package]]
  4399. name = "tokio-io"
  4400. version = "0.1.12"
  4401. source = "registry+https://github.com/rust-lang/crates.io-index"
  4402. dependencies = [
  4403. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4404. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4405. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4406. ]
  4407. [[package]]
  4408. name = "tokio-reactor"
  4409. version = "0.1.9"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. dependencies = [
  4412. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4413. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4414. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4415. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4416. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4417. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4418. "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4419. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4420. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4421. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4422. "tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4423. ]
  4424. [[package]]
  4425. name = "tokio-rustls"
  4426. version = "0.10.1"
  4427. source = "registry+https://github.com/rust-lang/crates.io-index"
  4428. dependencies = [
  4429. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4430. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4431. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4432. "rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4433. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4434. "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4435. ]
  4436. [[package]]
  4437. name = "tokio-sync"
  4438. version = "0.1.6"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. dependencies = [
  4441. "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4442. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4443. ]
  4444. [[package]]
  4445. name = "tokio-tcp"
  4446. version = "0.1.3"
  4447. source = "registry+https://github.com/rust-lang/crates.io-index"
  4448. dependencies = [
  4449. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4450. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4451. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4452. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4453. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4454. "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4455. ]
  4456. [[package]]
  4457. name = "tokio-threadpool"
  4458. version = "0.1.15"
  4459. source = "registry+https://github.com/rust-lang/crates.io-index"
  4460. dependencies = [
  4461. "crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4462. "crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4463. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4464. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4465. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4466. "num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4467. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4468. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4469. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4470. ]
  4471. [[package]]
  4472. name = "tokio-timer"
  4473. version = "0.2.11"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. dependencies = [
  4476. "crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
  4477. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4478. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4479. "tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4480. ]
  4481. [[package]]
  4482. name = "tokio-udp"
  4483. version = "0.1.3"
  4484. source = "registry+https://github.com/rust-lang/crates.io-index"
  4485. dependencies = [
  4486. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4487. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4488. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4489. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4490. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4491. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4492. "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4493. ]
  4494. [[package]]
  4495. name = "tokio-uds"
  4496. version = "0.2.5"
  4497. source = "registry+https://github.com/rust-lang/crates.io-index"
  4498. dependencies = [
  4499. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4500. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4501. "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4502. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4503. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4504. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4505. "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
  4506. "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4507. "tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4508. "tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4509. ]
  4510. [[package]]
  4511. name = "toml"
  4512. version = "0.5.4"
  4513. source = "registry+https://github.com/rust-lang/crates.io-index"
  4514. dependencies = [
  4515. "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
  4516. ]
  4517. [[package]]
  4518. name = "treeline"
  4519. version = "0.1.0"
  4520. source = "registry+https://github.com/rust-lang/crates.io-index"
  4521. [[package]]
  4522. name = "try-lock"
  4523. version = "0.2.2"
  4524. source = "registry+https://github.com/rust-lang/crates.io-index"
  4525. [[package]]
  4526. name = "try_from"
  4527. version = "0.3.2"
  4528. source = "registry+https://github.com/rust-lang/crates.io-index"
  4529. dependencies = [
  4530. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4531. ]
  4532. [[package]]
  4533. name = "typed-arena"
  4534. version = "1.6.1"
  4535. source = "registry+https://github.com/rust-lang/crates.io-index"
  4536. [[package]]
  4537. name = "typenum"
  4538. version = "1.10.0"
  4539. source = "registry+https://github.com/rust-lang/crates.io-index"
  4540. [[package]]
  4541. name = "unicase"
  4542. version = "2.4.0"
  4543. source = "registry+https://github.com/rust-lang/crates.io-index"
  4544. dependencies = [
  4545. "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4546. ]
  4547. [[package]]
  4548. name = "unicode-bidi"
  4549. version = "0.3.4"
  4550. source = "registry+https://github.com/rust-lang/crates.io-index"
  4551. dependencies = [
  4552. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4553. ]
  4554. [[package]]
  4555. name = "unicode-normalization"
  4556. version = "0.1.8"
  4557. source = "registry+https://github.com/rust-lang/crates.io-index"
  4558. dependencies = [
  4559. "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
  4560. ]
  4561. [[package]]
  4562. name = "unicode-segmentation"
  4563. version = "1.3.0"
  4564. source = "registry+https://github.com/rust-lang/crates.io-index"
  4565. [[package]]
  4566. name = "unicode-width"
  4567. version = "0.1.5"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. [[package]]
  4570. name = "unicode-xid"
  4571. version = "0.0.4"
  4572. source = "registry+https://github.com/rust-lang/crates.io-index"
  4573. [[package]]
  4574. name = "unicode-xid"
  4575. version = "0.1.0"
  4576. source = "registry+https://github.com/rust-lang/crates.io-index"
  4577. [[package]]
  4578. name = "unicode-xid"
  4579. version = "0.2.0"
  4580. source = "registry+https://github.com/rust-lang/crates.io-index"
  4581. [[package]]
  4582. name = "unsigned-varint"
  4583. version = "0.2.2"
  4584. source = "registry+https://github.com/rust-lang/crates.io-index"
  4585. [[package]]
  4586. name = "untrusted"
  4587. version = "0.7.0"
  4588. source = "registry+https://github.com/rust-lang/crates.io-index"
  4589. [[package]]
  4590. name = "url"
  4591. version = "1.7.2"
  4592. source = "registry+https://github.com/rust-lang/crates.io-index"
  4593. dependencies = [
  4594. "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4595. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4596. "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4597. ]
  4598. [[package]]
  4599. name = "url"
  4600. version = "2.1.0"
  4601. source = "registry+https://github.com/rust-lang/crates.io-index"
  4602. dependencies = [
  4603. "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4604. "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4605. "percent-encoding 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4606. ]
  4607. [[package]]
  4608. name = "utf8-ranges"
  4609. version = "0.1.3"
  4610. source = "registry+https://github.com/rust-lang/crates.io-index"
  4611. [[package]]
  4612. name = "uuid"
  4613. version = "0.7.4"
  4614. source = "registry+https://github.com/rust-lang/crates.io-index"
  4615. dependencies = [
  4616. "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4617. ]
  4618. [[package]]
  4619. name = "vec_map"
  4620. version = "0.8.1"
  4621. source = "registry+https://github.com/rust-lang/crates.io-index"
  4622. [[package]]
  4623. name = "version_check"
  4624. version = "0.1.5"
  4625. source = "registry+https://github.com/rust-lang/crates.io-index"
  4626. [[package]]
  4627. name = "void"
  4628. version = "1.0.2"
  4629. source = "registry+https://github.com/rust-lang/crates.io-index"
  4630. [[package]]
  4631. name = "wait-timeout"
  4632. version = "0.2.0"
  4633. source = "registry+https://github.com/rust-lang/crates.io-index"
  4634. dependencies = [
  4635. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4636. ]
  4637. [[package]]
  4638. name = "walkdir"
  4639. version = "2.2.9"
  4640. source = "registry+https://github.com/rust-lang/crates.io-index"
  4641. dependencies = [
  4642. "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4643. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4644. "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4645. ]
  4646. [[package]]
  4647. name = "want"
  4648. version = "0.2.0"
  4649. source = "registry+https://github.com/rust-lang/crates.io-index"
  4650. dependencies = [
  4651. "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
  4652. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4653. "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4654. ]
  4655. [[package]]
  4656. name = "wasm-bindgen"
  4657. version = "0.2.50"
  4658. source = "registry+https://github.com/rust-lang/crates.io-index"
  4659. dependencies = [
  4660. "cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
  4661. "wasm-bindgen-macro 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4662. ]
  4663. [[package]]
  4664. name = "wasm-bindgen-backend"
  4665. version = "0.2.50"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. dependencies = [
  4668. "bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4669. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4670. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4671. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4672. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4673. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4674. "wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4675. ]
  4676. [[package]]
  4677. name = "wasm-bindgen-macro"
  4678. version = "0.2.50"
  4679. source = "registry+https://github.com/rust-lang/crates.io-index"
  4680. dependencies = [
  4681. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4682. "wasm-bindgen-macro-support 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4683. ]
  4684. [[package]]
  4685. name = "wasm-bindgen-macro-support"
  4686. version = "0.2.50"
  4687. source = "registry+https://github.com/rust-lang/crates.io-index"
  4688. dependencies = [
  4689. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4690. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4691. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4692. "wasm-bindgen-backend 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4693. "wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4694. ]
  4695. [[package]]
  4696. name = "wasm-bindgen-shared"
  4697. version = "0.2.50"
  4698. source = "registry+https://github.com/rust-lang/crates.io-index"
  4699. [[package]]
  4700. name = "wasm-bindgen-webidl"
  4701. version = "0.2.50"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. dependencies = [
  4704. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4705. "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4706. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4707. "proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4708. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4709. "syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4710. "wasm-bindgen-backend 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4711. "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4712. ]
  4713. [[package]]
  4714. name = "web-sys"
  4715. version = "0.3.27"
  4716. source = "registry+https://github.com/rust-lang/crates.io-index"
  4717. dependencies = [
  4718. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4719. "js-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)",
  4720. "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4721. "wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4722. "wasm-bindgen-webidl 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
  4723. ]
  4724. [[package]]
  4725. name = "webpki"
  4726. version = "0.21.0"
  4727. source = "registry+https://github.com/rust-lang/crates.io-index"
  4728. dependencies = [
  4729. "ring 0.16.7 (registry+https://github.com/rust-lang/crates.io-index)",
  4730. "untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4731. ]
  4732. [[package]]
  4733. name = "webpki-roots"
  4734. version = "0.17.0"
  4735. source = "registry+https://github.com/rust-lang/crates.io-index"
  4736. dependencies = [
  4737. "webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4738. ]
  4739. [[package]]
  4740. name = "weedle"
  4741. version = "0.10.0"
  4742. source = "registry+https://github.com/rust-lang/crates.io-index"
  4743. dependencies = [
  4744. "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4745. ]
  4746. [[package]]
  4747. name = "which"
  4748. version = "2.0.1"
  4749. source = "registry+https://github.com/rust-lang/crates.io-index"
  4750. dependencies = [
  4751. "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4752. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4753. ]
  4754. [[package]]
  4755. name = "winapi"
  4756. version = "0.2.8"
  4757. source = "registry+https://github.com/rust-lang/crates.io-index"
  4758. [[package]]
  4759. name = "winapi"
  4760. version = "0.3.8"
  4761. source = "registry+https://github.com/rust-lang/crates.io-index"
  4762. dependencies = [
  4763. "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4764. "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4765. ]
  4766. [[package]]
  4767. name = "winapi-build"
  4768. version = "0.1.1"
  4769. source = "registry+https://github.com/rust-lang/crates.io-index"
  4770. [[package]]
  4771. name = "winapi-i686-pc-windows-gnu"
  4772. version = "0.4.0"
  4773. source = "registry+https://github.com/rust-lang/crates.io-index"
  4774. [[package]]
  4775. name = "winapi-util"
  4776. version = "0.1.2"
  4777. source = "registry+https://github.com/rust-lang/crates.io-index"
  4778. dependencies = [
  4779. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4780. ]
  4781. [[package]]
  4782. name = "winapi-x86_64-pc-windows-gnu"
  4783. version = "0.4.0"
  4784. source = "registry+https://github.com/rust-lang/crates.io-index"
  4785. [[package]]
  4786. name = "wincolor"
  4787. version = "1.0.1"
  4788. source = "registry+https://github.com/rust-lang/crates.io-index"
  4789. dependencies = [
  4790. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4791. "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4792. ]
  4793. [[package]]
  4794. name = "winconsole"
  4795. version = "0.10.0"
  4796. source = "registry+https://github.com/rust-lang/crates.io-index"
  4797. dependencies = [
  4798. "cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4799. "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4800. "rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)",
  4801. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4802. ]
  4803. [[package]]
  4804. name = "winreg"
  4805. version = "0.6.2"
  4806. source = "registry+https://github.com/rust-lang/crates.io-index"
  4807. dependencies = [
  4808. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4809. ]
  4810. [[package]]
  4811. name = "ws"
  4812. version = "0.9.1"
  4813. source = "registry+https://github.com/rust-lang/crates.io-index"
  4814. dependencies = [
  4815. "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4816. "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
  4817. "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
  4818. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4819. "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
  4820. "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  4821. "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4822. "sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4823. "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4824. "url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4825. ]
  4826. [[package]]
  4827. name = "ws2_32-sys"
  4828. version = "0.2.1"
  4829. source = "registry+https://github.com/rust-lang/crates.io-index"
  4830. dependencies = [
  4831. "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
  4832. "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4833. ]
  4834. [[package]]
  4835. name = "x25519-dalek"
  4836. version = "0.5.2"
  4837. source = "registry+https://github.com/rust-lang/crates.io-index"
  4838. dependencies = [
  4839. "clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4840. "curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4841. "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4842. ]
  4843. [[package]]
  4844. name = "xattr"
  4845. version = "0.2.2"
  4846. source = "registry+https://github.com/rust-lang/crates.io-index"
  4847. dependencies = [
  4848. "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
  4849. ]
  4850. [[package]]
  4851. name = "yaml-rust"
  4852. version = "0.4.3"
  4853. source = "registry+https://github.com/rust-lang/crates.io-index"
  4854. dependencies = [
  4855. "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  4856. ]
  4857. [metadata]
  4858. "checksum adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
  4859. "checksum aho-corasick 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66"
  4860. "checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
  4861. "checksum ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  4862. "checksum approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08abcc3b4e9339e33a3d0a5ed15d84a687350c05689d825e0f6655eef9e76a94"
  4863. "checksum ar 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "579681b3fecd1e9d6b5ce6969e05f9feb913f296eddaf595be1166a5ca597bc4"
  4864. "checksum arc-swap 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "bc4662175ead9cd84451d5c35070517777949a2ed84551764129cedb88384841"
  4865. "checksum argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3f67b0b6a86dae6e67ff4ca2b6201396074996379fba2b92ff649126f37cb392"
  4866. "checksum arrayref 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "0d382e583f07208808f6b1249e60848879ba3543f57c32277bf52d69c2f0f0ee"
  4867. "checksum arrayvec 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)" = "b8d73f9beda665eaa98ab9e4f7442bd4e7de6652587de55b2525e52e29c1b0ba"
  4868. "checksum ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50"
  4869. "checksum ascii-canvas 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff8eb72df928aafb99fe5d37b383f2fe25bd2a765e3e5f7c365916b6f2463a29"
  4870. "checksum assert_cmd 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2dc477793bd82ec39799b6f6b3df64938532fdf2ab0d49ef817eac65856a5a1e"
  4871. "checksum assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7deb0a829ca7bcfaf5da70b073a8d128619259a7be8216a355e23f00763059e5"
  4872. "checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90"
  4873. "checksum autocfg 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b"
  4874. "checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea"
  4875. "checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491"
  4876. "checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
  4877. "checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
  4878. "checksum bech32 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "58946044516aa9dc922182e0d6e9d124a31aafe6b421614654eb27cf90cec09c"
  4879. "checksum bincode 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b8ab639324e3ee8774d296864fbc0dbbb256cf1a41c490b94cba90c082915f92"
  4880. "checksum bindgen 0.49.2 (registry+https://github.com/rust-lang/crates.io-index)" = "846a1fba6535362a01487ef6b10f0275faa12e5c5d835c5c1c627aabc46ccbd6"
  4881. "checksum bit-set 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e84c238982c4b1e1ee668d136c510c67a13465279c0cb367ea6baf6310620a80"
  4882. "checksum bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "02b4ff8b16e6076c3e14220b39fbc1fabb6737522281a388998046859400895f"
  4883. "checksum bit-vec 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f59bbe95d4e52a6398ec21238d31577f2b28a9d86807f06ca59d191d8440d0bb"
  4884. "checksum bit-vec 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a4523a10839ffae575fb08aa3423026c8cb4687eef43952afb956229d4f246f7"
  4885. "checksum bitflags 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd"
  4886. "checksum blake2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330"
  4887. "checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400"
  4888. "checksum block-buffer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a076c298b9ecdb530ed9d967e74a6027d6a7478924520acddcddc24c1c8ab3ab"
  4889. "checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
  4890. "checksum block-padding 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09"
  4891. "checksum bloom 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d00ac8e5056d6d65376a3c1aa5c7c34850d6949ace17f0266953a254eb3d6fe8"
  4892. "checksum bs58 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "c95ee6bba9d950218b6cc910cf62bc9e0a171d0f4537e3627b0f54d08549b188"
  4893. "checksum bs58 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b170cd256a3f9fa6b9edae3e44a7dfdfc77e8124dbc3e2612d75f9c3e2396dae"
  4894. "checksum bstr 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e0a692f1c740e7e821ca71a22cf99b9b2322dfa94d10f71443befb1797b3946a"
  4895. "checksum build_const 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39"
  4896. "checksum bumpalo 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad807f2fc2bf185eeb98ff3a901bd46dc5ad58163d0fa4577ba0d25674d71708"
  4897. "checksum bv 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cd4ae9e585e783756cd14b0ea21863acdfbb6383664ac2f7c9ef8d180a14727"
  4898. "checksum byte-tools 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "560c32574a12a89ecd91f5e742165893f86e3ab98d21f8ea548658eb9eef5f40"
  4899. "checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
  4900. "checksum byte-unit 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6894a79550807490d9f19a138a6da0f8830e70c83e83402dd23f16fd6c479056"
  4901. "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
  4902. "checksum bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
  4903. "checksum bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b"
  4904. "checksum bzip2-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "6584aa36f5ad4c9247f5323b0a42f37802b37a836f0ad87084d7a33961abe25f"
  4905. "checksum c2-chacha 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101"
  4906. "checksum c_linked_list 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b"
  4907. "checksum cast 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427"
  4908. "checksum cbindgen 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9daec6140ab4dcd38c3dd57e580b59a621172a526ac79f1527af760a55afeafd"
  4909. "checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8"
  4910. "checksum cexpr 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a7fa24eb00d5ffab90eaeaf1092ac85c04c64aaf358ea6f84505b8116d24c6af"
  4911. "checksum cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33"
  4912. "checksum cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "64a4b57c8f4e3a2e9ac07e0f6abc9c24b6fc9e1b54c3478cfb598f3d0023e51c"
  4913. "checksum chashmap 2.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ff41a3c2c1e39921b9003de14bf0439c7b63a9039637c291e1a64925d8ddfa45"
  4914. "checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68"
  4915. "checksum clang-sys 0.28.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81de550971c976f176130da4b2978d3b524eaa0fd9ac31f3ceb5ae1231fb4853"
  4916. "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
  4917. "checksum clear_on_drop 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "97276801e127ffb46b66ce23f35cc96bd454fa311294bced4bbace7baa8b1d17"
  4918. "checksum clicolors-control 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "73abfd4c73d003a674ce5d2933fca6ce6c42480ea84a5ffe0a2dc39ed56300f9"
  4919. "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
  4920. "checksum codespan 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "004def512a9848b23a68ed110927d102b0e6d9f3dc732e28570879afde051f8c"
  4921. "checksum codespan-reporting 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab081a14ab8f9598ce826890fe896d0addee68c7a58ab49008369ccbb51510a8"
  4922. "checksum colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cdb90b60f2927f8d76139c72dbde7e10c3a2bc47c8594c9c7a66529f2687c03"
  4923. "checksum combine 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1645a65a99c7c8d345761f4b75a6ffe5be3b3b27a93ee731fccc5050ba6be97c"
  4924. "checksum console 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f5d540c2d34ac9dd0deb5f3b5f54c36c79efa78f6b3ad19106a554d07a7b5d9f"
  4925. "checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e"
  4926. "checksum cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
  4927. "checksum cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
  4928. "checksum core_affinity 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6d162c6e463c31dbf78fefa99d042156c1c74d404e299cfe3df2923cb857595b"
  4929. "checksum crc 1.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a0a8ca6452ccb182917f0e5d67bef0d46c3c7cfe8081089b9d2fc0c9588b8fdb"
  4930. "checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
  4931. "checksum criterion-stats 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "387df94cb74ada1b33e10ce034bb0d9360cc73edb5063e7d7d4120a40ee1c9d2"
  4932. "checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be"
  4933. "checksum crossbeam 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2d818a4990769aac0c7ff1360e233ef3a41adcb009ebb2036bf6915eb0f6b23c"
  4934. "checksum crossbeam-channel 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa"
  4935. "checksum crossbeam-deque 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71"
  4936. "checksum crossbeam-epoch 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fedcd6772e37f3da2a9af9bf12ebe046c0dfe657992377b4df982a2b54cd37a9"
  4937. "checksum crossbeam-queue 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b"
  4938. "checksum crossbeam-utils 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
  4939. "checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  4940. "checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
  4941. "checksum ct-logs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113"
  4942. "checksum ctrlc 3.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c7dfd2d8b4c82121dfdff120f818e09fc4380b0b7e17a742081a89b94853e87f"
  4943. "checksum curve25519-dalek 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8b7dcd30ba50cdf88b55b033456138b7c0ac4afdc436d82e1b79f370f24cc66d"
  4944. "checksum data-encoding 2.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f4f47ca1860a761136924ddd2422ba77b2ea54fe8cc75b9040804a0d9d32ad97"
  4945. "checksum derivative 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "942ca430eef7a3806595a6737bc388bf51adb888d3fc0dd1b50f1c170167ee3a"
  4946. "checksum diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "3c2b69f912779fbb121ceb775d74d51e915af17aaebc38d28a592843a2dd0a3a"
  4947. "checksum difference 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
  4948. "checksum digest 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "03b072242a8cbaf9c145665af9d250c59af3b958f83ed6824e13533cf76d5b90"
  4949. "checksum digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
  4950. "checksum dir-diff 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2860407d7d7e2e004bb2128510ad9e8d669e76fa005ccf567977b5d71b8b4a0b"
  4951. "checksum dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
  4952. "checksum dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
  4953. "checksum dirs-sys 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
  4954. "checksum dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937"
  4955. "checksum dlopen_derive 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581"
  4956. "checksum docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f525a586d310c87df72ebcd98009e57f1cc030c8c268305287a476beb653969"
  4957. "checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e"
  4958. "checksum ed25519-dalek 1.0.0-pre.1 (registry+https://github.com/rust-lang/crates.io-index)" = "81956bcf7ef761fb4e1d88de3fa181358a0d26cbcb9755b587a08f9119824b86"
  4959. "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
  4960. "checksum elfkit 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "02f182eda16a7360c80a2f8638d0726e9d5478173058f1505c42536ca666ecd2"
  4961. "checksum ena 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8944dc8fa28ce4a38f778bd46bf7d923fe73eed5a439398507246c8e017e6f36"
  4962. "checksum encode_unicode 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "90b2c9496c001e8cb61827acdefad780795c42264c137744cae6f7d9e3450abd"
  4963. "checksum encoding_rs 0.8.20 (registry+https://github.com/rust-lang/crates.io-index)" = "87240518927716f79692c2ed85bfe6e98196d18c6401ec75355760233a7e12e9"
  4964. "checksum endian-type 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
  4965. "checksum enum-primitive-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2b90e520ec62c1864c8c78d637acbfe8baf5f63240f2fb8165b8325c07812dd"
  4966. "checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38"
  4967. "checksum env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3"
  4968. "checksum env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  4969. "checksum errno 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2a071601ed01b988f896ab14b95e67335d1eeb50190932a1320f7fe3cadc84e"
  4970. "checksum errno-dragonfly 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067"
  4971. "checksum error-chain 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ab49e9dcb602294bc42f9a7dfc9bc6e936fca4418ea300dbfb84fe16de0b7d9"
  4972. "checksum escargot 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ceb9adbf9874d5d028b5e4c5739d22b71988252b25c9c98fe7cf9738bee84597"
  4973. "checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2"
  4974. "checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1"
  4975. "checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
  4976. "checksum feature-probe 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "835a3dc7d1ec9e75e2b5fb4ba75396837112d2060b03f7d43bc1897c7f7211da"
  4977. "checksum filetime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "450537dc346f0c4d738dda31e790da1da5d4bd12145aad4da0d03d713cb3794f"
  4978. "checksum fixedbitset 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
  4979. "checksum flate2 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "2adaffba6388640136149e18ed080b77a78611c1e1d6de75aedcdf78df5d4682"
  4980. "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3"
  4981. "checksum fs_extra 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5f2a4a2034423744d2cc7ca2068453168dcdb82c438419e639a26bd87839c674"
  4982. "checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  4983. "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  4984. "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  4985. "checksum futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "45dc39533a6cae6da2b56da48edae506bb767ec07370f86f70fc062e9d435869"
  4986. "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
  4987. "checksum fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  4988. "checksum gag 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "8cc0b9f53275dc5fada808f1d2f82e3688a6c14d735633d1590b7be8eb2307b5"
  4989. "checksum gcc 0.3.55 (registry+https://github.com/rust-lang/crates.io-index)" = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2"
  4990. "checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
  4991. "checksum generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0ed1e761351b56f54eb9dcd0cfaca9fd0daecf93918e1cfc01c8a3d26ee7adcd"
  4992. "checksum generic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ef25c5683767570c2bbd7deba372926a55eaae9982d7726ee2a1050239d45b9d"
  4993. "checksum get_if_addrs 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7"
  4994. "checksum get_if_addrs-sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48"
  4995. "checksum getrandom 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "e65cce4e5084b14874c4e7097f38cab54f47ee554f9194673456ea379dcc4c55"
  4996. "checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
  4997. "checksum glob 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  4998. "checksum globset 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "925aa2cac82d8834e2b2a4415b6f6879757fb5c0928fc445ae76461a12eed8f2"
  4999. "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
  5000. "checksum hash32 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "12d790435639c06a7b798af9e1e331ae245b7ef915b92f70a39b4cf8c00686af"
  5001. "checksum hashbrown 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3bae29b6653b3412c2e71e9d486db9f9df5d701941d86683005efb9f2d28e3da"
  5002. "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  5003. "checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120"
  5004. "checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
  5005. "checksum hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e"
  5006. "checksum hex-literal 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "961de220ec9a91af2e1e5bd80d02109155695e516771762381ef8581317066e0"
  5007. "checksum hex-literal-impl 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06095d08c7c05760f11a071b3e1d4c5b723761c01bd8d7201c30a9536668a612"
  5008. "checksum hex_fmt 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  5009. "checksum hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
  5010. "checksum http 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "372bcb56f939e449117fb0869c2e8fd8753a8223d92a172c6e808cf123a5b6e4"
  5011. "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
  5012. "checksum httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  5013. "checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  5014. "checksum hyper 0.12.35 (registry+https://github.com/rust-lang/crates.io-index)" = "9dbe6ed1438e1f8ad955a4701e9a944938e9519f6888d12d8558b645e247d5f6"
  5015. "checksum hyper-rustls 0.17.1 (registry+https://github.com/rust-lang/crates.io-index)" = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952"
  5016. "checksum idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
  5017. "checksum idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  5018. "checksum indexmap 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a4d6d89e0948bf10c08b9ecc8ac5b83f07f857ebe2c0cbe38de15b4e4f510356"
  5019. "checksum indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8572bccfb0665e70b7faf44ee28841b8e0823450cd4ad562a76b5a3c4bf48487"
  5020. "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
  5021. "checksum itertools 0.7.11 (registry+https://github.com/rust-lang/crates.io-index)" = "0d47946d458e94a1b7bcabbf6521ea7c037062c81f534615abcad76e84d4970d"
  5022. "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e"
  5023. "checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
  5024. "checksum jobserver 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "f74e73053eaf95399bf926e48fc7a2a3ce50bd0eaaa2357d391e95b2dcdd4f10"
  5025. "checksum js-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "1efc4f2a556c58e79c5500912e221dd826bec64ff4aabd8ce71ccef6da02d7d4"
  5026. "checksum jsonrpc-core 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "34651edf3417637cc45e70ed0182ecfa9ced0b7e8131805fccf7400d989845ca"
  5027. "checksum jsonrpc-derive 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d5d5c31575cc70a8b21542599028472c80a9248394aeea4d8918a045a0ab08a3"
  5028. "checksum jsonrpc-http-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "aa54c4c2d88cb5e04b251a5031ba0f2ee8c6ef30970e31228955b89a80c3b611"
  5029. "checksum jsonrpc-pubsub 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3ee1b8da0b9219a231c4b7cbc7110bfdb457cbcd8d90a6224d0b3cab8aae8443"
  5030. "checksum jsonrpc-server-utils 14.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "56ca64eeb4463722c49dd526e0a87dfc0cdecda9348a4b6f5720f25abc4fcc89"
  5031. "checksum jsonrpc-ws-server 14.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af36a129cef77a9db8028ac7552d927e1bb7b6928cd96b23dd25cc38bff974ab"
  5032. "checksum keccak 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
  5033. "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  5034. "checksum lalrpop 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "64dc3698e75d452867d9bd86f4a723f452ce9d01fe1d55990b79f0c790aa67db"
  5035. "checksum lalrpop-util 0.17.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c277d18683b36349ab5cd030158b54856fca6bb2d5dc5263b06288f486958b7c"
  5036. "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  5037. "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
  5038. "checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8"
  5039. "checksum libloading 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f2b111a074963af1d37a139918ac6d49ad1d0d5e47f72fd55388619691a7d753"
  5040. "checksum librocksdb-sys 6.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c4eb0cf7e0b5030e5db893882f1f77d8d7d10f815283aa7e800a3cfbfd4b20c5"
  5041. "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
  5042. "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c"
  5043. "checksum lock_api 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc"
  5044. "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
  5045. "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
  5046. "checksum mach_o_sys 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3e854583a83f20cf329bb9283366335387f7db59d640d1412167e05fedb98826"
  5047. "checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  5048. "checksum memchr 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20"
  5049. "checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
  5050. "checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
  5051. "checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
  5052. "checksum memoffset 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce6075db033bbbb7ee5a0bbd3a3186bbae616f57fb001c485c7ff77955f8177f"
  5053. "checksum memsec 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ccabb92f665f997bcb4f3ade019a8e07315148d8bcef3e65fbc5dbd65a22eb04"
  5054. "checksum mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)" = "3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425"
  5055. "checksum mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1a0ed03949aef72dbdf3116a383d7b38b4768e6f960528cd6a6044aa9ed68599"
  5056. "checksum miniz_oxide 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7108aff85b876d06f22503dcce091e29f76733b2bfdd91eebce81f5e68203a10"
  5057. "checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23"
  5058. "checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40"
  5059. "checksum mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "966257a94e196b11bb43aca423754d87429960a768de9414f3691d6957abf125"
  5060. "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  5061. "checksum mirai-annotations 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7968d6cdc3c7a9632e45d738fd07fde89d04bbb0e88e7abb058871a82fa92645"
  5062. "checksum multimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2eb04b9f127583ed176e163fb9ec6f3e793b87e21deedd5734a69386a18a0151"
  5063. "checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88"
  5064. "checksum new_debug_unreachable 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f40f005c60db6e03bae699e414c58bf9aa7ea02a2d0b9bfbcf19286cc4c82b30"
  5065. "checksum nibble_vec 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c8d77f3db4bce033f4d04db08079b2ef1c3d02b44e86f25d08886fafa7756ffa"
  5066. "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
  5067. "checksum nix 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229"
  5068. "checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945"
  5069. "checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
  5070. "checksum num-derive 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "eafd0b45c5537c3ba526f79d3e75120036502bebacbb3f3220914067ce39dbf2"
  5071. "checksum num-derive 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0c8b15b261814f992e33760b1fca9fe8b693d8a65299f20c9901688636cfb746"
  5072. "checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09"
  5073. "checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
  5074. "checksum num-traits 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32"
  5075. "checksum num_cpus 1.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "155394f924cdddf08149da25bfb932d226b4a593ca7468b08191ff6335941af5"
  5076. "checksum num_enum 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "be601e38e20a6f3d01049d85801cb9b7a34a8da7a0da70df507bbde7735058c8"
  5077. "checksum num_enum_derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b59f30f6a043f2606adbd0addbf1eef6f2e28e8c4968918b63b7ff97ac0db2a7"
  5078. "checksum number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
  5079. "checksum once_cell 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "532c29a261168a45ce28948f9537ddd7a5dd272cc513b3017b1e82a88f962c37"
  5080. "checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409"
  5081. "checksum ordermap 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
  5082. "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
  5083. "checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13"
  5084. "checksum pairing 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ceda21136251c6d5a422d3d798d8ac22515a6e8d3521bb60c59a8349d36d0d57"
  5085. "checksum parity-multiaddr 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "045b3c7af871285146300da35b1932bb6e4639b66c7c98e85d06a32cbc4e8fa7"
  5086. "checksum parity-multihash 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "df3a17dc27848fd99e4f87eb0f8c9baba6ede0a6d555400c850ca45254ef4ce3"
  5087. "checksum parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "149d8f5b97f3c1133e3cfcd8886449959e856b557ff281e292b733d7c69e005e"
  5088. "checksum parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337"
  5089. "checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
  5090. "checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa"
  5091. "checksum parking_lot_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9"
  5092. "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b"
  5093. "checksum pbkdf2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "006c038a43a45995a9670da19e67600114740e8511d4333bf97a56e66a7542d9"
  5094. "checksum peeking_take_while 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  5095. "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
  5096. "checksum percent-encoding 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba4f28a6faf4ffea762ba8f4baef48c61a6db348647c73095034041fc79dd954"
  5097. "checksum petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
  5098. "checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
  5099. "checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
  5100. "checksum ppv-lite86 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b"
  5101. "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  5102. "checksum predicates 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "53e09015b0d3f5a0ec2d4428f7559bb7b3fff341b4e159fedd1d57fac8b939ff"
  5103. "checksum predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06075c3a3e92559ff8929e7a280684489ea27fe44805174c3ebd9328dcb37178"
  5104. "checksum predicates-tree 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8e63c4859013b38a76eca2414c64911fba30def9e3202ac461a2d22831220124"
  5105. "checksum pretty-hex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "be91bcc43e73799dc46a6c194a55e7aae1d86cc867c860fd4a436019af21bd8c"
  5106. "checksum pretty_env_logger 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ed8d1e63042e889b85228620629b51c011d380eed2c7e0015f8a644def280c28"
  5107. "checksum proc-macro-crate 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "e10d4b51f154c8a7fb96fd6dad097cb74b863943ec010ac94b9fd1be8861fe1e"
  5108. "checksum proc-macro-error 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "aeccfe4d5d8ea175d5f0e4a2ad0637e0f4121d63bd99d356fb1f39ab2e7c6097"
  5109. "checksum proc-macro-hack 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "982a35d1194084ba319d65c4a68d24ca28f5fdb5b8bc20899e4eef8641ea5178"
  5110. "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
  5111. "checksum proc-macro2 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c5c2380ae88876faae57698be9e9775e3544decad214599c3a6266cca6ac802"
  5112. "checksum prometheus 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5567486d5778e2c6455b1b90ff1c558f29e751fc018130fa182e15828e728af1"
  5113. "checksum proptest 0.9.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cf147e022eacf0c8a054ab864914a7602618adba841d800a9a9868a5237a529f"
  5114. "checksum proptest-derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d31edb17edac73aeacc947bd61462dda15220584268896a58e12f053d767f15b"
  5115. "checksum prost 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96d14b1c185652833d24aaad41c5832b0be5616a590227c1fbff57c616754b23"
  5116. "checksum prost-build 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb788126ea840817128183f8f603dce02cb7aea25c2a0b764359d8e20010702e"
  5117. "checksum prost-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5e7dc378b94ac374644181a2247cebf59a6ec1c88b49ac77f3a94b86b79d0e11"
  5118. "checksum prost-types 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1de482a366941c8d56d19b650fac09ca08508f2a696119ee7513ad590c8bac6f"
  5119. "checksum publicsuffix 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9bf259a81de2b2eb9850ec990ec78e6a25319715584fd7652b9b26f96fcb1510"
  5120. "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0"
  5121. "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
  5122. "checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
  5123. "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
  5124. "checksum radix_trie 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ebcf72e767017c1aa4b63d4dd0b0b836a243b648fd81d41c6bf6e850ef7a95c7"
  5125. "checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  5126. "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
  5127. "checksum rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c"
  5128. "checksum rand04 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "58595cc8bb12add45412667f9b422d5a9842d61d36e8607bc7c84ff738bf9263"
  5129. "checksum rand04_compat 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e4cc0eb4bbb0cbc6c2a8081aa11303b9520369eea474cf865f7b7e3f11b284b"
  5130. "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
  5131. "checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853"
  5132. "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  5133. "checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0"
  5134. "checksum rand_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca"
  5135. "checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
  5136. "checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  5137. "checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
  5138. "checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
  5139. "checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
  5140. "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
  5141. "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
  5142. "checksum rayon 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "83a27732a533a1be0a0035a111fe76db89ad312f6f0347004c220c57f209a123"
  5143. "checksum rayon-core 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "98dcf634205083b17d0861252431eb2acbfb698ab7478a2d20de07954f47ec7b"
  5144. "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  5145. "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
  5146. "checksum redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe5204c3a17e97dde73f285d49be585df59ed84b50a872baf416e73b62c3828"
  5147. "checksum regex 0.1.80 (registry+https://github.com/rust-lang/crates.io-index)" = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f"
  5148. "checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
  5149. "checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957"
  5150. "checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
  5151. "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
  5152. "checksum rental 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "01916ebd9fc2e81978a5dc9542a2fa47f5bb2ca3402e14c7cc42d6e3c5123e1f"
  5153. "checksum rental-impl 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "82260d54cf2cbe9608df161f7e7c98e81fae702aa13af9e4d5d39dc2ffb25ab6"
  5154. "checksum reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)" = "2c2064233e442ce85c77231ebd67d9eca395207dec2127fe0bbedde4bd29a650"
  5155. "checksum rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4f089652ca87f5a82a62935ec6172a534066c7b97be003cc8f702ee9a7a59c92"
  5156. "checksum ring 0.16.7 (registry+https://github.com/rust-lang/crates.io-index)" = "796ae8317a07b04dffb1983bdc7045ccd02f741f0b411704f07fd35dbf99f757"
  5157. "checksum rocksdb 0.12.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d65bee9fe606c76fd90d6cc33b86bdafde0981b8a6b2d190ec1267e0d065baf8"
  5158. "checksum rpassword 4.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f072d931f11a96546efd97642e1e75e807345aced86b947f9239102f262d0fcd"
  5159. "checksum rustc-demangle 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af"
  5160. "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  5161. "checksum rustls 0.16.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e"
  5162. "checksum rusty-fork 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3dd93264e10c577503e926bd1430193eeb5d21b059148910082245309b424fae"
  5163. "checksum ryu 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997"
  5164. "checksum same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "585e8ddcedc187886a30fa705c47985c3fa88d06624095856b36ca0b82ff4421"
  5165. "checksum scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
  5166. "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27"
  5167. "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
  5168. "checksum sct 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
  5169. "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  5170. "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  5171. "checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0"
  5172. "checksum serde_bytes 0.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "45af0182ff64abaeea290235eb67da3825a576c5d53e642c4d5b652e12e6effc"
  5173. "checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8"
  5174. "checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2"
  5175. "checksum serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
  5176. "checksum serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35"
  5177. "checksum serial_test 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "50bfbc39343545618d97869d77f38ed43e48dd77432717dbc7ed39d797f3ecbe"
  5178. "checksum serial_test_derive 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "89dd85be2e2ad75b041c9df2892ac078fa6e0b90024028b2b9fb4125b7530f01"
  5179. "checksum sha-1 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68"
  5180. "checksum sha2 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9eb6be24e4c23a84d7184280d2722f7f2731fcdd4a9d886efbfe4413e4847ea0"
  5181. "checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d"
  5182. "checksum sha3 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"
  5183. "checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
  5184. "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
  5185. "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  5186. "checksum slog 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1cc9c640a4adbfbcc11ffb95efe5aa7af7309e002adab54b185507dbf2377b99"
  5187. "checksum slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e544d16c6b230d84c866662fe55e31aacfca6ae71e6fc49ae9a311cb379bfc2f"
  5188. "checksum slog-envlogger 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f7c6685180086bf58624e92cb3da5d5f013bebd609454926fc8e2ac6345d384b"
  5189. "checksum slog-scope 4.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d1d3ec6214d46e57a7ec87c1972bbca66c59172a0cfffa5233c54726afb946bf"
  5190. "checksum slog-stdlog 3.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f1c469573d1e3f36f9eee66cd132206caf47b50c94b1f6c6e7b4d8235e9ecf01"
  5191. "checksum slog-term 2.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cb9b3fd9a3c2c86580fce3558a98ed7c69039da0288b08a3f15b371635254e08"
  5192. "checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
  5193. "checksum socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = "e8b74de517221a2cb01a53349cf54182acdc31a074727d3079068448c0676d85"
  5194. "checksum solana-reed-solomon-erasure 4.0.1-3 (registry+https://github.com/rust-lang/crates.io-index)" = "d5b3ab3f4dd12af687a7d0d0ee73299cbc06ed3aada42dccac26fe243e73399e"
  5195. "checksum solana_libra_bytecode_verifier 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "79c3b7e9555da6f04a3f542a40e92bbbd46d0f05bd270ae3ff8c0283c329a179"
  5196. "checksum solana_libra_canonical_serialization 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "c674689dd2d17b0bab49501f0d63ec71b3e1f8fab2eae86174e37768435a54aa"
  5197. "checksum solana_libra_compiler 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "908b00b637e6eaf835d67bea2329bbee82e75f8e162744fd707ca9c9e4c1400b"
  5198. "checksum solana_libra_config 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "bf4d6ccf7fd4f76e92783224914e310374438600990c6fb4514e84baa9bb9cbb"
  5199. "checksum solana_libra_crypto 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "93bc8beed515da88169c43e87dc0ef518d48d9d6d639700af6a9768c04f7bf0a"
  5200. "checksum solana_libra_crypto-derive 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "17d1e61262565aea4fc2a41848e58e49ce4287edbd0aa65f6b17004f64eb36ee"
  5201. "checksum solana_libra_failure_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "d4f1add7897a1ac91f0a8d3c6b71a577eab03800fb1c715eb70bf4bcd0abd27f"
  5202. "checksum solana_libra_failure_macros 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "f9fb2b4161a853c17f0074719427551d34cb4c68affa098a0ac5d0721034607e"
  5203. "checksum solana_libra_ir_to_bytecode 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "290f4322e54e0ba347729cf17bd1f9145d49dcf927ea3d1d1817e224692ebad6"
  5204. "checksum solana_libra_ir_to_bytecode_syntax 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "90f56eccaf25ef145f814f82eeb5dcfbac1d4b025b9e4d15b0b760987afa4ab0"
  5205. "checksum solana_libra_language_e2e_tests 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "1c895e0870ea3ba0fd527f194b191843527e7d4b1311868279a328363ebf1de8"
  5206. "checksum solana_libra_logger 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "9b43115806f8f24055c36af78e0f9af9f93952d6ee2806a6bfb569834dd05ac9"
  5207. "checksum solana_libra_metrics 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "238dcafcf6934a501732981138c70c577b59371ed18ef2dac572e0ad2d836aed"
  5208. "checksum solana_libra_nibble 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "4b9937c68d78bb2287bd180f10539766974ac4f6ddde8946bf78a3dce5a0a654"
  5209. "checksum solana_libra_proptest_helpers 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "6bde114ef094aa4b43eeaa01ef1bf3a6f9dc9608988737bf12a93186f14dbfa3"
  5210. "checksum solana_libra_prost_ext 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "139efe49108d6f8e26053ef2d03aff4e0c43612b8c91a3a7c59bb5cb15a50d72"
  5211. "checksum solana_libra_state_view 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "542d26b2c35dc879f77a311b657c5f89caae34d3ecef115061062a720c12f619"
  5212. "checksum solana_libra_stdlib 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "b462ea5089ecd469f5d8b419b7b31cac30a1d5957ad6d222792ab6077a5fed49"
  5213. "checksum solana_libra_tools 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "5214c4a84a097b03ddd1b73a6b287252e4b77226658f0b6abcbab634325d5b5c"
  5214. "checksum solana_libra_transaction_builder 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "de6960c4114f9f96b6e08608ff95dcf7ae0d6aee86a1f3fb3bdfe0a77e077be8"
  5215. "checksum solana_libra_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "06f40fce42cdb6ab6b12bb150d0336eacc1170dc62db4cdef77bca47b41c0a79"
  5216. "checksum solana_libra_vm 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "14ecbd2cce1e5375b450262f119d18015fb3370eb1004b8098564d9634fe26b7"
  5217. "checksum solana_libra_vm_cache_map 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "37fa2e1f00a87514cd2169149a5f81a89279703b2523979688d6ef84081a4690"
  5218. "checksum solana_libra_vm_genesis 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "d2c98f2663f28ff221b119a471fd790dbbf1e87664fce4c40421120252c09b8e"
  5219. "checksum solana_libra_vm_runtime 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "ff9f8a7b8212dc4ece5d93f2839896e633c34d7463856e4a555cbcb5c67e9c26"
  5220. "checksum solana_libra_vm_runtime_types 0.0.1-sol4 (registry+https://github.com/rust-lang/crates.io-index)" = "254c23c8f30e7c82ae4dc6694e743400d674c66d371b700eec03378ba994f00b"
  5221. "checksum solana_rbpf 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "cb45776e861c7a71ed3ccb629c076889dc91a9ba7c1e58e44f8c7b9f916f07c9"
  5222. "checksum sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4bf77cb82ba8453b42b6ae1d692e4cdc92f9a47beaf89a847c8be83f4e328ad3"
  5223. "checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5224. "checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
  5225. "checksum string 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
  5226. "checksum string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423"
  5227. "checksum string_cache_codegen 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1eea1eee654ef80933142157fdad9dd8bc43cf7c74e999e369263496f04ff4da"
  5228. "checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
  5229. "checksum strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  5230. "checksum strsim 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "032c03039aae92b350aad2e3779c352e104d919cb192ba2fabbd7b831ce4f0f6"
  5231. "checksum structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d4f66a4c0ddf7aee4677995697366de0749b0139057342eccbb609b12d0affc"
  5232. "checksum structopt-derive 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8fe0c13e476b4e21ff7f5c4ace3818b6d7bdc16897c31c73862471bc1663acae"
  5233. "checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
  5234. "checksum subtle 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "01dca13cf6c3b179864ab3292bd794e757618d35a7766b7c46050c614ba00829"
  5235. "checksum symlink 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a"
  5236. "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
  5237. "checksum syn 0.15.42 (registry+https://github.com/rust-lang/crates.io-index)" = "eadc09306ca51a40555dd6fc2b415538e9e18bc9f870e47b1a524a79fe2dcf5e"
  5238. "checksum syn 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "158521e6f544e7e3dcfc370ac180794aa38cb34a1b1e07609376d4adcf429b93"
  5239. "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
  5240. "checksum synstructure 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f"
  5241. "checksum sys-info 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0079fe39cec2c8215e21b0bc4ccec9031004c160b88358f531b601e96b77f0df"
  5242. "checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
  5243. "checksum tar 0.4.26 (registry+https://github.com/rust-lang/crates.io-index)" = "b3196bfbffbba3e57481b6ea32249fbaf590396a52505a2615adbb79d9d826d3"
  5244. "checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  5245. "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  5246. "checksum term 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42"
  5247. "checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e"
  5248. "checksum termios 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "72b620c5ea021d75a735c943269bb07d30c9b77d6ac6b236bc8b5c496ef05625"
  5249. "checksum textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  5250. "checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03"
  5251. "checksum thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1"
  5252. "checksum thread-scoped 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bcbb6aa301e5d3b0b5ef639c9a9c7e2f1c944f177b460c04dc24c69b1fa2bd99"
  5253. "checksum thread_local 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5"
  5254. "checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
  5255. "checksum threshold_crypto 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "95be1032c63011f20b01c5edb64930e2b51512782b43b458b1e3449613d70f87"
  5256. "checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
  5257. "checksum tiny-bip39 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c5676413eaeb1ea35300a0224416f57abc3bd251657e0fafc12c47ff98c060"
  5258. "checksum tiny-keccak 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2"
  5259. "checksum tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
  5260. "checksum tokio-buf 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
  5261. "checksum tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f"
  5262. "checksum tokio-current-thread 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443"
  5263. "checksum tokio-executor 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f27ee0e6db01c5f0b2973824547ce7e637b2ed79b891a9677b0de9bd532b6ac"
  5264. "checksum tokio-fs 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe6dc22b08d6993916647d108a1a7d15b9cd29c4f4496c62b92c45b5041b7af"
  5265. "checksum tokio-io 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926"
  5266. "checksum tokio-reactor 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce"
  5267. "checksum tokio-rustls 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e3ccd44da3ebf1a7afa996a47d9a4d67e212de399a87e91f6bfb331c8d8f1a7"
  5268. "checksum tokio-sync 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7"
  5269. "checksum tokio-tcp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119"
  5270. "checksum tokio-threadpool 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)" = "90ca01319dea1e376a001e8dc192d42ebde6dd532532a5bad988ac37db365b19"
  5271. "checksum tokio-timer 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "f2106812d500ed25a4f38235b9cae8f78a09edf43203e16e59c3b769a342a60e"
  5272. "checksum tokio-udp 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92"
  5273. "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445"
  5274. "checksum toml 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c04dffffeac90885436d23c692517bb5b8b3f8863e4afc15023628d067d667b7"
  5275. "checksum treeline 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41"
  5276. "checksum try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382"
  5277. "checksum try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
  5278. "checksum typed-arena 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9c0704a799d314795d3d847d519b284bae681ef9b1f3da99f7ebc7b47ba2e607"
  5279. "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"
  5280. "checksum unicase 2.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6"
  5281. "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  5282. "checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426"
  5283. "checksum unicode-segmentation 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1967f4cdfc355b37fd76d2a954fb2ed3871034eb4f26d60537d88795cfc332a9"
  5284. "checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526"
  5285. "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
  5286. "checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
  5287. "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
  5288. "checksum unsigned-varint 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2c64cdf40b4a9645534a943668681bcb219faf51874d4b65d2e0abda1b10a2ab"
  5289. "checksum untrusted 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60369ef7a31de49bcb3f6ca728d4ba7300d9a1658f94c727d4cab8c8d9f4aece"
  5290. "checksum url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
  5291. "checksum url 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "75b414f6c464c879d7f9babf951f23bc3743fb7313c081b2e6ca719067ea9d61"
  5292. "checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f"
  5293. "checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
  5294. "checksum vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
  5295. "checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
  5296. "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5297. "checksum wait-timeout 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  5298. "checksum walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e"
  5299. "checksum want 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
  5300. "checksum wasm-bindgen 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "dcddca308b16cd93c2b67b126c688e5467e4ef2e28200dc7dfe4ae284f2faefc"
  5301. "checksum wasm-bindgen-backend 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "f805d9328b5fc7e5c6399960fd1889271b9b58ae17bdb2417472156cc9fafdd0"
  5302. "checksum wasm-bindgen-macro 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "3ff88201a482abfc63921621f6cb18eb1efd74f136b05e5841e7f8ca434539e9"
  5303. "checksum wasm-bindgen-macro-support 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "6a433d89ecdb9f77d46fcf00c8cf9f3467b7de9954d8710c175f61e2e245bb0e"
  5304. "checksum wasm-bindgen-shared 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "d41fc1bc3570cdf8d108c15e014045fd45a95bb5eb36605f96a90461fc34027d"
  5305. "checksum wasm-bindgen-webidl 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "be53d289bf2fa7645a089cfd5c7a34bf4fe94221f58cf86ee42a7b4bc854ff14"
  5306. "checksum web-sys 0.3.27 (registry+https://github.com/rust-lang/crates.io-index)" = "6435c477200ad486089a7a72c2bd6c9bdf9740bd7fff868806076218076d8c51"
  5307. "checksum webpki 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d7e664e770ac0110e2384769bcc59ed19e329d81f555916a6e072714957b81b4"
  5308. "checksum webpki-roots 0.17.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b"
  5309. "checksum weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bb43f70885151e629e2a19ce9e50bd730fd436cfd4b666894c9ce4de9141164"
  5310. "checksum which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164"
  5311. "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  5312. "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
  5313. "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  5314. "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  5315. "checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9"
  5316. "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  5317. "checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba"
  5318. "checksum winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ef84b96d10db72dd980056666d7f1e7663ce93d82fa33b63e71c966f4cf5032"
  5319. "checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  5320. "checksum ws 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a2c47b5798ccc774ffb93ff536aec7c4275d722fd9c740c83cdd1af1f2d94"
  5321. "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  5322. "checksum x25519-dalek 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ee1585dc1484373cbc1cee7aafda26634665cf449436fd6e24bfd1fad230538"
  5323. "checksum xattr 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
  5324. "checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d"