Cargo.lock 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.17.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler"
  14. version = "1.0.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  17. [[package]]
  18. name = "aead"
  19. version = "0.5.1"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
  22. dependencies = [
  23. "crypto-common",
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "ahash"
  28. version = "0.7.6"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  31. dependencies = [
  32. "getrandom",
  33. "once_cell",
  34. "version_check",
  35. ]
  36. [[package]]
  37. name = "aho-corasick"
  38. version = "0.7.19"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
  41. dependencies = [
  42. "memchr",
  43. ]
  44. [[package]]
  45. name = "android_system_properties"
  46. version = "0.1.5"
  47. source = "registry+https://github.com/rust-lang/crates.io-index"
  48. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  49. dependencies = [
  50. "libc",
  51. ]
  52. [[package]]
  53. name = "ansi_term"
  54. version = "0.12.1"
  55. source = "registry+https://github.com/rust-lang/crates.io-index"
  56. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  57. dependencies = [
  58. "winapi",
  59. ]
  60. [[package]]
  61. name = "anyhow"
  62. version = "1.0.65"
  63. source = "registry+https://github.com/rust-lang/crates.io-index"
  64. checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
  65. [[package]]
  66. name = "arrayref"
  67. version = "0.3.6"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
  70. [[package]]
  71. name = "arrayvec"
  72. version = "0.7.2"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
  75. [[package]]
  76. name = "async-attributes"
  77. version = "1.1.2"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
  80. dependencies = [
  81. "quote",
  82. "syn",
  83. ]
  84. [[package]]
  85. name = "async-channel"
  86. version = "1.7.1"
  87. source = "registry+https://github.com/rust-lang/crates.io-index"
  88. checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
  89. dependencies = [
  90. "concurrent-queue",
  91. "event-listener",
  92. "futures-core",
  93. ]
  94. [[package]]
  95. name = "async-executor"
  96. version = "1.4.1"
  97. source = "registry+https://github.com/rust-lang/crates.io-index"
  98. checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
  99. dependencies = [
  100. "async-task",
  101. "concurrent-queue",
  102. "fastrand",
  103. "futures-lite",
  104. "once_cell",
  105. "slab",
  106. ]
  107. [[package]]
  108. name = "async-fs"
  109. version = "1.6.0"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
  112. dependencies = [
  113. "async-lock",
  114. "autocfg",
  115. "blocking",
  116. "futures-lite",
  117. ]
  118. [[package]]
  119. name = "async-global-executor"
  120. version = "2.3.0"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "0da5b41ee986eed3f524c380e6d64965aea573882a8907682ad100f7859305ca"
  123. dependencies = [
  124. "async-channel",
  125. "async-executor",
  126. "async-io",
  127. "async-lock",
  128. "blocking",
  129. "futures-lite",
  130. "once_cell",
  131. ]
  132. [[package]]
  133. name = "async-io"
  134. version = "1.9.0"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "83e21f3a490c72b3b0cf44962180e60045de2925d8dff97918f7ee43c8f637c7"
  137. dependencies = [
  138. "autocfg",
  139. "concurrent-queue",
  140. "futures-lite",
  141. "libc",
  142. "log",
  143. "once_cell",
  144. "parking",
  145. "polling",
  146. "slab",
  147. "socket2",
  148. "waker-fn",
  149. "winapi",
  150. ]
  151. [[package]]
  152. name = "async-lock"
  153. version = "2.5.0"
  154. source = "registry+https://github.com/rust-lang/crates.io-index"
  155. checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
  156. dependencies = [
  157. "event-listener",
  158. ]
  159. [[package]]
  160. name = "async-native-tls"
  161. version = "0.4.0"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "d57d4cec3c647232e1094dc013546c0b33ce785d8aeb251e1f20dfaf8a9a13fe"
  164. dependencies = [
  165. "futures-util",
  166. "native-tls",
  167. "thiserror",
  168. "url",
  169. ]
  170. [[package]]
  171. name = "async-net"
  172. version = "1.7.0"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "4051e67316bc7eff608fe723df5d32ed639946adcd69e07df41fd42a7b411f1f"
  175. dependencies = [
  176. "async-io",
  177. "autocfg",
  178. "blocking",
  179. "futures-lite",
  180. ]
  181. [[package]]
  182. name = "async-process"
  183. version = "1.5.0"
  184. source = "registry+https://github.com/rust-lang/crates.io-index"
  185. checksum = "02111fd8655a613c25069ea89fc8d9bb89331fa77486eb3bc059ee757cfa481c"
  186. dependencies = [
  187. "async-io",
  188. "autocfg",
  189. "blocking",
  190. "cfg-if 1.0.0",
  191. "event-listener",
  192. "futures-lite",
  193. "libc",
  194. "once_cell",
  195. "signal-hook",
  196. "winapi",
  197. ]
  198. [[package]]
  199. name = "async-recursion"
  200. version = "1.0.0"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea"
  203. dependencies = [
  204. "proc-macro2",
  205. "quote",
  206. "syn",
  207. ]
  208. [[package]]
  209. name = "async-std"
  210. version = "1.12.0"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
  213. dependencies = [
  214. "async-attributes",
  215. "async-channel",
  216. "async-global-executor",
  217. "async-io",
  218. "async-lock",
  219. "async-process",
  220. "crossbeam-utils",
  221. "futures-channel",
  222. "futures-core",
  223. "futures-io",
  224. "futures-lite",
  225. "gloo-timers",
  226. "kv-log-macro",
  227. "log",
  228. "memchr",
  229. "once_cell",
  230. "pin-project-lite",
  231. "pin-utils",
  232. "slab",
  233. "wasm-bindgen-futures",
  234. ]
  235. [[package]]
  236. name = "async-task"
  237. version = "4.3.0"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
  240. [[package]]
  241. name = "async-trait"
  242. version = "0.1.57"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
  245. dependencies = [
  246. "proc-macro2",
  247. "quote",
  248. "syn",
  249. ]
  250. [[package]]
  251. name = "async-tungstenite"
  252. version = "0.17.2"
  253. source = "registry+https://github.com/rust-lang/crates.io-index"
  254. checksum = "a1b71b31561643aa8e7df3effe284fa83ab1a840e52294c5f4bd7bfd8b2becbb"
  255. dependencies = [
  256. "futures-io",
  257. "futures-util",
  258. "log",
  259. "pin-project-lite",
  260. "tungstenite",
  261. ]
  262. [[package]]
  263. name = "atoi"
  264. version = "1.0.0"
  265. source = "registry+https://github.com/rust-lang/crates.io-index"
  266. checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
  267. dependencies = [
  268. "num-traits",
  269. ]
  270. [[package]]
  271. name = "atomic-waker"
  272. version = "1.0.0"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
  275. [[package]]
  276. name = "atty"
  277. version = "0.2.14"
  278. source = "registry+https://github.com/rust-lang/crates.io-index"
  279. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  280. dependencies = [
  281. "hermit-abi",
  282. "libc",
  283. "winapi",
  284. ]
  285. [[package]]
  286. name = "autocfg"
  287. version = "1.1.0"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  290. [[package]]
  291. name = "backtrace"
  292. version = "0.3.66"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
  295. dependencies = [
  296. "addr2line",
  297. "cc",
  298. "cfg-if 1.0.0",
  299. "libc",
  300. "miniz_oxide",
  301. "object 0.29.0",
  302. "rustc-demangle",
  303. ]
  304. [[package]]
  305. name = "base64"
  306. version = "0.13.0"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  309. [[package]]
  310. name = "bincode"
  311. version = "2.0.0-rc.1"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "f609ceb2c41b0d0277314a789ef0e7eb14593d5485f7c67320bed3924ebb1b33"
  314. dependencies = [
  315. "bincode_derive",
  316. "serde",
  317. ]
  318. [[package]]
  319. name = "bincode_derive"
  320. version = "2.0.0-rc.1"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "913287a8f3e00db4c7ae1b87e9b9b8cebd6b89217eaadfc281fa5c897da35dc3"
  323. dependencies = [
  324. "virtue",
  325. ]
  326. [[package]]
  327. name = "bit-set"
  328. version = "0.5.3"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  331. dependencies = [
  332. "bit-vec",
  333. ]
  334. [[package]]
  335. name = "bit-vec"
  336. version = "0.6.3"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  339. [[package]]
  340. name = "bitflags"
  341. version = "1.3.2"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  344. [[package]]
  345. name = "bitvec"
  346. version = "1.0.1"
  347. source = "registry+https://github.com/rust-lang/crates.io-index"
  348. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  349. dependencies = [
  350. "funty",
  351. "radium",
  352. "tap",
  353. "wyz",
  354. ]
  355. [[package]]
  356. name = "blake2b_simd"
  357. version = "1.0.0"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127"
  360. dependencies = [
  361. "arrayref",
  362. "arrayvec",
  363. "constant_time_eq",
  364. ]
  365. [[package]]
  366. name = "blake3"
  367. version = "1.3.1"
  368. source = "registry+https://github.com/rust-lang/crates.io-index"
  369. checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f"
  370. dependencies = [
  371. "arrayref",
  372. "arrayvec",
  373. "cc",
  374. "cfg-if 1.0.0",
  375. "constant_time_eq",
  376. "digest 0.10.5",
  377. ]
  378. [[package]]
  379. name = "block-buffer"
  380. version = "0.10.3"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
  383. dependencies = [
  384. "generic-array",
  385. ]
  386. [[package]]
  387. name = "blocking"
  388. version = "1.2.0"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
  391. dependencies = [
  392. "async-channel",
  393. "async-task",
  394. "atomic-waker",
  395. "fastrand",
  396. "futures-lite",
  397. "once_cell",
  398. ]
  399. [[package]]
  400. name = "borsh"
  401. version = "0.9.3"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
  404. dependencies = [
  405. "borsh-derive",
  406. "hashbrown 0.11.2",
  407. ]
  408. [[package]]
  409. name = "borsh-derive"
  410. version = "0.9.3"
  411. source = "registry+https://github.com/rust-lang/crates.io-index"
  412. checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
  413. dependencies = [
  414. "borsh-derive-internal",
  415. "borsh-schema-derive-internal",
  416. "proc-macro-crate 0.1.5",
  417. "proc-macro2",
  418. "syn",
  419. ]
  420. [[package]]
  421. name = "borsh-derive-internal"
  422. version = "0.9.3"
  423. source = "registry+https://github.com/rust-lang/crates.io-index"
  424. checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
  425. dependencies = [
  426. "proc-macro2",
  427. "quote",
  428. "syn",
  429. ]
  430. [[package]]
  431. name = "borsh-schema-derive-internal"
  432. version = "0.9.3"
  433. source = "registry+https://github.com/rust-lang/crates.io-index"
  434. checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
  435. dependencies = [
  436. "proc-macro2",
  437. "quote",
  438. "syn",
  439. ]
  440. [[package]]
  441. name = "bs58"
  442. version = "0.4.0"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
  445. [[package]]
  446. name = "bstr"
  447. version = "0.2.17"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
  450. dependencies = [
  451. "lazy_static",
  452. "memchr",
  453. "regex-automata",
  454. "serde",
  455. ]
  456. [[package]]
  457. name = "bumpalo"
  458. version = "3.11.0"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
  461. [[package]]
  462. name = "bytecheck"
  463. version = "0.6.9"
  464. source = "registry+https://github.com/rust-lang/crates.io-index"
  465. checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
  466. dependencies = [
  467. "bytecheck_derive",
  468. "ptr_meta",
  469. ]
  470. [[package]]
  471. name = "bytecheck_derive"
  472. version = "0.6.9"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
  475. dependencies = [
  476. "proc-macro2",
  477. "quote",
  478. "syn",
  479. ]
  480. [[package]]
  481. name = "bytecount"
  482. version = "0.6.3"
  483. source = "registry+https://github.com/rust-lang/crates.io-index"
  484. checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
  485. [[package]]
  486. name = "bytemuck"
  487. version = "1.12.1"
  488. source = "registry+https://github.com/rust-lang/crates.io-index"
  489. checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
  490. [[package]]
  491. name = "byteorder"
  492. version = "1.4.3"
  493. source = "registry+https://github.com/rust-lang/crates.io-index"
  494. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  495. [[package]]
  496. name = "bytes"
  497. version = "1.2.1"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
  500. [[package]]
  501. name = "cache-padded"
  502. version = "1.2.0"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
  505. [[package]]
  506. name = "camino"
  507. version = "1.1.1"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "88ad0e1e3e88dd237a156ab9f571021b8a158caa0ae44b1968a241efb5144c1e"
  510. dependencies = [
  511. "serde",
  512. ]
  513. [[package]]
  514. name = "cargo-platform"
  515. version = "0.1.2"
  516. source = "registry+https://github.com/rust-lang/crates.io-index"
  517. checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
  518. dependencies = [
  519. "serde",
  520. ]
  521. [[package]]
  522. name = "cargo_metadata"
  523. version = "0.14.2"
  524. source = "registry+https://github.com/rust-lang/crates.io-index"
  525. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  526. dependencies = [
  527. "camino",
  528. "cargo-platform",
  529. "semver 1.0.14",
  530. "serde",
  531. "serde_json",
  532. ]
  533. [[package]]
  534. name = "cassowary"
  535. version = "0.3.0"
  536. source = "registry+https://github.com/rust-lang/crates.io-index"
  537. checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
  538. [[package]]
  539. name = "cc"
  540. version = "1.0.73"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
  543. [[package]]
  544. name = "cfg-if"
  545. version = "0.1.10"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  548. [[package]]
  549. name = "cfg-if"
  550. version = "1.0.0"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  553. [[package]]
  554. name = "chacha20"
  555. version = "0.9.0"
  556. source = "registry+https://github.com/rust-lang/crates.io-index"
  557. checksum = "c7fc89c7c5b9e7a02dfe45cd2367bae382f9ed31c61ca8debe5f827c420a2f08"
  558. dependencies = [
  559. "cfg-if 1.0.0",
  560. "cipher",
  561. "cpufeatures",
  562. ]
  563. [[package]]
  564. name = "chacha20poly1305"
  565. version = "0.10.1"
  566. source = "registry+https://github.com/rust-lang/crates.io-index"
  567. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  568. dependencies = [
  569. "aead",
  570. "chacha20",
  571. "cipher",
  572. "poly1305",
  573. "zeroize",
  574. ]
  575. [[package]]
  576. name = "chrono"
  577. version = "0.4.22"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
  580. dependencies = [
  581. "iana-time-zone",
  582. "js-sys",
  583. "num-integer",
  584. "num-traits",
  585. "time 0.1.44",
  586. "wasm-bindgen",
  587. "winapi",
  588. ]
  589. [[package]]
  590. name = "cipher"
  591. version = "0.4.3"
  592. source = "registry+https://github.com/rust-lang/crates.io-index"
  593. checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
  594. dependencies = [
  595. "crypto-common",
  596. "inout",
  597. "zeroize",
  598. ]
  599. [[package]]
  600. name = "clap"
  601. version = "2.34.0"
  602. source = "registry+https://github.com/rust-lang/crates.io-index"
  603. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  604. dependencies = [
  605. "ansi_term",
  606. "atty",
  607. "bitflags",
  608. "strsim 0.8.0",
  609. "textwrap 0.11.0",
  610. "unicode-width",
  611. "vec_map",
  612. ]
  613. [[package]]
  614. name = "clap"
  615. version = "3.2.22"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750"
  618. dependencies = [
  619. "atty",
  620. "bitflags",
  621. "clap_derive",
  622. "clap_lex",
  623. "indexmap",
  624. "once_cell",
  625. "strsim 0.10.0",
  626. "termcolor",
  627. "textwrap 0.15.1",
  628. ]
  629. [[package]]
  630. name = "clap_derive"
  631. version = "3.2.18"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
  634. dependencies = [
  635. "heck 0.4.0",
  636. "proc-macro-error",
  637. "proc-macro2",
  638. "quote",
  639. "syn",
  640. ]
  641. [[package]]
  642. name = "clap_lex"
  643. version = "0.2.4"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
  646. dependencies = [
  647. "os_str_bytes",
  648. ]
  649. [[package]]
  650. name = "cmake"
  651. version = "0.1.48"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a"
  654. dependencies = [
  655. "cc",
  656. ]
  657. [[package]]
  658. name = "color_quant"
  659. version = "1.1.0"
  660. source = "registry+https://github.com/rust-lang/crates.io-index"
  661. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  662. [[package]]
  663. name = "colored"
  664. version = "2.0.0"
  665. source = "registry+https://github.com/rust-lang/crates.io-index"
  666. checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
  667. dependencies = [
  668. "atty",
  669. "lazy_static",
  670. "winapi",
  671. ]
  672. [[package]]
  673. name = "concurrent-queue"
  674. version = "1.2.4"
  675. source = "registry+https://github.com/rust-lang/crates.io-index"
  676. checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
  677. dependencies = [
  678. "cache-padded",
  679. ]
  680. [[package]]
  681. name = "console"
  682. version = "0.15.1"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847"
  685. dependencies = [
  686. "encode_unicode 0.3.6",
  687. "libc",
  688. "once_cell",
  689. "terminal_size",
  690. "unicode-width",
  691. "winapi",
  692. ]
  693. [[package]]
  694. name = "const-cstr"
  695. version = "0.3.0"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6"
  698. [[package]]
  699. name = "constant_time_eq"
  700. version = "0.1.5"
  701. source = "registry+https://github.com/rust-lang/crates.io-index"
  702. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  703. [[package]]
  704. name = "core-foundation"
  705. version = "0.9.3"
  706. source = "registry+https://github.com/rust-lang/crates.io-index"
  707. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  708. dependencies = [
  709. "core-foundation-sys",
  710. "libc",
  711. ]
  712. [[package]]
  713. name = "core-foundation-sys"
  714. version = "0.8.3"
  715. source = "registry+https://github.com/rust-lang/crates.io-index"
  716. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  717. [[package]]
  718. name = "core-graphics"
  719. version = "0.22.3"
  720. source = "registry+https://github.com/rust-lang/crates.io-index"
  721. checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
  722. dependencies = [
  723. "bitflags",
  724. "core-foundation",
  725. "core-graphics-types",
  726. "foreign-types",
  727. "libc",
  728. ]
  729. [[package]]
  730. name = "core-graphics-types"
  731. version = "0.1.1"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
  734. dependencies = [
  735. "bitflags",
  736. "core-foundation",
  737. "foreign-types",
  738. "libc",
  739. ]
  740. [[package]]
  741. name = "core-text"
  742. version = "19.2.0"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25"
  745. dependencies = [
  746. "core-foundation",
  747. "core-graphics",
  748. "foreign-types",
  749. "libc",
  750. ]
  751. [[package]]
  752. name = "corosensei"
  753. version = "0.1.3"
  754. source = "registry+https://github.com/rust-lang/crates.io-index"
  755. checksum = "9847f90f32a50b0dcbd68bc23ff242798b13080b97b0569f6ed96a45ce4cf2cd"
  756. dependencies = [
  757. "autocfg",
  758. "cfg-if 1.0.0",
  759. "libc",
  760. "scopeguard",
  761. "windows-sys 0.33.0",
  762. ]
  763. [[package]]
  764. name = "cpufeatures"
  765. version = "0.2.5"
  766. source = "registry+https://github.com/rust-lang/crates.io-index"
  767. checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
  768. dependencies = [
  769. "libc",
  770. ]
  771. [[package]]
  772. name = "cranelift-bforest"
  773. version = "0.82.3"
  774. source = "registry+https://github.com/rust-lang/crates.io-index"
  775. checksum = "38faa2a16616c8e78a18d37b4726b98bfd2de192f2fdc8a39ddf568a408a0f75"
  776. dependencies = [
  777. "cranelift-entity",
  778. ]
  779. [[package]]
  780. name = "cranelift-codegen"
  781. version = "0.82.3"
  782. source = "registry+https://github.com/rust-lang/crates.io-index"
  783. checksum = "26f192472a3ba23860afd07d2b0217dc628f21fcc72617aa1336d98e1671f33b"
  784. dependencies = [
  785. "cranelift-bforest",
  786. "cranelift-codegen-meta",
  787. "cranelift-codegen-shared",
  788. "cranelift-entity",
  789. "gimli",
  790. "log",
  791. "regalloc",
  792. "smallvec",
  793. "target-lexicon",
  794. ]
  795. [[package]]
  796. name = "cranelift-codegen-meta"
  797. version = "0.82.3"
  798. source = "registry+https://github.com/rust-lang/crates.io-index"
  799. checksum = "0f32ddb89e9b89d3d9b36a5b7d7ea3261c98235a76ac95ba46826b8ec40b1a24"
  800. dependencies = [
  801. "cranelift-codegen-shared",
  802. ]
  803. [[package]]
  804. name = "cranelift-codegen-shared"
  805. version = "0.82.3"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "01fd0d9f288cc1b42d9333b7a776b17e278fc888c28e6a0f09b5573d45a150bc"
  808. [[package]]
  809. name = "cranelift-entity"
  810. version = "0.82.3"
  811. source = "registry+https://github.com/rust-lang/crates.io-index"
  812. checksum = "9e3bfe172b83167604601faf9dc60453e0d0a93415b57a9c4d1a7ae6849185cf"
  813. [[package]]
  814. name = "cranelift-frontend"
  815. version = "0.82.3"
  816. source = "registry+https://github.com/rust-lang/crates.io-index"
  817. checksum = "a006e3e32d80ce0e4ba7f1f9ddf66066d052a8c884a110b91d05404d6ce26dce"
  818. dependencies = [
  819. "cranelift-codegen",
  820. "log",
  821. "smallvec",
  822. "target-lexicon",
  823. ]
  824. [[package]]
  825. name = "crc"
  826. version = "3.0.0"
  827. source = "registry+https://github.com/rust-lang/crates.io-index"
  828. checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
  829. dependencies = [
  830. "crc-catalog",
  831. ]
  832. [[package]]
  833. name = "crc-catalog"
  834. version = "2.1.0"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
  837. [[package]]
  838. name = "crc32fast"
  839. version = "1.3.2"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  842. dependencies = [
  843. "cfg-if 1.0.0",
  844. ]
  845. [[package]]
  846. name = "crossbeam-channel"
  847. version = "0.5.6"
  848. source = "registry+https://github.com/rust-lang/crates.io-index"
  849. checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
  850. dependencies = [
  851. "cfg-if 1.0.0",
  852. "crossbeam-utils",
  853. ]
  854. [[package]]
  855. name = "crossbeam-deque"
  856. version = "0.8.2"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
  859. dependencies = [
  860. "cfg-if 1.0.0",
  861. "crossbeam-epoch",
  862. "crossbeam-utils",
  863. ]
  864. [[package]]
  865. name = "crossbeam-epoch"
  866. version = "0.9.10"
  867. source = "registry+https://github.com/rust-lang/crates.io-index"
  868. checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
  869. dependencies = [
  870. "autocfg",
  871. "cfg-if 1.0.0",
  872. "crossbeam-utils",
  873. "memoffset",
  874. "once_cell",
  875. "scopeguard",
  876. ]
  877. [[package]]
  878. name = "crossbeam-queue"
  879. version = "0.3.6"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
  882. dependencies = [
  883. "cfg-if 1.0.0",
  884. "crossbeam-utils",
  885. ]
  886. [[package]]
  887. name = "crossbeam-utils"
  888. version = "0.8.11"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
  891. dependencies = [
  892. "cfg-if 1.0.0",
  893. "once_cell",
  894. ]
  895. [[package]]
  896. name = "crossterm"
  897. version = "0.25.0"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
  900. dependencies = [
  901. "bitflags",
  902. "crossterm_winapi",
  903. "libc",
  904. "mio",
  905. "parking_lot 0.12.1",
  906. "signal-hook",
  907. "signal-hook-mio",
  908. "winapi",
  909. ]
  910. [[package]]
  911. name = "crossterm_winapi"
  912. version = "0.9.0"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
  915. dependencies = [
  916. "winapi",
  917. ]
  918. [[package]]
  919. name = "crunchy"
  920. version = "0.2.2"
  921. source = "registry+https://github.com/rust-lang/crates.io-index"
  922. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  923. [[package]]
  924. name = "crypto-common"
  925. version = "0.1.6"
  926. source = "registry+https://github.com/rust-lang/crates.io-index"
  927. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  928. dependencies = [
  929. "generic-array",
  930. "rand_core 0.6.4",
  931. "typenum",
  932. ]
  933. [[package]]
  934. name = "crypto_api"
  935. version = "0.2.2"
  936. source = "registry+https://github.com/rust-lang/crates.io-index"
  937. checksum = "2f855e87e75a4799e18b8529178adcde6fd4f97c1449ff4821e747ff728bb102"
  938. [[package]]
  939. name = "crypto_api_chachapoly"
  940. version = "0.5.0"
  941. source = "registry+https://github.com/rust-lang/crates.io-index"
  942. checksum = "b63ae1025a6981f91b70bdcf11827189f49b01aaa3720115b330cd325d1c3809"
  943. dependencies = [
  944. "crypto_api",
  945. ]
  946. [[package]]
  947. name = "crypto_box"
  948. version = "0.8.1"
  949. source = "registry+https://github.com/rust-lang/crates.io-index"
  950. checksum = "8cbf5d97a01c39dad83e20de5398748bbbb0ffd307b9612cf0db74ab3c88d551"
  951. dependencies = [
  952. "aead",
  953. "chacha20",
  954. "chacha20poly1305",
  955. "salsa20",
  956. "x25519-dalek",
  957. "xsalsa20poly1305",
  958. "zeroize",
  959. ]
  960. [[package]]
  961. name = "csv"
  962. version = "1.1.6"
  963. source = "registry+https://github.com/rust-lang/crates.io-index"
  964. checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
  965. dependencies = [
  966. "bstr",
  967. "csv-core",
  968. "itoa 0.4.8",
  969. "ryu",
  970. "serde",
  971. ]
  972. [[package]]
  973. name = "csv-core"
  974. version = "0.1.10"
  975. source = "registry+https://github.com/rust-lang/crates.io-index"
  976. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  977. dependencies = [
  978. "memchr",
  979. ]
  980. [[package]]
  981. name = "ct-codecs"
  982. version = "1.1.1"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
  985. [[package]]
  986. name = "ctor"
  987. version = "0.1.23"
  988. source = "registry+https://github.com/rust-lang/crates.io-index"
  989. checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
  990. dependencies = [
  991. "quote",
  992. "syn",
  993. ]
  994. [[package]]
  995. name = "ctrlc"
  996. version = "3.2.3"
  997. source = "registry+https://github.com/rust-lang/crates.io-index"
  998. checksum = "1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173"
  999. dependencies = [
  1000. "nix",
  1001. "winapi",
  1002. ]
  1003. [[package]]
  1004. name = "curve25519-dalek"
  1005. version = "3.2.0"
  1006. source = "registry+https://github.com/rust-lang/crates.io-index"
  1007. checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
  1008. dependencies = [
  1009. "byteorder",
  1010. "digest 0.9.0",
  1011. "rand_core 0.5.1",
  1012. "subtle",
  1013. "zeroize",
  1014. ]
  1015. [[package]]
  1016. name = "dao-cli"
  1017. version = "0.3.0"
  1018. dependencies = [
  1019. "async-channel",
  1020. "async-executor",
  1021. "async-std",
  1022. "async-trait",
  1023. "clap 3.2.22",
  1024. "darkfi",
  1025. "futures",
  1026. "log",
  1027. "num_cpus",
  1028. "serde_json",
  1029. "simplelog",
  1030. "smol",
  1031. "url",
  1032. ]
  1033. [[package]]
  1034. name = "daod"
  1035. version = "0.3.0"
  1036. dependencies = [
  1037. "async-channel",
  1038. "async-executor",
  1039. "async-std",
  1040. "async-trait",
  1041. "crypto_api_chachapoly",
  1042. "darkfi",
  1043. "easy-parallel",
  1044. "futures",
  1045. "group",
  1046. "halo2_gadgets",
  1047. "halo2_proofs",
  1048. "incrementalmerkletree",
  1049. "lazy_static",
  1050. "log",
  1051. "num_cpus",
  1052. "pasta_curves",
  1053. "rand",
  1054. "serde_json",
  1055. "simplelog",
  1056. "smol",
  1057. "thiserror",
  1058. "url",
  1059. ]
  1060. [[package]]
  1061. name = "darkfi"
  1062. version = "0.3.0"
  1063. dependencies = [
  1064. "arrayvec",
  1065. "async-channel",
  1066. "async-executor",
  1067. "async-std",
  1068. "async-trait",
  1069. "async-tungstenite",
  1070. "bincode",
  1071. "bitvec",
  1072. "blake2b_simd",
  1073. "blake3",
  1074. "bs58",
  1075. "bytes",
  1076. "chrono",
  1077. "clap 3.2.22",
  1078. "crypto_api_chachapoly",
  1079. "darkfi-derive",
  1080. "darkfi-derive-internal",
  1081. "dirs",
  1082. "drk-sdk",
  1083. "ed25519-compact",
  1084. "fast-socks5",
  1085. "futures",
  1086. "futures-rustls",
  1087. "fxhash",
  1088. "group",
  1089. "halo2_gadgets",
  1090. "halo2_proofs",
  1091. "hex",
  1092. "incrementalmerkletree",
  1093. "indexmap",
  1094. "indicatif",
  1095. "itertools",
  1096. "lazy-init",
  1097. "lazy_static",
  1098. "libc",
  1099. "libsqlite3-sys",
  1100. "log",
  1101. "num-bigint",
  1102. "num-traits",
  1103. "pasta_curves",
  1104. "plotters",
  1105. "rand",
  1106. "rcgen",
  1107. "rustls-pemfile",
  1108. "serde",
  1109. "serde_json",
  1110. "sha2",
  1111. "simplelog",
  1112. "sled",
  1113. "smol",
  1114. "socket2",
  1115. "sqlx",
  1116. "structopt",
  1117. "structopt-toml",
  1118. "subtle",
  1119. "termion",
  1120. "thiserror",
  1121. "toml",
  1122. "tungstenite",
  1123. "url",
  1124. "wasmer",
  1125. "wasmer-compiler-singlepass",
  1126. "wasmer-middlewares",
  1127. ]
  1128. [[package]]
  1129. name = "darkfi-derive"
  1130. version = "0.3.0"
  1131. dependencies = [
  1132. "darkfi-derive-internal",
  1133. "proc-macro-crate 1.2.1",
  1134. "proc-macro2",
  1135. "syn",
  1136. ]
  1137. [[package]]
  1138. name = "darkfi-derive-internal"
  1139. version = "0.3.0"
  1140. dependencies = [
  1141. "proc-macro2",
  1142. "quote",
  1143. "syn",
  1144. ]
  1145. [[package]]
  1146. name = "darkfid"
  1147. version = "0.3.0"
  1148. dependencies = [
  1149. "async-channel",
  1150. "async-executor",
  1151. "async-std",
  1152. "async-trait",
  1153. "blake3",
  1154. "bs58",
  1155. "chrono",
  1156. "ctrlc",
  1157. "darkfi",
  1158. "easy-parallel",
  1159. "futures-lite",
  1160. "fxhash",
  1161. "incrementalmerkletree",
  1162. "lazy-init",
  1163. "log",
  1164. "pasta_curves",
  1165. "rand",
  1166. "serde",
  1167. "serde_derive",
  1168. "serde_json",
  1169. "simplelog",
  1170. "sled",
  1171. "structopt",
  1172. "structopt-toml",
  1173. "url",
  1174. ]
  1175. [[package]]
  1176. name = "darkotc"
  1177. version = "0.3.0"
  1178. dependencies = [
  1179. "async-std",
  1180. "bs58",
  1181. "clap 3.2.22",
  1182. "darkfi",
  1183. "halo2_gadgets",
  1184. "halo2_proofs",
  1185. "rand",
  1186. "serde_json",
  1187. "url",
  1188. ]
  1189. [[package]]
  1190. name = "darkwiki"
  1191. version = "0.4.0"
  1192. dependencies = [
  1193. "async-channel",
  1194. "async-std",
  1195. "async-trait",
  1196. "darkfi",
  1197. "futures",
  1198. "log",
  1199. "rand",
  1200. "serde",
  1201. "serde_json",
  1202. "simplelog",
  1203. "smol",
  1204. "structopt",
  1205. "url",
  1206. ]
  1207. [[package]]
  1208. name = "darkwikid"
  1209. version = "0.4.0"
  1210. dependencies = [
  1211. "async-channel",
  1212. "async-executor",
  1213. "async-std",
  1214. "async-trait",
  1215. "bs58",
  1216. "chrono",
  1217. "colored",
  1218. "crypto_box",
  1219. "ctrlc",
  1220. "darkfi",
  1221. "easy-parallel",
  1222. "futures",
  1223. "fxhash",
  1224. "hex",
  1225. "log",
  1226. "rand",
  1227. "serde",
  1228. "serde_json",
  1229. "sha2",
  1230. "simplelog",
  1231. "smol",
  1232. "structopt",
  1233. "structopt-toml",
  1234. "thiserror",
  1235. "unicode-segmentation",
  1236. "url",
  1237. ]
  1238. [[package]]
  1239. name = "darling"
  1240. version = "0.10.2"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
  1243. dependencies = [
  1244. "darling_core 0.10.2",
  1245. "darling_macro 0.10.2",
  1246. ]
  1247. [[package]]
  1248. name = "darling"
  1249. version = "0.13.4"
  1250. source = "registry+https://github.com/rust-lang/crates.io-index"
  1251. checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
  1252. dependencies = [
  1253. "darling_core 0.13.4",
  1254. "darling_macro 0.13.4",
  1255. ]
  1256. [[package]]
  1257. name = "darling_core"
  1258. version = "0.10.2"
  1259. source = "registry+https://github.com/rust-lang/crates.io-index"
  1260. checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
  1261. dependencies = [
  1262. "fnv",
  1263. "ident_case",
  1264. "proc-macro2",
  1265. "quote",
  1266. "strsim 0.9.3",
  1267. "syn",
  1268. ]
  1269. [[package]]
  1270. name = "darling_core"
  1271. version = "0.13.4"
  1272. source = "registry+https://github.com/rust-lang/crates.io-index"
  1273. checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
  1274. dependencies = [
  1275. "fnv",
  1276. "ident_case",
  1277. "proc-macro2",
  1278. "quote",
  1279. "syn",
  1280. ]
  1281. [[package]]
  1282. name = "darling_macro"
  1283. version = "0.10.2"
  1284. source = "registry+https://github.com/rust-lang/crates.io-index"
  1285. checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
  1286. dependencies = [
  1287. "darling_core 0.10.2",
  1288. "quote",
  1289. "syn",
  1290. ]
  1291. [[package]]
  1292. name = "darling_macro"
  1293. version = "0.13.4"
  1294. source = "registry+https://github.com/rust-lang/crates.io-index"
  1295. checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
  1296. dependencies = [
  1297. "darling_core 0.13.4",
  1298. "quote",
  1299. "syn",
  1300. ]
  1301. [[package]]
  1302. name = "dchat"
  1303. version = "0.1.0"
  1304. dependencies = [
  1305. "async-channel",
  1306. "async-executor",
  1307. "async-std",
  1308. "async-trait",
  1309. "darkfi",
  1310. "easy-parallel",
  1311. "log",
  1312. "num_cpus",
  1313. "serde",
  1314. "serde_json",
  1315. "simplelog",
  1316. "smol",
  1317. "toml",
  1318. "url",
  1319. ]
  1320. [[package]]
  1321. name = "derive_builder"
  1322. version = "0.9.0"
  1323. source = "registry+https://github.com/rust-lang/crates.io-index"
  1324. checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
  1325. dependencies = [
  1326. "darling 0.10.2",
  1327. "derive_builder_core",
  1328. "proc-macro2",
  1329. "quote",
  1330. "syn",
  1331. ]
  1332. [[package]]
  1333. name = "derive_builder_core"
  1334. version = "0.9.0"
  1335. source = "registry+https://github.com/rust-lang/crates.io-index"
  1336. checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
  1337. dependencies = [
  1338. "darling 0.10.2",
  1339. "proc-macro2",
  1340. "quote",
  1341. "syn",
  1342. ]
  1343. [[package]]
  1344. name = "digest"
  1345. version = "0.9.0"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1348. dependencies = [
  1349. "generic-array",
  1350. ]
  1351. [[package]]
  1352. name = "digest"
  1353. version = "0.10.5"
  1354. source = "registry+https://github.com/rust-lang/crates.io-index"
  1355. checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
  1356. dependencies = [
  1357. "block-buffer",
  1358. "crypto-common",
  1359. "subtle",
  1360. ]
  1361. [[package]]
  1362. name = "dirs"
  1363. version = "4.0.0"
  1364. source = "registry+https://github.com/rust-lang/crates.io-index"
  1365. checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
  1366. dependencies = [
  1367. "dirs-sys",
  1368. ]
  1369. [[package]]
  1370. name = "dirs-next"
  1371. version = "2.0.0"
  1372. source = "registry+https://github.com/rust-lang/crates.io-index"
  1373. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1374. dependencies = [
  1375. "cfg-if 1.0.0",
  1376. "dirs-sys-next",
  1377. ]
  1378. [[package]]
  1379. name = "dirs-sys"
  1380. version = "0.3.7"
  1381. source = "registry+https://github.com/rust-lang/crates.io-index"
  1382. checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
  1383. dependencies = [
  1384. "libc",
  1385. "redox_users",
  1386. "winapi",
  1387. ]
  1388. [[package]]
  1389. name = "dirs-sys-next"
  1390. version = "0.1.2"
  1391. source = "registry+https://github.com/rust-lang/crates.io-index"
  1392. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1393. dependencies = [
  1394. "libc",
  1395. "redox_users",
  1396. "winapi",
  1397. ]
  1398. [[package]]
  1399. name = "dlib"
  1400. version = "0.5.0"
  1401. source = "registry+https://github.com/rust-lang/crates.io-index"
  1402. checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
  1403. dependencies = [
  1404. "libloading",
  1405. ]
  1406. [[package]]
  1407. name = "dnetview"
  1408. version = "0.3.0"
  1409. dependencies = [
  1410. "async-channel",
  1411. "async-std",
  1412. "clap 3.2.22",
  1413. "darkfi",
  1414. "easy-parallel",
  1415. "fxhash",
  1416. "log",
  1417. "num_cpus",
  1418. "rand",
  1419. "serde",
  1420. "serde_json",
  1421. "simplelog",
  1422. "smol",
  1423. "termion",
  1424. "thiserror",
  1425. "tui",
  1426. "url",
  1427. ]
  1428. [[package]]
  1429. name = "dotenvy"
  1430. version = "0.15.5"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "ed9155c8f4dc55c7470ae9da3f63c6785245093b3f6aeb0f5bf2e968efbba314"
  1433. dependencies = [
  1434. "dirs",
  1435. ]
  1436. [[package]]
  1437. name = "drk"
  1438. version = "0.3.0"
  1439. dependencies = [
  1440. "async-std",
  1441. "clap 3.2.22",
  1442. "darkfi",
  1443. "log",
  1444. "prettytable-rs",
  1445. "serde_json",
  1446. "simplelog",
  1447. "url",
  1448. ]
  1449. [[package]]
  1450. name = "drk-sdk"
  1451. version = "0.3.0"
  1452. dependencies = [
  1453. "borsh",
  1454. "thiserror",
  1455. "wee_alloc",
  1456. ]
  1457. [[package]]
  1458. name = "dwrote"
  1459. version = "0.11.0"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b"
  1462. dependencies = [
  1463. "lazy_static",
  1464. "libc",
  1465. "winapi",
  1466. "wio",
  1467. ]
  1468. [[package]]
  1469. name = "dynasm"
  1470. version = "1.2.3"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
  1473. dependencies = [
  1474. "bitflags",
  1475. "byteorder",
  1476. "lazy_static",
  1477. "proc-macro-error",
  1478. "proc-macro2",
  1479. "quote",
  1480. "syn",
  1481. ]
  1482. [[package]]
  1483. name = "dynasmrt"
  1484. version = "1.2.3"
  1485. source = "registry+https://github.com/rust-lang/crates.io-index"
  1486. checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
  1487. dependencies = [
  1488. "byteorder",
  1489. "dynasm",
  1490. "memmap2",
  1491. ]
  1492. [[package]]
  1493. name = "easy-parallel"
  1494. version = "3.2.0"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "6907e25393cdcc1f4f3f513d9aac1e840eb1cc341a0fccb01171f7d14d10b946"
  1497. [[package]]
  1498. name = "ed25519-compact"
  1499. version = "1.0.15"
  1500. source = "registry+https://github.com/rust-lang/crates.io-index"
  1501. checksum = "bee9df587982575886a8682edcee11877894349a805f25629c27f63abe3e9ae8"
  1502. dependencies = [
  1503. "ct-codecs",
  1504. "getrandom",
  1505. ]
  1506. [[package]]
  1507. name = "either"
  1508. version = "1.8.0"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
  1511. [[package]]
  1512. name = "encode_unicode"
  1513. version = "0.3.6"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1516. [[package]]
  1517. name = "encode_unicode"
  1518. version = "1.0.0"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
  1521. [[package]]
  1522. name = "enum-iterator"
  1523. version = "0.7.0"
  1524. source = "registry+https://github.com/rust-lang/crates.io-index"
  1525. checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
  1526. dependencies = [
  1527. "enum-iterator-derive",
  1528. ]
  1529. [[package]]
  1530. name = "enum-iterator-derive"
  1531. version = "0.7.0"
  1532. source = "registry+https://github.com/rust-lang/crates.io-index"
  1533. checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
  1534. dependencies = [
  1535. "proc-macro2",
  1536. "quote",
  1537. "syn",
  1538. ]
  1539. [[package]]
  1540. name = "enumset"
  1541. version = "1.0.11"
  1542. source = "registry+https://github.com/rust-lang/crates.io-index"
  1543. checksum = "4799cdb24d48f1f8a7a98d06b7fde65a85a2d1e42b25a889f5406aa1fbefe074"
  1544. dependencies = [
  1545. "enumset_derive",
  1546. ]
  1547. [[package]]
  1548. name = "enumset_derive"
  1549. version = "0.6.0"
  1550. source = "registry+https://github.com/rust-lang/crates.io-index"
  1551. checksum = "ea83a3fbdc1d999ccfbcbee717eab36f8edf2d71693a23ce0d7cca19e085304c"
  1552. dependencies = [
  1553. "darling 0.13.4",
  1554. "proc-macro2",
  1555. "quote",
  1556. "syn",
  1557. ]
  1558. [[package]]
  1559. name = "error-chain"
  1560. version = "0.12.4"
  1561. source = "registry+https://github.com/rust-lang/crates.io-index"
  1562. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1563. dependencies = [
  1564. "version_check",
  1565. ]
  1566. [[package]]
  1567. name = "event-listener"
  1568. version = "2.5.3"
  1569. source = "registry+https://github.com/rust-lang/crates.io-index"
  1570. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1571. [[package]]
  1572. name = "fallible-iterator"
  1573. version = "0.2.0"
  1574. source = "registry+https://github.com/rust-lang/crates.io-index"
  1575. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1576. [[package]]
  1577. name = "fast-socks5"
  1578. version = "0.4.3"
  1579. source = "registry+https://github.com/rust-lang/crates.io-index"
  1580. checksum = "ba337793c1ee49731350a8d971d791651ed51d6e814ab4ddabd79c12b5366140"
  1581. dependencies = [
  1582. "anyhow",
  1583. "async-std",
  1584. "futures",
  1585. "log",
  1586. "thiserror",
  1587. ]
  1588. [[package]]
  1589. name = "fastrand"
  1590. version = "1.8.0"
  1591. source = "registry+https://github.com/rust-lang/crates.io-index"
  1592. checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
  1593. dependencies = [
  1594. "instant",
  1595. ]
  1596. [[package]]
  1597. name = "faucetd"
  1598. version = "0.3.0"
  1599. dependencies = [
  1600. "async-channel",
  1601. "async-executor",
  1602. "async-std",
  1603. "async-trait",
  1604. "blake3",
  1605. "bs58",
  1606. "chrono",
  1607. "ctrlc",
  1608. "darkfi",
  1609. "easy-parallel",
  1610. "futures-lite",
  1611. "hex",
  1612. "lazy-init",
  1613. "log",
  1614. "rand",
  1615. "serde",
  1616. "serde_derive",
  1617. "serde_json",
  1618. "simplelog",
  1619. "sled",
  1620. "structopt",
  1621. "structopt-toml",
  1622. "url",
  1623. ]
  1624. [[package]]
  1625. name = "ff"
  1626. version = "0.12.0"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "df689201f395c6b90dfe87127685f8dbfc083a5e779e613575d8bd7314300c3e"
  1629. dependencies = [
  1630. "bitvec",
  1631. "rand_core 0.6.4",
  1632. "subtle",
  1633. ]
  1634. [[package]]
  1635. name = "flate2"
  1636. version = "1.0.24"
  1637. source = "registry+https://github.com/rust-lang/crates.io-index"
  1638. checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
  1639. dependencies = [
  1640. "crc32fast",
  1641. "miniz_oxide",
  1642. ]
  1643. [[package]]
  1644. name = "float-ord"
  1645. version = "0.2.0"
  1646. source = "registry+https://github.com/rust-lang/crates.io-index"
  1647. checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
  1648. [[package]]
  1649. name = "flume"
  1650. version = "0.10.14"
  1651. source = "registry+https://github.com/rust-lang/crates.io-index"
  1652. checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
  1653. dependencies = [
  1654. "futures-core",
  1655. "futures-sink",
  1656. "pin-project",
  1657. "spin 0.9.4",
  1658. ]
  1659. [[package]]
  1660. name = "fnv"
  1661. version = "1.0.7"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1664. [[package]]
  1665. name = "font-kit"
  1666. version = "0.11.0"
  1667. source = "registry+https://github.com/rust-lang/crates.io-index"
  1668. checksum = "21fe28504d371085fae9ac7a3450f0b289ab71e07c8e57baa3fb68b9e57d6ce5"
  1669. dependencies = [
  1670. "bitflags",
  1671. "byteorder",
  1672. "core-foundation",
  1673. "core-graphics",
  1674. "core-text",
  1675. "dirs-next",
  1676. "dwrote",
  1677. "float-ord",
  1678. "freetype",
  1679. "lazy_static",
  1680. "libc",
  1681. "log",
  1682. "pathfinder_geometry",
  1683. "pathfinder_simd",
  1684. "walkdir",
  1685. "winapi",
  1686. "yeslogic-fontconfig-sys",
  1687. ]
  1688. [[package]]
  1689. name = "foreign-types"
  1690. version = "0.3.2"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1693. dependencies = [
  1694. "foreign-types-shared",
  1695. ]
  1696. [[package]]
  1697. name = "foreign-types-shared"
  1698. version = "0.1.1"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1701. [[package]]
  1702. name = "form_urlencoded"
  1703. version = "1.1.0"
  1704. source = "registry+https://github.com/rust-lang/crates.io-index"
  1705. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1706. dependencies = [
  1707. "percent-encoding",
  1708. ]
  1709. [[package]]
  1710. name = "freetype"
  1711. version = "0.7.0"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6"
  1714. dependencies = [
  1715. "freetype-sys",
  1716. "libc",
  1717. ]
  1718. [[package]]
  1719. name = "freetype-sys"
  1720. version = "0.13.1"
  1721. source = "registry+https://github.com/rust-lang/crates.io-index"
  1722. checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a"
  1723. dependencies = [
  1724. "cmake",
  1725. "libc",
  1726. "pkg-config",
  1727. ]
  1728. [[package]]
  1729. name = "fs2"
  1730. version = "0.4.3"
  1731. source = "registry+https://github.com/rust-lang/crates.io-index"
  1732. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1733. dependencies = [
  1734. "libc",
  1735. "winapi",
  1736. ]
  1737. [[package]]
  1738. name = "funty"
  1739. version = "2.0.0"
  1740. source = "registry+https://github.com/rust-lang/crates.io-index"
  1741. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  1742. [[package]]
  1743. name = "futures"
  1744. version = "0.3.24"
  1745. source = "registry+https://github.com/rust-lang/crates.io-index"
  1746. checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
  1747. dependencies = [
  1748. "futures-channel",
  1749. "futures-core",
  1750. "futures-executor",
  1751. "futures-io",
  1752. "futures-sink",
  1753. "futures-task",
  1754. "futures-util",
  1755. ]
  1756. [[package]]
  1757. name = "futures-channel"
  1758. version = "0.3.24"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
  1761. dependencies = [
  1762. "futures-core",
  1763. "futures-sink",
  1764. ]
  1765. [[package]]
  1766. name = "futures-core"
  1767. version = "0.3.24"
  1768. source = "registry+https://github.com/rust-lang/crates.io-index"
  1769. checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
  1770. [[package]]
  1771. name = "futures-executor"
  1772. version = "0.3.24"
  1773. source = "registry+https://github.com/rust-lang/crates.io-index"
  1774. checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
  1775. dependencies = [
  1776. "futures-core",
  1777. "futures-task",
  1778. "futures-util",
  1779. ]
  1780. [[package]]
  1781. name = "futures-intrusive"
  1782. version = "0.4.0"
  1783. source = "registry+https://github.com/rust-lang/crates.io-index"
  1784. checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
  1785. dependencies = [
  1786. "futures-core",
  1787. "lock_api",
  1788. "parking_lot 0.11.2",
  1789. ]
  1790. [[package]]
  1791. name = "futures-io"
  1792. version = "0.3.24"
  1793. source = "registry+https://github.com/rust-lang/crates.io-index"
  1794. checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
  1795. [[package]]
  1796. name = "futures-lite"
  1797. version = "1.12.0"
  1798. source = "registry+https://github.com/rust-lang/crates.io-index"
  1799. checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
  1800. dependencies = [
  1801. "fastrand",
  1802. "futures-core",
  1803. "futures-io",
  1804. "memchr",
  1805. "parking",
  1806. "pin-project-lite",
  1807. "waker-fn",
  1808. ]
  1809. [[package]]
  1810. name = "futures-macro"
  1811. version = "0.3.24"
  1812. source = "registry+https://github.com/rust-lang/crates.io-index"
  1813. checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
  1814. dependencies = [
  1815. "proc-macro2",
  1816. "quote",
  1817. "syn",
  1818. ]
  1819. [[package]]
  1820. name = "futures-rustls"
  1821. version = "0.22.2"
  1822. source = "registry+https://github.com/rust-lang/crates.io-index"
  1823. checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
  1824. dependencies = [
  1825. "futures-io",
  1826. "rustls",
  1827. "webpki",
  1828. ]
  1829. [[package]]
  1830. name = "futures-sink"
  1831. version = "0.3.24"
  1832. source = "registry+https://github.com/rust-lang/crates.io-index"
  1833. checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
  1834. [[package]]
  1835. name = "futures-task"
  1836. version = "0.3.24"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
  1839. [[package]]
  1840. name = "futures-util"
  1841. version = "0.3.24"
  1842. source = "registry+https://github.com/rust-lang/crates.io-index"
  1843. checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
  1844. dependencies = [
  1845. "futures-channel",
  1846. "futures-core",
  1847. "futures-io",
  1848. "futures-macro",
  1849. "futures-sink",
  1850. "futures-task",
  1851. "memchr",
  1852. "pin-project-lite",
  1853. "pin-utils",
  1854. "slab",
  1855. ]
  1856. [[package]]
  1857. name = "fxhash"
  1858. version = "0.2.1"
  1859. source = "registry+https://github.com/rust-lang/crates.io-index"
  1860. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  1861. dependencies = [
  1862. "byteorder",
  1863. ]
  1864. [[package]]
  1865. name = "generic-array"
  1866. version = "0.14.6"
  1867. source = "registry+https://github.com/rust-lang/crates.io-index"
  1868. checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
  1869. dependencies = [
  1870. "typenum",
  1871. "version_check",
  1872. ]
  1873. [[package]]
  1874. name = "getrandom"
  1875. version = "0.2.7"
  1876. source = "registry+https://github.com/rust-lang/crates.io-index"
  1877. checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
  1878. dependencies = [
  1879. "cfg-if 1.0.0",
  1880. "libc",
  1881. "wasi 0.11.0+wasi-snapshot-preview1",
  1882. ]
  1883. [[package]]
  1884. name = "gif"
  1885. version = "0.11.4"
  1886. source = "registry+https://github.com/rust-lang/crates.io-index"
  1887. checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
  1888. dependencies = [
  1889. "color_quant",
  1890. "weezl",
  1891. ]
  1892. [[package]]
  1893. name = "gimli"
  1894. version = "0.26.2"
  1895. source = "registry+https://github.com/rust-lang/crates.io-index"
  1896. checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
  1897. dependencies = [
  1898. "fallible-iterator",
  1899. "indexmap",
  1900. "stable_deref_trait",
  1901. ]
  1902. [[package]]
  1903. name = "glob"
  1904. version = "0.3.0"
  1905. source = "registry+https://github.com/rust-lang/crates.io-index"
  1906. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  1907. [[package]]
  1908. name = "gloo-timers"
  1909. version = "0.2.4"
  1910. source = "registry+https://github.com/rust-lang/crates.io-index"
  1911. checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
  1912. dependencies = [
  1913. "futures-channel",
  1914. "futures-core",
  1915. "js-sys",
  1916. "wasm-bindgen",
  1917. ]
  1918. [[package]]
  1919. name = "group"
  1920. version = "0.12.0"
  1921. source = "registry+https://github.com/rust-lang/crates.io-index"
  1922. checksum = "7391856def869c1c81063a03457c676fbcd419709c3dfb33d8d319de484b154d"
  1923. dependencies = [
  1924. "byteorder",
  1925. "ff",
  1926. "rand_core 0.6.4",
  1927. "subtle",
  1928. ]
  1929. [[package]]
  1930. name = "halo2_gadgets"
  1931. version = "0.2.0"
  1932. source = "registry+https://github.com/rust-lang/crates.io-index"
  1933. checksum = "85e10bf9924da1754e443641c9e7f9f00483749f8fb837fde696ef6ed6e2f079"
  1934. dependencies = [
  1935. "arrayvec",
  1936. "bitvec",
  1937. "ff",
  1938. "group",
  1939. "halo2_proofs",
  1940. "lazy_static",
  1941. "pasta_curves",
  1942. "plotters",
  1943. "proptest",
  1944. "rand",
  1945. "subtle",
  1946. "uint",
  1947. ]
  1948. [[package]]
  1949. name = "halo2_proofs"
  1950. version = "0.2.0"
  1951. source = "registry+https://github.com/rust-lang/crates.io-index"
  1952. checksum = "cff771b9a2445cd2545c9ef26d863c290fbb44ae440c825a20eb7156f67a949a"
  1953. dependencies = [
  1954. "backtrace",
  1955. "blake2b_simd",
  1956. "ff",
  1957. "group",
  1958. "pasta_curves",
  1959. "plotters",
  1960. "rand_core 0.6.4",
  1961. "rayon",
  1962. "tabbycat",
  1963. "tracing",
  1964. ]
  1965. [[package]]
  1966. name = "hashbrown"
  1967. version = "0.11.2"
  1968. source = "registry+https://github.com/rust-lang/crates.io-index"
  1969. checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
  1970. dependencies = [
  1971. "ahash",
  1972. ]
  1973. [[package]]
  1974. name = "hashbrown"
  1975. version = "0.12.3"
  1976. source = "registry+https://github.com/rust-lang/crates.io-index"
  1977. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1978. dependencies = [
  1979. "ahash",
  1980. ]
  1981. [[package]]
  1982. name = "hashlink"
  1983. version = "0.8.1"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
  1986. dependencies = [
  1987. "hashbrown 0.12.3",
  1988. ]
  1989. [[package]]
  1990. name = "heck"
  1991. version = "0.3.3"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1994. dependencies = [
  1995. "unicode-segmentation",
  1996. ]
  1997. [[package]]
  1998. name = "heck"
  1999. version = "0.4.0"
  2000. source = "registry+https://github.com/rust-lang/crates.io-index"
  2001. checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
  2002. dependencies = [
  2003. "unicode-segmentation",
  2004. ]
  2005. [[package]]
  2006. name = "hermit-abi"
  2007. version = "0.1.19"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  2010. dependencies = [
  2011. "libc",
  2012. ]
  2013. [[package]]
  2014. name = "hex"
  2015. version = "0.4.3"
  2016. source = "registry+https://github.com/rust-lang/crates.io-index"
  2017. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2018. [[package]]
  2019. name = "http"
  2020. version = "0.2.8"
  2021. source = "registry+https://github.com/rust-lang/crates.io-index"
  2022. checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
  2023. dependencies = [
  2024. "bytes",
  2025. "fnv",
  2026. "itoa 1.0.3",
  2027. ]
  2028. [[package]]
  2029. name = "httparse"
  2030. version = "1.8.0"
  2031. source = "registry+https://github.com/rust-lang/crates.io-index"
  2032. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2033. [[package]]
  2034. name = "iana-time-zone"
  2035. version = "0.1.50"
  2036. source = "registry+https://github.com/rust-lang/crates.io-index"
  2037. checksum = "fd911b35d940d2bd0bea0f9100068e5b97b51a1cbe13d13382f132e0365257a0"
  2038. dependencies = [
  2039. "android_system_properties",
  2040. "core-foundation-sys",
  2041. "js-sys",
  2042. "wasm-bindgen",
  2043. "winapi",
  2044. ]
  2045. [[package]]
  2046. name = "ident_case"
  2047. version = "1.0.1"
  2048. source = "registry+https://github.com/rust-lang/crates.io-index"
  2049. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2050. [[package]]
  2051. name = "idna"
  2052. version = "0.3.0"
  2053. source = "registry+https://github.com/rust-lang/crates.io-index"
  2054. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  2055. dependencies = [
  2056. "unicode-bidi",
  2057. "unicode-normalization",
  2058. ]
  2059. [[package]]
  2060. name = "image"
  2061. version = "0.24.3"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964"
  2064. dependencies = [
  2065. "bytemuck",
  2066. "byteorder",
  2067. "color_quant",
  2068. "jpeg-decoder",
  2069. "num-rational",
  2070. "num-traits",
  2071. "png",
  2072. ]
  2073. [[package]]
  2074. name = "incrementalmerkletree"
  2075. version = "0.3.0"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "068c5bdd31006d55536655cf1eb0d22d84d28de7c725b419480fd5d005c83216"
  2078. dependencies = [
  2079. "serde",
  2080. ]
  2081. [[package]]
  2082. name = "indexmap"
  2083. version = "1.9.1"
  2084. source = "registry+https://github.com/rust-lang/crates.io-index"
  2085. checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
  2086. dependencies = [
  2087. "autocfg",
  2088. "hashbrown 0.12.3",
  2089. "serde",
  2090. ]
  2091. [[package]]
  2092. name = "indicatif"
  2093. version = "0.17.1"
  2094. source = "registry+https://github.com/rust-lang/crates.io-index"
  2095. checksum = "bfddc9561e8baf264e0e45e197fd7696320026eb10a8180340debc27b18f535b"
  2096. dependencies = [
  2097. "console",
  2098. "number_prefix",
  2099. "unicode-width",
  2100. ]
  2101. [[package]]
  2102. name = "inout"
  2103. version = "0.1.3"
  2104. source = "registry+https://github.com/rust-lang/crates.io-index"
  2105. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2106. dependencies = [
  2107. "generic-array",
  2108. ]
  2109. [[package]]
  2110. name = "instant"
  2111. version = "0.1.12"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2114. dependencies = [
  2115. "cfg-if 1.0.0",
  2116. ]
  2117. [[package]]
  2118. name = "ircd"
  2119. version = "0.4.0"
  2120. dependencies = [
  2121. "async-channel",
  2122. "async-executor",
  2123. "async-recursion",
  2124. "async-std",
  2125. "async-trait",
  2126. "bs58",
  2127. "chrono",
  2128. "clap 3.2.22",
  2129. "crypto_box",
  2130. "ctrlc",
  2131. "darkfi",
  2132. "easy-parallel",
  2133. "futures",
  2134. "futures-rustls",
  2135. "fxhash",
  2136. "hex",
  2137. "log",
  2138. "rand",
  2139. "ripemd",
  2140. "rustls-pemfile",
  2141. "serde",
  2142. "serde_json",
  2143. "simplelog",
  2144. "smol",
  2145. "structopt",
  2146. "structopt-toml",
  2147. "toml",
  2148. "url",
  2149. ]
  2150. [[package]]
  2151. name = "itertools"
  2152. version = "0.10.5"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2155. dependencies = [
  2156. "either",
  2157. ]
  2158. [[package]]
  2159. name = "itoa"
  2160. version = "0.4.8"
  2161. source = "registry+https://github.com/rust-lang/crates.io-index"
  2162. checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
  2163. [[package]]
  2164. name = "itoa"
  2165. version = "1.0.3"
  2166. source = "registry+https://github.com/rust-lang/crates.io-index"
  2167. checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
  2168. [[package]]
  2169. name = "jpeg-decoder"
  2170. version = "0.2.6"
  2171. source = "registry+https://github.com/rust-lang/crates.io-index"
  2172. checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
  2173. [[package]]
  2174. name = "js-sys"
  2175. version = "0.3.60"
  2176. source = "registry+https://github.com/rust-lang/crates.io-index"
  2177. checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
  2178. dependencies = [
  2179. "wasm-bindgen",
  2180. ]
  2181. [[package]]
  2182. name = "kv-log-macro"
  2183. version = "1.0.7"
  2184. source = "registry+https://github.com/rust-lang/crates.io-index"
  2185. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2186. dependencies = [
  2187. "log",
  2188. ]
  2189. [[package]]
  2190. name = "lazy-init"
  2191. version = "0.5.1"
  2192. source = "registry+https://github.com/rust-lang/crates.io-index"
  2193. checksum = "9f40963626ac12dcaf92afc15e4c3db624858c92fd9f8ba2125eaada3ac2706f"
  2194. [[package]]
  2195. name = "lazy_static"
  2196. version = "1.4.0"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2199. [[package]]
  2200. name = "leb128"
  2201. version = "0.2.5"
  2202. source = "registry+https://github.com/rust-lang/crates.io-index"
  2203. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  2204. [[package]]
  2205. name = "libc"
  2206. version = "0.2.133"
  2207. source = "registry+https://github.com/rust-lang/crates.io-index"
  2208. checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966"
  2209. [[package]]
  2210. name = "libloading"
  2211. version = "0.7.3"
  2212. source = "registry+https://github.com/rust-lang/crates.io-index"
  2213. checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
  2214. dependencies = [
  2215. "cfg-if 1.0.0",
  2216. "winapi",
  2217. ]
  2218. [[package]]
  2219. name = "libsqlite3-sys"
  2220. version = "0.24.2"
  2221. source = "registry+https://github.com/rust-lang/crates.io-index"
  2222. checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
  2223. dependencies = [
  2224. "cc",
  2225. "pkg-config",
  2226. "vcpkg",
  2227. ]
  2228. [[package]]
  2229. name = "lilith"
  2230. version = "0.3.0"
  2231. dependencies = [
  2232. "async-channel",
  2233. "async-executor",
  2234. "async-std",
  2235. "async-trait",
  2236. "ctrlc",
  2237. "darkfi",
  2238. "easy-parallel",
  2239. "futures-lite",
  2240. "fxhash",
  2241. "log",
  2242. "serde",
  2243. "serde_derive",
  2244. "serde_json",
  2245. "simplelog",
  2246. "structopt",
  2247. "structopt-toml",
  2248. "toml",
  2249. "url",
  2250. ]
  2251. [[package]]
  2252. name = "lock_api"
  2253. version = "0.4.9"
  2254. source = "registry+https://github.com/rust-lang/crates.io-index"
  2255. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2256. dependencies = [
  2257. "autocfg",
  2258. "scopeguard",
  2259. ]
  2260. [[package]]
  2261. name = "log"
  2262. version = "0.4.17"
  2263. source = "registry+https://github.com/rust-lang/crates.io-index"
  2264. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2265. dependencies = [
  2266. "cfg-if 1.0.0",
  2267. "value-bag",
  2268. ]
  2269. [[package]]
  2270. name = "loupe"
  2271. version = "0.1.3"
  2272. source = "registry+https://github.com/rust-lang/crates.io-index"
  2273. checksum = "9b6a72dfa44fe15b5e76b94307eeb2ff995a8c5b283b55008940c02e0c5b634d"
  2274. dependencies = [
  2275. "indexmap",
  2276. "loupe-derive",
  2277. "rustversion",
  2278. ]
  2279. [[package]]
  2280. name = "loupe-derive"
  2281. version = "0.1.3"
  2282. source = "registry+https://github.com/rust-lang/crates.io-index"
  2283. checksum = "c0fbfc88337168279f2e9ae06e157cfed4efd3316e14dc96ed074d4f2e6c5952"
  2284. dependencies = [
  2285. "quote",
  2286. "syn",
  2287. ]
  2288. [[package]]
  2289. name = "mach"
  2290. version = "0.3.2"
  2291. source = "registry+https://github.com/rust-lang/crates.io-index"
  2292. checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
  2293. dependencies = [
  2294. "libc",
  2295. ]
  2296. [[package]]
  2297. name = "memchr"
  2298. version = "2.5.0"
  2299. source = "registry+https://github.com/rust-lang/crates.io-index"
  2300. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2301. [[package]]
  2302. name = "memmap2"
  2303. version = "0.5.7"
  2304. source = "registry+https://github.com/rust-lang/crates.io-index"
  2305. checksum = "95af15f345b17af2efc8ead6080fb8bc376f8cec1b35277b935637595fe77498"
  2306. dependencies = [
  2307. "libc",
  2308. ]
  2309. [[package]]
  2310. name = "memoffset"
  2311. version = "0.6.5"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  2314. dependencies = [
  2315. "autocfg",
  2316. ]
  2317. [[package]]
  2318. name = "memory_units"
  2319. version = "0.4.0"
  2320. source = "registry+https://github.com/rust-lang/crates.io-index"
  2321. checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
  2322. [[package]]
  2323. name = "minimal-lexical"
  2324. version = "0.2.1"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2327. [[package]]
  2328. name = "miniz_oxide"
  2329. version = "0.5.4"
  2330. source = "registry+https://github.com/rust-lang/crates.io-index"
  2331. checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
  2332. dependencies = [
  2333. "adler",
  2334. ]
  2335. [[package]]
  2336. name = "mio"
  2337. version = "0.8.4"
  2338. source = "registry+https://github.com/rust-lang/crates.io-index"
  2339. checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
  2340. dependencies = [
  2341. "libc",
  2342. "log",
  2343. "wasi 0.11.0+wasi-snapshot-preview1",
  2344. "windows-sys 0.36.1",
  2345. ]
  2346. [[package]]
  2347. name = "more-asserts"
  2348. version = "0.2.2"
  2349. source = "registry+https://github.com/rust-lang/crates.io-index"
  2350. checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
  2351. [[package]]
  2352. name = "native-tls"
  2353. version = "0.2.10"
  2354. source = "registry+https://github.com/rust-lang/crates.io-index"
  2355. checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
  2356. dependencies = [
  2357. "lazy_static",
  2358. "libc",
  2359. "log",
  2360. "openssl",
  2361. "openssl-probe",
  2362. "openssl-sys",
  2363. "schannel",
  2364. "security-framework",
  2365. "security-framework-sys",
  2366. "tempfile",
  2367. ]
  2368. [[package]]
  2369. name = "nix"
  2370. version = "0.25.0"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
  2373. dependencies = [
  2374. "autocfg",
  2375. "bitflags",
  2376. "cfg-if 1.0.0",
  2377. "libc",
  2378. ]
  2379. [[package]]
  2380. name = "nom"
  2381. version = "7.1.1"
  2382. source = "registry+https://github.com/rust-lang/crates.io-index"
  2383. checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
  2384. dependencies = [
  2385. "memchr",
  2386. "minimal-lexical",
  2387. ]
  2388. [[package]]
  2389. name = "num-bigint"
  2390. version = "0.4.3"
  2391. source = "registry+https://github.com/rust-lang/crates.io-index"
  2392. checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
  2393. dependencies = [
  2394. "autocfg",
  2395. "num-integer",
  2396. "num-traits",
  2397. ]
  2398. [[package]]
  2399. name = "num-integer"
  2400. version = "0.1.45"
  2401. source = "registry+https://github.com/rust-lang/crates.io-index"
  2402. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2403. dependencies = [
  2404. "autocfg",
  2405. "num-traits",
  2406. ]
  2407. [[package]]
  2408. name = "num-rational"
  2409. version = "0.4.1"
  2410. source = "registry+https://github.com/rust-lang/crates.io-index"
  2411. checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
  2412. dependencies = [
  2413. "autocfg",
  2414. "num-integer",
  2415. "num-traits",
  2416. ]
  2417. [[package]]
  2418. name = "num-traits"
  2419. version = "0.2.15"
  2420. source = "registry+https://github.com/rust-lang/crates.io-index"
  2421. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2422. dependencies = [
  2423. "autocfg",
  2424. ]
  2425. [[package]]
  2426. name = "num_cpus"
  2427. version = "1.13.1"
  2428. source = "registry+https://github.com/rust-lang/crates.io-index"
  2429. checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
  2430. dependencies = [
  2431. "hermit-abi",
  2432. "libc",
  2433. ]
  2434. [[package]]
  2435. name = "num_threads"
  2436. version = "0.1.6"
  2437. source = "registry+https://github.com/rust-lang/crates.io-index"
  2438. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  2439. dependencies = [
  2440. "libc",
  2441. ]
  2442. [[package]]
  2443. name = "number_prefix"
  2444. version = "0.4.0"
  2445. source = "registry+https://github.com/rust-lang/crates.io-index"
  2446. checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
  2447. [[package]]
  2448. name = "numtoa"
  2449. version = "0.1.0"
  2450. source = "registry+https://github.com/rust-lang/crates.io-index"
  2451. checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
  2452. [[package]]
  2453. name = "object"
  2454. version = "0.28.4"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
  2457. dependencies = [
  2458. "crc32fast",
  2459. "hashbrown 0.11.2",
  2460. "indexmap",
  2461. "memchr",
  2462. ]
  2463. [[package]]
  2464. name = "object"
  2465. version = "0.29.0"
  2466. source = "registry+https://github.com/rust-lang/crates.io-index"
  2467. checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
  2468. dependencies = [
  2469. "memchr",
  2470. ]
  2471. [[package]]
  2472. name = "once_cell"
  2473. version = "1.15.0"
  2474. source = "registry+https://github.com/rust-lang/crates.io-index"
  2475. checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
  2476. [[package]]
  2477. name = "opaque-debug"
  2478. version = "0.3.0"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  2481. [[package]]
  2482. name = "openssl"
  2483. version = "0.10.41"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
  2486. dependencies = [
  2487. "bitflags",
  2488. "cfg-if 1.0.0",
  2489. "foreign-types",
  2490. "libc",
  2491. "once_cell",
  2492. "openssl-macros",
  2493. "openssl-sys",
  2494. ]
  2495. [[package]]
  2496. name = "openssl-macros"
  2497. version = "0.1.0"
  2498. source = "registry+https://github.com/rust-lang/crates.io-index"
  2499. checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
  2500. dependencies = [
  2501. "proc-macro2",
  2502. "quote",
  2503. "syn",
  2504. ]
  2505. [[package]]
  2506. name = "openssl-probe"
  2507. version = "0.1.5"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2510. [[package]]
  2511. name = "openssl-sys"
  2512. version = "0.9.75"
  2513. source = "registry+https://github.com/rust-lang/crates.io-index"
  2514. checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
  2515. dependencies = [
  2516. "autocfg",
  2517. "cc",
  2518. "libc",
  2519. "pkg-config",
  2520. "vcpkg",
  2521. ]
  2522. [[package]]
  2523. name = "os_str_bytes"
  2524. version = "6.3.0"
  2525. source = "registry+https://github.com/rust-lang/crates.io-index"
  2526. checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
  2527. [[package]]
  2528. name = "parking"
  2529. version = "2.0.0"
  2530. source = "registry+https://github.com/rust-lang/crates.io-index"
  2531. checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
  2532. [[package]]
  2533. name = "parking_lot"
  2534. version = "0.11.2"
  2535. source = "registry+https://github.com/rust-lang/crates.io-index"
  2536. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2537. dependencies = [
  2538. "instant",
  2539. "lock_api",
  2540. "parking_lot_core 0.8.5",
  2541. ]
  2542. [[package]]
  2543. name = "parking_lot"
  2544. version = "0.12.1"
  2545. source = "registry+https://github.com/rust-lang/crates.io-index"
  2546. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2547. dependencies = [
  2548. "lock_api",
  2549. "parking_lot_core 0.9.3",
  2550. ]
  2551. [[package]]
  2552. name = "parking_lot_core"
  2553. version = "0.8.5"
  2554. source = "registry+https://github.com/rust-lang/crates.io-index"
  2555. checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
  2556. dependencies = [
  2557. "cfg-if 1.0.0",
  2558. "instant",
  2559. "libc",
  2560. "redox_syscall",
  2561. "smallvec",
  2562. "winapi",
  2563. ]
  2564. [[package]]
  2565. name = "parking_lot_core"
  2566. version = "0.9.3"
  2567. source = "registry+https://github.com/rust-lang/crates.io-index"
  2568. checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
  2569. dependencies = [
  2570. "cfg-if 1.0.0",
  2571. "libc",
  2572. "redox_syscall",
  2573. "smallvec",
  2574. "windows-sys 0.36.1",
  2575. ]
  2576. [[package]]
  2577. name = "pasta_curves"
  2578. version = "0.4.0"
  2579. source = "registry+https://github.com/rust-lang/crates.io-index"
  2580. checksum = "369d7785168ad7ff0cbe467d968ca3e19a927d8536b11ef9c21b4e454b15ba42"
  2581. dependencies = [
  2582. "blake2b_simd",
  2583. "ff",
  2584. "group",
  2585. "lazy_static",
  2586. "rand",
  2587. "static_assertions",
  2588. "subtle",
  2589. ]
  2590. [[package]]
  2591. name = "paste"
  2592. version = "1.0.9"
  2593. source = "registry+https://github.com/rust-lang/crates.io-index"
  2594. checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
  2595. [[package]]
  2596. name = "pathfinder_geometry"
  2597. version = "0.5.1"
  2598. source = "registry+https://github.com/rust-lang/crates.io-index"
  2599. checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
  2600. dependencies = [
  2601. "log",
  2602. "pathfinder_simd",
  2603. ]
  2604. [[package]]
  2605. name = "pathfinder_simd"
  2606. version = "0.5.1"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "39fe46acc5503595e5949c17b818714d26fdf9b4920eacf3b2947f0199f4a6ff"
  2609. dependencies = [
  2610. "rustc_version",
  2611. ]
  2612. [[package]]
  2613. name = "pem"
  2614. version = "1.1.0"
  2615. source = "registry+https://github.com/rust-lang/crates.io-index"
  2616. checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
  2617. dependencies = [
  2618. "base64",
  2619. ]
  2620. [[package]]
  2621. name = "percent-encoding"
  2622. version = "2.2.0"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  2625. [[package]]
  2626. name = "pest"
  2627. version = "2.3.1"
  2628. source = "registry+https://github.com/rust-lang/crates.io-index"
  2629. checksum = "cb779fcf4bb850fbbb0edc96ff6cf34fd90c4b1a112ce042653280d9a7364048"
  2630. dependencies = [
  2631. "thiserror",
  2632. "ucd-trie",
  2633. ]
  2634. [[package]]
  2635. name = "pin-project"
  2636. version = "1.0.12"
  2637. source = "registry+https://github.com/rust-lang/crates.io-index"
  2638. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  2639. dependencies = [
  2640. "pin-project-internal",
  2641. ]
  2642. [[package]]
  2643. name = "pin-project-internal"
  2644. version = "1.0.12"
  2645. source = "registry+https://github.com/rust-lang/crates.io-index"
  2646. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  2647. dependencies = [
  2648. "proc-macro2",
  2649. "quote",
  2650. "syn",
  2651. ]
  2652. [[package]]
  2653. name = "pin-project-lite"
  2654. version = "0.2.9"
  2655. source = "registry+https://github.com/rust-lang/crates.io-index"
  2656. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  2657. [[package]]
  2658. name = "pin-utils"
  2659. version = "0.1.0"
  2660. source = "registry+https://github.com/rust-lang/crates.io-index"
  2661. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2662. [[package]]
  2663. name = "pkg-config"
  2664. version = "0.3.25"
  2665. source = "registry+https://github.com/rust-lang/crates.io-index"
  2666. checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
  2667. [[package]]
  2668. name = "plotters"
  2669. version = "0.3.4"
  2670. source = "registry+https://github.com/rust-lang/crates.io-index"
  2671. checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
  2672. dependencies = [
  2673. "chrono",
  2674. "font-kit",
  2675. "image",
  2676. "lazy_static",
  2677. "num-traits",
  2678. "pathfinder_geometry",
  2679. "plotters-backend",
  2680. "plotters-bitmap",
  2681. "plotters-svg",
  2682. "ttf-parser",
  2683. "wasm-bindgen",
  2684. "web-sys",
  2685. ]
  2686. [[package]]
  2687. name = "plotters-backend"
  2688. version = "0.3.4"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
  2691. [[package]]
  2692. name = "plotters-bitmap"
  2693. version = "0.3.2"
  2694. source = "registry+https://github.com/rust-lang/crates.io-index"
  2695. checksum = "0c4a1f21490a6cf4a84c272ad20bd7844ed99a3178187a4c5ab7f2051295beef"
  2696. dependencies = [
  2697. "gif",
  2698. "image",
  2699. "plotters-backend",
  2700. ]
  2701. [[package]]
  2702. name = "plotters-svg"
  2703. version = "0.3.3"
  2704. source = "registry+https://github.com/rust-lang/crates.io-index"
  2705. checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
  2706. dependencies = [
  2707. "plotters-backend",
  2708. ]
  2709. [[package]]
  2710. name = "png"
  2711. version = "0.17.6"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "8f0e7f4c94ec26ff209cee506314212639d6c91b80afb82984819fafce9df01c"
  2714. dependencies = [
  2715. "bitflags",
  2716. "crc32fast",
  2717. "flate2",
  2718. "miniz_oxide",
  2719. ]
  2720. [[package]]
  2721. name = "polling"
  2722. version = "2.3.0"
  2723. source = "registry+https://github.com/rust-lang/crates.io-index"
  2724. checksum = "899b00b9c8ab553c743b3e11e87c5c7d423b2a2de229ba95b24a756344748011"
  2725. dependencies = [
  2726. "autocfg",
  2727. "cfg-if 1.0.0",
  2728. "libc",
  2729. "log",
  2730. "wepoll-ffi",
  2731. "winapi",
  2732. ]
  2733. [[package]]
  2734. name = "poly1305"
  2735. version = "0.8.0"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  2738. dependencies = [
  2739. "cpufeatures",
  2740. "opaque-debug",
  2741. "universal-hash",
  2742. ]
  2743. [[package]]
  2744. name = "ppv-lite86"
  2745. version = "0.2.16"
  2746. source = "registry+https://github.com/rust-lang/crates.io-index"
  2747. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  2748. [[package]]
  2749. name = "prettytable-rs"
  2750. version = "0.9.0"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "5f375cb74c23b51d23937ffdeb48b1fbf5b6409d4b9979c1418c1de58bc8f801"
  2753. dependencies = [
  2754. "atty",
  2755. "csv",
  2756. "encode_unicode 1.0.0",
  2757. "lazy_static",
  2758. "term",
  2759. "unicode-width",
  2760. ]
  2761. [[package]]
  2762. name = "proc-macro-crate"
  2763. version = "0.1.5"
  2764. source = "registry+https://github.com/rust-lang/crates.io-index"
  2765. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  2766. dependencies = [
  2767. "toml",
  2768. ]
  2769. [[package]]
  2770. name = "proc-macro-crate"
  2771. version = "1.2.1"
  2772. source = "registry+https://github.com/rust-lang/crates.io-index"
  2773. checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
  2774. dependencies = [
  2775. "once_cell",
  2776. "thiserror",
  2777. "toml",
  2778. ]
  2779. [[package]]
  2780. name = "proc-macro-error"
  2781. version = "1.0.4"
  2782. source = "registry+https://github.com/rust-lang/crates.io-index"
  2783. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2784. dependencies = [
  2785. "proc-macro-error-attr",
  2786. "proc-macro2",
  2787. "quote",
  2788. "syn",
  2789. "version_check",
  2790. ]
  2791. [[package]]
  2792. name = "proc-macro-error-attr"
  2793. version = "1.0.4"
  2794. source = "registry+https://github.com/rust-lang/crates.io-index"
  2795. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2796. dependencies = [
  2797. "proc-macro2",
  2798. "quote",
  2799. "version_check",
  2800. ]
  2801. [[package]]
  2802. name = "proc-macro2"
  2803. version = "1.0.43"
  2804. source = "registry+https://github.com/rust-lang/crates.io-index"
  2805. checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
  2806. dependencies = [
  2807. "unicode-ident",
  2808. ]
  2809. [[package]]
  2810. name = "proptest"
  2811. version = "1.0.0"
  2812. source = "registry+https://github.com/rust-lang/crates.io-index"
  2813. checksum = "1e0d9cc07f18492d879586c92b485def06bc850da3118075cd45d50e9c95b0e5"
  2814. dependencies = [
  2815. "bit-set",
  2816. "bitflags",
  2817. "byteorder",
  2818. "lazy_static",
  2819. "num-traits",
  2820. "quick-error 2.0.1",
  2821. "rand",
  2822. "rand_chacha",
  2823. "rand_xorshift",
  2824. "regex-syntax",
  2825. "rusty-fork",
  2826. "tempfile",
  2827. ]
  2828. [[package]]
  2829. name = "ptr_meta"
  2830. version = "0.1.4"
  2831. source = "registry+https://github.com/rust-lang/crates.io-index"
  2832. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  2833. dependencies = [
  2834. "ptr_meta_derive",
  2835. ]
  2836. [[package]]
  2837. name = "ptr_meta_derive"
  2838. version = "0.1.4"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  2841. dependencies = [
  2842. "proc-macro2",
  2843. "quote",
  2844. "syn",
  2845. ]
  2846. [[package]]
  2847. name = "pulldown-cmark"
  2848. version = "0.9.2"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
  2851. dependencies = [
  2852. "bitflags",
  2853. "memchr",
  2854. "unicase",
  2855. ]
  2856. [[package]]
  2857. name = "quick-error"
  2858. version = "1.2.3"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  2861. [[package]]
  2862. name = "quick-error"
  2863. version = "2.0.1"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  2866. [[package]]
  2867. name = "quote"
  2868. version = "1.0.21"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
  2871. dependencies = [
  2872. "proc-macro2",
  2873. ]
  2874. [[package]]
  2875. name = "radium"
  2876. version = "0.7.0"
  2877. source = "registry+https://github.com/rust-lang/crates.io-index"
  2878. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  2879. [[package]]
  2880. name = "rand"
  2881. version = "0.8.5"
  2882. source = "registry+https://github.com/rust-lang/crates.io-index"
  2883. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  2884. dependencies = [
  2885. "libc",
  2886. "rand_chacha",
  2887. "rand_core 0.6.4",
  2888. ]
  2889. [[package]]
  2890. name = "rand_chacha"
  2891. version = "0.3.1"
  2892. source = "registry+https://github.com/rust-lang/crates.io-index"
  2893. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  2894. dependencies = [
  2895. "ppv-lite86",
  2896. "rand_core 0.6.4",
  2897. ]
  2898. [[package]]
  2899. name = "rand_core"
  2900. version = "0.5.1"
  2901. source = "registry+https://github.com/rust-lang/crates.io-index"
  2902. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  2903. [[package]]
  2904. name = "rand_core"
  2905. version = "0.6.4"
  2906. source = "registry+https://github.com/rust-lang/crates.io-index"
  2907. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  2908. dependencies = [
  2909. "getrandom",
  2910. ]
  2911. [[package]]
  2912. name = "rand_xorshift"
  2913. version = "0.3.0"
  2914. source = "registry+https://github.com/rust-lang/crates.io-index"
  2915. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  2916. dependencies = [
  2917. "rand_core 0.6.4",
  2918. ]
  2919. [[package]]
  2920. name = "rayon"
  2921. version = "1.5.3"
  2922. source = "registry+https://github.com/rust-lang/crates.io-index"
  2923. checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
  2924. dependencies = [
  2925. "autocfg",
  2926. "crossbeam-deque",
  2927. "either",
  2928. "rayon-core",
  2929. ]
  2930. [[package]]
  2931. name = "rayon-core"
  2932. version = "1.9.3"
  2933. source = "registry+https://github.com/rust-lang/crates.io-index"
  2934. checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
  2935. dependencies = [
  2936. "crossbeam-channel",
  2937. "crossbeam-deque",
  2938. "crossbeam-utils",
  2939. "num_cpus",
  2940. ]
  2941. [[package]]
  2942. name = "rcgen"
  2943. version = "0.9.3"
  2944. source = "registry+https://github.com/rust-lang/crates.io-index"
  2945. checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
  2946. dependencies = [
  2947. "pem",
  2948. "ring",
  2949. "time 0.3.14",
  2950. "yasna",
  2951. ]
  2952. [[package]]
  2953. name = "redox_syscall"
  2954. version = "0.2.16"
  2955. source = "registry+https://github.com/rust-lang/crates.io-index"
  2956. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  2957. dependencies = [
  2958. "bitflags",
  2959. ]
  2960. [[package]]
  2961. name = "redox_termios"
  2962. version = "0.1.2"
  2963. source = "registry+https://github.com/rust-lang/crates.io-index"
  2964. checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
  2965. dependencies = [
  2966. "redox_syscall",
  2967. ]
  2968. [[package]]
  2969. name = "redox_users"
  2970. version = "0.4.3"
  2971. source = "registry+https://github.com/rust-lang/crates.io-index"
  2972. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  2973. dependencies = [
  2974. "getrandom",
  2975. "redox_syscall",
  2976. "thiserror",
  2977. ]
  2978. [[package]]
  2979. name = "regalloc"
  2980. version = "0.0.34"
  2981. source = "registry+https://github.com/rust-lang/crates.io-index"
  2982. checksum = "62446b1d3ebf980bdc68837700af1d77b37bc430e524bf95319c6eada2a4cc02"
  2983. dependencies = [
  2984. "log",
  2985. "rustc-hash",
  2986. "smallvec",
  2987. ]
  2988. [[package]]
  2989. name = "regex"
  2990. version = "1.6.0"
  2991. source = "registry+https://github.com/rust-lang/crates.io-index"
  2992. checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
  2993. dependencies = [
  2994. "aho-corasick",
  2995. "memchr",
  2996. "regex-syntax",
  2997. ]
  2998. [[package]]
  2999. name = "regex-automata"
  3000. version = "0.1.10"
  3001. source = "registry+https://github.com/rust-lang/crates.io-index"
  3002. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3003. [[package]]
  3004. name = "regex-syntax"
  3005. version = "0.6.27"
  3006. source = "registry+https://github.com/rust-lang/crates.io-index"
  3007. checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
  3008. [[package]]
  3009. name = "region"
  3010. version = "3.0.0"
  3011. source = "registry+https://github.com/rust-lang/crates.io-index"
  3012. checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e"
  3013. dependencies = [
  3014. "bitflags",
  3015. "libc",
  3016. "mach",
  3017. "winapi",
  3018. ]
  3019. [[package]]
  3020. name = "remove_dir_all"
  3021. version = "0.5.3"
  3022. source = "registry+https://github.com/rust-lang/crates.io-index"
  3023. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  3024. dependencies = [
  3025. "winapi",
  3026. ]
  3027. [[package]]
  3028. name = "rend"
  3029. version = "0.3.6"
  3030. source = "registry+https://github.com/rust-lang/crates.io-index"
  3031. checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95"
  3032. dependencies = [
  3033. "bytecheck",
  3034. ]
  3035. [[package]]
  3036. name = "ring"
  3037. version = "0.16.20"
  3038. source = "registry+https://github.com/rust-lang/crates.io-index"
  3039. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3040. dependencies = [
  3041. "cc",
  3042. "libc",
  3043. "once_cell",
  3044. "spin 0.5.2",
  3045. "untrusted",
  3046. "web-sys",
  3047. "winapi",
  3048. ]
  3049. [[package]]
  3050. name = "ripemd"
  3051. version = "0.1.3"
  3052. source = "registry+https://github.com/rust-lang/crates.io-index"
  3053. checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
  3054. dependencies = [
  3055. "digest 0.10.5",
  3056. ]
  3057. [[package]]
  3058. name = "rkyv"
  3059. version = "0.7.39"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
  3062. dependencies = [
  3063. "bytecheck",
  3064. "hashbrown 0.12.3",
  3065. "ptr_meta",
  3066. "rend",
  3067. "rkyv_derive",
  3068. "seahash",
  3069. ]
  3070. [[package]]
  3071. name = "rkyv_derive"
  3072. version = "0.7.39"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
  3075. dependencies = [
  3076. "proc-macro2",
  3077. "quote",
  3078. "syn",
  3079. ]
  3080. [[package]]
  3081. name = "rustc-demangle"
  3082. version = "0.1.21"
  3083. source = "registry+https://github.com/rust-lang/crates.io-index"
  3084. checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
  3085. [[package]]
  3086. name = "rustc-hash"
  3087. version = "1.1.0"
  3088. source = "registry+https://github.com/rust-lang/crates.io-index"
  3089. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3090. [[package]]
  3091. name = "rustc_version"
  3092. version = "0.3.3"
  3093. source = "registry+https://github.com/rust-lang/crates.io-index"
  3094. checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
  3095. dependencies = [
  3096. "semver 0.11.0",
  3097. ]
  3098. [[package]]
  3099. name = "rustls"
  3100. version = "0.20.6"
  3101. source = "registry+https://github.com/rust-lang/crates.io-index"
  3102. checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
  3103. dependencies = [
  3104. "log",
  3105. "ring",
  3106. "sct",
  3107. "webpki",
  3108. ]
  3109. [[package]]
  3110. name = "rustls-pemfile"
  3111. version = "1.0.1"
  3112. source = "registry+https://github.com/rust-lang/crates.io-index"
  3113. checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
  3114. dependencies = [
  3115. "base64",
  3116. ]
  3117. [[package]]
  3118. name = "rustversion"
  3119. version = "1.0.9"
  3120. source = "registry+https://github.com/rust-lang/crates.io-index"
  3121. checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
  3122. [[package]]
  3123. name = "rusty-fork"
  3124. version = "0.3.0"
  3125. source = "registry+https://github.com/rust-lang/crates.io-index"
  3126. checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
  3127. dependencies = [
  3128. "fnv",
  3129. "quick-error 1.2.3",
  3130. "tempfile",
  3131. "wait-timeout",
  3132. ]
  3133. [[package]]
  3134. name = "ryu"
  3135. version = "1.0.11"
  3136. source = "registry+https://github.com/rust-lang/crates.io-index"
  3137. checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
  3138. [[package]]
  3139. name = "salsa20"
  3140. version = "0.10.2"
  3141. source = "registry+https://github.com/rust-lang/crates.io-index"
  3142. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  3143. dependencies = [
  3144. "cipher",
  3145. ]
  3146. [[package]]
  3147. name = "same-file"
  3148. version = "1.0.6"
  3149. source = "registry+https://github.com/rust-lang/crates.io-index"
  3150. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3151. dependencies = [
  3152. "winapi-util",
  3153. ]
  3154. [[package]]
  3155. name = "schannel"
  3156. version = "0.1.20"
  3157. source = "registry+https://github.com/rust-lang/crates.io-index"
  3158. checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
  3159. dependencies = [
  3160. "lazy_static",
  3161. "windows-sys 0.36.1",
  3162. ]
  3163. [[package]]
  3164. name = "scopeguard"
  3165. version = "1.1.0"
  3166. source = "registry+https://github.com/rust-lang/crates.io-index"
  3167. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3168. [[package]]
  3169. name = "sct"
  3170. version = "0.7.0"
  3171. source = "registry+https://github.com/rust-lang/crates.io-index"
  3172. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  3173. dependencies = [
  3174. "ring",
  3175. "untrusted",
  3176. ]
  3177. [[package]]
  3178. name = "seahash"
  3179. version = "4.1.0"
  3180. source = "registry+https://github.com/rust-lang/crates.io-index"
  3181. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  3182. [[package]]
  3183. name = "security-framework"
  3184. version = "2.7.0"
  3185. source = "registry+https://github.com/rust-lang/crates.io-index"
  3186. checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
  3187. dependencies = [
  3188. "bitflags",
  3189. "core-foundation",
  3190. "core-foundation-sys",
  3191. "libc",
  3192. "security-framework-sys",
  3193. ]
  3194. [[package]]
  3195. name = "security-framework-sys"
  3196. version = "2.6.1"
  3197. source = "registry+https://github.com/rust-lang/crates.io-index"
  3198. checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
  3199. dependencies = [
  3200. "core-foundation-sys",
  3201. "libc",
  3202. ]
  3203. [[package]]
  3204. name = "semver"
  3205. version = "0.11.0"
  3206. source = "registry+https://github.com/rust-lang/crates.io-index"
  3207. checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
  3208. dependencies = [
  3209. "semver-parser",
  3210. ]
  3211. [[package]]
  3212. name = "semver"
  3213. version = "1.0.14"
  3214. source = "registry+https://github.com/rust-lang/crates.io-index"
  3215. checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
  3216. dependencies = [
  3217. "serde",
  3218. ]
  3219. [[package]]
  3220. name = "semver-parser"
  3221. version = "0.10.2"
  3222. source = "registry+https://github.com/rust-lang/crates.io-index"
  3223. checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
  3224. dependencies = [
  3225. "pest",
  3226. ]
  3227. [[package]]
  3228. name = "serde"
  3229. version = "1.0.145"
  3230. source = "registry+https://github.com/rust-lang/crates.io-index"
  3231. checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
  3232. dependencies = [
  3233. "serde_derive",
  3234. ]
  3235. [[package]]
  3236. name = "serde_bytes"
  3237. version = "0.11.7"
  3238. source = "registry+https://github.com/rust-lang/crates.io-index"
  3239. checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b"
  3240. dependencies = [
  3241. "serde",
  3242. ]
  3243. [[package]]
  3244. name = "serde_derive"
  3245. version = "1.0.145"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
  3248. dependencies = [
  3249. "proc-macro2",
  3250. "quote",
  3251. "syn",
  3252. ]
  3253. [[package]]
  3254. name = "serde_json"
  3255. version = "1.0.85"
  3256. source = "registry+https://github.com/rust-lang/crates.io-index"
  3257. checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
  3258. dependencies = [
  3259. "itoa 1.0.3",
  3260. "ryu",
  3261. "serde",
  3262. ]
  3263. [[package]]
  3264. name = "sha-1"
  3265. version = "0.10.0"
  3266. source = "registry+https://github.com/rust-lang/crates.io-index"
  3267. checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
  3268. dependencies = [
  3269. "cfg-if 1.0.0",
  3270. "cpufeatures",
  3271. "digest 0.10.5",
  3272. ]
  3273. [[package]]
  3274. name = "sha2"
  3275. version = "0.10.6"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  3278. dependencies = [
  3279. "cfg-if 1.0.0",
  3280. "cpufeatures",
  3281. "digest 0.10.5",
  3282. ]
  3283. [[package]]
  3284. name = "signal-hook"
  3285. version = "0.3.14"
  3286. source = "registry+https://github.com/rust-lang/crates.io-index"
  3287. checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
  3288. dependencies = [
  3289. "libc",
  3290. "signal-hook-registry",
  3291. ]
  3292. [[package]]
  3293. name = "signal-hook-mio"
  3294. version = "0.2.3"
  3295. source = "registry+https://github.com/rust-lang/crates.io-index"
  3296. checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
  3297. dependencies = [
  3298. "libc",
  3299. "mio",
  3300. "signal-hook",
  3301. ]
  3302. [[package]]
  3303. name = "signal-hook-registry"
  3304. version = "1.4.0"
  3305. source = "registry+https://github.com/rust-lang/crates.io-index"
  3306. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  3307. dependencies = [
  3308. "libc",
  3309. ]
  3310. [[package]]
  3311. name = "simplelog"
  3312. version = "0.12.0"
  3313. source = "registry+https://github.com/rust-lang/crates.io-index"
  3314. checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
  3315. dependencies = [
  3316. "log",
  3317. "termcolor",
  3318. "time 0.3.14",
  3319. ]
  3320. [[package]]
  3321. name = "skeptic"
  3322. version = "0.13.7"
  3323. source = "registry+https://github.com/rust-lang/crates.io-index"
  3324. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  3325. dependencies = [
  3326. "bytecount",
  3327. "cargo_metadata",
  3328. "error-chain",
  3329. "glob",
  3330. "pulldown-cmark",
  3331. "tempfile",
  3332. "walkdir",
  3333. ]
  3334. [[package]]
  3335. name = "slab"
  3336. version = "0.4.7"
  3337. source = "registry+https://github.com/rust-lang/crates.io-index"
  3338. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  3339. dependencies = [
  3340. "autocfg",
  3341. ]
  3342. [[package]]
  3343. name = "sled"
  3344. version = "0.34.7"
  3345. source = "registry+https://github.com/rust-lang/crates.io-index"
  3346. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  3347. dependencies = [
  3348. "crc32fast",
  3349. "crossbeam-epoch",
  3350. "crossbeam-utils",
  3351. "fs2",
  3352. "fxhash",
  3353. "libc",
  3354. "log",
  3355. "parking_lot 0.11.2",
  3356. ]
  3357. [[package]]
  3358. name = "smallvec"
  3359. version = "1.9.0"
  3360. source = "registry+https://github.com/rust-lang/crates.io-index"
  3361. checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
  3362. [[package]]
  3363. name = "smawk"
  3364. version = "0.3.1"
  3365. source = "registry+https://github.com/rust-lang/crates.io-index"
  3366. checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
  3367. [[package]]
  3368. name = "smol"
  3369. version = "1.2.5"
  3370. source = "registry+https://github.com/rust-lang/crates.io-index"
  3371. checksum = "85cf3b5351f3e783c1d79ab5fc604eeed8b8ae9abd36b166e8b87a089efd85e4"
  3372. dependencies = [
  3373. "async-channel",
  3374. "async-executor",
  3375. "async-fs",
  3376. "async-io",
  3377. "async-lock",
  3378. "async-net",
  3379. "async-process",
  3380. "blocking",
  3381. "futures-lite",
  3382. "once_cell",
  3383. ]
  3384. [[package]]
  3385. name = "socket2"
  3386. version = "0.4.7"
  3387. source = "registry+https://github.com/rust-lang/crates.io-index"
  3388. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  3389. dependencies = [
  3390. "libc",
  3391. "winapi",
  3392. ]
  3393. [[package]]
  3394. name = "spin"
  3395. version = "0.5.2"
  3396. source = "registry+https://github.com/rust-lang/crates.io-index"
  3397. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3398. [[package]]
  3399. name = "spin"
  3400. version = "0.9.4"
  3401. source = "registry+https://github.com/rust-lang/crates.io-index"
  3402. checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
  3403. dependencies = [
  3404. "lock_api",
  3405. ]
  3406. [[package]]
  3407. name = "sqlformat"
  3408. version = "0.2.0"
  3409. source = "registry+https://github.com/rust-lang/crates.io-index"
  3410. checksum = "f87e292b4291f154971a43c3774364e2cbcaec599d3f5bf6fa9d122885dbc38a"
  3411. dependencies = [
  3412. "itertools",
  3413. "nom",
  3414. "unicode_categories",
  3415. ]
  3416. [[package]]
  3417. name = "sqlx"
  3418. version = "0.6.2"
  3419. source = "registry+https://github.com/rust-lang/crates.io-index"
  3420. checksum = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
  3421. dependencies = [
  3422. "sqlx-core",
  3423. "sqlx-macros",
  3424. ]
  3425. [[package]]
  3426. name = "sqlx-core"
  3427. version = "0.6.2"
  3428. source = "registry+https://github.com/rust-lang/crates.io-index"
  3429. checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
  3430. dependencies = [
  3431. "ahash",
  3432. "atoi",
  3433. "bitflags",
  3434. "byteorder",
  3435. "bytes",
  3436. "crc",
  3437. "crossbeam-queue",
  3438. "dotenvy",
  3439. "either",
  3440. "event-listener",
  3441. "flume",
  3442. "futures-channel",
  3443. "futures-core",
  3444. "futures-executor",
  3445. "futures-intrusive",
  3446. "futures-util",
  3447. "hashlink",
  3448. "hex",
  3449. "indexmap",
  3450. "itoa 1.0.3",
  3451. "libc",
  3452. "libsqlite3-sys",
  3453. "log",
  3454. "memchr",
  3455. "once_cell",
  3456. "paste",
  3457. "percent-encoding",
  3458. "sha2",
  3459. "smallvec",
  3460. "sqlformat",
  3461. "sqlx-rt",
  3462. "stringprep",
  3463. "thiserror",
  3464. "url",
  3465. ]
  3466. [[package]]
  3467. name = "sqlx-macros"
  3468. version = "0.6.2"
  3469. source = "registry+https://github.com/rust-lang/crates.io-index"
  3470. checksum = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
  3471. dependencies = [
  3472. "dotenvy",
  3473. "either",
  3474. "heck 0.4.0",
  3475. "once_cell",
  3476. "proc-macro2",
  3477. "quote",
  3478. "sha2",
  3479. "sqlx-core",
  3480. "sqlx-rt",
  3481. "syn",
  3482. "url",
  3483. ]
  3484. [[package]]
  3485. name = "sqlx-rt"
  3486. version = "0.6.2"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
  3489. dependencies = [
  3490. "async-native-tls",
  3491. "async-std",
  3492. "native-tls",
  3493. ]
  3494. [[package]]
  3495. name = "stable_deref_trait"
  3496. version = "1.2.0"
  3497. source = "registry+https://github.com/rust-lang/crates.io-index"
  3498. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  3499. [[package]]
  3500. name = "static_assertions"
  3501. version = "1.1.0"
  3502. source = "registry+https://github.com/rust-lang/crates.io-index"
  3503. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3504. [[package]]
  3505. name = "stringprep"
  3506. version = "0.1.2"
  3507. source = "registry+https://github.com/rust-lang/crates.io-index"
  3508. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  3509. dependencies = [
  3510. "unicode-bidi",
  3511. "unicode-normalization",
  3512. ]
  3513. [[package]]
  3514. name = "strsim"
  3515. version = "0.8.0"
  3516. source = "registry+https://github.com/rust-lang/crates.io-index"
  3517. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  3518. [[package]]
  3519. name = "strsim"
  3520. version = "0.9.3"
  3521. source = "registry+https://github.com/rust-lang/crates.io-index"
  3522. checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
  3523. [[package]]
  3524. name = "strsim"
  3525. version = "0.10.0"
  3526. source = "registry+https://github.com/rust-lang/crates.io-index"
  3527. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  3528. [[package]]
  3529. name = "structopt"
  3530. version = "0.3.26"
  3531. source = "registry+https://github.com/rust-lang/crates.io-index"
  3532. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  3533. dependencies = [
  3534. "clap 2.34.0",
  3535. "lazy_static",
  3536. "structopt-derive",
  3537. ]
  3538. [[package]]
  3539. name = "structopt-derive"
  3540. version = "0.4.18"
  3541. source = "registry+https://github.com/rust-lang/crates.io-index"
  3542. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  3543. dependencies = [
  3544. "heck 0.3.3",
  3545. "proc-macro-error",
  3546. "proc-macro2",
  3547. "quote",
  3548. "syn",
  3549. ]
  3550. [[package]]
  3551. name = "structopt-toml"
  3552. version = "0.5.1"
  3553. source = "registry+https://github.com/rust-lang/crates.io-index"
  3554. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  3555. dependencies = [
  3556. "anyhow",
  3557. "clap 2.34.0",
  3558. "serde",
  3559. "serde_derive",
  3560. "skeptic",
  3561. "structopt",
  3562. "structopt-toml-derive",
  3563. "toml",
  3564. ]
  3565. [[package]]
  3566. name = "structopt-toml-derive"
  3567. version = "0.5.1"
  3568. source = "registry+https://github.com/rust-lang/crates.io-index"
  3569. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  3570. dependencies = [
  3571. "heck 0.4.0",
  3572. "proc-macro2",
  3573. "quote",
  3574. "syn",
  3575. ]
  3576. [[package]]
  3577. name = "subtle"
  3578. version = "2.4.1"
  3579. source = "registry+https://github.com/rust-lang/crates.io-index"
  3580. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  3581. [[package]]
  3582. name = "syn"
  3583. version = "1.0.100"
  3584. source = "registry+https://github.com/rust-lang/crates.io-index"
  3585. checksum = "52205623b1b0f064a4e71182c3b18ae902267282930c6d5462c91b859668426e"
  3586. dependencies = [
  3587. "proc-macro2",
  3588. "quote",
  3589. "unicode-ident",
  3590. ]
  3591. [[package]]
  3592. name = "synstructure"
  3593. version = "0.12.6"
  3594. source = "registry+https://github.com/rust-lang/crates.io-index"
  3595. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  3596. dependencies = [
  3597. "proc-macro2",
  3598. "quote",
  3599. "syn",
  3600. "unicode-xid",
  3601. ]
  3602. [[package]]
  3603. name = "tabbycat"
  3604. version = "0.1.2"
  3605. source = "registry+https://github.com/rust-lang/crates.io-index"
  3606. checksum = "c45590f0f859197b4545be1b17b2bc3cc7bb075f7d1cc0ea1dc6521c0bf256a3"
  3607. dependencies = [
  3608. "anyhow",
  3609. "derive_builder",
  3610. "regex",
  3611. ]
  3612. [[package]]
  3613. name = "tap"
  3614. version = "1.0.1"
  3615. source = "registry+https://github.com/rust-lang/crates.io-index"
  3616. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  3617. [[package]]
  3618. name = "target-lexicon"
  3619. version = "0.12.4"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1"
  3622. [[package]]
  3623. name = "tau"
  3624. version = "0.4.0"
  3625. dependencies = [
  3626. "async-std",
  3627. "chrono",
  3628. "clap 3.2.22",
  3629. "colored",
  3630. "darkfi",
  3631. "fxhash",
  3632. "log",
  3633. "prettytable-rs",
  3634. "serde",
  3635. "serde_json",
  3636. "simplelog",
  3637. "term_grid",
  3638. "textwrap 0.15.1",
  3639. "url",
  3640. ]
  3641. [[package]]
  3642. name = "taud"
  3643. version = "0.4.0"
  3644. dependencies = [
  3645. "async-channel",
  3646. "async-executor",
  3647. "async-std",
  3648. "async-trait",
  3649. "bs58",
  3650. "chrono",
  3651. "crypto_box",
  3652. "ctrlc",
  3653. "darkfi",
  3654. "easy-parallel",
  3655. "futures",
  3656. "fxhash",
  3657. "hex",
  3658. "log",
  3659. "rand",
  3660. "serde",
  3661. "serde_json",
  3662. "simplelog",
  3663. "smol",
  3664. "structopt",
  3665. "structopt-toml",
  3666. "thiserror",
  3667. "toml",
  3668. "url",
  3669. ]
  3670. [[package]]
  3671. name = "tempfile"
  3672. version = "3.3.0"
  3673. source = "registry+https://github.com/rust-lang/crates.io-index"
  3674. checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
  3675. dependencies = [
  3676. "cfg-if 1.0.0",
  3677. "fastrand",
  3678. "libc",
  3679. "redox_syscall",
  3680. "remove_dir_all",
  3681. "winapi",
  3682. ]
  3683. [[package]]
  3684. name = "term"
  3685. version = "0.7.0"
  3686. source = "registry+https://github.com/rust-lang/crates.io-index"
  3687. checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
  3688. dependencies = [
  3689. "dirs-next",
  3690. "rustversion",
  3691. "winapi",
  3692. ]
  3693. [[package]]
  3694. name = "term_grid"
  3695. version = "0.2.0"
  3696. source = "git+https://github.com/Dastan-glitch/rust-term-grid.git#51c28e47aad0fb9f67de558e9b80c525cd01a4ae"
  3697. dependencies = [
  3698. "colored",
  3699. "unicode-width",
  3700. ]
  3701. [[package]]
  3702. name = "termcolor"
  3703. version = "1.1.3"
  3704. source = "registry+https://github.com/rust-lang/crates.io-index"
  3705. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  3706. dependencies = [
  3707. "winapi-util",
  3708. ]
  3709. [[package]]
  3710. name = "terminal_size"
  3711. version = "0.1.17"
  3712. source = "registry+https://github.com/rust-lang/crates.io-index"
  3713. checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
  3714. dependencies = [
  3715. "libc",
  3716. "winapi",
  3717. ]
  3718. [[package]]
  3719. name = "termion"
  3720. version = "1.5.6"
  3721. source = "registry+https://github.com/rust-lang/crates.io-index"
  3722. checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
  3723. dependencies = [
  3724. "libc",
  3725. "numtoa",
  3726. "redox_syscall",
  3727. "redox_termios",
  3728. ]
  3729. [[package]]
  3730. name = "textwrap"
  3731. version = "0.11.0"
  3732. source = "registry+https://github.com/rust-lang/crates.io-index"
  3733. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  3734. dependencies = [
  3735. "unicode-width",
  3736. ]
  3737. [[package]]
  3738. name = "textwrap"
  3739. version = "0.15.1"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
  3742. dependencies = [
  3743. "smawk",
  3744. "unicode-linebreak",
  3745. "unicode-width",
  3746. ]
  3747. [[package]]
  3748. name = "thiserror"
  3749. version = "1.0.35"
  3750. source = "registry+https://github.com/rust-lang/crates.io-index"
  3751. checksum = "c53f98874615aea268107765aa1ed8f6116782501d18e53d08b471733bea6c85"
  3752. dependencies = [
  3753. "thiserror-impl",
  3754. ]
  3755. [[package]]
  3756. name = "thiserror-impl"
  3757. version = "1.0.35"
  3758. source = "registry+https://github.com/rust-lang/crates.io-index"
  3759. checksum = "f8b463991b4eab2d801e724172285ec4195c650e8ec79b149e6c2a8e6dd3f783"
  3760. dependencies = [
  3761. "proc-macro2",
  3762. "quote",
  3763. "syn",
  3764. ]
  3765. [[package]]
  3766. name = "time"
  3767. version = "0.1.44"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  3770. dependencies = [
  3771. "libc",
  3772. "wasi 0.10.0+wasi-snapshot-preview1",
  3773. "winapi",
  3774. ]
  3775. [[package]]
  3776. name = "time"
  3777. version = "0.3.14"
  3778. source = "registry+https://github.com/rust-lang/crates.io-index"
  3779. checksum = "3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b"
  3780. dependencies = [
  3781. "itoa 1.0.3",
  3782. "libc",
  3783. "num_threads",
  3784. "time-macros",
  3785. ]
  3786. [[package]]
  3787. name = "time-macros"
  3788. version = "0.2.4"
  3789. source = "registry+https://github.com/rust-lang/crates.io-index"
  3790. checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
  3791. [[package]]
  3792. name = "tinyvec"
  3793. version = "1.6.0"
  3794. source = "registry+https://github.com/rust-lang/crates.io-index"
  3795. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  3796. dependencies = [
  3797. "tinyvec_macros",
  3798. ]
  3799. [[package]]
  3800. name = "tinyvec_macros"
  3801. version = "0.1.0"
  3802. source = "registry+https://github.com/rust-lang/crates.io-index"
  3803. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  3804. [[package]]
  3805. name = "toml"
  3806. version = "0.5.9"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
  3809. dependencies = [
  3810. "serde",
  3811. ]
  3812. [[package]]
  3813. name = "tracing"
  3814. version = "0.1.36"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
  3817. dependencies = [
  3818. "cfg-if 1.0.0",
  3819. "log",
  3820. "pin-project-lite",
  3821. "tracing-attributes",
  3822. "tracing-core",
  3823. ]
  3824. [[package]]
  3825. name = "tracing-attributes"
  3826. version = "0.1.22"
  3827. source = "registry+https://github.com/rust-lang/crates.io-index"
  3828. checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
  3829. dependencies = [
  3830. "proc-macro2",
  3831. "quote",
  3832. "syn",
  3833. ]
  3834. [[package]]
  3835. name = "tracing-core"
  3836. version = "0.1.29"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
  3839. dependencies = [
  3840. "once_cell",
  3841. ]
  3842. [[package]]
  3843. name = "ttf-parser"
  3844. version = "0.15.2"
  3845. source = "registry+https://github.com/rust-lang/crates.io-index"
  3846. checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd"
  3847. [[package]]
  3848. name = "tui"
  3849. version = "0.19.0"
  3850. source = "registry+https://github.com/rust-lang/crates.io-index"
  3851. checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
  3852. dependencies = [
  3853. "bitflags",
  3854. "cassowary",
  3855. "crossterm",
  3856. "termion",
  3857. "unicode-segmentation",
  3858. "unicode-width",
  3859. ]
  3860. [[package]]
  3861. name = "tungstenite"
  3862. version = "0.17.3"
  3863. source = "registry+https://github.com/rust-lang/crates.io-index"
  3864. checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0"
  3865. dependencies = [
  3866. "base64",
  3867. "byteorder",
  3868. "bytes",
  3869. "http",
  3870. "httparse",
  3871. "log",
  3872. "rand",
  3873. "sha-1",
  3874. "thiserror",
  3875. "url",
  3876. "utf-8",
  3877. ]
  3878. [[package]]
  3879. name = "typenum"
  3880. version = "1.15.0"
  3881. source = "registry+https://github.com/rust-lang/crates.io-index"
  3882. checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
  3883. [[package]]
  3884. name = "ucd-trie"
  3885. version = "0.1.5"
  3886. source = "registry+https://github.com/rust-lang/crates.io-index"
  3887. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  3888. [[package]]
  3889. name = "uint"
  3890. version = "0.9.4"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "a45526d29728d135c2900b0d30573fe3ee79fceb12ef534c7bb30e810a91b601"
  3893. dependencies = [
  3894. "byteorder",
  3895. "crunchy",
  3896. "hex",
  3897. "static_assertions",
  3898. ]
  3899. [[package]]
  3900. name = "unicase"
  3901. version = "2.6.0"
  3902. source = "registry+https://github.com/rust-lang/crates.io-index"
  3903. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  3904. dependencies = [
  3905. "version_check",
  3906. ]
  3907. [[package]]
  3908. name = "unicode-bidi"
  3909. version = "0.3.8"
  3910. source = "registry+https://github.com/rust-lang/crates.io-index"
  3911. checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
  3912. [[package]]
  3913. name = "unicode-ident"
  3914. version = "1.0.4"
  3915. source = "registry+https://github.com/rust-lang/crates.io-index"
  3916. checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
  3917. [[package]]
  3918. name = "unicode-linebreak"
  3919. version = "0.1.3"
  3920. source = "registry+https://github.com/rust-lang/crates.io-index"
  3921. checksum = "ba853b89cad55680dd3cf06f2798cb1ad8d483f0e2dfa14138d7e789ecee5c4e"
  3922. dependencies = [
  3923. "hashbrown 0.12.3",
  3924. "regex",
  3925. ]
  3926. [[package]]
  3927. name = "unicode-normalization"
  3928. version = "0.1.22"
  3929. source = "registry+https://github.com/rust-lang/crates.io-index"
  3930. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  3931. dependencies = [
  3932. "tinyvec",
  3933. ]
  3934. [[package]]
  3935. name = "unicode-segmentation"
  3936. version = "1.10.0"
  3937. source = "registry+https://github.com/rust-lang/crates.io-index"
  3938. checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
  3939. [[package]]
  3940. name = "unicode-width"
  3941. version = "0.1.10"
  3942. source = "registry+https://github.com/rust-lang/crates.io-index"
  3943. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  3944. [[package]]
  3945. name = "unicode-xid"
  3946. version = "0.2.4"
  3947. source = "registry+https://github.com/rust-lang/crates.io-index"
  3948. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  3949. [[package]]
  3950. name = "unicode_categories"
  3951. version = "0.1.1"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
  3954. [[package]]
  3955. name = "universal-hash"
  3956. version = "0.5.0"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
  3959. dependencies = [
  3960. "crypto-common",
  3961. "subtle",
  3962. ]
  3963. [[package]]
  3964. name = "untrusted"
  3965. version = "0.7.1"
  3966. source = "registry+https://github.com/rust-lang/crates.io-index"
  3967. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  3968. [[package]]
  3969. name = "url"
  3970. version = "2.3.1"
  3971. source = "registry+https://github.com/rust-lang/crates.io-index"
  3972. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  3973. dependencies = [
  3974. "form_urlencoded",
  3975. "idna",
  3976. "percent-encoding",
  3977. "serde",
  3978. ]
  3979. [[package]]
  3980. name = "utf-8"
  3981. version = "0.7.6"
  3982. source = "registry+https://github.com/rust-lang/crates.io-index"
  3983. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  3984. [[package]]
  3985. name = "value-bag"
  3986. version = "1.0.0-alpha.9"
  3987. source = "registry+https://github.com/rust-lang/crates.io-index"
  3988. checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
  3989. dependencies = [
  3990. "ctor",
  3991. "version_check",
  3992. ]
  3993. [[package]]
  3994. name = "vanityaddr"
  3995. version = "0.3.0"
  3996. dependencies = [
  3997. "bs58",
  3998. "clap 3.2.22",
  3999. "ctrlc",
  4000. "darkfi",
  4001. "indicatif",
  4002. "num_cpus",
  4003. "rand",
  4004. "rayon",
  4005. ]
  4006. [[package]]
  4007. name = "vcpkg"
  4008. version = "0.2.15"
  4009. source = "registry+https://github.com/rust-lang/crates.io-index"
  4010. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4011. [[package]]
  4012. name = "vec_map"
  4013. version = "0.8.2"
  4014. source = "registry+https://github.com/rust-lang/crates.io-index"
  4015. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  4016. [[package]]
  4017. name = "version_check"
  4018. version = "0.9.4"
  4019. source = "registry+https://github.com/rust-lang/crates.io-index"
  4020. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  4021. [[package]]
  4022. name = "virtue"
  4023. version = "0.0.7"
  4024. source = "registry+https://github.com/rust-lang/crates.io-index"
  4025. checksum = "757cfbfe0d17ee6f22fe97e536d463047d451b47cf9d11e2b7d1398b0ef274dd"
  4026. [[package]]
  4027. name = "wait-timeout"
  4028. version = "0.2.0"
  4029. source = "registry+https://github.com/rust-lang/crates.io-index"
  4030. checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  4031. dependencies = [
  4032. "libc",
  4033. ]
  4034. [[package]]
  4035. name = "waker-fn"
  4036. version = "1.1.0"
  4037. source = "registry+https://github.com/rust-lang/crates.io-index"
  4038. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  4039. [[package]]
  4040. name = "walkdir"
  4041. version = "2.3.2"
  4042. source = "registry+https://github.com/rust-lang/crates.io-index"
  4043. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  4044. dependencies = [
  4045. "same-file",
  4046. "winapi",
  4047. "winapi-util",
  4048. ]
  4049. [[package]]
  4050. name = "wasi"
  4051. version = "0.10.0+wasi-snapshot-preview1"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  4054. [[package]]
  4055. name = "wasi"
  4056. version = "0.11.0+wasi-snapshot-preview1"
  4057. source = "registry+https://github.com/rust-lang/crates.io-index"
  4058. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4059. [[package]]
  4060. name = "wasm-bindgen"
  4061. version = "0.2.83"
  4062. source = "registry+https://github.com/rust-lang/crates.io-index"
  4063. checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
  4064. dependencies = [
  4065. "cfg-if 1.0.0",
  4066. "wasm-bindgen-macro",
  4067. ]
  4068. [[package]]
  4069. name = "wasm-bindgen-backend"
  4070. version = "0.2.83"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
  4073. dependencies = [
  4074. "bumpalo",
  4075. "log",
  4076. "once_cell",
  4077. "proc-macro2",
  4078. "quote",
  4079. "syn",
  4080. "wasm-bindgen-shared",
  4081. ]
  4082. [[package]]
  4083. name = "wasm-bindgen-futures"
  4084. version = "0.4.33"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
  4087. dependencies = [
  4088. "cfg-if 1.0.0",
  4089. "js-sys",
  4090. "wasm-bindgen",
  4091. "web-sys",
  4092. ]
  4093. [[package]]
  4094. name = "wasm-bindgen-macro"
  4095. version = "0.2.83"
  4096. source = "registry+https://github.com/rust-lang/crates.io-index"
  4097. checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
  4098. dependencies = [
  4099. "quote",
  4100. "wasm-bindgen-macro-support",
  4101. ]
  4102. [[package]]
  4103. name = "wasm-bindgen-macro-support"
  4104. version = "0.2.83"
  4105. source = "registry+https://github.com/rust-lang/crates.io-index"
  4106. checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
  4107. dependencies = [
  4108. "proc-macro2",
  4109. "quote",
  4110. "syn",
  4111. "wasm-bindgen-backend",
  4112. "wasm-bindgen-shared",
  4113. ]
  4114. [[package]]
  4115. name = "wasm-bindgen-shared"
  4116. version = "0.2.83"
  4117. source = "registry+https://github.com/rust-lang/crates.io-index"
  4118. checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
  4119. [[package]]
  4120. name = "wasm-encoder"
  4121. version = "0.17.0"
  4122. source = "registry+https://github.com/rust-lang/crates.io-index"
  4123. checksum = "7e7ca71c70a6de5b10968ae4d298e548366d9cd9588176e6ff8866f3c49c96ee"
  4124. dependencies = [
  4125. "leb128",
  4126. ]
  4127. [[package]]
  4128. name = "wasmer"
  4129. version = "2.3.0"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. checksum = "ea8d8361c9d006ea3d7797de7bd6b1492ffd0f91a22430cfda6c1658ad57bedf"
  4132. dependencies = [
  4133. "cfg-if 1.0.0",
  4134. "indexmap",
  4135. "js-sys",
  4136. "loupe",
  4137. "more-asserts",
  4138. "target-lexicon",
  4139. "thiserror",
  4140. "wasm-bindgen",
  4141. "wasmer-artifact",
  4142. "wasmer-compiler",
  4143. "wasmer-compiler-cranelift",
  4144. "wasmer-derive",
  4145. "wasmer-engine",
  4146. "wasmer-engine-dylib",
  4147. "wasmer-engine-universal",
  4148. "wasmer-types",
  4149. "wasmer-vm",
  4150. "wat",
  4151. "winapi",
  4152. ]
  4153. [[package]]
  4154. name = "wasmer-artifact"
  4155. version = "2.3.0"
  4156. source = "registry+https://github.com/rust-lang/crates.io-index"
  4157. checksum = "7aaf9428c29c1d8ad2ac0e45889ba8a568a835e33fd058964e5e500f2f7ce325"
  4158. dependencies = [
  4159. "enumset",
  4160. "loupe",
  4161. "thiserror",
  4162. "wasmer-compiler",
  4163. "wasmer-types",
  4164. ]
  4165. [[package]]
  4166. name = "wasmer-compiler"
  4167. version = "2.3.0"
  4168. source = "registry+https://github.com/rust-lang/crates.io-index"
  4169. checksum = "e67a6cd866aed456656db2cfea96c18baabbd33f676578482b85c51e1ee19d2c"
  4170. dependencies = [
  4171. "enumset",
  4172. "loupe",
  4173. "rkyv",
  4174. "serde",
  4175. "serde_bytes",
  4176. "smallvec",
  4177. "target-lexicon",
  4178. "thiserror",
  4179. "wasmer-types",
  4180. "wasmparser",
  4181. ]
  4182. [[package]]
  4183. name = "wasmer-compiler-cranelift"
  4184. version = "2.3.0"
  4185. source = "registry+https://github.com/rust-lang/crates.io-index"
  4186. checksum = "48be2f9f6495f08649e4f8b946a2cbbe119faf5a654aa1457f9504a99d23dae0"
  4187. dependencies = [
  4188. "cranelift-codegen",
  4189. "cranelift-entity",
  4190. "cranelift-frontend",
  4191. "gimli",
  4192. "loupe",
  4193. "more-asserts",
  4194. "rayon",
  4195. "smallvec",
  4196. "target-lexicon",
  4197. "tracing",
  4198. "wasmer-compiler",
  4199. "wasmer-types",
  4200. ]
  4201. [[package]]
  4202. name = "wasmer-compiler-singlepass"
  4203. version = "2.3.0"
  4204. source = "registry+https://github.com/rust-lang/crates.io-index"
  4205. checksum = "29ca2a35204d8befa85062bc7aac259a8db8070b801b8a783770ba58231d729e"
  4206. dependencies = [
  4207. "byteorder",
  4208. "dynasm",
  4209. "dynasmrt",
  4210. "gimli",
  4211. "lazy_static",
  4212. "loupe",
  4213. "more-asserts",
  4214. "rayon",
  4215. "smallvec",
  4216. "wasmer-compiler",
  4217. "wasmer-types",
  4218. ]
  4219. [[package]]
  4220. name = "wasmer-derive"
  4221. version = "2.3.0"
  4222. source = "registry+https://github.com/rust-lang/crates.io-index"
  4223. checksum = "00e50405cc2a2f74ff574584710a5f2c1d5c93744acce2ca0866084739284b51"
  4224. dependencies = [
  4225. "proc-macro-error",
  4226. "proc-macro2",
  4227. "quote",
  4228. "syn",
  4229. ]
  4230. [[package]]
  4231. name = "wasmer-engine"
  4232. version = "2.3.0"
  4233. source = "registry+https://github.com/rust-lang/crates.io-index"
  4234. checksum = "3f98f010978c244db431b392aeab0661df7ea0822343334f8f2a920763548e45"
  4235. dependencies = [
  4236. "backtrace",
  4237. "enumset",
  4238. "lazy_static",
  4239. "loupe",
  4240. "memmap2",
  4241. "more-asserts",
  4242. "rustc-demangle",
  4243. "serde",
  4244. "serde_bytes",
  4245. "target-lexicon",
  4246. "thiserror",
  4247. "wasmer-artifact",
  4248. "wasmer-compiler",
  4249. "wasmer-types",
  4250. "wasmer-vm",
  4251. ]
  4252. [[package]]
  4253. name = "wasmer-engine-dylib"
  4254. version = "2.3.0"
  4255. source = "registry+https://github.com/rust-lang/crates.io-index"
  4256. checksum = "ad0358af9c154724587731175553805648d9acb8f6657880d165e378672b7e53"
  4257. dependencies = [
  4258. "cfg-if 1.0.0",
  4259. "enum-iterator",
  4260. "enumset",
  4261. "leb128",
  4262. "libloading",
  4263. "loupe",
  4264. "object 0.28.4",
  4265. "rkyv",
  4266. "serde",
  4267. "tempfile",
  4268. "tracing",
  4269. "wasmer-artifact",
  4270. "wasmer-compiler",
  4271. "wasmer-engine",
  4272. "wasmer-object",
  4273. "wasmer-types",
  4274. "wasmer-vm",
  4275. "which",
  4276. ]
  4277. [[package]]
  4278. name = "wasmer-engine-universal"
  4279. version = "2.3.0"
  4280. source = "registry+https://github.com/rust-lang/crates.io-index"
  4281. checksum = "440dc3d93c9ca47865a4f4edd037ea81bf983b5796b59b3d712d844b32dbef15"
  4282. dependencies = [
  4283. "cfg-if 1.0.0",
  4284. "enumset",
  4285. "leb128",
  4286. "loupe",
  4287. "region",
  4288. "rkyv",
  4289. "wasmer-compiler",
  4290. "wasmer-engine",
  4291. "wasmer-engine-universal-artifact",
  4292. "wasmer-types",
  4293. "wasmer-vm",
  4294. "winapi",
  4295. ]
  4296. [[package]]
  4297. name = "wasmer-engine-universal-artifact"
  4298. version = "2.3.0"
  4299. source = "registry+https://github.com/rust-lang/crates.io-index"
  4300. checksum = "68f1db3f54152657eb6e86c44b66525ff7801dad8328fe677da48dd06af9ad41"
  4301. dependencies = [
  4302. "enum-iterator",
  4303. "enumset",
  4304. "loupe",
  4305. "rkyv",
  4306. "thiserror",
  4307. "wasmer-artifact",
  4308. "wasmer-compiler",
  4309. "wasmer-types",
  4310. ]
  4311. [[package]]
  4312. name = "wasmer-middlewares"
  4313. version = "2.3.0"
  4314. source = "registry+https://github.com/rust-lang/crates.io-index"
  4315. checksum = "d7812438ed2f37203a37007cdb5332b8475cb2b16e15d51299b2647894e9ed3a"
  4316. dependencies = [
  4317. "loupe",
  4318. "wasmer",
  4319. "wasmer-types",
  4320. "wasmer-vm",
  4321. ]
  4322. [[package]]
  4323. name = "wasmer-object"
  4324. version = "2.3.0"
  4325. source = "registry+https://github.com/rust-lang/crates.io-index"
  4326. checksum = "8d831335ff3a44ecf451303f6f891175c642488036b92ceceb24ac8623a8fa8b"
  4327. dependencies = [
  4328. "object 0.28.4",
  4329. "thiserror",
  4330. "wasmer-compiler",
  4331. "wasmer-types",
  4332. ]
  4333. [[package]]
  4334. name = "wasmer-types"
  4335. version = "2.3.0"
  4336. source = "registry+https://github.com/rust-lang/crates.io-index"
  4337. checksum = "39df01ea05dc0a9bab67e054c7cb01521e53b35a7bb90bd02eca564ed0b2667f"
  4338. dependencies = [
  4339. "backtrace",
  4340. "enum-iterator",
  4341. "indexmap",
  4342. "loupe",
  4343. "more-asserts",
  4344. "rkyv",
  4345. "serde",
  4346. "thiserror",
  4347. ]
  4348. [[package]]
  4349. name = "wasmer-vm"
  4350. version = "2.3.0"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "30d965fa61f4dc4cdb35a54daaf7ecec3563fbb94154a6c35433f879466247dd"
  4353. dependencies = [
  4354. "backtrace",
  4355. "cc",
  4356. "cfg-if 1.0.0",
  4357. "corosensei",
  4358. "enum-iterator",
  4359. "indexmap",
  4360. "lazy_static",
  4361. "libc",
  4362. "loupe",
  4363. "mach",
  4364. "memoffset",
  4365. "more-asserts",
  4366. "region",
  4367. "rkyv",
  4368. "scopeguard",
  4369. "serde",
  4370. "thiserror",
  4371. "wasmer-artifact",
  4372. "wasmer-types",
  4373. "winapi",
  4374. ]
  4375. [[package]]
  4376. name = "wasmparser"
  4377. version = "0.83.0"
  4378. source = "registry+https://github.com/rust-lang/crates.io-index"
  4379. checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a"
  4380. [[package]]
  4381. name = "wast"
  4382. version = "47.0.0"
  4383. source = "registry+https://github.com/rust-lang/crates.io-index"
  4384. checksum = "117ccfc4262e62a28a13f0548a147f19ffe71e8a08be802af23ae4ea0bedad73"
  4385. dependencies = [
  4386. "leb128",
  4387. "memchr",
  4388. "unicode-width",
  4389. "wasm-encoder",
  4390. ]
  4391. [[package]]
  4392. name = "wat"
  4393. version = "1.0.49"
  4394. source = "registry+https://github.com/rust-lang/crates.io-index"
  4395. checksum = "7aab4e20c60429fbba9670a6cae0fff9520046ba0aa3e6d0b1cd2653bea14898"
  4396. dependencies = [
  4397. "wast",
  4398. ]
  4399. [[package]]
  4400. name = "web-sys"
  4401. version = "0.3.60"
  4402. source = "registry+https://github.com/rust-lang/crates.io-index"
  4403. checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
  4404. dependencies = [
  4405. "js-sys",
  4406. "wasm-bindgen",
  4407. ]
  4408. [[package]]
  4409. name = "webpki"
  4410. version = "0.22.0"
  4411. source = "registry+https://github.com/rust-lang/crates.io-index"
  4412. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  4413. dependencies = [
  4414. "ring",
  4415. "untrusted",
  4416. ]
  4417. [[package]]
  4418. name = "wee_alloc"
  4419. version = "0.4.5"
  4420. source = "registry+https://github.com/rust-lang/crates.io-index"
  4421. checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
  4422. dependencies = [
  4423. "cfg-if 0.1.10",
  4424. "libc",
  4425. "memory_units",
  4426. "winapi",
  4427. ]
  4428. [[package]]
  4429. name = "weezl"
  4430. version = "0.1.7"
  4431. source = "registry+https://github.com/rust-lang/crates.io-index"
  4432. checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
  4433. [[package]]
  4434. name = "wepoll-ffi"
  4435. version = "0.1.2"
  4436. source = "registry+https://github.com/rust-lang/crates.io-index"
  4437. checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
  4438. dependencies = [
  4439. "cc",
  4440. ]
  4441. [[package]]
  4442. name = "which"
  4443. version = "4.3.0"
  4444. source = "registry+https://github.com/rust-lang/crates.io-index"
  4445. checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
  4446. dependencies = [
  4447. "either",
  4448. "libc",
  4449. "once_cell",
  4450. ]
  4451. [[package]]
  4452. name = "winapi"
  4453. version = "0.3.9"
  4454. source = "registry+https://github.com/rust-lang/crates.io-index"
  4455. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4456. dependencies = [
  4457. "winapi-i686-pc-windows-gnu",
  4458. "winapi-x86_64-pc-windows-gnu",
  4459. ]
  4460. [[package]]
  4461. name = "winapi-i686-pc-windows-gnu"
  4462. version = "0.4.0"
  4463. source = "registry+https://github.com/rust-lang/crates.io-index"
  4464. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4465. [[package]]
  4466. name = "winapi-util"
  4467. version = "0.1.5"
  4468. source = "registry+https://github.com/rust-lang/crates.io-index"
  4469. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  4470. dependencies = [
  4471. "winapi",
  4472. ]
  4473. [[package]]
  4474. name = "winapi-x86_64-pc-windows-gnu"
  4475. version = "0.4.0"
  4476. source = "registry+https://github.com/rust-lang/crates.io-index"
  4477. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4478. [[package]]
  4479. name = "windows-sys"
  4480. version = "0.33.0"
  4481. source = "registry+https://github.com/rust-lang/crates.io-index"
  4482. checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75"
  4483. dependencies = [
  4484. "windows_aarch64_msvc 0.33.0",
  4485. "windows_i686_gnu 0.33.0",
  4486. "windows_i686_msvc 0.33.0",
  4487. "windows_x86_64_gnu 0.33.0",
  4488. "windows_x86_64_msvc 0.33.0",
  4489. ]
  4490. [[package]]
  4491. name = "windows-sys"
  4492. version = "0.36.1"
  4493. source = "registry+https://github.com/rust-lang/crates.io-index"
  4494. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  4495. dependencies = [
  4496. "windows_aarch64_msvc 0.36.1",
  4497. "windows_i686_gnu 0.36.1",
  4498. "windows_i686_msvc 0.36.1",
  4499. "windows_x86_64_gnu 0.36.1",
  4500. "windows_x86_64_msvc 0.36.1",
  4501. ]
  4502. [[package]]
  4503. name = "windows_aarch64_msvc"
  4504. version = "0.33.0"
  4505. source = "registry+https://github.com/rust-lang/crates.io-index"
  4506. checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807"
  4507. [[package]]
  4508. name = "windows_aarch64_msvc"
  4509. version = "0.36.1"
  4510. source = "registry+https://github.com/rust-lang/crates.io-index"
  4511. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  4512. [[package]]
  4513. name = "windows_i686_gnu"
  4514. version = "0.33.0"
  4515. source = "registry+https://github.com/rust-lang/crates.io-index"
  4516. checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e"
  4517. [[package]]
  4518. name = "windows_i686_gnu"
  4519. version = "0.36.1"
  4520. source = "registry+https://github.com/rust-lang/crates.io-index"
  4521. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  4522. [[package]]
  4523. name = "windows_i686_msvc"
  4524. version = "0.33.0"
  4525. source = "registry+https://github.com/rust-lang/crates.io-index"
  4526. checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0"
  4527. [[package]]
  4528. name = "windows_i686_msvc"
  4529. version = "0.36.1"
  4530. source = "registry+https://github.com/rust-lang/crates.io-index"
  4531. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  4532. [[package]]
  4533. name = "windows_x86_64_gnu"
  4534. version = "0.33.0"
  4535. source = "registry+https://github.com/rust-lang/crates.io-index"
  4536. checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784"
  4537. [[package]]
  4538. name = "windows_x86_64_gnu"
  4539. version = "0.36.1"
  4540. source = "registry+https://github.com/rust-lang/crates.io-index"
  4541. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  4542. [[package]]
  4543. name = "windows_x86_64_msvc"
  4544. version = "0.33.0"
  4545. source = "registry+https://github.com/rust-lang/crates.io-index"
  4546. checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa"
  4547. [[package]]
  4548. name = "windows_x86_64_msvc"
  4549. version = "0.36.1"
  4550. source = "registry+https://github.com/rust-lang/crates.io-index"
  4551. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
  4552. [[package]]
  4553. name = "wio"
  4554. version = "0.2.2"
  4555. source = "registry+https://github.com/rust-lang/crates.io-index"
  4556. checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
  4557. dependencies = [
  4558. "winapi",
  4559. ]
  4560. [[package]]
  4561. name = "wyz"
  4562. version = "0.5.0"
  4563. source = "registry+https://github.com/rust-lang/crates.io-index"
  4564. checksum = "30b31594f29d27036c383b53b59ed3476874d518f0efb151b27a4c275141390e"
  4565. dependencies = [
  4566. "tap",
  4567. ]
  4568. [[package]]
  4569. name = "x25519-dalek"
  4570. version = "1.1.1"
  4571. source = "registry+https://github.com/rust-lang/crates.io-index"
  4572. checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"
  4573. dependencies = [
  4574. "curve25519-dalek",
  4575. "rand_core 0.5.1",
  4576. "zeroize",
  4577. ]
  4578. [[package]]
  4579. name = "xsalsa20poly1305"
  4580. version = "0.9.0"
  4581. source = "registry+https://github.com/rust-lang/crates.io-index"
  4582. checksum = "472c385ee974833d7e59979eeb74175d56774be3768b5bcc581337e21396bda3"
  4583. dependencies = [
  4584. "aead",
  4585. "poly1305",
  4586. "salsa20",
  4587. "subtle",
  4588. "zeroize",
  4589. ]
  4590. [[package]]
  4591. name = "yasna"
  4592. version = "0.5.0"
  4593. source = "registry+https://github.com/rust-lang/crates.io-index"
  4594. checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c"
  4595. dependencies = [
  4596. "time 0.3.14",
  4597. ]
  4598. [[package]]
  4599. name = "yeslogic-fontconfig-sys"
  4600. version = "3.2.0"
  4601. source = "registry+https://github.com/rust-lang/crates.io-index"
  4602. checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386"
  4603. dependencies = [
  4604. "const-cstr",
  4605. "dlib",
  4606. "once_cell",
  4607. "pkg-config",
  4608. ]
  4609. [[package]]
  4610. name = "zeroize"
  4611. version = "1.5.7"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
  4614. dependencies = [
  4615. "zeroize_derive",
  4616. ]
  4617. [[package]]
  4618. name = "zeroize_derive"
  4619. version = "1.3.2"
  4620. source = "registry+https://github.com/rust-lang/crates.io-index"
  4621. checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
  4622. dependencies = [
  4623. "proc-macro2",
  4624. "quote",
  4625. "syn",
  4626. "synstructure",
  4627. ]
  4628. [[package]]
  4629. name = "zkas"
  4630. version = "0.3.0"
  4631. dependencies = [
  4632. "clap 3.2.22",
  4633. "darkfi",
  4634. ]