Cargo.lock 119 KB

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