Cargo.lock 119 KB

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