| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298 |
- # This file is automatically @generated by Cargo.
- # It is not intended for manual editing.
- version = 3
- [[package]]
- name = "addr2line"
- version = "0.19.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
- dependencies = [
- "gimli 0.27.2",
- ]
- [[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",
- "once_cell",
- "version_check",
- ]
- [[package]]
- name = "aho-corasick"
- version = "0.7.20"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
- 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 = "anstream"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f"
- dependencies = [
- "anstyle",
- "anstyle-parse",
- "anstyle-wincon",
- "concolor-override",
- "concolor-query",
- "is-terminal",
- "utf8parse",
- ]
- [[package]]
- name = "anstyle"
- version = "0.3.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2"
- [[package]]
- name = "anstyle-parse"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116"
- dependencies = [
- "utf8parse",
- ]
- [[package]]
- name = "anstyle-wincon"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa"
- dependencies = [
- "anstyle",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "anyhow"
- version = "1.0.70"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
- [[package]]
- name = "arrayref"
- version = "0.3.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
- [[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 1.0.109",
- ]
- [[package]]
- name = "async-channel"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
- dependencies = [
- "concurrent-queue",
- "event-listener",
- "futures-core",
- ]
- [[package]]
- name = "async-executor"
- version = "1.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b"
- dependencies = [
- "async-lock",
- "async-task",
- "concurrent-queue",
- "fastrand",
- "futures-lite",
- "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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-io",
- "async-lock",
- "blocking",
- "futures-lite",
- "once_cell",
- ]
- [[package]]
- name = "async-io"
- version = "1.13.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
- dependencies = [
- "async-lock",
- "autocfg",
- "cfg-if",
- "concurrent-queue",
- "futures-lite",
- "log",
- "parking",
- "polling",
- "rustix",
- "slab",
- "socket2",
- "waker-fn",
- ]
- [[package]]
- name = "async-lock"
- version = "2.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
- dependencies = [
- "event-listener",
- ]
- [[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.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6381ead98388605d0d9ff86371043b5aa922a3905824244de40dc263a14fcba4"
- dependencies = [
- "async-io",
- "async-lock",
- "autocfg",
- "blocking",
- "cfg-if",
- "event-listener",
- "futures-lite",
- "libc",
- "signal-hook",
- "windows-sys 0.42.0",
- ]
- [[package]]
- name = "async-recursion"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[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.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
- [[package]]
- name = "async-trait"
- version = "0.1.68"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "async-tungstenite"
- version = "0.19.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8e6acf7e4a267eecbb127ed696bb2d50572c22ba7f586a646321e1798d8336a1"
- 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.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599"
- [[package]]
- name = "atty"
- version = "0.2.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
- dependencies = [
- "hermit-abi 0.1.19",
- "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.67"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
- dependencies = [
- "addr2line",
- "cc",
- "cfg-if",
- "libc",
- "miniz_oxide",
- "object",
- "rustc-demangle",
- ]
- [[package]]
- name = "base64"
- version = "0.13.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
- [[package]]
- name = "base64"
- version = "0.21.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
- [[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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c2f0dc9a68c6317d884f97cc36cf5a3d20ba14ce404227df55e1af708ab04bc"
- dependencies = [
- "arrayref",
- "arrayvec",
- "constant_time_eq",
- ]
- [[package]]
- name = "blake3"
- version = "1.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
- dependencies = [
- "arrayref",
- "arrayvec",
- "cc",
- "cfg-if",
- "constant_time_eq",
- "digest 0.10.6",
- ]
- [[package]]
- name = "block-buffer"
- version = "0.10.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
- dependencies = [
- "generic-array",
- ]
- [[package]]
- name = "blocking"
- version = "1.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8"
- dependencies = [
- "async-channel",
- "async-lock",
- "async-task",
- "atomic-waker",
- "fastrand",
- "futures-lite",
- ]
- [[package]]
- name = "bs58"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
- [[package]]
- name = "bumpalo"
- version = "3.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
- [[package]]
- name = "bytecheck"
- version = "0.6.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "13fe11640a23eb24562225322cd3e452b93a3d4091d62fab69c70542fcd17d1f"
- dependencies = [
- "bytecheck_derive",
- "ptr_meta",
- "simdutf8",
- ]
- [[package]]
- name = "bytecheck_derive"
- version = "0.6.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e31225543cb46f81a7e224762764f4a6a0f097b1db0b175f69e8065efaa42de5"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "bytecount"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
- [[package]]
- name = "bytemuck"
- version = "1.13.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
- [[package]]
- name = "byteorder"
- version = "1.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
- [[package]]
- name = "bytes"
- version = "1.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
- [[package]]
- name = "camino"
- version = "1.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2"
- 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.17",
- "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.79"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
- [[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.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c7fc89c7c5b9e7a02dfe45cd2367bae382f9ed31c61ca8debe5f827c420a2f08"
- dependencies = [
- "cfg-if",
- "cipher",
- "cpufeatures",
- ]
- [[package]]
- name = "chacha20poly1305"
- version = "0.10.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
- dependencies = [
- "aead",
- "chacha20",
- "cipher",
- "poly1305",
- "zeroize",
- ]
- [[package]]
- name = "chrono"
- version = "0.4.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
- dependencies = [
- "iana-time-zone",
- "js-sys",
- "num-integer",
- "num-traits",
- "time 0.1.45",
- "wasm-bindgen",
- "winapi",
- ]
- [[package]]
- name = "cipher"
- version = "0.4.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
- 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 = "4.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6efb5f0a41b5ef5b50c5da28c07609c20091df0c1fc33d418fa2a7e693c2b624"
- dependencies = [
- "clap_builder",
- "clap_derive",
- "once_cell",
- ]
- [[package]]
- name = "clap_builder"
- version = "4.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "671fcaa5debda4b9a84aa7fde49c907c8986c0e6ab927e04217c9cb74e7c8bc9"
- dependencies = [
- "anstream",
- "anstyle",
- "bitflags",
- "clap_lex",
- "strsim 0.10.0",
- ]
- [[package]]
- name = "clap_complete"
- version = "4.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd"
- dependencies = [
- "clap 4.2.0",
- ]
- [[package]]
- name = "clap_derive"
- version = "4.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
- dependencies = [
- "heck 0.4.1",
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "clap_lex"
- version = "0.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
- [[package]]
- name = "cmake"
- version = "0.1.50"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
- dependencies = [
- "cc",
- ]
- [[package]]
- name = "codespan-reporting"
- version = "0.11.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
- dependencies = [
- "termcolor",
- "unicode-width",
- ]
- [[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 = "concolor-override"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f"
- [[package]]
- name = "concolor-query"
- version = "0.3.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf"
- dependencies = [
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "concurrent-queue"
- version = "2.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e"
- dependencies = [
- "crossbeam-utils",
- ]
- [[package]]
- name = "console"
- version = "0.15.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
- dependencies = [
- "encode_unicode 0.3.6",
- "lazy_static",
- "libc",
- "unicode-width",
- "windows-sys 0.42.0",
- ]
- [[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.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b"
- [[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",
- "libc",
- "scopeguard",
- "windows-sys 0.33.0",
- ]
- [[package]]
- name = "cpufeatures"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "cranelift-bforest"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "529ffacce2249ac60edba2941672dfedf3d96558b415d0d8083cd007456e0f55"
- dependencies = [
- "cranelift-entity",
- ]
- [[package]]
- name = "cranelift-codegen"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "427d105f617efc8cb55f8d036a7fded2e227892d8780b4985e5551f8d27c4a92"
- dependencies = [
- "cranelift-bforest",
- "cranelift-codegen-meta",
- "cranelift-codegen-shared",
- "cranelift-entity",
- "cranelift-isle",
- "gimli 0.26.2",
- "log",
- "regalloc2",
- "smallvec",
- "target-lexicon",
- ]
- [[package]]
- name = "cranelift-codegen-meta"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "551674bed85b838d45358e3eab4f0ffaa6790c70dc08184204b9a54b41cdb7d1"
- dependencies = [
- "cranelift-codegen-shared",
- ]
- [[package]]
- name = "cranelift-codegen-shared"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2b3a63ae57498c3eb495360944a33571754241e15e47e3bcae6082f40fec5866"
- [[package]]
- name = "cranelift-entity"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "11aa8aa624c72cc1c94ea3d0739fa61248260b5b14d3646f51593a88d67f3e6e"
- [[package]]
- name = "cranelift-frontend"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "544ee8f4d1c9559c9aa6d46e7aaeac4a13856d620561094f35527356c7d21bd0"
- dependencies = [
- "cranelift-codegen",
- "log",
- "smallvec",
- "target-lexicon",
- ]
- [[package]]
- name = "cranelift-isle"
- version = "0.86.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ed16b14363d929b8c37e3c557d0a7396791b383ecc302141643c054343170aad"
- [[package]]
- name = "crc"
- version = "3.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
- dependencies = [
- "crc-catalog",
- ]
- [[package]]
- name = "crc-catalog"
- version = "2.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
- [[package]]
- name = "crc32fast"
- version = "1.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
- dependencies = [
- "cfg-if",
- ]
- [[package]]
- name = "crossbeam-channel"
- version = "0.5.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
- dependencies = [
- "cfg-if",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-deque"
- version = "0.8.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
- dependencies = [
- "cfg-if",
- "crossbeam-epoch",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-epoch"
- version = "0.9.14"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
- dependencies = [
- "autocfg",
- "cfg-if",
- "crossbeam-utils",
- "memoffset 0.8.0",
- "scopeguard",
- ]
- [[package]]
- name = "crossbeam-queue"
- version = "0.3.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
- dependencies = [
- "cfg-if",
- "crossbeam-utils",
- ]
- [[package]]
- name = "crossbeam-utils"
- version = "0.8.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
- dependencies = [
- "cfg-if",
- ]
- [[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.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fd26c32de5307fd08aac445a75c43472b14559d5dccdfba8022dbcd075838ebc"
- dependencies = [
- "aead",
- "chacha20",
- "chacha20poly1305",
- "salsa20",
- "x25519-dalek",
- "xsalsa20poly1305",
- "zeroize",
- ]
- [[package]]
- name = "csv"
- version = "1.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad"
- dependencies = [
- "csv-core",
- "itoa",
- "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.26"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
- dependencies = [
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "ctrlc"
- version = "3.2.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bbcf33c2a618cbe41ee43ae6e9f2e48368cd9f9db2896f10167d8d762679f639"
- dependencies = [
- "nix",
- "windows-sys 0.45.0",
- ]
- [[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 = "cxx"
- version = "1.0.94"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93"
- dependencies = [
- "cc",
- "cxxbridge-flags",
- "cxxbridge-macro",
- "link-cplusplus",
- ]
- [[package]]
- name = "cxx-build"
- version = "1.0.94"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b"
- dependencies = [
- "cc",
- "codespan-reporting",
- "once_cell",
- "proc-macro2",
- "quote",
- "scratch",
- "syn 2.0.11",
- ]
- [[package]]
- name = "cxxbridge-flags"
- version = "1.0.94"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb"
- [[package]]
- name = "cxxbridge-macro"
- version = "1.0.94"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "darkfi"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "async-tungstenite",
- "blake3",
- "bs58",
- "chrono",
- "clap 4.2.0",
- "crypto_api_chachapoly",
- "darkfi-derive",
- "darkfi-derive-internal",
- "darkfi-sdk",
- "darkfi-serial",
- "dashu",
- "easy-parallel",
- "ed25519-compact",
- "fast-socks5",
- "futures",
- "futures-rustls",
- "halo2_gadgets",
- "halo2_proofs",
- "hex",
- "indexmap",
- "indicatif",
- "ipnet",
- "iprange",
- "itertools",
- "lazy_static",
- "libc",
- "libsqlite3-sys",
- "log",
- "plotters",
- "rand",
- "rcgen",
- "ripemd",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "simplelog",
- "sled",
- "sled-overlay",
- "smol",
- "socket2",
- "sqlx",
- "structopt",
- "structopt-toml",
- "thiserror",
- "toml 0.7.3",
- "url",
- "wasmer",
- "wasmer-compiler-singlepass",
- "wasmer-middlewares",
- ]
- [[package]]
- name = "darkfi-dao-contract"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "bs58",
- "chacha20poly1305",
- "darkfi",
- "darkfi-money-contract",
- "darkfi-sdk",
- "darkfi-serial",
- "getrandom",
- "halo2_proofs",
- "log",
- "rand",
- "simplelog",
- "sled",
- "sqlx",
- ]
- [[package]]
- name = "darkfi-derive"
- version = "0.4.1"
- dependencies = [
- "darkfi-derive-internal",
- "proc-macro-crate",
- "proc-macro2",
- "syn 1.0.109",
- ]
- [[package]]
- name = "darkfi-derive-internal"
- version = "0.4.1"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "darkfi-money-contract"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "bs58",
- "chacha20poly1305",
- "darkfi",
- "darkfi-sdk",
- "darkfi-serial",
- "getrandom",
- "halo2_proofs",
- "log",
- "rand",
- "simplelog",
- "sled",
- "sqlx",
- "thiserror",
- ]
- [[package]]
- name = "darkfi-sdk"
- version = "0.4.1"
- dependencies = [
- "blake2b_simd",
- "blake3",
- "bs58",
- "chacha20poly1305",
- "darkfi-serial",
- "halo2_gadgets",
- "halo2_proofs",
- "incrementalmerkletree",
- "lazy_static",
- "num-bigint",
- "num-traits",
- "pasta_curves",
- "rand",
- "rand_core 0.6.4",
- "sha2",
- "subtle",
- "thiserror",
- ]
- [[package]]
- name = "darkfi-serial"
- version = "0.4.1"
- dependencies = [
- "blake3",
- "darkfi-derive",
- "futures-lite",
- "incrementalmerkletree",
- "pasta_curves",
- "url",
- ]
- [[package]]
- name = "darkfid"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "blake3",
- "bs58",
- "ctrlc",
- "darkfi",
- "darkfi-sdk",
- "darkfi-serial",
- "easy-parallel",
- "log",
- "serde",
- "serde_json",
- "simplelog",
- "sled",
- "smol",
- "sqlx",
- "structopt",
- "structopt-toml",
- "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.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
- dependencies = [
- "darling_core 0.14.4",
- "darling_macro 0.14.4",
- ]
- [[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 1.0.109",
- ]
- [[package]]
- name = "darling_core"
- version = "0.14.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
- dependencies = [
- "fnv",
- "ident_case",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[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 1.0.109",
- ]
- [[package]]
- name = "darling_macro"
- version = "0.14.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
- dependencies = [
- "darling_core 0.14.4",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "dashu"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "51a1b5a00793e3ac2239993ef582603764bcb333a4d04c2a0944639a7e916c85"
- dependencies = [
- "dashu-base",
- "dashu-float",
- "dashu-int",
- "dashu-macros",
- "dashu-ratio",
- ]
- [[package]]
- name = "dashu-base"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6f2585452b8ecf7c874045dba02a7914b7e5b2e3cdd5e152573413aa290197aa"
- [[package]]
- name = "dashu-float"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7a168f338914fab603c31a371207c8b3245ab5ff5e9a0f4fd64a9b5f8a972d1f"
- dependencies = [
- "dashu-base",
- "dashu-int",
- "num-traits",
- "rand",
- "static_assertions",
- ]
- [[package]]
- name = "dashu-int"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "57a1009a3ce0c4c64e977c5e7dd8c475278750e145cbb8956d1e28832f557975"
- dependencies = [
- "cfg-if",
- "dashu-base",
- "num-order",
- "num-traits",
- "rand",
- "static_assertions",
- ]
- [[package]]
- name = "dashu-macros"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f6fc2425b6724a7d5bfc8e57044e231803b5fc3a7283d6efbff34bfab6ebe014"
- dependencies = [
- "dashu-base",
- "dashu-float",
- "dashu-int",
- "dashu-ratio",
- "proc-macro2",
- "quote",
- ]
- [[package]]
- name = "dashu-ratio"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b4b57c839e72af6be14e5c55630ffc9429c9970aed48f7db449b2399467336b4"
- dependencies = [
- "dashu-base",
- "dashu-float",
- "dashu-int",
- "num-traits",
- "rand",
- ]
- [[package]]
- name = "dchat"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "log",
- "num_cpus",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "toml 0.7.3",
- "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 1.0.109",
- ]
- [[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 1.0.109",
- ]
- [[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.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
- dependencies = [
- "block-buffer",
- "crypto-common",
- "subtle",
- ]
- [[package]]
- name = "dirs-next"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
- dependencies = [
- "cfg-if",
- "dirs-sys-next",
- ]
- [[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.4.1"
- dependencies = [
- "async-channel",
- "async-std",
- "clap 4.2.0",
- "darkfi",
- "easy-parallel",
- "hex",
- "log",
- "num_cpus",
- "rand",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "termion 2.0.1",
- "thiserror",
- "tui",
- "url",
- ]
- [[package]]
- name = "dotenvy"
- version = "0.15.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
- [[package]]
- name = "drk"
- version = "0.4.1"
- dependencies = [
- "anyhow",
- "async-std",
- "blake3",
- "bs58",
- "clap 4.2.0",
- "clap_complete",
- "darkfi",
- "darkfi-dao-contract",
- "darkfi-money-contract",
- "darkfi-sdk",
- "darkfi-serial",
- "pkg-config",
- "play",
- "prettytable-rs",
- "rand",
- "serde_json",
- "signal-hook",
- "signal-hook-async-std",
- "simplelog",
- "smol",
- "sqlx",
- "url",
- ]
- [[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 1.0.109",
- ]
- [[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 = "2.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c"
- dependencies = [
- "ct-codecs",
- "getrandom",
- ]
- [[package]]
- name = "either"
- version = "1.8.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
- [[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 1.0.109",
- ]
- [[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.4",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "errno"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0"
- dependencies = [
- "errno-dragonfly",
- "libc",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "errno-dragonfly"
- version = "0.1.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
- dependencies = [
- "cc",
- "libc",
- ]
- [[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.9.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
- dependencies = [
- "instant",
- ]
- [[package]]
- name = "faucetd"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "blake3",
- "chrono",
- "darkfi",
- "darkfi-money-contract",
- "darkfi-sdk",
- "darkfi-serial",
- "easy-parallel",
- "log",
- "rand",
- "serde",
- "serde_json",
- "signal-hook",
- "signal-hook-async-std",
- "simplelog",
- "sled",
- "smol",
- "sqlx",
- "structopt",
- "structopt-toml",
- "url",
- ]
- [[package]]
- name = "ff"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
- dependencies = [
- "bitvec",
- "rand_core 0.6.4",
- "subtle",
- ]
- [[package]]
- name = "flate2"
- version = "1.0.25"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
- 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.7",
- ]
- [[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.4.1"
- dependencies = [
- "async-std",
- "clap 4.2.0",
- "darkfi",
- "log",
- "serde_json",
- "simplelog",
- "url",
- ]
- [[package]]
- name = "fud"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "blake3",
- "ctrlc",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "log",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "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.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-channel"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
- dependencies = [
- "futures-core",
- "futures-sink",
- ]
- [[package]]
- name = "futures-core"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
- [[package]]
- name = "futures-executor"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83"
- dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-intrusive"
- version = "0.4.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
- dependencies = [
- "futures-core",
- "lock_api",
- "parking_lot 0.11.2",
- ]
- [[package]]
- name = "futures-io"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
- [[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.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[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.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
- [[package]]
- name = "futures-task"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
- [[package]]
- name = "futures-util"
- version = "0.3.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
- 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.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
- dependencies = [
- "typenum",
- "version_check",
- ]
- [[package]]
- name = "genev"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "clap 4.2.0",
- "darkfi",
- "darkfi-serial",
- "log",
- "serde",
- "serde_json",
- "simplelog",
- "url",
- ]
- [[package]]
- name = "genevd"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "ctrlc",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "log",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "url",
- ]
- [[package]]
- name = "getrandom"
- version = "0.2.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
- dependencies = [
- "cfg-if",
- "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 = "gimli"
- version = "0.27.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
- [[package]]
- name = "glob"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
- [[package]]
- name = "gloo-timers"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
- dependencies = [
- "futures-channel",
- "futures-core",
- "js-sys",
- "wasm-bindgen",
- ]
- [[package]]
- name = "group"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
- dependencies = [
- "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 = "git+https://github.com/parazyd/halo2?branch=vk-ser#dda9dc976ad1b3cb0082edf9462a9eeaf116285f"
- dependencies = [
- "backtrace",
- "blake2b_simd",
- "ff",
- "group",
- "pasta_curves",
- "plotters",
- "rand_core 0.6.4",
- "rayon",
- "tabbycat",
- "tracing",
- ]
- [[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",
- ]
- [[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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
- 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 = "hermit-abi"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "hermit-abi"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
- [[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.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
- dependencies = [
- "bytes",
- "fnv",
- "itoa",
- ]
- [[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.54"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0c17cc76786e99f8d2f055c11159e7f0091c42474dcc3189fbab96072e873e6d"
- dependencies = [
- "android_system_properties",
- "core-foundation-sys",
- "iana-time-zone-haiku",
- "js-sys",
- "wasm-bindgen",
- "windows",
- ]
- [[package]]
- name = "iana-time-zone-haiku"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
- dependencies = [
- "cxx",
- "cxx-build",
- ]
- [[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.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
- dependencies = [
- "bytemuck",
- "byteorder",
- "color_quant",
- "jpeg-decoder",
- "num-rational",
- "num-traits",
- "png",
- ]
- [[package]]
- name = "incrementalmerkletree"
- version = "0.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d5ad43a3f5795945459d577f6589cf62a476e92c79b75e70cd954364e14ce17b"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "indexmap"
- version = "1.9.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
- dependencies = [
- "autocfg",
- "hashbrown",
- ]
- [[package]]
- name = "indicatif"
- version = "0.17.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729"
- dependencies = [
- "console",
- "number_prefix",
- "portable-atomic",
- "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",
- ]
- [[package]]
- name = "io-lifetimes"
- version = "1.0.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb"
- dependencies = [
- "hermit-abi 0.3.1",
- "libc",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "ipnet"
- version = "2.7.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
- [[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.1"
- dependencies = [
- "async-recursion",
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "clap 4.2.0",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "futures",
- "futures-rustls",
- "hex",
- "log",
- "rand",
- "ripemd",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "toml 0.7.3",
- "url",
- ]
- [[package]]
- name = "ircd2"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "clap 4.2.0",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "futures",
- "futures-rustls",
- "hex",
- "log",
- "rand",
- "ripemd",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "simplelog",
- "sled",
- "smol",
- "structopt",
- "structopt-toml",
- "toml 0.5.11",
- "url",
- ]
- [[package]]
- name = "is-terminal"
- version = "0.4.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "256017f749ab3117e93acb91063009e1f1bb56d03965b14c2c8df4eb02c524d8"
- dependencies = [
- "hermit-abi 0.3.1",
- "io-lifetimes",
- "rustix",
- "windows-sys 0.45.0",
- ]
- [[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 = "1.0.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
- [[package]]
- name = "jpeg-decoder"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
- [[package]]
- name = "js-sys"
- version = "0.3.61"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
- 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_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.140"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
- [[package]]
- name = "libloading"
- version = "0.7.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
- dependencies = [
- "cfg-if",
- "winapi",
- ]
- [[package]]
- name = "libm"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
- [[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.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "ctrlc",
- "darkfi",
- "easy-parallel",
- "log",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "toml 0.7.3",
- "url",
- ]
- [[package]]
- name = "link-cplusplus"
- version = "1.0.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
- dependencies = [
- "cc",
- ]
- [[package]]
- name = "linux-raw-sys"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cd550e73688e6d578f0ac2119e32b797a327631a42f9433e59d02e139c8df60d"
- [[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",
- "value-bag",
- ]
- [[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.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
- 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 = "memoffset"
- version = "0.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
- dependencies = [
- "autocfg",
- ]
- [[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.6.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
- dependencies = [
- "adler",
- ]
- [[package]]
- name = "mio"
- version = "0.8.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
- dependencies = [
- "libc",
- "log",
- "wasi 0.11.0+wasi-snapshot-preview1",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "more-asserts"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
- [[package]]
- name = "mpg123-sys"
- version = "0.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a75c26239d85c1423091c109fcdabbcfaac868576dc018b0e959137217907610"
- dependencies = [
- "bitflags",
- "libc",
- "pkg-config",
- ]
- [[package]]
- name = "nix"
- version = "0.26.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
- dependencies = [
- "bitflags",
- "cfg-if",
- "libc",
- "static_assertions",
- ]
- [[package]]
- name = "nom"
- version = "7.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
- 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-modular"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "64a5fe11d4135c3bcdf3a95b18b194afa9608a5f6ff034f5d857bc9a27fb0119"
- dependencies = [
- "num-integer",
- "num-traits",
- ]
- [[package]]
- name = "num-order"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e81e321057a0370997b13e6638bba6bd7f6f426e1f8e9a2562490a28eb23e1bc"
- dependencies = [
- "num-modular",
- "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",
- "libm",
- ]
- [[package]]
- name = "num_cpus"
- version = "1.15.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
- dependencies = [
- "hermit-abi 0.2.6",
- "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.30.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "once_cell"
- version = "1.17.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
- [[package]]
- name = "opaque-debug"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
- [[package]]
- name = "out123-sys"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5da977be7c4b44e2ad26be779aafc1761a89bd2ee6e363770bb71eb67a00d2e5"
- dependencies = [
- "libc",
- "mpg123-sys",
- "pkg-config",
- ]
- [[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.6",
- ]
- [[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.7",
- ]
- [[package]]
- name = "parking_lot_core"
- version = "0.8.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
- dependencies = [
- "cfg-if",
- "instant",
- "libc",
- "redox_syscall 0.2.16",
- "smallvec",
- "winapi",
- ]
- [[package]]
- name = "parking_lot_core"
- version = "0.9.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
- dependencies = [
- "cfg-if",
- "libc",
- "redox_syscall 0.2.16",
- "smallvec",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "pasta_curves"
- version = "0.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5cc65faf8e7313b4b1fbaa9f7ca917a0eed499a9663be71477f87993604341d8"
- dependencies = [
- "blake2b_simd",
- "ff",
- "group",
- "lazy_static",
- "rand",
- "static_assertions",
- "subtle",
- ]
- [[package]]
- name = "paste"
- version = "1.0.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
- [[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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
- dependencies = [
- "base64 0.13.1",
- ]
- [[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.5.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8cbd939b234e95d72bc393d51788aec68aeeb5d51e748ca08ff3aad58cb722f7"
- 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 1.0.109",
- ]
- [[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.26"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
- [[package]]
- name = "play"
- version = "0.5.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c570085654588139e9ea2f452fe7dcb78d576da4f1c04d58b98b32fc42744ff0"
- dependencies = [
- "libc",
- "mpg123-sys",
- "out123-sys",
- ]
- [[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.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638"
- dependencies = [
- "bitflags",
- "crc32fast",
- "flate2",
- "miniz_oxide",
- ]
- [[package]]
- name = "polling"
- version = "2.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa"
- dependencies = [
- "autocfg",
- "bitflags",
- "cfg-if",
- "concurrent-queue",
- "libc",
- "log",
- "pin-project-lite",
- "windows-sys 0.45.0",
- ]
- [[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 = "portable-atomic"
- version = "0.3.19"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b"
- [[package]]
- name = "ppv-lite86"
- version = "0.2.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
- [[package]]
- name = "prettytable-rs"
- version = "0.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
- dependencies = [
- "csv",
- "encode_unicode 1.0.0",
- "is-terminal",
- "lazy_static",
- "term",
- "unicode-width",
- ]
- [[package]]
- name = "proc-macro-crate"
- version = "1.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
- dependencies = [
- "once_cell",
- "toml_edit",
- ]
- [[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 1.0.109",
- "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.54"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534"
- dependencies = [
- "unicode-ident",
- ]
- [[package]]
- name = "proptest"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70"
- dependencies = [
- "bit-set",
- "bitflags",
- "byteorder",
- "lazy_static",
- "num-traits",
- "quick-error 2.0.1",
- "rand",
- "rand_chacha",
- "rand_xorshift",
- "regex-syntax",
- "rusty-fork",
- "tempfile",
- "unarray",
- ]
- [[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 1.0.109",
- ]
- [[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.26"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
- 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"
- [[package]]
- name = "rand_core"
- version = "0.6.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
- dependencies = [
- "getrandom",
- ]
- [[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.7.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
- dependencies = [
- "either",
- "rayon-core",
- ]
- [[package]]
- name = "rayon-core"
- version = "1.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
- 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.20",
- "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_syscall"
- version = "0.3.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
- 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 0.2.16",
- ]
- [[package]]
- name = "redox_users"
- version = "0.4.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
- dependencies = [
- "getrandom",
- "redox_syscall 0.2.16",
- "thiserror",
- ]
- [[package]]
- name = "regalloc2"
- version = "0.3.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d43a209257d978ef079f3d446331d0f1794f5e0fc19b306a199983857833a779"
- dependencies = [
- "fxhash",
- "log",
- "slice-group-by",
- "smallvec",
- ]
- [[package]]
- name = "regex"
- version = "1.7.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
- dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
- ]
- [[package]]
- name = "regex-syntax"
- version = "0.6.29"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
- [[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 = "rend"
- version = "0.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
- 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.6",
- ]
- [[package]]
- name = "rkyv"
- version = "0.7.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c30f1d45d9aa61cbc8cd1eb87705470892289bb2d01943e7803b873a57404dc3"
- dependencies = [
- "bytecheck",
- "hashbrown",
- "indexmap",
- "ptr_meta",
- "rend",
- "rkyv_derive",
- "seahash",
- ]
- [[package]]
- name = "rkyv_derive"
- version = "0.7.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ff26ed6c7c4dfc2aa9480b86a60e3c7233543a270a680e10758a507c5a4ce476"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "rustc-demangle"
- version = "0.1.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d4a36c42d1873f9a77c53bde094f9664d9891bc604a45b4798fd2c389ed12e5b"
- [[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 = "rustix"
- version = "0.37.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c348b5dc624ecee40108aa2922fed8bad89d7fcc2b9f8cb18f632898ac4a37f9"
- dependencies = [
- "bitflags",
- "errno",
- "io-lifetimes",
- "libc",
- "linux-raw-sys",
- "windows-sys 0.45.0",
- ]
- [[package]]
- name = "rustls"
- version = "0.20.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
- dependencies = [
- "log",
- "ring",
- "sct",
- "webpki",
- ]
- [[package]]
- name = "rustls-pemfile"
- version = "1.0.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
- dependencies = [
- "base64 0.21.0",
- ]
- [[package]]
- name = "rustversion"
- version = "1.0.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
- [[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.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
- [[package]]
- name = "salsa20"
- version = "0.10.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
- dependencies = [
- "cipher",
- ]
- [[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 = "scopeguard"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
- [[package]]
- name = "scratch"
- version = "1.0.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1"
- [[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 = "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.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
- 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.159"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
- dependencies = [
- "serde_derive",
- ]
- [[package]]
- name = "serde-wasm-bindgen"
- version = "0.4.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
- dependencies = [
- "js-sys",
- "serde",
- "wasm-bindgen",
- ]
- [[package]]
- name = "serde_derive"
- version = "1.0.159"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "serde_json"
- version = "1.0.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
- dependencies = [
- "itoa",
- "ryu",
- "serde",
- ]
- [[package]]
- name = "serde_spanned"
- version = "0.6.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "sha1"
- version = "0.10.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
- dependencies = [
- "cfg-if",
- "cpufeatures",
- "digest 0.10.6",
- ]
- [[package]]
- name = "sha2"
- version = "0.10.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
- dependencies = [
- "cfg-if",
- "cpufeatures",
- "digest 0.10.6",
- ]
- [[package]]
- name = "signal-hook"
- version = "0.3.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
- 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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
- dependencies = [
- "libc",
- ]
- [[package]]
- name = "simdutf8"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
- [[package]]
- name = "simplelog"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369"
- dependencies = [
- "log",
- "termcolor",
- "time 0.3.20",
- ]
- [[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.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
- 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 = "sled-overlay"
- version = "0.0.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "562d0d1dc5940eae7db86d162f4682db65cdcd8b838d8e05163a70774d52ea7c"
- dependencies = [
- "sled",
- ]
- [[package]]
- name = "slice-group-by"
- version = "0.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec"
- [[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.3.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
- dependencies = [
- "async-channel",
- "async-executor",
- "async-fs",
- "async-io",
- "async-lock",
- "async-net",
- "async-process",
- "blocking",
- "futures-lite",
- ]
- [[package]]
- name = "socket2"
- version = "0.4.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
- 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.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c0959fd6f767df20b231736396e4f602171e00d95205676286e79d4a4eb67bef"
- dependencies = [
- "lock_api",
- ]
- [[package]]
- name = "sqlformat"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
- dependencies = [
- "itertools",
- "nom",
- "unicode_categories",
- ]
- [[package]]
- name = "sqlx"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
- dependencies = [
- "sqlx-core",
- "sqlx-macros",
- ]
- [[package]]
- name = "sqlx-core"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
- 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",
- "libc",
- "libsqlite3-sys",
- "log",
- "memchr",
- "once_cell",
- "paste",
- "percent-encoding",
- "rustls",
- "rustls-pemfile",
- "sha2",
- "smallvec",
- "sqlformat",
- "sqlx-rt",
- "stringprep",
- "thiserror",
- "url",
- "webpki-roots",
- ]
- [[package]]
- name = "sqlx-macros"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
- dependencies = [
- "dotenvy",
- "either",
- "heck 0.4.1",
- "once_cell",
- "proc-macro2",
- "quote",
- "sha2",
- "sqlx-core",
- "sqlx-rt",
- "syn 1.0.109",
- "url",
- ]
- [[package]]
- name = "sqlx-rt"
- version = "0.6.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
- dependencies = [
- "async-std",
- "futures-rustls",
- ]
- [[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 1.0.109",
- ]
- [[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 0.5.11",
- ]
- [[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.1",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[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.109"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
- dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
- ]
- [[package]]
- name = "syn"
- version = "2.0.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "21e3787bb71465627110e7d87ed4faaa36c1f61042ee67badb9e2ef173accc40"
- dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
- ]
- [[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.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8ae9980cab1db3fceee2f6c6f643d5d8de2997c58ee8d25fb0cc8a9e9e7348e5"
- [[package]]
- name = "tau"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "chrono",
- "clap 4.2.0",
- "colored",
- "darkfi",
- "log",
- "prettytable-rs",
- "serde",
- "serde_json",
- "simplelog",
- "term_grid",
- "textwrap 0.15.2",
- "url",
- ]
- [[package]]
- name = "taud"
- version = "0.4.1"
- dependencies = [
- "async-std",
- "async-trait",
- "bs58",
- "chrono",
- "crypto_box",
- "ctrlc",
- "darkfi",
- "darkfi-serial",
- "easy-parallel",
- "futures",
- "hex",
- "libc",
- "log",
- "rand",
- "serde",
- "serde_json",
- "simplelog",
- "smol",
- "structopt",
- "structopt-toml",
- "thiserror",
- "toml 0.7.3",
- "url",
- ]
- [[package]]
- name = "tempfile"
- version = "3.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
- dependencies = [
- "cfg-if",
- "fastrand",
- "redox_syscall 0.3.5",
- "rustix",
- "windows-sys 0.45.0",
- ]
- [[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 = "termion"
- version = "1.5.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
- dependencies = [
- "libc",
- "numtoa",
- "redox_syscall 0.2.16",
- "redox_termios",
- ]
- [[package]]
- name = "termion"
- version = "2.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "659c1f379f3408c7e5e84c7d0da6d93404e3800b6b9d063ba24436419302ec90"
- dependencies = [
- "libc",
- "numtoa",
- "redox_syscall 0.2.16",
- "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.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d"
- dependencies = [
- "smawk",
- "unicode-linebreak",
- "unicode-width",
- ]
- [[package]]
- name = "thiserror"
- version = "1.0.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
- dependencies = [
- "thiserror-impl",
- ]
- [[package]]
- name = "thiserror-impl"
- version = "1.0.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "time"
- version = "0.1.45"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
- dependencies = [
- "libc",
- "wasi 0.10.0+wasi-snapshot-preview1",
- "winapi",
- ]
- [[package]]
- name = "time"
- version = "0.3.20"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
- dependencies = [
- "itoa",
- "libc",
- "num_threads",
- "serde",
- "time-core",
- "time-macros",
- ]
- [[package]]
- name = "time-core"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
- [[package]]
- name = "time-macros"
- version = "0.2.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
- dependencies = [
- "time-core",
- ]
- [[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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
- [[package]]
- name = "toml"
- version = "0.5.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "toml"
- version = "0.7.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
- dependencies = [
- "serde",
- "serde_spanned",
- "toml_datetime",
- "toml_edit",
- ]
- [[package]]
- name = "toml_datetime"
- version = "0.6.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "toml_edit"
- version = "0.19.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
- dependencies = [
- "indexmap",
- "serde",
- "serde_spanned",
- "toml_datetime",
- "winnow",
- ]
- [[package]]
- name = "tracing"
- version = "0.1.37"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
- dependencies = [
- "cfg-if",
- "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 1.0.109",
- ]
- [[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 1.5.6",
- "unicode-segmentation",
- "unicode-width",
- ]
- [[package]]
- name = "tungstenite"
- version = "0.18.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
- dependencies = [
- "base64 0.13.1",
- "byteorder",
- "bytes",
- "http",
- "httparse",
- "log",
- "rand",
- "sha1",
- "thiserror",
- "url",
- "utf-8",
- ]
- [[package]]
- name = "typenum"
- version = "1.16.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
- [[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.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
- dependencies = [
- "byteorder",
- "crunchy",
- "hex",
- "static_assertions",
- ]
- [[package]]
- name = "unarray"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
- [[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.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
- [[package]]
- name = "unicode-ident"
- version = "1.0.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
- [[package]]
- name = "unicode-linebreak"
- version = "0.1.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137"
- dependencies = [
- "hashbrown",
- "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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
- [[package]]
- name = "unicode-width"
- version = "0.1.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
- [[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 = "utf8parse"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
- [[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.4.1"
- dependencies = [
- "bs58",
- "clap 4.2.0",
- "ctrlc",
- "darkfi",
- "darkfi-sdk",
- "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 = "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.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
- dependencies = [
- "same-file",
- "winapi-util",
- ]
- [[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.84"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
- dependencies = [
- "cfg-if",
- "wasm-bindgen-macro",
- ]
- [[package]]
- name = "wasm-bindgen-backend"
- version = "0.2.84"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
- dependencies = [
- "bumpalo",
- "log",
- "once_cell",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-downcast"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5dac026d43bcca6e7ce1c0956ba68f59edf6403e8e930a5d891be72c31a44340"
- dependencies = [
- "js-sys",
- "once_cell",
- "wasm-bindgen",
- "wasm-bindgen-downcast-macros",
- ]
- [[package]]
- name = "wasm-bindgen-downcast-macros"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c5020cfa87c7cecefef118055d44e3c1fc122c7ec25701d528ee458a0b45f38f"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "wasm-bindgen-futures"
- version = "0.4.34"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
- dependencies = [
- "cfg-if",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "wasm-bindgen-macro"
- version = "0.2.84"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
- dependencies = [
- "quote",
- "wasm-bindgen-macro-support",
- ]
- [[package]]
- name = "wasm-bindgen-macro-support"
- version = "0.2.84"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- "wasm-bindgen-backend",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-shared"
- version = "0.2.84"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
- [[package]]
- name = "wasm-encoder"
- version = "0.25.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4eff853c4f09eec94d76af527eddad4e9de13b11d6286a1ef7134bc30135a2b7"
- dependencies = [
- "leb128",
- ]
- [[package]]
- name = "wasmer"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "840af6d21701220cb805dc7201af301cb99e9b4f646f48a41befbc1d949f0f90"
- dependencies = [
- "bytes",
- "cfg-if",
- "indexmap",
- "js-sys",
- "more-asserts",
- "serde",
- "serde-wasm-bindgen",
- "target-lexicon",
- "thiserror",
- "wasm-bindgen",
- "wasm-bindgen-downcast",
- "wasmer-compiler",
- "wasmer-compiler-cranelift",
- "wasmer-derive",
- "wasmer-types",
- "wasmer-vm",
- "wat",
- "winapi",
- ]
- [[package]]
- name = "wasmer-compiler"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b86fab98beaaace77380cb04e681773739473860d1b8499ea6b14f920923e0c5"
- dependencies = [
- "backtrace",
- "cfg-if",
- "enum-iterator",
- "enumset",
- "lazy_static",
- "leb128",
- "memmap2",
- "more-asserts",
- "region",
- "rustc-demangle",
- "smallvec",
- "thiserror",
- "wasmer-types",
- "wasmer-vm",
- "wasmparser",
- "winapi",
- ]
- [[package]]
- name = "wasmer-compiler-cranelift"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "015eef629fc84889540dc1686bd7fa524b93da9fd2d275b16c49dbe96268e58f"
- dependencies = [
- "cranelift-codegen",
- "cranelift-entity",
- "cranelift-frontend",
- "gimli 0.26.2",
- "more-asserts",
- "rayon",
- "smallvec",
- "target-lexicon",
- "tracing",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-compiler-singlepass"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "07e235ccc192d5f39147e8a430f48040dcfeebc1f1b0d979d2232ec1618d255c"
- dependencies = [
- "byteorder",
- "dynasm",
- "dynasmrt",
- "enumset",
- "gimli 0.26.2",
- "lazy_static",
- "more-asserts",
- "rayon",
- "smallvec",
- "wasmer-compiler",
- "wasmer-types",
- ]
- [[package]]
- name = "wasmer-derive"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1ff577b7c1cfcd3d7c5b3a09fe1a499b73f7c17084845ff71225c8250a6a63a9"
- dependencies = [
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- ]
- [[package]]
- name = "wasmer-middlewares"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c3f7b2443d00487fcd63e0158ea2eb7a12253fcc99b1c73a7a89796f3cb5a10f"
- dependencies = [
- "wasmer",
- "wasmer-types",
- "wasmer-vm",
- ]
- [[package]]
- name = "wasmer-types"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8b9600f9da966abae3be0b0a4560e7d1f2c88415a2d01ce362ac06063cb1c473"
- dependencies = [
- "enum-iterator",
- "enumset",
- "indexmap",
- "more-asserts",
- "rkyv",
- "target-lexicon",
- "thiserror",
- ]
- [[package]]
- name = "wasmer-vm"
- version = "3.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9fc68a7f0a003e6cb63845b7510065097d289553201d64afb9a5e1744da3c6a0"
- dependencies = [
- "backtrace",
- "cc",
- "cfg-if",
- "corosensei",
- "enum-iterator",
- "indexmap",
- "lazy_static",
- "libc",
- "mach",
- "memoffset 0.6.5",
- "more-asserts",
- "region",
- "scopeguard",
- "thiserror",
- "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 = "55.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4984d3e1406571f4930ba5cf79bd70f75f41d0e87e17506e0bd19b0e5d085f05"
- dependencies = [
- "leb128",
- "memchr",
- "unicode-width",
- "wasm-encoder",
- ]
- [[package]]
- name = "wat"
- version = "1.0.61"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "af2b53f4da14db05d32e70e9c617abdf6620c575bd5dd972b7400037b4df2091"
- dependencies = [
- "wast",
- ]
- [[package]]
- name = "web-sys"
- version = "0.3.61"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
- 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 = "webpki-roots"
- version = "0.22.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
- dependencies = [
- "webpki",
- ]
- [[package]]
- name = "weezl"
- version = "0.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
- [[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"
- version = "0.46.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cdacb41e6a96a052c6cb63a144f24900236121c6f63f4f8219fef5977ecb0c25"
- dependencies = [
- "windows-targets",
- ]
- [[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.42.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
- dependencies = [
- "windows_aarch64_gnullvm",
- "windows_aarch64_msvc 0.42.2",
- "windows_i686_gnu 0.42.2",
- "windows_i686_msvc 0.42.2",
- "windows_x86_64_gnu 0.42.2",
- "windows_x86_64_gnullvm",
- "windows_x86_64_msvc 0.42.2",
- ]
- [[package]]
- name = "windows-sys"
- version = "0.45.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
- dependencies = [
- "windows-targets",
- ]
- [[package]]
- name = "windows-targets"
- version = "0.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
- dependencies = [
- "windows_aarch64_gnullvm",
- "windows_aarch64_msvc 0.42.2",
- "windows_i686_gnu 0.42.2",
- "windows_i686_msvc 0.42.2",
- "windows_x86_64_gnu 0.42.2",
- "windows_x86_64_gnullvm",
- "windows_x86_64_msvc 0.42.2",
- ]
- [[package]]
- name = "windows_aarch64_gnullvm"
- version = "0.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
- [[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.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
- [[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.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
- [[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.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
- [[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.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
- [[package]]
- name = "windows_x86_64_gnullvm"
- version = "0.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
- [[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.42.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
- [[package]]
- name = "winnow"
- version = "0.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
- dependencies = [
- "memchr",
- ]
- [[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.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
- 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",
- "subtle",
- "zeroize",
- ]
- [[package]]
- name = "yasna"
- version = "0.5.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4"
- dependencies = [
- "time 0.3.20",
- ]
- [[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.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
- dependencies = [
- "zeroize_derive",
- ]
- [[package]]
- name = "zeroize_derive"
- version = "1.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "25588073e5216b50bca71d61cb8595cdb9745e87032a58c199730def2862c934"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.11",
- ]
- [[package]]
- name = "zkas"
- version = "0.4.1"
- dependencies = [
- "clap 4.2.0",
- "darkfi",
- ]
- [[package]]
- name = "zktool"
- version = "0.4.1"
- dependencies = [
- "clap 4.2.0",
- "darkfi",
- "darkfi-sdk",
- ]
|