| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304 |
- # This file is automatically @generated by Cargo.
- # It is not intended for manual editing.
- version = 3
- [[package]]
- name = "addr2line"
- version = "0.17.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
- dependencies = [
- "gimli",
- ]
- [[package]]
- name = "adler"
- version = "1.0.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
- [[package]]
- name = "aead"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
- dependencies = [
- "crypto-common",
- "generic-array",
- ]
- [[package]]
- name = "ahash"
- version = "0.7.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
- dependencies = [
- "getrandom 0.2.7",
- "once_cell",
- "version_check",
- ]
- [[package]]
- name = "aho-corasick"
- version = "0.7.19"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "android_system_properties"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "ansi_term"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
- dependencies = [
- "winapi",
- ]
- [[package]]
- name = "anyhow"
- version = "1.0.65"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
- [[package]]
- name = "arrayref"
- version = "0.3.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
- [[package]]
- name = "arrayvec"
- version = "0.7.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
- [[package]]
- name = "async-attributes"
- version = "1.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
- dependencies = [
- "quote",
- "syn",
- ]
- [[package]]
- name = "async-channel"
- version = "1.7.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
- dependencies = [
- "concurrent-queue",
- "event-listener",
- "futures-core",
- ]
- [[package]]
- name = "async-executor"
- version = "1.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
- dependencies = [
- "async-task",
- "concurrent-queue",
- "fastrand",
- "futures-lite",
- "once_cell",
- "slab",
- ]
- [[package]]
- name = "async-fs"
- version = "1.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
- dependencies = [
- "async-lock",
- "autocfg",
- "blocking",
- "futures-lite",
- ]
- [[package]]
- name = "async-global-executor"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0da5b41ee986eed3f524c380e6d64965aea573882a8907682ad100f7859305ca"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-io",
- "async-lock",
- "blocking",
- "futures-lite",
- "once_cell",
- ]
- [[package]]
- name = "async-io"
- version = "1.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "83e21f3a490c72b3b0cf44962180e60045de2925d8dff97918f7ee43c8f637c7"
- dependencies = [
- "autocfg",
- "concurrent-queue",
- "futures-lite",
- "libc",
- "log",
- "once_cell",
- "parking",
- "polling",
- "slab",
- "socket2",
- "waker-fn",
- "winapi",
- ]
- [[package]]
- name = "async-lock"
- version = "2.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
- dependencies = [
- "event-listener",
- ]
- [[package]]
- name = "async-native-tls"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d57d4cec3c647232e1094dc013546c0b33ce785d8aeb251e1f20dfaf8a9a13fe"
- dependencies = [
- "futures-util",
- "native-tls",
- "thiserror",
- "url",
- ]
- [[package]]
- name = "async-net"
- version = "1.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4051e67316bc7eff608fe723df5d32ed639946adcd69e07df41fd42a7b411f1f"
- dependencies = [
- "async-io",
- "autocfg",
- "blocking",
- "futures-lite",
- ]
- [[package]]
- name = "async-process"
- version = "1.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "02111fd8655a613c25069ea89fc8d9bb89331fa77486eb3bc059ee757cfa481c"
- dependencies = [
- "async-io",
- "autocfg",
- "blocking",
- "cfg-if 1.0.0",
- "event-listener",
- "futures-lite",
- "libc",
- "once_cell",
- "signal-hook",
- "winapi",
- ]
- [[package]]
- name = "async-recursion"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2cda8f4bcc10624c4e85bc66b3f452cca98cfa5ca002dc83a16aad2367641bea"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "async-std"
- version = "1.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
- dependencies = [
- "async-attributes",
- "async-channel",
- "async-global-executor",
- "async-io",
- "async-lock",
- "async-process",
- "crossbeam-utils",
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-lite",
- "gloo-timers",
- "kv-log-macro",
- "log",
- "memchr",
- "once_cell",
- "pin-project-lite",
- "pin-utils",
- "slab",
- "wasm-bindgen-futures",
- ]
- [[package]]
- name = "async-task"
- version = "4.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
- [[package]]
- name = "async-trait"
- version = "0.1.57"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "async-tungstenite"
- version = "0.17.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a1b71b31561643aa8e7df3effe284fa83ab1a840e52294c5f4bd7bfd8b2becbb"
- dependencies = [
- "futures-io",
- "futures-util",
- "log",
- "pin-project-lite",
- "tungstenite",
- ]
- [[package]]
- name = "atoi"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
- dependencies = [
- "num-traits",
- ]
- [[package]]
- name = "atomic-waker"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
- [[package]]
- name = "atty"
- version = "0.2.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
- dependencies = [
- "hermit-abi",
- "libc",
- "winapi",
- ]
- [[package]]
- name = "autocfg"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
- [[package]]
- name = "backtrace"
- version = "0.3.66"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
- dependencies = [
- "addr2line",
- "cc",
- "cfg-if 1.0.0",
- "libc",
- "miniz_oxide",
- "object 0.29.0",
- "rustc-demangle",
- ]
- [[package]]
- name = "base64"
- version = "0.13.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
- [[package]]
- name = "bincode"
- version = "2.0.0-rc.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7bb50c5a2ef4b9b1e7ae73e3a73b52ea24b20312d629f9c4df28260b7ad2c3c4"
- dependencies = [
- "bincode_derive",
- "serde",
- ]
- [[package]]
- name = "bincode_derive"
- version = "2.0.0-rc.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0a45a23389446d2dd25dc8e73a7a3b3c43522b630cac068927f0649d43d719d2"
- dependencies = [
- "virtue",
- ]
- [[package]]
- name = "bit-set"
- version = "0.5.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
- dependencies = [
- "bit-vec",
- ]
- [[package]]
- name = "bit-vec"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
- [[package]]
- name = "bitflags"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
- [[package]]
- name = "bitvec"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
- dependencies = [
- "funty",
- "radium",
- "tap",
- "wyz",
- ]
- [[package]]
- name = "blake2b_simd"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "72936ee4afc7f8f736d1c38383b56480b5497b4617b4a77bdbf1d2ababc76127"
- dependencies = [
- "arrayref",
- "arrayvec",
- "constant_time_eq",
- ]
- [[package]]
- name = "blake3"
- version = "1.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f"
- dependencies = [
- "arrayref",
- "arrayvec",
- "cc",
- "cfg-if 1.0.0",
- "constant_time_eq",
- "digest 0.10.5",
- ]
- [[package]]
- name = "block-buffer"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "block-buffer"
- version = "0.10.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "blocking"
- version = "1.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
- dependencies = [
- "async-channel",
- "async-task",
- "atomic-waker",
- "fastrand",
- "futures-lite",
- "once_cell",
- ]
- [[package]]
- name = "borsh"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
- dependencies = [
- "borsh-derive",
- "hashbrown 0.11.2",
- ]
- [[package]]
- name = "borsh-derive"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
- dependencies = [
- "borsh-derive-internal",
- "borsh-schema-derive-internal",
- "proc-macro-crate 0.1.5",
- "proc-macro2",
- "syn",
- ]
- [[package]]
- name = "borsh-derive-internal"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "borsh-schema-derive-internal"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "bs58"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
- [[package]]
- name = "bstr"
- version = "0.2.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
- dependencies = [
- "lazy_static",
- "memchr",
- "regex-automata",
- "serde",
- ]
- [[package]]
- name = "bumpalo"
- version = "3.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
- [[package]]
- name = "bytecheck"
- version = "0.6.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
- dependencies = [
- "bytecheck_derive",
- "ptr_meta",
- ]
- [[package]]
- name = "bytecheck_derive"
- version = "0.6.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "bytecount"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
- [[package]]
- name = "bytemuck"
- version = "1.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
- [[package]]
- name = "byteorder"
- version = "1.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
- [[package]]
- name = "bytes"
- version = "1.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
- [[package]]
- name = "cache-padded"
- version = "1.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
- [[package]]
- name = "camino"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "88ad0e1e3e88dd237a156ab9f571021b8a158caa0ae44b1968a241efb5144c1e"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "cargo-platform"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "cargo_metadata"
- version = "0.14.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
- dependencies = [
- "camino",
- "cargo-platform",
- "semver 1.0.14",
- "serde",
- "serde_json",
- ]
- [[package]]
- name = "cassowary"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
- [[package]]
- name = "cc"
- version = "1.0.73"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
- [[package]]
- name = "cfg-if"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
- [[package]]
- name = "cfg-if"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
- [[package]]
- name = "chacha20"
- version = "0.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ed8738f14471a99f0e316c327e68fc82a3611cc2895fcb604b89eedaf8f39d95"
- dependencies = [
- "cipher 0.2.5",
- "rand_core 0.5.1",
- ]
- [[package]]
- name = "chacha20"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c7fc89c7c5b9e7a02dfe45cd2367bae382f9ed31c61ca8debe5f827c420a2f08"
- dependencies = [
- "cfg-if 1.0.0",
- "cipher 0.4.3",
- "cpufeatures",
- ]
- [[package]]
- name = "chacha20poly1305"
- version = "0.10.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
- dependencies = [
- "aead",
- "chacha20 0.9.0",
- "cipher 0.4.3",
- "poly1305",
- "zeroize",
- ]
- [[package]]
- name = "chrono"
- version = "0.4.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
- dependencies = [
- "iana-time-zone",
- "js-sys",
- "num-integer",
- "num-traits",
- "time 0.1.44",
- "wasm-bindgen",
- "winapi",
- ]
- [[package]]
- name = "cipher"
- version = "0.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "cipher"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
- dependencies = [
- "crypto-common",
- "inout",
- "zeroize",
- ]
- [[package]]
- name = "clap"
- version = "2.34.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
- dependencies = [
- "ansi_term",
- "atty",
- "bitflags",
- "strsim 0.8.0",
- "textwrap 0.11.0",
- "unicode-width",
- "vec_map",
- ]
- [[package]]
- name = "clap"
- version = "3.2.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750"
- dependencies = [
- "atty",
- "bitflags",
- "clap_derive",
- "clap_lex",
- "indexmap",
- "once_cell",
- "strsim 0.10.0",
- "termcolor",
- "textwrap 0.15.1",
- ]
- [[package]]
- name = "clap_derive"
- version = "3.2.18"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
- dependencies = [
- "heck 0.4.0",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "clap_lex"
- version = "0.2.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
- dependencies = [
- "os_str_bytes",
- ]
- [[package]]
- name = "cmake"
- version = "0.1.48"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a"
- dependencies = [
- "cc",
- ]
- [[package]]
- name = "color_quant"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
- [[package]]
- name = "colored"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
- dependencies = [
- "atty",
- "lazy_static",
- "winapi",
- ]
- [[package]]
- name = "concurrent-queue"
- version = "1.2.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
- dependencies = [
- "cache-padded",
- ]
- [[package]]
- name = "console"
- version = "0.15.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
- dependencies = [
- "encode_unicode 0.3.6",
- "lazy_static",
- "libc",
- "terminal_size",
- "unicode-width",
- "winapi",
- ]
- [[package]]
- name = "const-cstr"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6"
- [[package]]
- name = "constant_time_eq"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
- [[package]]
- name = "core-foundation"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
- dependencies = [
- "core-foundation-sys",
- "libc",
- ]
- [[package]]
- name = "core-foundation-sys"
- version = "0.8.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
- [[package]]
- name = "core-graphics"
- version = "0.22.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
- dependencies = [
- "bitflags",
- "core-foundation",
- "core-graphics-types",
- "foreign-types",
- "libc",
- ]
- [[package]]
- name = "core-graphics-types"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
- dependencies = [
- "bitflags",
- "core-foundation",
- "foreign-types",
- "libc",
- ]
- [[package]]
- name = "core-text"
- version = "19.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25"
- dependencies = [
- "core-foundation",
- "core-graphics",
- "foreign-types",
- "libc",
- ]
- [[package]]
- name = "corosensei"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9847f90f32a50b0dcbd68bc23ff242798b13080b97b0569f6ed96a45ce4cf2cd"
- dependencies = [
- "autocfg",
- "cfg-if 1.0.0",
- "libc",
- "scopeguard",
- "windows-sys 0.33.0",
- ]
- [[package]]
- name = "cpufeatures"
- version = "0.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "cranelift-bforest"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "38faa2a16616c8e78a18d37b4726b98bfd2de192f2fdc8a39ddf568a408a0f75"
- dependencies = [
- "cranelift-entity",
- ]
- [[package]]
- name = "cranelift-codegen"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "26f192472a3ba23860afd07d2b0217dc628f21fcc72617aa1336d98e1671f33b"
- dependencies = [
- "cranelift-bforest",
- "cranelift-codegen-meta",
- "cranelift-codegen-shared",
- "cranelift-entity",
- "gimli",
- "log",
- "regalloc",
- "smallvec",
- "target-lexicon",
- ]
- [[package]]
- name = "cranelift-codegen-meta"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0f32ddb89e9b89d3d9b36a5b7d7ea3261c98235a76ac95ba46826b8ec40b1a24"
- dependencies = [
- "cranelift-codegen-shared",
- ]
- [[package]]
- name = "cranelift-codegen-shared"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "01fd0d9f288cc1b42d9333b7a776b17e278fc888c28e6a0f09b5573d45a150bc"
- [[package]]
- name = "cranelift-entity"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9e3bfe172b83167604601faf9dc60453e0d0a93415b57a9c4d1a7ae6849185cf"
- [[package]]
- name = "cranelift-frontend"
- version = "0.82.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a006e3e32d80ce0e4ba7f1f9ddf66066d052a8c884a110b91d05404d6ce26dce"
- dependencies = [
- "cranelift-codegen",
- "log",
- "smallvec",
- "target-lexicon",
- ]
- [[package]]
- name = "crc"
- version = "3.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "53757d12b596c16c78b83458d732a5d1a17ab3f53f2f7412f6fb57cc8a140ab3"
- dependencies = [
- "crc-catalog",
- ]
- [[package]]
- name = "crc-catalog"
- version = "2.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2d0165d2900ae6778e36e80bbc4da3b5eefccee9ba939761f9c2882a5d9af3ff"
- [[package]]
- name = "crc32fast"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
- dependencies = [
- "cfg-if 1.0.0",
- ]
- [[package]]
- name = "crossbeam-channel"
- version = "0.5.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
- dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-deque"
- version = "0.8.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
- dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-epoch",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-epoch"
- version = "0.9.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
- dependencies = [
- "autocfg",
- "cfg-if 1.0.0",
- "crossbeam-utils",
- "memoffset",
- "scopeguard",
- ]
- [[package]]
- name = "crossbeam-queue"
- version = "0.3.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1cd42583b04998a5363558e5f9291ee5a5ff6b49944332103f251e7479a82aa7"
- dependencies = [
- "cfg-if 1.0.0",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-utils"
- version = "0.8.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
- dependencies = [
- "cfg-if 1.0.0",
- ]
- [[package]]
- name = "crossterm"
- version = "0.25.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
- dependencies = [
- "bitflags",
- "crossterm_winapi",
- "libc",
- "mio",
- "parking_lot 0.12.1",
- "signal-hook",
- "signal-hook-mio",
- "winapi",
- ]
- [[package]]
- name = "crossterm_winapi"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
- dependencies = [
- "winapi",
- ]
- [[package]]
- name = "crunchy"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
- [[package]]
- name = "crypto-common"
- version = "0.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
- dependencies = [
- "generic-array",
- "rand_core 0.6.4",
- "typenum",
- ]
- [[package]]
- name = "crypto_api"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2f855e87e75a4799e18b8529178adcde6fd4f97c1449ff4821e747ff728bb102"
- [[package]]
- name = "crypto_api_chachapoly"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b63ae1025a6981f91b70bdcf11827189f49b01aaa3720115b330cd325d1c3809"
- dependencies = [
- "crypto_api",
- ]
- [[package]]
- name = "crypto_box"
- version = "0.8.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8cbf5d97a01c39dad83e20de5398748bbbb0ffd307b9612cf0db74ab3c88d551"
- dependencies = [
- "aead",
- "chacha20 0.9.0",
- "chacha20poly1305",
- "salsa20 0.10.2",
- "x25519-dalek",
- "xsalsa20poly1305",
- "zeroize",
- ]
- [[package]]
- name = "csv"
- version = "1.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
- dependencies = [
- "bstr",
- "csv-core",
- "itoa 0.4.8",
- "ryu",
- "serde",
- ]
- [[package]]
- name = "csv-core"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "ct-codecs"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
- [[package]]
- name = "ctor"
- version = "0.1.23"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
- dependencies = [
- "quote",
- "syn",
- ]
- [[package]]
- name = "ctrlc"
- version = "3.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173"
- dependencies = [
- "nix",
- "winapi",
- ]
- [[package]]
- name = "curve25519-dalek"
- version = "3.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
- dependencies = [
- "byteorder",
- "digest 0.9.0",
- "rand_core 0.5.1",
- "subtle",
- "zeroize",
- ]
- [[package]]
- name = "dao-cli"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "clap 3.2.22",
- "darkfi",
- "futures",
- "log",
- "num_cpus",
- "serde_json",
- "simplelog",
- "smol",
- "url",
- ]
- [[package]]
- name = "daod"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "crypto_api_chachapoly",
- "darkfi",
- "easy-parallel",
- "futures",
- "group",
- "halo2_gadgets",
- "halo2_proofs",
- "incrementalmerkletree",
- "lazy_static",
- "log",
- "num_cpus",
- "pasta_curves",
- "rand",
- "serde_json",
- "simplelog",
- "smol",
- "thiserror",
- "url",
- ]
- [[package]]
- name = "darkfi"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "async-tungstenite",
- "bincode",
- "blake2b_simd",
- "blake3",
- "bs58",
- "chrono",
- "clap 3.2.22",
- "crypto_api_chachapoly",
- "darkfi-derive",
- "darkfi-derive-internal",
- "dirs",
- "drk-sdk",
- "ed25519-compact",
- "fast-socks5",
- "futures",
- "futures-rustls",
- "fxhash",
- "group",
- "halo2_gadgets",
- "halo2_proofs",
- "hex",
- "incrementalmerkletree",
- "indexmap",
- "indicatif",
- "ipnet",
- "iprange",
- "itertools",
- "lazy-init",
- "lazy_static",
- "libc",
- "libsqlite3-sys",
- "log",
- "num-bigint",
- "num-traits",
- "pasta_curves",
- "plotters",
- "rand",
- "rcgen",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "sha2 0.10.6",
- "simplelog",
- "sled",
- "smol",
- "socket2",
- "sqlx",
- "structopt",
- "structopt-toml",
- "subtle",
- "termion",
- "thiserror",
- "toml",
- "tungstenite",
- "url",
- "wasmer",
- "wasmer-compiler-singlepass",
- "wasmer-middlewares",
- ]
- [[package]]
- name = "darkfi-derive"
- version = "0.3.0"
- dependencies = [
- "darkfi-derive-internal",
- "proc-macro-crate 1.2.1",
- "proc-macro2",
- "syn",
- ]
- [[package]]
- name = "darkfi-derive-internal"
- version = "0.3.0"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "darkfid"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "blake3",
- "bs58",
- "chrono",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures-lite",
- "fxhash",
- "incrementalmerkletree",
- "lazy-init",
- "log",
- "pasta_curves",
- "rand",
- "serde",
- "serde_derive",
- "serde_json",
- "simplelog",
- "sled",
- "structopt",
- "structopt-toml",
- "url",
- ]
- [[package]]
- name = "darkotc"
- version = "0.3.0"
- dependencies = [
- "async-std",
- "bs58",
- "clap 3.2.22",
- "darkfi",
- "halo2_gadgets",
- "halo2_proofs",
- "rand",
- "serde_json",
- "url",
- ]
- [[package]]
- name = "darkwiki"
- version = "0.4.0"
- dependencies = [
- "async-channel",
- "async-std",
- "async-trait",
- "darkfi",
- "futures",
- "log",
- "rand",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "url",
- ]
- [[package]]
- name = "darkwikid"
- version = "0.4.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "blake3",
- "bs58",
- "darkfi",
- "dryoc",
- "easy-parallel",
- "futures",
- "fxhash",
- "lazy_static",
- "log",
- "serde",
- "serde_derive",
- "serde_json",
- "signal-hook",
- "signal-hook-async-std",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "toml",
- "unicode-segmentation",
- "url",
- ]
- [[package]]
- name = "darling"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
- dependencies = [
- "darling_core 0.10.2",
- "darling_macro 0.10.2",
- ]
- [[package]]
- name = "darling"
- version = "0.14.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
- dependencies = [
- "darling_core 0.14.1",
- "darling_macro 0.14.1",
- ]
- [[package]]
- name = "darling_core"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
- dependencies = [
- "fnv",
- "ident_case",
- "proc-macro2",
- "quote",
- "strsim 0.9.3",
- "syn",
- ]
- [[package]]
- name = "darling_core"
- version = "0.14.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
- dependencies = [
- "fnv",
- "ident_case",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "darling_macro"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
- dependencies = [
- "darling_core 0.10.2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "darling_macro"
- version = "0.14.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
- dependencies = [
- "darling_core 0.14.1",
- "quote",
- "syn",
- ]
- [[package]]
- name = "dchat"
- version = "0.1.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "darkfi",
- "easy-parallel",
- "log",
- "num_cpus",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "toml",
- "url",
- ]
- [[package]]
- name = "derive_builder"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
- dependencies = [
- "darling 0.10.2",
- "derive_builder_core",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "derive_builder_core"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
- dependencies = [
- "darling 0.10.2",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "digest"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "digest"
- version = "0.10.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
- dependencies = [
- "block-buffer 0.10.3",
- "crypto-common",
- "subtle",
- ]
- [[package]]
- name = "dirs"
- version = "4.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
- dependencies = [
- "dirs-sys",
- ]
- [[package]]
- name = "dirs-next"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
- dependencies = [
- "cfg-if 1.0.0",
- "dirs-sys-next",
- ]
- [[package]]
- name = "dirs-sys"
- version = "0.3.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
- dependencies = [
- "libc",
- "redox_users",
- "winapi",
- ]
- [[package]]
- name = "dirs-sys-next"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
- dependencies = [
- "libc",
- "redox_users",
- "winapi",
- ]
- [[package]]
- name = "dlib"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
- dependencies = [
- "libloading",
- ]
- [[package]]
- name = "dnetview"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-std",
- "clap 3.2.22",
- "darkfi",
- "easy-parallel",
- "fxhash",
- "hex",
- "log",
- "num_cpus",
- "rand",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "termion",
- "thiserror",
- "tui",
- "url",
- ]
- [[package]]
- name = "dotenvy"
- version = "0.15.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ed9155c8f4dc55c7470ae9da3f63c6785245093b3f6aeb0f5bf2e968efbba314"
- dependencies = [
- "dirs",
- ]
- [[package]]
- name = "drk"
- version = "0.3.0"
- dependencies = [
- "async-std",
- "bs58",
- "clap 3.2.22",
- "darkfi",
- "log",
- "pasta_curves",
- "prettytable-rs",
- "rand",
- "serde_json",
- "simplelog",
- "url",
- ]
- [[package]]
- name = "drk-sdk"
- version = "0.3.0"
- dependencies = [
- "borsh",
- "thiserror",
- "wee_alloc",
- ]
- [[package]]
- name = "dryoc"
- version = "0.3.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "63e3117a596ee19e5e1b00c5a7bd39a083bf631b23d52fc960428556fb9ef5d8"
- dependencies = [
- "bitflags",
- "chacha20 0.6.0",
- "curve25519-dalek",
- "generic-array",
- "lazy_static",
- "libc",
- "rand_core 0.5.1",
- "salsa20 0.7.2",
- "sha2 0.9.9",
- "subtle",
- "winapi",
- "zeroize",
- ]
- [[package]]
- name = "dwrote"
- version = "0.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b"
- dependencies = [
- "lazy_static",
- "libc",
- "winapi",
- "wio",
- ]
- [[package]]
- name = "dynasm"
- version = "1.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
- dependencies = [
- "bitflags",
- "byteorder",
- "lazy_static",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "dynasmrt"
- version = "1.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
- dependencies = [
- "byteorder",
- "dynasm",
- "memmap2",
- ]
- [[package]]
- name = "easy-parallel"
- version = "3.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6907e25393cdcc1f4f3f513d9aac1e840eb1cc341a0fccb01171f7d14d10b946"
- [[package]]
- name = "ed25519-compact"
- version = "1.0.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e18997d4604542d0736fae2c5ad6de987f0a50530cbcc14a7ce5a685328a252d"
- dependencies = [
- "ct-codecs",
- "getrandom 0.2.7",
- ]
- [[package]]
- name = "either"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
- [[package]]
- name = "encode_unicode"
- version = "0.3.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
- [[package]]
- name = "encode_unicode"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
- [[package]]
- name = "enum-iterator"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
- dependencies = [
- "enum-iterator-derive",
- ]
- [[package]]
- name = "enum-iterator-derive"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "enumset"
- version = "1.0.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "19be8061a06ab6f3a6cf21106c873578bf01bd42ad15e0311a9c76161cb1c753"
- dependencies = [
- "enumset_derive",
- ]
- [[package]]
- name = "enumset_derive"
- version = "0.6.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "03e7b551eba279bf0fa88b83a46330168c1560a52a94f5126f892f0b364ab3e0"
- dependencies = [
- "darling 0.14.1",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "error-chain"
- version = "0.12.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
- dependencies = [
- "version_check",
- ]
- [[package]]
- name = "event-listener"
- version = "2.5.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
- [[package]]
- name = "fallible-iterator"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
- [[package]]
- name = "fast-socks5"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ba337793c1ee49731350a8d971d791651ed51d6e814ab4ddabd79c12b5366140"
- dependencies = [
- "anyhow",
- "async-std",
- "futures",
- "log",
- "thiserror",
- ]
- [[package]]
- name = "fastrand"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
- dependencies = [
- "instant",
- ]
- [[package]]
- name = "faucetd"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "blake3",
- "bs58",
- "chrono",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures-lite",
- "hex",
- "lazy-init",
- "log",
- "rand",
- "serde",
- "serde_derive",
- "serde_json",
- "simplelog",
- "sled",
- "structopt",
- "structopt-toml",
- "url",
- ]
- [[package]]
- name = "ff"
- version = "0.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "df689201f395c6b90dfe87127685f8dbfc083a5e779e613575d8bd7314300c3e"
- dependencies = [
- "bitvec",
- "rand_core 0.6.4",
- "subtle",
- ]
- [[package]]
- name = "flate2"
- version = "1.0.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
- dependencies = [
- "crc32fast",
- "miniz_oxide",
- ]
- [[package]]
- name = "float-ord"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
- [[package]]
- name = "flume"
- version = "0.10.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
- dependencies = [
- "futures-core",
- "futures-sink",
- "pin-project",
- "spin 0.9.4",
- ]
- [[package]]
- name = "fnv"
- version = "1.0.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
- [[package]]
- name = "font-kit"
- version = "0.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "21fe28504d371085fae9ac7a3450f0b289ab71e07c8e57baa3fb68b9e57d6ce5"
- dependencies = [
- "bitflags",
- "byteorder",
- "core-foundation",
- "core-graphics",
- "core-text",
- "dirs-next",
- "dwrote",
- "float-ord",
- "freetype",
- "lazy_static",
- "libc",
- "log",
- "pathfinder_geometry",
- "pathfinder_simd",
- "walkdir",
- "winapi",
- "yeslogic-fontconfig-sys",
- ]
- [[package]]
- name = "foreign-types"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
- dependencies = [
- "foreign-types-shared",
- ]
- [[package]]
- name = "foreign-types-shared"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
- [[package]]
- name = "form_urlencoded"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
- dependencies = [
- "percent-encoding",
- ]
- [[package]]
- name = "freetype"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6"
- dependencies = [
- "freetype-sys",
- "libc",
- ]
- [[package]]
- name = "freetype-sys"
- version = "0.13.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a"
- dependencies = [
- "cmake",
- "libc",
- "pkg-config",
- ]
- [[package]]
- name = "fs2"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
- dependencies = [
- "libc",
- "winapi",
- ]
- [[package]]
- name = "fu"
- version = "0.3.0"
- dependencies = [
- "async-std",
- "clap 3.2.22",
- "darkfi",
- "log",
- "serde_json",
- "simplelog",
- "url",
- ]
- [[package]]
- name = "fud"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "blake3",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures-lite",
- "log",
- "serde",
- "serde_derive",
- "serde_json",
- "simplelog",
- "structopt",
- "structopt-toml",
- "url",
- ]
- [[package]]
- name = "funty"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
- [[package]]
- name = "futures"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-channel"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
- dependencies = [
- "futures-core",
- "futures-sink",
- ]
- [[package]]
- name = "futures-core"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
- [[package]]
- name = "futures-executor"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
- dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-intrusive"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62007592ac46aa7c2b6416f7deb9a8a8f63a01e0f1d6e1787d5630170db2b63e"
- dependencies = [
- "futures-core",
- "lock_api",
- "parking_lot 0.11.2",
- ]
- [[package]]
- name = "futures-io"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
- [[package]]
- name = "futures-lite"
- version = "1.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
- dependencies = [
- "fastrand",
- "futures-core",
- "futures-io",
- "memchr",
- "parking",
- "pin-project-lite",
- "waker-fn",
- ]
- [[package]]
- name = "futures-macro"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "futures-rustls"
- version = "0.22.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
- dependencies = [
- "futures-io",
- "rustls",
- "webpki",
- ]
- [[package]]
- name = "futures-sink"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
- [[package]]
- name = "futures-task"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
- [[package]]
- name = "futures-util"
- version = "0.3.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "futures-task",
- "memchr",
- "pin-project-lite",
- "pin-utils",
- "slab",
- ]
- [[package]]
- name = "fxhash"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
- dependencies = [
- "byteorder",
- ]
- [[package]]
- name = "generic-array"
- version = "0.14.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
- dependencies = [
- "typenum",
- "version_check",
- ]
- [[package]]
- name = "getrandom"
- version = "0.1.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
- dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi 0.9.0+wasi-snapshot-preview1",
- ]
- [[package]]
- name = "getrandom"
- version = "0.2.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
- dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi 0.11.0+wasi-snapshot-preview1",
- ]
- [[package]]
- name = "gif"
- version = "0.11.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
- dependencies = [
- "color_quant",
- "weezl",
- ]
- [[package]]
- name = "gimli"
- version = "0.26.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
- dependencies = [
- "fallible-iterator",
- "indexmap",
- "stable_deref_trait",
- ]
- [[package]]
- name = "glob"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
- [[package]]
- name = "gloo-timers"
- version = "0.2.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
- dependencies = [
- "futures-channel",
- "futures-core",
- "js-sys",
- "wasm-bindgen",
- ]
- [[package]]
- name = "group"
- version = "0.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7391856def869c1c81063a03457c676fbcd419709c3dfb33d8d319de484b154d"
- dependencies = [
- "byteorder",
- "ff",
- "rand_core 0.6.4",
- "subtle",
- ]
- [[package]]
- name = "halo2_gadgets"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "85e10bf9924da1754e443641c9e7f9f00483749f8fb837fde696ef6ed6e2f079"
- dependencies = [
- "arrayvec",
- "bitvec",
- "ff",
- "group",
- "halo2_proofs",
- "lazy_static",
- "pasta_curves",
- "plotters",
- "proptest",
- "rand",
- "subtle",
- "uint",
- ]
- [[package]]
- name = "halo2_proofs"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cff771b9a2445cd2545c9ef26d863c290fbb44ae440c825a20eb7156f67a949a"
- dependencies = [
- "backtrace",
- "blake2b_simd",
- "ff",
- "group",
- "pasta_curves",
- "plotters",
- "rand_core 0.6.4",
- "rayon",
- "tabbycat",
- "tracing",
- ]
- [[package]]
- name = "hashbrown"
- version = "0.11.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
- dependencies = [
- "ahash",
- ]
- [[package]]
- name = "hashbrown"
- version = "0.12.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
- dependencies = [
- "ahash",
- ]
- [[package]]
- name = "hashlink"
- version = "0.8.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
- dependencies = [
- "hashbrown 0.12.3",
- ]
- [[package]]
- name = "heck"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
- dependencies = [
- "unicode-segmentation",
- ]
- [[package]]
- name = "heck"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
- dependencies = [
- "unicode-segmentation",
- ]
- [[package]]
- name = "hermit-abi"
- version = "0.1.19"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "hex"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
- [[package]]
- name = "http"
- version = "0.2.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
- dependencies = [
- "bytes",
- "fnv",
- "itoa 1.0.3",
- ]
- [[package]]
- name = "httparse"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
- [[package]]
- name = "iana-time-zone"
- version = "0.1.50"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fd911b35d940d2bd0bea0f9100068e5b97b51a1cbe13d13382f132e0365257a0"
- dependencies = [
- "android_system_properties",
- "core-foundation-sys",
- "js-sys",
- "wasm-bindgen",
- "winapi",
- ]
- [[package]]
- name = "ident_case"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
- [[package]]
- name = "idna"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
- dependencies = [
- "unicode-bidi",
- "unicode-normalization",
- ]
- [[package]]
- name = "image"
- version = "0.24.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bd8e4fb07cf672b1642304e731ef8a6a4c7891d67bb4fd4f5ce58cd6ed86803c"
- dependencies = [
- "bytemuck",
- "byteorder",
- "color_quant",
- "jpeg-decoder",
- "num-rational",
- "num-traits",
- "png",
- ]
- [[package]]
- name = "incrementalmerkletree"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "068c5bdd31006d55536655cf1eb0d22d84d28de7c725b419480fd5d005c83216"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "indexmap"
- version = "1.9.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
- dependencies = [
- "autocfg",
- "hashbrown 0.12.3",
- "serde",
- ]
- [[package]]
- name = "indicatif"
- version = "0.17.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bfddc9561e8baf264e0e45e197fd7696320026eb10a8180340debc27b18f535b"
- dependencies = [
- "console",
- "number_prefix",
- "unicode-width",
- ]
- [[package]]
- name = "inout"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "instant"
- version = "0.1.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
- dependencies = [
- "cfg-if 1.0.0",
- ]
- [[package]]
- name = "ipnet"
- version = "2.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
- [[package]]
- name = "iprange"
- version = "0.6.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "37209be0ad225457e63814401415e748e2453a5297f9b637338f5fb8afa4ec00"
- dependencies = [
- "ipnet",
- ]
- [[package]]
- name = "ircd"
- version = "0.4.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-recursion",
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "clap 3.2.22",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures",
- "futures-rustls",
- "fxhash",
- "hex",
- "log",
- "rand",
- "ripemd",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "toml",
- "url",
- ]
- [[package]]
- name = "ircd2"
- version = "0.4.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "clap 3.2.22",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures",
- "futures-rustls",
- "fxhash",
- "hex",
- "log",
- "rand",
- "ripemd",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "toml",
- "url",
- ]
- [[package]]
- name = "itertools"
- version = "0.10.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
- dependencies = [
- "either",
- ]
- [[package]]
- name = "itoa"
- version = "0.4.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
- [[package]]
- name = "itoa"
- version = "1.0.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
- [[package]]
- name = "jpeg-decoder"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
- [[package]]
- name = "js-sys"
- version = "0.3.60"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
- dependencies = [
- "wasm-bindgen",
- ]
- [[package]]
- name = "kv-log-macro"
- version = "1.0.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
- dependencies = [
- "log",
- ]
- [[package]]
- name = "lazy-init"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9f40963626ac12dcaf92afc15e4c3db624858c92fd9f8ba2125eaada3ac2706f"
- [[package]]
- name = "lazy_static"
- version = "1.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
- [[package]]
- name = "leb128"
- version = "0.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
- [[package]]
- name = "libc"
- version = "0.2.134"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb"
- [[package]]
- name = "libloading"
- version = "0.7.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
- dependencies = [
- "cfg-if 1.0.0",
- "winapi",
- ]
- [[package]]
- name = "libsqlite3-sys"
- version = "0.24.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
- dependencies = [
- "cc",
- "pkg-config",
- "vcpkg",
- ]
- [[package]]
- name = "lilith"
- version = "0.3.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures-lite",
- "fxhash",
- "log",
- "serde",
- "serde_derive",
- "serde_json",
- "simplelog",
- "structopt",
- "structopt-toml",
- "toml",
- "url",
- ]
- [[package]]
- name = "lock_api"
- version = "0.4.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
- dependencies = [
- "autocfg",
- "scopeguard",
- ]
- [[package]]
- name = "log"
- version = "0.4.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
- dependencies = [
- "cfg-if 1.0.0",
- "value-bag",
- ]
- [[package]]
- name = "loupe"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9b6a72dfa44fe15b5e76b94307eeb2ff995a8c5b283b55008940c02e0c5b634d"
- dependencies = [
- "indexmap",
- "loupe-derive",
- "rustversion",
- ]
- [[package]]
- name = "loupe-derive"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c0fbfc88337168279f2e9ae06e157cfed4efd3316e14dc96ed074d4f2e6c5952"
- dependencies = [
- "quote",
- "syn",
- ]
- [[package]]
- name = "mach"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "memchr"
- version = "2.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
- [[package]]
- name = "memmap2"
- version = "0.5.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "95af15f345b17af2efc8ead6080fb8bc376f8cec1b35277b935637595fe77498"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "memoffset"
- version = "0.6.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
- dependencies = [
- "autocfg",
- ]
- [[package]]
- name = "memory_units"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
- [[package]]
- name = "minimal-lexical"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
- [[package]]
- name = "miniz_oxide"
- version = "0.5.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
- dependencies = [
- "adler",
- ]
- [[package]]
- name = "mio"
- version = "0.8.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
- dependencies = [
- "libc",
- "log",
- "wasi 0.11.0+wasi-snapshot-preview1",
- "windows-sys 0.36.1",
- ]
- [[package]]
- name = "more-asserts"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
- [[package]]
- name = "native-tls"
- version = "0.2.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
- dependencies = [
- "lazy_static",
- "libc",
- "log",
- "openssl",
- "openssl-probe",
- "openssl-sys",
- "schannel",
- "security-framework",
- "security-framework-sys",
- "tempfile",
- ]
- [[package]]
- name = "nix"
- version = "0.25.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
- dependencies = [
- "autocfg",
- "bitflags",
- "cfg-if 1.0.0",
- "libc",
- ]
- [[package]]
- name = "nom"
- version = "7.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
- dependencies = [
- "memchr",
- "minimal-lexical",
- ]
- [[package]]
- name = "num-bigint"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
- dependencies = [
- "autocfg",
- "num-integer",
- "num-traits",
- ]
- [[package]]
- name = "num-integer"
- version = "0.1.45"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
- dependencies = [
- "autocfg",
- "num-traits",
- ]
- [[package]]
- name = "num-rational"
- version = "0.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
- dependencies = [
- "autocfg",
- "num-integer",
- "num-traits",
- ]
- [[package]]
- name = "num-traits"
- version = "0.2.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
- dependencies = [
- "autocfg",
- ]
- [[package]]
- name = "num_cpus"
- version = "1.13.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
- dependencies = [
- "hermit-abi",
- "libc",
- ]
- [[package]]
- name = "num_threads"
- version = "0.1.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "number_prefix"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
- [[package]]
- name = "numtoa"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
- [[package]]
- name = "object"
- version = "0.28.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e42c982f2d955fac81dd7e1d0e1426a7d702acd9c98d19ab01083a6a0328c424"
- dependencies = [
- "crc32fast",
- "hashbrown 0.11.2",
- "indexmap",
- "memchr",
- ]
- [[package]]
- name = "object"
- version = "0.29.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "once_cell"
- version = "1.15.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
- [[package]]
- name = "opaque-debug"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
- [[package]]
- name = "openssl"
- version = "0.10.42"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
- dependencies = [
- "bitflags",
- "cfg-if 1.0.0",
- "foreign-types",
- "libc",
- "once_cell",
- "openssl-macros",
- "openssl-sys",
- ]
- [[package]]
- name = "openssl-macros"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "openssl-probe"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
- [[package]]
- name = "openssl-sys"
- version = "0.9.76"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5230151e44c0f05157effb743e8d517472843121cf9243e8b81393edb5acd9ce"
- dependencies = [
- "autocfg",
- "cc",
- "libc",
- "pkg-config",
- "vcpkg",
- ]
- [[package]]
- name = "os_str_bytes"
- version = "6.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
- [[package]]
- name = "parking"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
- [[package]]
- name = "parking_lot"
- version = "0.11.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
- dependencies = [
- "instant",
- "lock_api",
- "parking_lot_core 0.8.5",
- ]
- [[package]]
- name = "parking_lot"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
- dependencies = [
- "lock_api",
- "parking_lot_core 0.9.3",
- ]
- [[package]]
- name = "parking_lot_core"
- version = "0.8.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
- dependencies = [
- "cfg-if 1.0.0",
- "instant",
- "libc",
- "redox_syscall",
- "smallvec",
- "winapi",
- ]
- [[package]]
- name = "parking_lot_core"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
- dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "redox_syscall",
- "smallvec",
- "windows-sys 0.36.1",
- ]
- [[package]]
- name = "pasta_curves"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "369d7785168ad7ff0cbe467d968ca3e19a927d8536b11ef9c21b4e454b15ba42"
- dependencies = [
- "blake2b_simd",
- "ff",
- "group",
- "lazy_static",
- "rand",
- "static_assertions",
- "subtle",
- ]
- [[package]]
- name = "paste"
- version = "1.0.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
- [[package]]
- name = "pathfinder_geometry"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
- dependencies = [
- "log",
- "pathfinder_simd",
- ]
- [[package]]
- name = "pathfinder_simd"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "39fe46acc5503595e5949c17b818714d26fdf9b4920eacf3b2947f0199f4a6ff"
- dependencies = [
- "rustc_version",
- ]
- [[package]]
- name = "pem"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
- dependencies = [
- "base64",
- ]
- [[package]]
- name = "percent-encoding"
- version = "2.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
- [[package]]
- name = "pest"
- version = "2.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a"
- dependencies = [
- "thiserror",
- "ucd-trie",
- ]
- [[package]]
- name = "pin-project"
- version = "1.0.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
- dependencies = [
- "pin-project-internal",
- ]
- [[package]]
- name = "pin-project-internal"
- version = "1.0.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "pin-project-lite"
- version = "0.2.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
- [[package]]
- name = "pin-utils"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
- [[package]]
- name = "pkg-config"
- version = "0.3.25"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
- [[package]]
- name = "plotters"
- version = "0.3.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
- dependencies = [
- "chrono",
- "font-kit",
- "image",
- "lazy_static",
- "num-traits",
- "pathfinder_geometry",
- "plotters-backend",
- "plotters-bitmap",
- "plotters-svg",
- "ttf-parser",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "plotters-backend"
- version = "0.3.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
- [[package]]
- name = "plotters-bitmap"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0c4a1f21490a6cf4a84c272ad20bd7844ed99a3178187a4c5ab7f2051295beef"
- dependencies = [
- "gif",
- "image",
- "plotters-backend",
- ]
- [[package]]
- name = "plotters-svg"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
- dependencies = [
- "plotters-backend",
- ]
- [[package]]
- name = "png"
- version = "0.17.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8f0e7f4c94ec26ff209cee506314212639d6c91b80afb82984819fafce9df01c"
- dependencies = [
- "bitflags",
- "crc32fast",
- "flate2",
- "miniz_oxide",
- ]
- [[package]]
- name = "polling"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "899b00b9c8ab553c743b3e11e87c5c7d423b2a2de229ba95b24a756344748011"
- dependencies = [
- "autocfg",
- "cfg-if 1.0.0",
- "libc",
- "log",
- "wepoll-ffi",
- "winapi",
- ]
- [[package]]
- name = "poly1305"
- version = "0.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
- dependencies = [
- "cpufeatures",
- "opaque-debug",
- "universal-hash",
- ]
- [[package]]
- name = "ppv-lite86"
- version = "0.2.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
- [[package]]
- name = "prettytable-rs"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5f375cb74c23b51d23937ffdeb48b1fbf5b6409d4b9979c1418c1de58bc8f801"
- dependencies = [
- "atty",
- "csv",
- "encode_unicode 1.0.0",
- "lazy_static",
- "term",
- "unicode-width",
- ]
- [[package]]
- name = "proc-macro-crate"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
- dependencies = [
- "toml",
- ]
- [[package]]
- name = "proc-macro-crate"
- version = "1.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
- dependencies = [
- "once_cell",
- "thiserror",
- "toml",
- ]
- [[package]]
- name = "proc-macro-error"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
- dependencies = [
- "proc-macro-error-attr",
- "proc-macro2",
- "quote",
- "syn",
- "version_check",
- ]
- [[package]]
- name = "proc-macro-error-attr"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
- dependencies = [
- "proc-macro2",
- "quote",
- "version_check",
- ]
- [[package]]
- name = "proc-macro2"
- version = "1.0.46"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b"
- dependencies = [
- "unicode-ident",
- ]
- [[package]]
- name = "proptest"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1e0d9cc07f18492d879586c92b485def06bc850da3118075cd45d50e9c95b0e5"
- dependencies = [
- "bit-set",
- "bitflags",
- "byteorder",
- "lazy_static",
- "num-traits",
- "quick-error 2.0.1",
- "rand",
- "rand_chacha",
- "rand_xorshift",
- "regex-syntax",
- "rusty-fork",
- "tempfile",
- ]
- [[package]]
- name = "ptr_meta"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
- dependencies = [
- "ptr_meta_derive",
- ]
- [[package]]
- name = "ptr_meta_derive"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "pulldown-cmark"
- version = "0.9.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
- dependencies = [
- "bitflags",
- "memchr",
- "unicase",
- ]
- [[package]]
- name = "quick-error"
- version = "1.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
- [[package]]
- name = "quick-error"
- version = "2.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
- [[package]]
- name = "quote"
- version = "1.0.21"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
- dependencies = [
- "proc-macro2",
- ]
- [[package]]
- name = "radium"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
- [[package]]
- name = "rand"
- version = "0.8.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
- dependencies = [
- "libc",
- "rand_chacha",
- "rand_core 0.6.4",
- ]
- [[package]]
- name = "rand_chacha"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
- dependencies = [
- "ppv-lite86",
- "rand_core 0.6.4",
- ]
- [[package]]
- name = "rand_core"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
- dependencies = [
- "getrandom 0.1.16",
- ]
- [[package]]
- name = "rand_core"
- version = "0.6.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
- dependencies = [
- "getrandom 0.2.7",
- ]
- [[package]]
- name = "rand_xorshift"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
- dependencies = [
- "rand_core 0.6.4",
- ]
- [[package]]
- name = "rayon"
- version = "1.5.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
- dependencies = [
- "autocfg",
- "crossbeam-deque",
- "either",
- "rayon-core",
- ]
- [[package]]
- name = "rayon-core"
- version = "1.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
- dependencies = [
- "crossbeam-channel",
- "crossbeam-deque",
- "crossbeam-utils",
- "num_cpus",
- ]
- [[package]]
- name = "rcgen"
- version = "0.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
- dependencies = [
- "pem",
- "ring",
- "time 0.3.15",
- "yasna",
- ]
- [[package]]
- name = "redox_syscall"
- version = "0.2.16"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
- dependencies = [
- "bitflags",
- ]
- [[package]]
- name = "redox_termios"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
- dependencies = [
- "redox_syscall",
- ]
- [[package]]
- name = "redox_users"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
- dependencies = [
- "getrandom 0.2.7",
- "redox_syscall",
- "thiserror",
- ]
- [[package]]
- name = "regalloc"
- version = "0.0.34"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62446b1d3ebf980bdc68837700af1d77b37bc430e524bf95319c6eada2a4cc02"
- dependencies = [
- "log",
- "rustc-hash",
- "smallvec",
- ]
- [[package]]
- name = "regex"
- version = "1.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
- dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
- ]
- [[package]]
- name = "regex-automata"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
- [[package]]
- name = "regex-syntax"
- version = "0.6.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
- [[package]]
- name = "region"
- version = "3.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e"
- dependencies = [
- "bitflags",
- "libc",
- "mach",
- "winapi",
- ]
- [[package]]
- name = "remove_dir_all"
- version = "0.5.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
- dependencies = [
- "winapi",
- ]
- [[package]]
- name = "rend"
- version = "0.3.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95"
- dependencies = [
- "bytecheck",
- ]
- [[package]]
- name = "ring"
- version = "0.16.20"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
- dependencies = [
- "cc",
- "libc",
- "once_cell",
- "spin 0.5.2",
- "untrusted",
- "web-sys",
- "winapi",
- ]
- [[package]]
- name = "ripemd"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
- dependencies = [
- "digest 0.10.5",
- ]
- [[package]]
- name = "rkyv"
- version = "0.7.39"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
- dependencies = [
- "bytecheck",
- "hashbrown 0.12.3",
- "ptr_meta",
- "rend",
- "rkyv_derive",
- "seahash",
- ]
- [[package]]
- name = "rkyv_derive"
- version = "0.7.39"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "rustc-demangle"
- version = "0.1.21"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
- [[package]]
- name = "rustc-hash"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
- [[package]]
- name = "rustc_version"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
- dependencies = [
- "semver 0.11.0",
- ]
- [[package]]
- name = "rustls"
- version = "0.20.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
- dependencies = [
- "log",
- "ring",
- "sct",
- "webpki",
- ]
- [[package]]
- name = "rustls-pemfile"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
- dependencies = [
- "base64",
- ]
- [[package]]
- name = "rustversion"
- version = "1.0.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
- [[package]]
- name = "rusty-fork"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
- dependencies = [
- "fnv",
- "quick-error 1.2.3",
- "tempfile",
- "wait-timeout",
- ]
- [[package]]
- name = "ryu"
- version = "1.0.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
- [[package]]
- name = "salsa20"
- version = "0.7.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "399f290ffc409596022fce5ea5d4138184be4784f2b28c62c59f0d8389059a15"
- dependencies = [
- "cipher 0.2.5",
- ]
- [[package]]
- name = "salsa20"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
- dependencies = [
- "cipher 0.4.3",
- ]
- [[package]]
- name = "same-file"
- version = "1.0.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
- dependencies = [
- "winapi-util",
- ]
- [[package]]
- name = "schannel"
- version = "0.1.20"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
- dependencies = [
- "lazy_static",
- "windows-sys 0.36.1",
- ]
- [[package]]
- name = "scopeguard"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
- [[package]]
- name = "sct"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
- dependencies = [
- "ring",
- "untrusted",
- ]
- [[package]]
- name = "seahash"
- version = "4.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
- [[package]]
- name = "security-framework"
- version = "2.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
- dependencies = [
- "bitflags",
- "core-foundation",
- "core-foundation-sys",
- "libc",
- "security-framework-sys",
- ]
- [[package]]
- name = "security-framework-sys"
- version = "2.6.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
- dependencies = [
- "core-foundation-sys",
- "libc",
- ]
- [[package]]
- name = "semver"
- version = "0.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
- dependencies = [
- "semver-parser",
- ]
- [[package]]
- name = "semver"
- version = "1.0.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "semver-parser"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
- dependencies = [
- "pest",
- ]
- [[package]]
- name = "serde"
- version = "1.0.145"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b"
- dependencies = [
- "serde_derive",
- ]
- [[package]]
- name = "serde_bytes"
- version = "0.11.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "serde_derive"
- version = "1.0.145"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "serde_json"
- version = "1.0.85"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
- dependencies = [
- "itoa 1.0.3",
- "ryu",
- "serde",
- ]
- [[package]]
- name = "sha-1"
- version = "0.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
- dependencies = [
- "cfg-if 1.0.0",
- "cpufeatures",
- "digest 0.10.5",
- ]
- [[package]]
- name = "sha2"
- version = "0.9.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
- dependencies = [
- "block-buffer 0.9.0",
- "cfg-if 1.0.0",
- "cpufeatures",
- "digest 0.9.0",
- "opaque-debug",
- ]
- [[package]]
- name = "sha2"
- version = "0.10.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
- dependencies = [
- "cfg-if 1.0.0",
- "cpufeatures",
- "digest 0.10.5",
- ]
- [[package]]
- name = "signal-hook"
- version = "0.3.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
- dependencies = [
- "libc",
- "signal-hook-registry",
- ]
- [[package]]
- name = "signal-hook-async-std"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0c4aa94397e2023af5b7cff5b8d4785e935cfb77f0e4aab0cae3b26258ace556"
- dependencies = [
- "async-io",
- "futures-lite",
- "libc",
- "signal-hook",
- ]
- [[package]]
- name = "signal-hook-mio"
- version = "0.2.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
- dependencies = [
- "libc",
- "mio",
- "signal-hook",
- ]
- [[package]]
- name = "signal-hook-registry"
- version = "1.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "simplelog"
- version = "0.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
- dependencies = [
- "log",
- "termcolor",
- "time 0.3.15",
- ]
- [[package]]
- name = "skeptic"
- version = "0.13.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
- dependencies = [
- "bytecount",
- "cargo_metadata",
- "error-chain",
- "glob",
- "pulldown-cmark",
- "tempfile",
- "walkdir",
- ]
- [[package]]
- name = "slab"
- version = "0.4.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
- dependencies = [
- "autocfg",
- ]
- [[package]]
- name = "sled"
- version = "0.34.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
- dependencies = [
- "crc32fast",
- "crossbeam-epoch",
- "crossbeam-utils",
- "fs2",
- "fxhash",
- "libc",
- "log",
- "parking_lot 0.11.2",
- ]
- [[package]]
- name = "smallvec"
- version = "1.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
- [[package]]
- name = "smawk"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
- [[package]]
- name = "smol"
- version = "1.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "85cf3b5351f3e783c1d79ab5fc604eeed8b8ae9abd36b166e8b87a089efd85e4"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-fs",
- "async-io",
- "async-lock",
- "async-net",
- "async-process",
- "blocking",
- "futures-lite",
- "once_cell",
- ]
- [[package]]
- name = "socket2"
- version = "0.4.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
- dependencies = [
- "libc",
- "winapi",
- ]
- [[package]]
- name = "spin"
- version = "0.5.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
- [[package]]
- name = "spin"
- version = "0.9.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
- dependencies = [
- "lock_api",
- ]
- [[package]]
- name = "sqlformat"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f87e292b4291f154971a43c3774364e2cbcaec599d3f5bf6fa9d122885dbc38a"
- dependencies = [
- "itertools",
- "nom",
- "unicode_categories",
- ]
- [[package]]
- name = "sqlx"
- version = "0.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
- dependencies = [
- "sqlx-core",
- "sqlx-macros",
- ]
- [[package]]
- name = "sqlx-core"
- version = "0.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
- dependencies = [
- "ahash",
- "atoi",
- "bitflags",
- "byteorder",
- "bytes",
- "crc",
- "crossbeam-queue",
- "dotenvy",
- "either",
- "event-listener",
- "flume",
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-intrusive",
- "futures-util",
- "hashlink",
- "hex",
- "indexmap",
- "itoa 1.0.3",
- "libc",
- "libsqlite3-sys",
- "log",
- "memchr",
- "once_cell",
- "paste",
- "percent-encoding",
- "sha2 0.10.6",
- "smallvec",
- "sqlformat",
- "sqlx-rt",
- "stringprep",
- "thiserror",
- "url",
- ]
- [[package]]
- name = "sqlx-macros"
- version = "0.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
- dependencies = [
- "dotenvy",
- "either",
- "heck 0.4.0",
- "once_cell",
- "proc-macro2",
- "quote",
- "sha2 0.10.6",
- "sqlx-core",
- "sqlx-rt",
- "syn",
- "url",
- ]
- [[package]]
- name = "sqlx-rt"
- version = "0.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
- dependencies = [
- "async-native-tls",
- "async-std",
- "native-tls",
- ]
- [[package]]
- name = "stable_deref_trait"
- version = "1.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
- [[package]]
- name = "static_assertions"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
- [[package]]
- name = "stringprep"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
- dependencies = [
- "unicode-bidi",
- "unicode-normalization",
- ]
- [[package]]
- name = "strsim"
- version = "0.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
- [[package]]
- name = "strsim"
- version = "0.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
- [[package]]
- name = "strsim"
- version = "0.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
- [[package]]
- name = "structopt"
- version = "0.3.26"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
- dependencies = [
- "clap 2.34.0",
- "lazy_static",
- "structopt-derive",
- ]
- [[package]]
- name = "structopt-derive"
- version = "0.4.18"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
- dependencies = [
- "heck 0.3.3",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "structopt-toml"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
- dependencies = [
- "anyhow",
- "clap 2.34.0",
- "serde",
- "serde_derive",
- "skeptic",
- "structopt",
- "structopt-toml-derive",
- "toml",
- ]
- [[package]]
- name = "structopt-toml-derive"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
- dependencies = [
- "heck 0.4.0",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "subtle"
- version = "2.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
- [[package]]
- name = "syn"
- version = "1.0.101"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2"
- dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
- ]
- [[package]]
- name = "synstructure"
- version = "0.12.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "unicode-xid",
- ]
- [[package]]
- name = "tabbycat"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c45590f0f859197b4545be1b17b2bc3cc7bb075f7d1cc0ea1dc6521c0bf256a3"
- dependencies = [
- "anyhow",
- "derive_builder",
- "regex",
- ]
- [[package]]
- name = "tap"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
- [[package]]
- name = "target-lexicon"
- version = "0.12.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1"
- [[package]]
- name = "tau"
- version = "0.4.0"
- dependencies = [
- "async-std",
- "chrono",
- "clap 3.2.22",
- "colored",
- "darkfi",
- "fxhash",
- "log",
- "prettytable-rs",
- "serde",
- "serde_json",
- "simplelog",
- "term_grid",
- "textwrap 0.15.1",
- "url",
- ]
- [[package]]
- name = "taud"
- version = "0.4.0"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "futures",
- "fxhash",
- "hex",
- "log",
- "rand",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "thiserror",
- "toml",
- "url",
- ]
- [[package]]
- name = "tempfile"
- version = "3.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
- dependencies = [
- "cfg-if 1.0.0",
- "fastrand",
- "libc",
- "redox_syscall",
- "remove_dir_all",
- "winapi",
- ]
- [[package]]
- name = "term"
- version = "0.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
- dependencies = [
- "dirs-next",
- "rustversion",
- "winapi",
- ]
- [[package]]
- name = "term_grid"
- version = "0.2.0"
- source = "git+https://github.com/Dastan-glitch/rust-term-grid.git#51c28e47aad0fb9f67de558e9b80c525cd01a4ae"
- dependencies = [
- "colored",
- "unicode-width",
- ]
- [[package]]
- name = "termcolor"
- version = "1.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
- dependencies = [
- "winapi-util",
- ]
- [[package]]
- name = "terminal_size"
- version = "0.1.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
- dependencies = [
- "libc",
- "winapi",
- ]
- [[package]]
- name = "termion"
- version = "1.5.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
- dependencies = [
- "libc",
- "numtoa",
- "redox_syscall",
- "redox_termios",
- ]
- [[package]]
- name = "textwrap"
- version = "0.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
- dependencies = [
- "unicode-width",
- ]
- [[package]]
- name = "textwrap"
- version = "0.15.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16"
- dependencies = [
- "smawk",
- "unicode-linebreak",
- "unicode-width",
- ]
- [[package]]
- name = "thiserror"
- version = "1.0.37"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
- dependencies = [
- "thiserror-impl",
- ]
- [[package]]
- name = "thiserror-impl"
- version = "1.0.37"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "time"
- version = "0.1.44"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
- dependencies = [
- "libc",
- "wasi 0.10.0+wasi-snapshot-preview1",
- "winapi",
- ]
- [[package]]
- name = "time"
- version = "0.3.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
- dependencies = [
- "itoa 1.0.3",
- "libc",
- "num_threads",
- "time-macros",
- ]
- [[package]]
- name = "time-macros"
- version = "0.2.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
- [[package]]
- name = "tinyvec"
- version = "1.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
- dependencies = [
- "tinyvec_macros",
- ]
- [[package]]
- name = "tinyvec_macros"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
- [[package]]
- name = "toml"
- version = "0.5.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "tracing"
- version = "0.1.37"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
- dependencies = [
- "cfg-if 1.0.0",
- "log",
- "pin-project-lite",
- "tracing-attributes",
- "tracing-core",
- ]
- [[package]]
- name = "tracing-attributes"
- version = "0.1.23"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "tracing-core"
- version = "0.1.30"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
- dependencies = [
- "once_cell",
- ]
- [[package]]
- name = "ttf-parser"
- version = "0.15.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd"
- [[package]]
- name = "tui"
- version = "0.19.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
- dependencies = [
- "bitflags",
- "cassowary",
- "crossterm",
- "termion",
- "unicode-segmentation",
- "unicode-width",
- ]
- [[package]]
- name = "tungstenite"
- version = "0.17.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0"
- dependencies = [
- "base64",
- "byteorder",
- "bytes",
- "http",
- "httparse",
- "log",
- "rand",
- "sha-1",
- "thiserror",
- "url",
- "utf-8",
- ]
- [[package]]
- name = "typenum"
- version = "1.15.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
- [[package]]
- name = "ucd-trie"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
- [[package]]
- name = "uint"
- version = "0.9.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a45526d29728d135c2900b0d30573fe3ee79fceb12ef534c7bb30e810a91b601"
- dependencies = [
- "byteorder",
- "crunchy",
- "hex",
- "static_assertions",
- ]
- [[package]]
- name = "unicase"
- version = "2.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
- dependencies = [
- "version_check",
- ]
- [[package]]
- name = "unicode-bidi"
- version = "0.3.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
- [[package]]
- name = "unicode-ident"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
- [[package]]
- name = "unicode-linebreak"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137"
- dependencies = [
- "hashbrown 0.12.3",
- "regex",
- ]
- [[package]]
- name = "unicode-normalization"
- version = "0.1.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
- dependencies = [
- "tinyvec",
- ]
- [[package]]
- name = "unicode-segmentation"
- version = "1.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
- [[package]]
- name = "unicode-width"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
- [[package]]
- name = "unicode-xid"
- version = "0.2.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
- [[package]]
- name = "unicode_categories"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
- [[package]]
- name = "universal-hash"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
- dependencies = [
- "crypto-common",
- "subtle",
- ]
- [[package]]
- name = "untrusted"
- version = "0.7.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
- [[package]]
- name = "url"
- version = "2.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
- dependencies = [
- "form_urlencoded",
- "idna",
- "percent-encoding",
- "serde",
- ]
- [[package]]
- name = "utf-8"
- version = "0.7.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
- [[package]]
- name = "value-bag"
- version = "1.0.0-alpha.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
- dependencies = [
- "ctor",
- "version_check",
- ]
- [[package]]
- name = "vanityaddr"
- version = "0.3.0"
- dependencies = [
- "bs58",
- "clap 3.2.22",
- "ctrlc",
- "darkfi",
- "indicatif",
- "num_cpus",
- "rand",
- "rayon",
- ]
- [[package]]
- name = "vcpkg"
- version = "0.2.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
- [[package]]
- name = "vec_map"
- version = "0.8.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
- [[package]]
- name = "version_check"
- version = "0.9.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
- [[package]]
- name = "virtue"
- version = "0.0.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7b60dcd6a64dd45abf9bd426970c9843726da7fc08f44cd6fcebf68c21220a63"
- [[package]]
- name = "wait-timeout"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "waker-fn"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
- [[package]]
- name = "walkdir"
- version = "2.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
- dependencies = [
- "same-file",
- "winapi",
- "winapi-util",
- ]
- [[package]]
- name = "wasi"
- version = "0.9.0+wasi-snapshot-preview1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
- [[package]]
- name = "wasi"
- version = "0.10.0+wasi-snapshot-preview1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
- [[package]]
- name = "wasi"
- version = "0.11.0+wasi-snapshot-preview1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
- [[package]]
- name = "wasm-bindgen"
- version = "0.2.83"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
- dependencies = [
- "cfg-if 1.0.0",
- "wasm-bindgen-macro",
- ]
- [[package]]
- name = "wasm-bindgen-backend"
- version = "0.2.83"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
- dependencies = [
- "bumpalo",
- "log",
- "once_cell",
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-futures"
- version = "0.4.33"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
- dependencies = [
- "cfg-if 1.0.0",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "wasm-bindgen-macro"
- version = "0.2.83"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
- dependencies = [
- "quote",
- "wasm-bindgen-macro-support",
- ]
- [[package]]
- name = "wasm-bindgen-macro-support"
- version = "0.2.83"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-backend",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-shared"
- version = "0.2.83"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
- [[package]]
- name = "wasm-encoder"
- version = "0.18.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c64ac98d5d61192cc45c701b7e4bd0b9aff91e2edfc7a088406cfe2288581e2c"
- dependencies = [
- "leb128",
- ]
- [[package]]
- name = "wasmer"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ea8d8361c9d006ea3d7797de7bd6b1492ffd0f91a22430cfda6c1658ad57bedf"
- dependencies = [
- "cfg-if 1.0.0",
- "indexmap",
- "js-sys",
- "loupe",
- "more-asserts",
- "target-lexicon",
- "thiserror",
- "wasm-bindgen",
- "wasmer-artifact",
- "wasmer-compiler",
- "wasmer-compiler-cranelift",
- "wasmer-derive",
- "wasmer-engine",
- "wasmer-engine-dylib",
- "wasmer-engine-universal",
- "wasmer-types",
- "wasmer-vm",
- "wat",
- "winapi",
- ]
- [[package]]
- name = "wasmer-artifact"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7aaf9428c29c1d8ad2ac0e45889ba8a568a835e33fd058964e5e500f2f7ce325"
- dependencies = [
- "enumset",
- "loupe",
- "thiserror",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-compiler"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e67a6cd866aed456656db2cfea96c18baabbd33f676578482b85c51e1ee19d2c"
- dependencies = [
- "enumset",
- "loupe",
- "rkyv",
- "serde",
- "serde_bytes",
- "smallvec",
- "target-lexicon",
- "thiserror",
- "wasmer-types",
- "wasmparser",
- ]
- [[package]]
- name = "wasmer-compiler-cranelift"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "48be2f9f6495f08649e4f8b946a2cbbe119faf5a654aa1457f9504a99d23dae0"
- dependencies = [
- "cranelift-codegen",
- "cranelift-entity",
- "cranelift-frontend",
- "gimli",
- "loupe",
- "more-asserts",
- "rayon",
- "smallvec",
- "target-lexicon",
- "tracing",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-compiler-singlepass"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "29ca2a35204d8befa85062bc7aac259a8db8070b801b8a783770ba58231d729e"
- dependencies = [
- "byteorder",
- "dynasm",
- "dynasmrt",
- "gimli",
- "lazy_static",
- "loupe",
- "more-asserts",
- "rayon",
- "smallvec",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-derive"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "00e50405cc2a2f74ff574584710a5f2c1d5c93744acce2ca0866084739284b51"
- dependencies = [
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "wasmer-engine"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f98f010978c244db431b392aeab0661df7ea0822343334f8f2a920763548e45"
- dependencies = [
- "backtrace",
- "enumset",
- "lazy_static",
- "loupe",
- "memmap2",
- "more-asserts",
- "rustc-demangle",
- "serde",
- "serde_bytes",
- "target-lexicon",
- "thiserror",
- "wasmer-artifact",
- "wasmer-compiler",
- "wasmer-types",
- "wasmer-vm",
- ]
- [[package]]
- name = "wasmer-engine-dylib"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ad0358af9c154724587731175553805648d9acb8f6657880d165e378672b7e53"
- dependencies = [
- "cfg-if 1.0.0",
- "enum-iterator",
- "enumset",
- "leb128",
- "libloading",
- "loupe",
- "object 0.28.4",
- "rkyv",
- "serde",
- "tempfile",
- "tracing",
- "wasmer-artifact",
- "wasmer-compiler",
- "wasmer-engine",
- "wasmer-object",
- "wasmer-types",
- "wasmer-vm",
- "which",
- ]
- [[package]]
- name = "wasmer-engine-universal"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "440dc3d93c9ca47865a4f4edd037ea81bf983b5796b59b3d712d844b32dbef15"
- dependencies = [
- "cfg-if 1.0.0",
- "enumset",
- "leb128",
- "loupe",
- "region",
- "rkyv",
- "wasmer-compiler",
- "wasmer-engine",
- "wasmer-engine-universal-artifact",
- "wasmer-types",
- "wasmer-vm",
- "winapi",
- ]
- [[package]]
- name = "wasmer-engine-universal-artifact"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "68f1db3f54152657eb6e86c44b66525ff7801dad8328fe677da48dd06af9ad41"
- dependencies = [
- "enum-iterator",
- "enumset",
- "loupe",
- "rkyv",
- "thiserror",
- "wasmer-artifact",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-middlewares"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d7812438ed2f37203a37007cdb5332b8475cb2b16e15d51299b2647894e9ed3a"
- dependencies = [
- "loupe",
- "wasmer",
- "wasmer-types",
- "wasmer-vm",
- ]
- [[package]]
- name = "wasmer-object"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8d831335ff3a44ecf451303f6f891175c642488036b92ceceb24ac8623a8fa8b"
- dependencies = [
- "object 0.28.4",
- "thiserror",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-types"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "39df01ea05dc0a9bab67e054c7cb01521e53b35a7bb90bd02eca564ed0b2667f"
- dependencies = [
- "backtrace",
- "enum-iterator",
- "indexmap",
- "loupe",
- "more-asserts",
- "rkyv",
- "serde",
- "thiserror",
- ]
- [[package]]
- name = "wasmer-vm"
- version = "2.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "30d965fa61f4dc4cdb35a54daaf7ecec3563fbb94154a6c35433f879466247dd"
- dependencies = [
- "backtrace",
- "cc",
- "cfg-if 1.0.0",
- "corosensei",
- "enum-iterator",
- "indexmap",
- "lazy_static",
- "libc",
- "loupe",
- "mach",
- "memoffset",
- "more-asserts",
- "region",
- "rkyv",
- "scopeguard",
- "serde",
- "thiserror",
- "wasmer-artifact",
- "wasmer-types",
- "winapi",
- ]
- [[package]]
- name = "wasmparser"
- version = "0.83.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a"
- [[package]]
- name = "wast"
- version = "47.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "02b98502f3978adea49551e801a6687678e6015317d7d9470a67fe813393f2a8"
- dependencies = [
- "leb128",
- "memchr",
- "unicode-width",
- "wasm-encoder",
- ]
- [[package]]
- name = "wat"
- version = "1.0.49"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7aab4e20c60429fbba9670a6cae0fff9520046ba0aa3e6d0b1cd2653bea14898"
- dependencies = [
- "wast",
- ]
- [[package]]
- name = "web-sys"
- version = "0.3.60"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
- dependencies = [
- "js-sys",
- "wasm-bindgen",
- ]
- [[package]]
- name = "webpki"
- version = "0.22.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
- dependencies = [
- "ring",
- "untrusted",
- ]
- [[package]]
- name = "wee_alloc"
- version = "0.4.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
- dependencies = [
- "cfg-if 0.1.10",
- "libc",
- "memory_units",
- "winapi",
- ]
- [[package]]
- name = "weezl"
- version = "0.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
- [[package]]
- name = "wepoll-ffi"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
- dependencies = [
- "cc",
- ]
- [[package]]
- name = "which"
- version = "4.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
- dependencies = [
- "either",
- "libc",
- "once_cell",
- ]
- [[package]]
- name = "winapi"
- version = "0.3.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
- dependencies = [
- "winapi-i686-pc-windows-gnu",
- "winapi-x86_64-pc-windows-gnu",
- ]
- [[package]]
- name = "winapi-i686-pc-windows-gnu"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
- [[package]]
- name = "winapi-util"
- version = "0.1.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
- dependencies = [
- "winapi",
- ]
- [[package]]
- name = "winapi-x86_64-pc-windows-gnu"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
- [[package]]
- name = "windows-sys"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75"
- dependencies = [
- "windows_aarch64_msvc 0.33.0",
- "windows_i686_gnu 0.33.0",
- "windows_i686_msvc 0.33.0",
- "windows_x86_64_gnu 0.33.0",
- "windows_x86_64_msvc 0.33.0",
- ]
- [[package]]
- name = "windows-sys"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
- dependencies = [
- "windows_aarch64_msvc 0.36.1",
- "windows_i686_gnu 0.36.1",
- "windows_i686_msvc 0.36.1",
- "windows_x86_64_gnu 0.36.1",
- "windows_x86_64_msvc 0.36.1",
- ]
- [[package]]
- name = "windows_aarch64_msvc"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807"
- [[package]]
- name = "windows_aarch64_msvc"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
- [[package]]
- name = "windows_i686_gnu"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e"
- [[package]]
- name = "windows_i686_gnu"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
- [[package]]
- name = "windows_i686_msvc"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0"
- [[package]]
- name = "windows_i686_msvc"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
- [[package]]
- name = "windows_x86_64_gnu"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784"
- [[package]]
- name = "windows_x86_64_gnu"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
- [[package]]
- name = "windows_x86_64_msvc"
- version = "0.33.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa"
- [[package]]
- name = "windows_x86_64_msvc"
- version = "0.36.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
- [[package]]
- name = "wio"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
- dependencies = [
- "winapi",
- ]
- [[package]]
- name = "wyz"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "30b31594f29d27036c383b53b59ed3476874d518f0efb151b27a4c275141390e"
- dependencies = [
- "tap",
- ]
- [[package]]
- name = "x25519-dalek"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"
- dependencies = [
- "curve25519-dalek",
- "rand_core 0.5.1",
- "zeroize",
- ]
- [[package]]
- name = "xsalsa20poly1305"
- version = "0.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "472c385ee974833d7e59979eeb74175d56774be3768b5bcc581337e21396bda3"
- dependencies = [
- "aead",
- "poly1305",
- "salsa20 0.10.2",
- "subtle",
- "zeroize",
- ]
- [[package]]
- name = "yasna"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c"
- dependencies = [
- "time 0.3.15",
- ]
- [[package]]
- name = "yeslogic-fontconfig-sys"
- version = "3.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386"
- dependencies = [
- "const-cstr",
- "dlib",
- "once_cell",
- "pkg-config",
- ]
- [[package]]
- name = "zeroize"
- version = "1.5.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
- dependencies = [
- "zeroize_derive",
- ]
- [[package]]
- name = "zeroize_derive"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "synstructure",
- ]
- [[package]]
- name = "zkas"
- version = "0.3.0"
- dependencies = [
- "clap 3.2.22",
- "darkfi",
- ]
|