Cargo.lock 122 KB

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