Cargo.lock 122 KB

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