Cargo.lock 120 KB

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