Cargo.lock 123 KB

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