Cargo.lock 121 KB

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