Cargo.lock 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.21.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
  9. dependencies = [
  10. "gimli 0.28.1",
  11. ]
  12. [[package]]
  13. name = "adler"
  14. version = "1.0.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  17. [[package]]
  18. name = "aead"
  19. version = "0.3.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
  22. dependencies = [
  23. "generic-array",
  24. ]
  25. [[package]]
  26. name = "aead"
  27. version = "0.5.2"
  28. source = "registry+https://github.com/rust-lang/crates.io-index"
  29. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  30. dependencies = [
  31. "crypto-common",
  32. "generic-array",
  33. ]
  34. [[package]]
  35. name = "aes"
  36. version = "0.6.0"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
  39. dependencies = [
  40. "aes-soft",
  41. "aesni",
  42. "cipher 0.2.5",
  43. ]
  44. [[package]]
  45. name = "aes"
  46. version = "0.8.3"
  47. source = "registry+https://github.com/rust-lang/crates.io-index"
  48. checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
  49. dependencies = [
  50. "cfg-if 1.0.0",
  51. "cipher 0.4.4",
  52. "cpufeatures",
  53. "zeroize",
  54. ]
  55. [[package]]
  56. name = "aes-gcm"
  57. version = "0.8.0"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da"
  60. dependencies = [
  61. "aead 0.3.2",
  62. "aes 0.6.0",
  63. "cipher 0.2.5",
  64. "ctr 0.6.0",
  65. "ghash",
  66. "subtle",
  67. ]
  68. [[package]]
  69. name = "aes-soft"
  70. version = "0.6.4"
  71. source = "registry+https://github.com/rust-lang/crates.io-index"
  72. checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
  73. dependencies = [
  74. "cipher 0.2.5",
  75. "opaque-debug",
  76. ]
  77. [[package]]
  78. name = "aesni"
  79. version = "0.10.0"
  80. source = "registry+https://github.com/rust-lang/crates.io-index"
  81. checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
  82. dependencies = [
  83. "cipher 0.2.5",
  84. "opaque-debug",
  85. ]
  86. [[package]]
  87. name = "ahash"
  88. version = "0.7.7"
  89. source = "registry+https://github.com/rust-lang/crates.io-index"
  90. checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
  91. dependencies = [
  92. "getrandom 0.2.11",
  93. "once_cell",
  94. "version_check",
  95. ]
  96. [[package]]
  97. name = "ahash"
  98. version = "0.8.6"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
  101. dependencies = [
  102. "cfg-if 1.0.0",
  103. "once_cell",
  104. "version_check",
  105. "zerocopy",
  106. ]
  107. [[package]]
  108. name = "aho-corasick"
  109. version = "1.1.2"
  110. source = "registry+https://github.com/rust-lang/crates.io-index"
  111. checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
  112. dependencies = [
  113. "memchr",
  114. ]
  115. [[package]]
  116. name = "allocator-api2"
  117. version = "0.2.16"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
  120. [[package]]
  121. name = "amplify"
  122. version = "4.5.0"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "8629db306c0bbeb0a402e2918bdcf0026b5ddb24c46460f3bf5410b350d98710"
  125. dependencies = [
  126. "amplify_derive",
  127. "amplify_num",
  128. "ascii",
  129. "wasm-bindgen",
  130. ]
  131. [[package]]
  132. name = "amplify_derive"
  133. version = "4.0.0"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "759dcbfaf94d838367a86d493ec34ccc8aa6fe365cb7880d6bf89006de24d9c1"
  136. dependencies = [
  137. "amplify_syn",
  138. "proc-macro2",
  139. "quote",
  140. "syn 1.0.109",
  141. ]
  142. [[package]]
  143. name = "amplify_num"
  144. version = "0.5.0"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. checksum = "ddce3bc63e807ea02065e8d8b702695f3d302ae4158baddff8b0ce5c73947251"
  147. [[package]]
  148. name = "amplify_syn"
  149. version = "2.0.1"
  150. source = "registry+https://github.com/rust-lang/crates.io-index"
  151. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  152. dependencies = [
  153. "proc-macro2",
  154. "quote",
  155. "syn 1.0.109",
  156. ]
  157. [[package]]
  158. name = "android-tzdata"
  159. version = "0.1.1"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  162. [[package]]
  163. name = "android_system_properties"
  164. version = "0.1.5"
  165. source = "registry+https://github.com/rust-lang/crates.io-index"
  166. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  167. dependencies = [
  168. "libc",
  169. ]
  170. [[package]]
  171. name = "ansi_term"
  172. version = "0.12.1"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  175. dependencies = [
  176. "winapi",
  177. ]
  178. [[package]]
  179. name = "anstream"
  180. version = "0.6.5"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
  183. dependencies = [
  184. "anstyle",
  185. "anstyle-parse",
  186. "anstyle-query",
  187. "anstyle-wincon",
  188. "colorchoice",
  189. "utf8parse",
  190. ]
  191. [[package]]
  192. name = "anstyle"
  193. version = "1.0.4"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
  196. [[package]]
  197. name = "anstyle-parse"
  198. version = "0.2.3"
  199. source = "registry+https://github.com/rust-lang/crates.io-index"
  200. checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
  201. dependencies = [
  202. "utf8parse",
  203. ]
  204. [[package]]
  205. name = "anstyle-query"
  206. version = "1.0.2"
  207. source = "registry+https://github.com/rust-lang/crates.io-index"
  208. checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
  209. dependencies = [
  210. "windows-sys 0.52.0",
  211. ]
  212. [[package]]
  213. name = "anstyle-wincon"
  214. version = "3.0.2"
  215. source = "registry+https://github.com/rust-lang/crates.io-index"
  216. checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
  217. dependencies = [
  218. "anstyle",
  219. "windows-sys 0.52.0",
  220. ]
  221. [[package]]
  222. name = "anyhow"
  223. version = "1.0.75"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
  226. [[package]]
  227. name = "arg"
  228. version = "1.0.0"
  229. source = "git+https://github.com/parazyd/arg#bad0beb83e9df6d9037aa68d4624c77708c8c957"
  230. [[package]]
  231. name = "arrayref"
  232. version = "0.3.7"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
  235. [[package]]
  236. name = "arrayvec"
  237. version = "0.5.2"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
  240. [[package]]
  241. name = "arrayvec"
  242. version = "0.7.4"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  245. [[package]]
  246. name = "arti-client"
  247. version = "0.12.0"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "cae92510bdf360ae31cb92cbd2b7c86c74a5f9c9c3afbb8eed674184192c607f"
  250. dependencies = [
  251. "cfg-if 1.0.0",
  252. "derive_builder_fork_arti",
  253. "derive_more",
  254. "directories",
  255. "educe",
  256. "fs-mistrust",
  257. "futures",
  258. "hostname-validator",
  259. "humantime-serde",
  260. "libc",
  261. "pin-project",
  262. "postage",
  263. "safelog",
  264. "serde",
  265. "thiserror",
  266. "tor-async-utils",
  267. "tor-basic-utils",
  268. "tor-cell",
  269. "tor-chanmgr",
  270. "tor-checkable",
  271. "tor-circmgr",
  272. "tor-config",
  273. "tor-dirmgr",
  274. "tor-error",
  275. "tor-guardmgr",
  276. "tor-hsclient",
  277. "tor-hscrypto",
  278. "tor-keymgr",
  279. "tor-linkspec",
  280. "tor-llcrypto",
  281. "tor-netdir",
  282. "tor-netdoc",
  283. "tor-persist",
  284. "tor-proto",
  285. "tor-rtcompat",
  286. "tracing",
  287. "void",
  288. ]
  289. [[package]]
  290. name = "ascii"
  291. version = "1.1.0"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  294. [[package]]
  295. name = "asn1-rs"
  296. version = "0.5.2"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0"
  299. dependencies = [
  300. "asn1-rs-derive",
  301. "asn1-rs-impl",
  302. "displaydoc",
  303. "nom",
  304. "num-traits",
  305. "rusticata-macros",
  306. "thiserror",
  307. "time 0.3.30",
  308. ]
  309. [[package]]
  310. name = "asn1-rs-derive"
  311. version = "0.4.0"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
  314. dependencies = [
  315. "proc-macro2",
  316. "quote",
  317. "syn 1.0.109",
  318. "synstructure",
  319. ]
  320. [[package]]
  321. name = "asn1-rs-impl"
  322. version = "0.1.0"
  323. source = "registry+https://github.com/rust-lang/crates.io-index"
  324. checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
  325. dependencies = [
  326. "proc-macro2",
  327. "quote",
  328. "syn 1.0.109",
  329. ]
  330. [[package]]
  331. name = "async-channel"
  332. version = "1.9.0"
  333. source = "registry+https://github.com/rust-lang/crates.io-index"
  334. checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
  335. dependencies = [
  336. "concurrent-queue",
  337. "event-listener 2.5.3",
  338. "futures-core",
  339. ]
  340. [[package]]
  341. name = "async-channel"
  342. version = "2.1.1"
  343. source = "registry+https://github.com/rust-lang/crates.io-index"
  344. checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
  345. dependencies = [
  346. "concurrent-queue",
  347. "event-listener 4.0.0",
  348. "event-listener-strategy",
  349. "futures-core",
  350. "pin-project-lite 0.2.13",
  351. ]
  352. [[package]]
  353. name = "async-compression"
  354. version = "0.4.5"
  355. source = "registry+https://github.com/rust-lang/crates.io-index"
  356. checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
  357. dependencies = [
  358. "flate2",
  359. "futures-core",
  360. "futures-io",
  361. "memchr",
  362. "pin-project-lite 0.2.13",
  363. ]
  364. [[package]]
  365. name = "async-dup"
  366. version = "1.2.4"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "7c2886ab563af5038f79ec016dd7b87947ed138b794e8dd64992962c9cca0411"
  369. dependencies = [
  370. "async-lock 3.2.0",
  371. "futures-io",
  372. ]
  373. [[package]]
  374. name = "async-executor"
  375. version = "1.8.0"
  376. source = "registry+https://github.com/rust-lang/crates.io-index"
  377. checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
  378. dependencies = [
  379. "async-lock 3.2.0",
  380. "async-task",
  381. "concurrent-queue",
  382. "fastrand 2.0.1",
  383. "futures-lite 2.1.0",
  384. "slab",
  385. ]
  386. [[package]]
  387. name = "async-fs"
  388. version = "1.6.0"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
  391. dependencies = [
  392. "async-lock 2.8.0",
  393. "autocfg",
  394. "blocking",
  395. "futures-lite 1.13.0",
  396. ]
  397. [[package]]
  398. name = "async-global-executor"
  399. version = "2.4.1"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
  402. dependencies = [
  403. "async-channel 2.1.1",
  404. "async-executor",
  405. "async-io 2.2.2",
  406. "async-lock 3.2.0",
  407. "blocking",
  408. "futures-lite 2.1.0",
  409. "once_cell",
  410. ]
  411. [[package]]
  412. name = "async-h1"
  413. version = "2.3.4"
  414. source = "registry+https://github.com/rust-lang/crates.io-index"
  415. checksum = "5d1d1dae8cb2c4258a79d6ed088b7fb9b4763bf4e9b22d040779761e046a2971"
  416. dependencies = [
  417. "async-channel 1.9.0",
  418. "async-dup",
  419. "async-global-executor",
  420. "async-io 1.13.0",
  421. "futures-lite 1.13.0",
  422. "http-types",
  423. "httparse",
  424. "log",
  425. "pin-project",
  426. ]
  427. [[package]]
  428. name = "async-io"
  429. version = "1.13.0"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  432. dependencies = [
  433. "async-lock 2.8.0",
  434. "autocfg",
  435. "cfg-if 1.0.0",
  436. "concurrent-queue",
  437. "futures-lite 1.13.0",
  438. "log",
  439. "parking",
  440. "polling 2.8.0",
  441. "rustix 0.37.27",
  442. "slab",
  443. "socket2 0.4.10",
  444. "waker-fn",
  445. ]
  446. [[package]]
  447. name = "async-io"
  448. version = "2.2.2"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7"
  451. dependencies = [
  452. "async-lock 3.2.0",
  453. "cfg-if 1.0.0",
  454. "concurrent-queue",
  455. "futures-io",
  456. "futures-lite 2.1.0",
  457. "parking",
  458. "polling 3.3.1",
  459. "rustix 0.38.28",
  460. "slab",
  461. "tracing",
  462. "windows-sys 0.52.0",
  463. ]
  464. [[package]]
  465. name = "async-lock"
  466. version = "2.8.0"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  469. dependencies = [
  470. "event-listener 2.5.3",
  471. ]
  472. [[package]]
  473. name = "async-lock"
  474. version = "3.2.0"
  475. source = "registry+https://github.com/rust-lang/crates.io-index"
  476. checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c"
  477. dependencies = [
  478. "event-listener 4.0.0",
  479. "event-listener-strategy",
  480. "pin-project-lite 0.2.13",
  481. ]
  482. [[package]]
  483. name = "async-net"
  484. version = "1.8.0"
  485. source = "registry+https://github.com/rust-lang/crates.io-index"
  486. checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
  487. dependencies = [
  488. "async-io 1.13.0",
  489. "blocking",
  490. "futures-lite 1.13.0",
  491. ]
  492. [[package]]
  493. name = "async-process"
  494. version = "1.8.1"
  495. source = "registry+https://github.com/rust-lang/crates.io-index"
  496. checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
  497. dependencies = [
  498. "async-io 1.13.0",
  499. "async-lock 2.8.0",
  500. "async-signal",
  501. "blocking",
  502. "cfg-if 1.0.0",
  503. "event-listener 3.1.0",
  504. "futures-lite 1.13.0",
  505. "rustix 0.38.28",
  506. "windows-sys 0.48.0",
  507. ]
  508. [[package]]
  509. name = "async-recursion"
  510. version = "1.0.5"
  511. source = "registry+https://github.com/rust-lang/crates.io-index"
  512. checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
  513. dependencies = [
  514. "proc-macro2",
  515. "quote",
  516. "syn 2.0.41",
  517. ]
  518. [[package]]
  519. name = "async-rustls"
  520. version = "0.4.1"
  521. source = "registry+https://github.com/rust-lang/crates.io-index"
  522. checksum = "bd10f063fb367d26334e10c50c67ea31ac542b8c3402be2251db4cfc5d74ba66"
  523. dependencies = [
  524. "futures-io",
  525. "rustls",
  526. ]
  527. [[package]]
  528. name = "async-session"
  529. version = "3.0.0"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "07da4ce523b4e2ebaaf330746761df23a465b951a83d84bbce4233dabedae630"
  532. dependencies = [
  533. "anyhow",
  534. "async-lock 2.8.0",
  535. "async-trait",
  536. "base64 0.13.1",
  537. "bincode",
  538. "blake3 0.3.8",
  539. "chrono",
  540. "hmac 0.11.0",
  541. "log",
  542. "rand 0.8.5",
  543. "serde",
  544. "serde_json",
  545. "sha2 0.9.9",
  546. ]
  547. [[package]]
  548. name = "async-signal"
  549. version = "0.2.5"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
  552. dependencies = [
  553. "async-io 2.2.2",
  554. "async-lock 2.8.0",
  555. "atomic-waker",
  556. "cfg-if 1.0.0",
  557. "futures-core",
  558. "futures-io",
  559. "rustix 0.38.28",
  560. "signal-hook-registry",
  561. "slab",
  562. "windows-sys 0.48.0",
  563. ]
  564. [[package]]
  565. name = "async-sse"
  566. version = "4.1.0"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "53bba003996b8fd22245cd0c59b869ba764188ed435392cf2796d03b805ade10"
  569. dependencies = [
  570. "async-channel 1.9.0",
  571. "async-std",
  572. "http-types",
  573. "log",
  574. "memchr",
  575. "pin-project-lite 0.1.12",
  576. ]
  577. [[package]]
  578. name = "async-std"
  579. version = "1.12.0"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
  582. dependencies = [
  583. "async-channel 1.9.0",
  584. "async-global-executor",
  585. "async-io 1.13.0",
  586. "async-lock 2.8.0",
  587. "async-process",
  588. "crossbeam-utils",
  589. "futures-channel",
  590. "futures-core",
  591. "futures-io",
  592. "futures-lite 1.13.0",
  593. "gloo-timers",
  594. "kv-log-macro",
  595. "log",
  596. "memchr",
  597. "once_cell",
  598. "pin-project-lite 0.2.13",
  599. "pin-utils",
  600. "slab",
  601. "wasm-bindgen-futures",
  602. ]
  603. [[package]]
  604. name = "async-task"
  605. version = "4.5.0"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1"
  608. [[package]]
  609. name = "async-trait"
  610. version = "0.1.74"
  611. source = "registry+https://github.com/rust-lang/crates.io-index"
  612. checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
  613. dependencies = [
  614. "proc-macro2",
  615. "quote",
  616. "syn 2.0.41",
  617. ]
  618. [[package]]
  619. name = "async_executors"
  620. version = "0.7.0"
  621. source = "registry+https://github.com/rust-lang/crates.io-index"
  622. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  623. dependencies = [
  624. "async-std",
  625. "blanket",
  626. "futures-core",
  627. "futures-task",
  628. "futures-util",
  629. "pin-project",
  630. "rustc_version 0.4.0",
  631. ]
  632. [[package]]
  633. name = "asynchronous-codec"
  634. version = "0.7.0"
  635. source = "registry+https://github.com/rust-lang/crates.io-index"
  636. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  637. dependencies = [
  638. "bytes 1.5.0",
  639. "futures-sink",
  640. "futures-util",
  641. "memchr",
  642. "pin-project-lite 0.2.13",
  643. ]
  644. [[package]]
  645. name = "atomic"
  646. version = "0.5.3"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  649. [[package]]
  650. name = "atomic-waker"
  651. version = "1.1.2"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  654. [[package]]
  655. name = "atty"
  656. version = "0.2.14"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  659. dependencies = [
  660. "hermit-abi 0.1.19",
  661. "libc",
  662. "winapi",
  663. ]
  664. [[package]]
  665. name = "autocfg"
  666. version = "1.1.0"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  669. [[package]]
  670. name = "backtrace"
  671. version = "0.3.69"
  672. source = "registry+https://github.com/rust-lang/crates.io-index"
  673. checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
  674. dependencies = [
  675. "addr2line",
  676. "cc",
  677. "cfg-if 1.0.0",
  678. "libc",
  679. "miniz_oxide",
  680. "object",
  681. "rustc-demangle",
  682. ]
  683. [[package]]
  684. name = "base-x"
  685. version = "0.2.11"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
  688. [[package]]
  689. name = "base16ct"
  690. version = "0.2.0"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  693. [[package]]
  694. name = "base58-monero"
  695. version = "2.0.0"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "978e81a45367d2409ecd33369a45dda2e9a3ca516153ec194de1fbda4b9fb79d"
  698. dependencies = [
  699. "thiserror",
  700. ]
  701. [[package]]
  702. name = "base64"
  703. version = "0.13.1"
  704. source = "registry+https://github.com/rust-lang/crates.io-index"
  705. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  706. [[package]]
  707. name = "base64"
  708. version = "0.21.5"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
  711. [[package]]
  712. name = "base64ct"
  713. version = "1.6.0"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  716. [[package]]
  717. name = "bincode"
  718. version = "1.3.3"
  719. source = "registry+https://github.com/rust-lang/crates.io-index"
  720. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  721. dependencies = [
  722. "serde",
  723. ]
  724. [[package]]
  725. name = "bindgen"
  726. version = "0.66.1"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7"
  729. dependencies = [
  730. "bitflags 2.4.1",
  731. "cexpr",
  732. "clang-sys",
  733. "lazy_static",
  734. "lazycell",
  735. "log",
  736. "peeking_take_while",
  737. "prettyplease",
  738. "proc-macro2",
  739. "quote",
  740. "regex",
  741. "rustc-hash",
  742. "shlex",
  743. "syn 2.0.41",
  744. "which",
  745. ]
  746. [[package]]
  747. name = "bit-set"
  748. version = "0.5.3"
  749. source = "registry+https://github.com/rust-lang/crates.io-index"
  750. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  751. dependencies = [
  752. "bit-vec",
  753. ]
  754. [[package]]
  755. name = "bit-vec"
  756. version = "0.6.3"
  757. source = "registry+https://github.com/rust-lang/crates.io-index"
  758. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  759. [[package]]
  760. name = "bitflags"
  761. version = "1.3.2"
  762. source = "registry+https://github.com/rust-lang/crates.io-index"
  763. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  764. [[package]]
  765. name = "bitflags"
  766. version = "2.4.1"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
  769. [[package]]
  770. name = "bitvec"
  771. version = "1.0.1"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  774. dependencies = [
  775. "funty",
  776. "radium",
  777. "tap",
  778. "wyz",
  779. ]
  780. [[package]]
  781. name = "blake2b_simd"
  782. version = "1.0.2"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780"
  785. dependencies = [
  786. "arrayref",
  787. "arrayvec 0.7.4",
  788. "constant_time_eq 0.3.0",
  789. ]
  790. [[package]]
  791. name = "blake3"
  792. version = "0.3.8"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"
  795. dependencies = [
  796. "arrayref",
  797. "arrayvec 0.5.2",
  798. "cc",
  799. "cfg-if 0.1.10",
  800. "constant_time_eq 0.1.5",
  801. "crypto-mac 0.8.0",
  802. "digest 0.9.0",
  803. ]
  804. [[package]]
  805. name = "blake3"
  806. version = "1.5.0"
  807. source = "registry+https://github.com/rust-lang/crates.io-index"
  808. checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"
  809. dependencies = [
  810. "arrayref",
  811. "arrayvec 0.7.4",
  812. "cc",
  813. "cfg-if 1.0.0",
  814. "constant_time_eq 0.3.0",
  815. "rayon",
  816. ]
  817. [[package]]
  818. name = "blanket"
  819. version = "0.3.0"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  822. dependencies = [
  823. "proc-macro2",
  824. "quote",
  825. "syn 2.0.41",
  826. ]
  827. [[package]]
  828. name = "block-buffer"
  829. version = "0.9.0"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  832. dependencies = [
  833. "generic-array",
  834. ]
  835. [[package]]
  836. name = "block-buffer"
  837. version = "0.10.4"
  838. source = "registry+https://github.com/rust-lang/crates.io-index"
  839. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  840. dependencies = [
  841. "generic-array",
  842. ]
  843. [[package]]
  844. name = "blocking"
  845. version = "1.5.1"
  846. source = "registry+https://github.com/rust-lang/crates.io-index"
  847. checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
  848. dependencies = [
  849. "async-channel 2.1.1",
  850. "async-lock 3.2.0",
  851. "async-task",
  852. "fastrand 2.0.1",
  853. "futures-io",
  854. "futures-lite 2.1.0",
  855. "piper",
  856. "tracing",
  857. ]
  858. [[package]]
  859. name = "bounded-vec-deque"
  860. version = "0.1.1"
  861. source = "registry+https://github.com/rust-lang/crates.io-index"
  862. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  863. [[package]]
  864. name = "bridgetree"
  865. version = "0.4.0"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "fbfcb6c5a091e80cb3d3b0c1a7f126af4631cd5065b1f9929b139f1be8f3fb62"
  868. dependencies = [
  869. "incrementalmerkletree",
  870. ]
  871. [[package]]
  872. name = "bs58"
  873. version = "0.5.0"
  874. source = "registry+https://github.com/rust-lang/crates.io-index"
  875. checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896"
  876. dependencies = [
  877. "tinyvec",
  878. ]
  879. [[package]]
  880. name = "bumpalo"
  881. version = "3.14.0"
  882. source = "registry+https://github.com/rust-lang/crates.io-index"
  883. checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
  884. [[package]]
  885. name = "by_address"
  886. version = "1.1.0"
  887. source = "registry+https://github.com/rust-lang/crates.io-index"
  888. checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0"
  889. [[package]]
  890. name = "bytecheck"
  891. version = "0.6.11"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
  894. dependencies = [
  895. "bytecheck_derive",
  896. "ptr_meta",
  897. "simdutf8",
  898. ]
  899. [[package]]
  900. name = "bytecheck_derive"
  901. version = "0.6.11"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
  904. dependencies = [
  905. "proc-macro2",
  906. "quote",
  907. "syn 1.0.109",
  908. ]
  909. [[package]]
  910. name = "bytecount"
  911. version = "0.6.7"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
  914. [[package]]
  915. name = "bytemuck"
  916. version = "1.14.0"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
  919. [[package]]
  920. name = "byteorder"
  921. version = "1.5.0"
  922. source = "registry+https://github.com/rust-lang/crates.io-index"
  923. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  924. [[package]]
  925. name = "bytes"
  926. version = "0.5.6"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  929. [[package]]
  930. name = "bytes"
  931. version = "1.5.0"
  932. source = "registry+https://github.com/rust-lang/crates.io-index"
  933. checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
  934. [[package]]
  935. name = "camino"
  936. version = "1.1.6"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
  939. dependencies = [
  940. "serde",
  941. ]
  942. [[package]]
  943. name = "caret"
  944. version = "0.4.4"
  945. source = "registry+https://github.com/rust-lang/crates.io-index"
  946. checksum = "7a472d18b7a8b73ecefb280476c3d2b832ac4920dfd0928f3fab94c46b659c4a"
  947. [[package]]
  948. name = "cargo-platform"
  949. version = "0.1.5"
  950. source = "registry+https://github.com/rust-lang/crates.io-index"
  951. checksum = "e34637b3140142bdf929fb439e8aa4ebad7651ebf7b1080b3930aa16ac1459ff"
  952. dependencies = [
  953. "serde",
  954. ]
  955. [[package]]
  956. name = "cargo_metadata"
  957. version = "0.14.2"
  958. source = "registry+https://github.com/rust-lang/crates.io-index"
  959. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  960. dependencies = [
  961. "camino",
  962. "cargo-platform",
  963. "semver 1.0.20",
  964. "serde",
  965. "serde_json",
  966. ]
  967. [[package]]
  968. name = "cc"
  969. version = "1.0.83"
  970. source = "registry+https://github.com/rust-lang/crates.io-index"
  971. checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
  972. dependencies = [
  973. "libc",
  974. ]
  975. [[package]]
  976. name = "cexpr"
  977. version = "0.6.0"
  978. source = "registry+https://github.com/rust-lang/crates.io-index"
  979. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  980. dependencies = [
  981. "nom",
  982. ]
  983. [[package]]
  984. name = "cfg-if"
  985. version = "0.1.10"
  986. source = "registry+https://github.com/rust-lang/crates.io-index"
  987. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  988. [[package]]
  989. name = "cfg-if"
  990. version = "1.0.0"
  991. source = "registry+https://github.com/rust-lang/crates.io-index"
  992. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  993. [[package]]
  994. name = "chacha20"
  995. version = "0.9.1"
  996. source = "registry+https://github.com/rust-lang/crates.io-index"
  997. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  998. dependencies = [
  999. "cfg-if 1.0.0",
  1000. "cipher 0.4.4",
  1001. "cpufeatures",
  1002. ]
  1003. [[package]]
  1004. name = "chacha20poly1305"
  1005. version = "0.10.1"
  1006. source = "registry+https://github.com/rust-lang/crates.io-index"
  1007. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  1008. dependencies = [
  1009. "aead 0.5.2",
  1010. "chacha20",
  1011. "cipher 0.4.4",
  1012. "poly1305",
  1013. "zeroize",
  1014. ]
  1015. [[package]]
  1016. name = "chrono"
  1017. version = "0.4.31"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
  1020. dependencies = [
  1021. "android-tzdata",
  1022. "iana-time-zone",
  1023. "js-sys",
  1024. "num-traits",
  1025. "serde",
  1026. "wasm-bindgen",
  1027. "windows-targets 0.48.5",
  1028. ]
  1029. [[package]]
  1030. name = "cipher"
  1031. version = "0.2.5"
  1032. source = "registry+https://github.com/rust-lang/crates.io-index"
  1033. checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
  1034. dependencies = [
  1035. "generic-array",
  1036. ]
  1037. [[package]]
  1038. name = "cipher"
  1039. version = "0.4.4"
  1040. source = "registry+https://github.com/rust-lang/crates.io-index"
  1041. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  1042. dependencies = [
  1043. "crypto-common",
  1044. "inout",
  1045. "zeroize",
  1046. ]
  1047. [[package]]
  1048. name = "clang-sys"
  1049. version = "1.6.1"
  1050. source = "registry+https://github.com/rust-lang/crates.io-index"
  1051. checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
  1052. dependencies = [
  1053. "glob",
  1054. "libc",
  1055. "libloading 0.7.4",
  1056. ]
  1057. [[package]]
  1058. name = "clap"
  1059. version = "2.34.0"
  1060. source = "registry+https://github.com/rust-lang/crates.io-index"
  1061. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  1062. dependencies = [
  1063. "ansi_term",
  1064. "atty",
  1065. "bitflags 1.3.2",
  1066. "strsim 0.8.0",
  1067. "textwrap",
  1068. "unicode-width",
  1069. "vec_map",
  1070. ]
  1071. [[package]]
  1072. name = "clap"
  1073. version = "4.4.11"
  1074. source = "registry+https://github.com/rust-lang/crates.io-index"
  1075. checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2"
  1076. dependencies = [
  1077. "clap_builder",
  1078. "clap_derive",
  1079. ]
  1080. [[package]]
  1081. name = "clap_builder"
  1082. version = "4.4.11"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb"
  1085. dependencies = [
  1086. "anstream",
  1087. "anstyle",
  1088. "clap_lex",
  1089. "strsim 0.10.0",
  1090. ]
  1091. [[package]]
  1092. name = "clap_derive"
  1093. version = "4.4.7"
  1094. source = "registry+https://github.com/rust-lang/crates.io-index"
  1095. checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
  1096. dependencies = [
  1097. "heck 0.4.1",
  1098. "proc-macro2",
  1099. "quote",
  1100. "syn 2.0.41",
  1101. ]
  1102. [[package]]
  1103. name = "clap_lex"
  1104. version = "0.6.0"
  1105. source = "registry+https://github.com/rust-lang/crates.io-index"
  1106. checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
  1107. [[package]]
  1108. name = "cmake"
  1109. version = "0.1.50"
  1110. source = "registry+https://github.com/rust-lang/crates.io-index"
  1111. checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
  1112. dependencies = [
  1113. "cc",
  1114. ]
  1115. [[package]]
  1116. name = "coarsetime"
  1117. version = "0.1.33"
  1118. source = "registry+https://github.com/rust-lang/crates.io-index"
  1119. checksum = "71367d3385c716342014ad17e3d19f7788ae514885a1f4c24f500260fb365e1a"
  1120. dependencies = [
  1121. "libc",
  1122. "once_cell",
  1123. "wasi 0.11.0+wasi-snapshot-preview1",
  1124. "wasm-bindgen",
  1125. ]
  1126. [[package]]
  1127. name = "color_quant"
  1128. version = "1.1.0"
  1129. source = "registry+https://github.com/rust-lang/crates.io-index"
  1130. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  1131. [[package]]
  1132. name = "colorchoice"
  1133. version = "1.0.0"
  1134. source = "registry+https://github.com/rust-lang/crates.io-index"
  1135. checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
  1136. [[package]]
  1137. name = "concurrent-queue"
  1138. version = "2.4.0"
  1139. source = "registry+https://github.com/rust-lang/crates.io-index"
  1140. checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
  1141. dependencies = [
  1142. "crossbeam-utils",
  1143. ]
  1144. [[package]]
  1145. name = "config"
  1146. version = "0.13.4"
  1147. source = "registry+https://github.com/rust-lang/crates.io-index"
  1148. checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
  1149. dependencies = [
  1150. "async-trait",
  1151. "lazy_static",
  1152. "nom",
  1153. "pathdiff",
  1154. "serde",
  1155. "toml 0.5.11",
  1156. ]
  1157. [[package]]
  1158. name = "const-cstr"
  1159. version = "0.3.0"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "ed3d0b5ff30645a68f35ece8cea4556ca14ef8a1651455f789a099a0513532a6"
  1162. [[package]]
  1163. name = "const-oid"
  1164. version = "0.9.5"
  1165. source = "registry+https://github.com/rust-lang/crates.io-index"
  1166. checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
  1167. [[package]]
  1168. name = "const_fn"
  1169. version = "0.4.9"
  1170. source = "registry+https://github.com/rust-lang/crates.io-index"
  1171. checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
  1172. [[package]]
  1173. name = "constant_time_eq"
  1174. version = "0.1.5"
  1175. source = "registry+https://github.com/rust-lang/crates.io-index"
  1176. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  1177. [[package]]
  1178. name = "constant_time_eq"
  1179. version = "0.3.0"
  1180. source = "registry+https://github.com/rust-lang/crates.io-index"
  1181. checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
  1182. [[package]]
  1183. name = "convert_case"
  1184. version = "0.4.0"
  1185. source = "registry+https://github.com/rust-lang/crates.io-index"
  1186. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  1187. [[package]]
  1188. name = "cookie"
  1189. version = "0.14.4"
  1190. source = "registry+https://github.com/rust-lang/crates.io-index"
  1191. checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
  1192. dependencies = [
  1193. "aes-gcm",
  1194. "base64 0.13.1",
  1195. "hkdf 0.10.0",
  1196. "hmac 0.10.1",
  1197. "percent-encoding",
  1198. "rand 0.8.5",
  1199. "sha2 0.9.9",
  1200. "time 0.2.27",
  1201. "version_check",
  1202. ]
  1203. [[package]]
  1204. name = "core-foundation"
  1205. version = "0.9.4"
  1206. source = "registry+https://github.com/rust-lang/crates.io-index"
  1207. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  1208. dependencies = [
  1209. "core-foundation-sys",
  1210. "libc",
  1211. ]
  1212. [[package]]
  1213. name = "core-foundation-sys"
  1214. version = "0.8.6"
  1215. source = "registry+https://github.com/rust-lang/crates.io-index"
  1216. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  1217. [[package]]
  1218. name = "core-graphics"
  1219. version = "0.22.3"
  1220. source = "registry+https://github.com/rust-lang/crates.io-index"
  1221. checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
  1222. dependencies = [
  1223. "bitflags 1.3.2",
  1224. "core-foundation",
  1225. "core-graphics-types",
  1226. "foreign-types",
  1227. "libc",
  1228. ]
  1229. [[package]]
  1230. name = "core-graphics-types"
  1231. version = "0.1.3"
  1232. source = "registry+https://github.com/rust-lang/crates.io-index"
  1233. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  1234. dependencies = [
  1235. "bitflags 1.3.2",
  1236. "core-foundation",
  1237. "libc",
  1238. ]
  1239. [[package]]
  1240. name = "core-text"
  1241. version = "19.2.0"
  1242. source = "registry+https://github.com/rust-lang/crates.io-index"
  1243. checksum = "99d74ada66e07c1cefa18f8abfba765b486f250de2e4a999e5727fc0dd4b4a25"
  1244. dependencies = [
  1245. "core-foundation",
  1246. "core-graphics",
  1247. "foreign-types",
  1248. "libc",
  1249. ]
  1250. [[package]]
  1251. name = "corosensei"
  1252. version = "0.1.4"
  1253. source = "registry+https://github.com/rust-lang/crates.io-index"
  1254. checksum = "80128832c58ea9cbd041d2a759ec449224487b2c1e400453d99d244eead87a8e"
  1255. dependencies = [
  1256. "autocfg",
  1257. "cfg-if 1.0.0",
  1258. "libc",
  1259. "scopeguard",
  1260. "windows-sys 0.33.0",
  1261. ]
  1262. [[package]]
  1263. name = "cpufeatures"
  1264. version = "0.2.11"
  1265. source = "registry+https://github.com/rust-lang/crates.io-index"
  1266. checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
  1267. dependencies = [
  1268. "libc",
  1269. ]
  1270. [[package]]
  1271. name = "cpuid-bool"
  1272. version = "0.2.0"
  1273. source = "registry+https://github.com/rust-lang/crates.io-index"
  1274. checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba"
  1275. [[package]]
  1276. name = "cranelift-bforest"
  1277. version = "0.91.1"
  1278. source = "registry+https://github.com/rust-lang/crates.io-index"
  1279. checksum = "2a2ab4512dfd3a6f4be184403a195f76e81a8a9f9e6c898e19d2dc3ce20e0115"
  1280. dependencies = [
  1281. "cranelift-entity",
  1282. ]
  1283. [[package]]
  1284. name = "cranelift-codegen"
  1285. version = "0.91.1"
  1286. source = "registry+https://github.com/rust-lang/crates.io-index"
  1287. checksum = "98b022ed2a5913a38839dfbafe6cf135342661293b08049843362df4301261dc"
  1288. dependencies = [
  1289. "arrayvec 0.7.4",
  1290. "bumpalo",
  1291. "cranelift-bforest",
  1292. "cranelift-codegen-meta",
  1293. "cranelift-codegen-shared",
  1294. "cranelift-egraph",
  1295. "cranelift-entity",
  1296. "cranelift-isle",
  1297. "gimli 0.26.2",
  1298. "log",
  1299. "regalloc2",
  1300. "smallvec",
  1301. "target-lexicon",
  1302. ]
  1303. [[package]]
  1304. name = "cranelift-codegen-meta"
  1305. version = "0.91.1"
  1306. source = "registry+https://github.com/rust-lang/crates.io-index"
  1307. checksum = "639307b45434ad112a98f8300c0f0ab085cbefcd767efcdef9ef19d4c0756e74"
  1308. dependencies = [
  1309. "cranelift-codegen-shared",
  1310. ]
  1311. [[package]]
  1312. name = "cranelift-codegen-shared"
  1313. version = "0.91.1"
  1314. source = "registry+https://github.com/rust-lang/crates.io-index"
  1315. checksum = "278e52e29c53fcf32431ef08406c295699a70306d05a0715c5b1bf50e33a9ab7"
  1316. [[package]]
  1317. name = "cranelift-egraph"
  1318. version = "0.91.1"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "624b54323b06e675293939311943ba82d323bb340468ce1889be5da7932c8d73"
  1321. dependencies = [
  1322. "cranelift-entity",
  1323. "fxhash",
  1324. "hashbrown 0.12.3",
  1325. "indexmap 1.9.3",
  1326. "log",
  1327. "smallvec",
  1328. ]
  1329. [[package]]
  1330. name = "cranelift-entity"
  1331. version = "0.91.1"
  1332. source = "registry+https://github.com/rust-lang/crates.io-index"
  1333. checksum = "9a59bcbca89c3f1b70b93ab3cbba5e5e0cbf3e63dadb23c7525cb142e21a9d4c"
  1334. [[package]]
  1335. name = "cranelift-frontend"
  1336. version = "0.91.1"
  1337. source = "registry+https://github.com/rust-lang/crates.io-index"
  1338. checksum = "0d70abacb8cfef3dc8ff7e8836e9c1d70f7967dfdac824a4cd5e30223415aca6"
  1339. dependencies = [
  1340. "cranelift-codegen",
  1341. "log",
  1342. "smallvec",
  1343. "target-lexicon",
  1344. ]
  1345. [[package]]
  1346. name = "cranelift-isle"
  1347. version = "0.91.1"
  1348. source = "registry+https://github.com/rust-lang/crates.io-index"
  1349. checksum = "393bc73c451830ff8dbb3a07f61843d6cb41a084f9996319917c0b291ed785bb"
  1350. [[package]]
  1351. name = "crc32fast"
  1352. version = "1.3.2"
  1353. source = "registry+https://github.com/rust-lang/crates.io-index"
  1354. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  1355. dependencies = [
  1356. "cfg-if 1.0.0",
  1357. ]
  1358. [[package]]
  1359. name = "crossbeam-deque"
  1360. version = "0.8.3"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
  1363. dependencies = [
  1364. "cfg-if 1.0.0",
  1365. "crossbeam-epoch",
  1366. "crossbeam-utils",
  1367. ]
  1368. [[package]]
  1369. name = "crossbeam-epoch"
  1370. version = "0.9.15"
  1371. source = "registry+https://github.com/rust-lang/crates.io-index"
  1372. checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
  1373. dependencies = [
  1374. "autocfg",
  1375. "cfg-if 1.0.0",
  1376. "crossbeam-utils",
  1377. "memoffset",
  1378. "scopeguard",
  1379. ]
  1380. [[package]]
  1381. name = "crossbeam-queue"
  1382. version = "0.3.8"
  1383. source = "registry+https://github.com/rust-lang/crates.io-index"
  1384. checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
  1385. dependencies = [
  1386. "cfg-if 1.0.0",
  1387. "crossbeam-utils",
  1388. ]
  1389. [[package]]
  1390. name = "crossbeam-utils"
  1391. version = "0.8.16"
  1392. source = "registry+https://github.com/rust-lang/crates.io-index"
  1393. checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
  1394. dependencies = [
  1395. "cfg-if 1.0.0",
  1396. ]
  1397. [[package]]
  1398. name = "crunchy"
  1399. version = "0.2.2"
  1400. source = "registry+https://github.com/rust-lang/crates.io-index"
  1401. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1402. [[package]]
  1403. name = "crypto-bigint"
  1404. version = "0.5.5"
  1405. source = "registry+https://github.com/rust-lang/crates.io-index"
  1406. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1407. dependencies = [
  1408. "generic-array",
  1409. "rand_core 0.6.4",
  1410. "subtle",
  1411. "zeroize",
  1412. ]
  1413. [[package]]
  1414. name = "crypto-common"
  1415. version = "0.1.6"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1418. dependencies = [
  1419. "generic-array",
  1420. "rand_core 0.6.4",
  1421. "typenum",
  1422. ]
  1423. [[package]]
  1424. name = "crypto-mac"
  1425. version = "0.8.0"
  1426. source = "registry+https://github.com/rust-lang/crates.io-index"
  1427. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  1428. dependencies = [
  1429. "generic-array",
  1430. "subtle",
  1431. ]
  1432. [[package]]
  1433. name = "crypto-mac"
  1434. version = "0.10.0"
  1435. source = "registry+https://github.com/rust-lang/crates.io-index"
  1436. checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
  1437. dependencies = [
  1438. "generic-array",
  1439. "subtle",
  1440. ]
  1441. [[package]]
  1442. name = "crypto-mac"
  1443. version = "0.11.0"
  1444. source = "registry+https://github.com/rust-lang/crates.io-index"
  1445. checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e"
  1446. dependencies = [
  1447. "generic-array",
  1448. "subtle",
  1449. ]
  1450. [[package]]
  1451. name = "crypto_api"
  1452. version = "0.2.2"
  1453. source = "registry+https://github.com/rust-lang/crates.io-index"
  1454. checksum = "2f855e87e75a4799e18b8529178adcde6fd4f97c1449ff4821e747ff728bb102"
  1455. [[package]]
  1456. name = "crypto_api_chachapoly"
  1457. version = "0.5.0"
  1458. source = "registry+https://github.com/rust-lang/crates.io-index"
  1459. checksum = "b63ae1025a6981f91b70bdcf11827189f49b01aaa3720115b330cd325d1c3809"
  1460. dependencies = [
  1461. "crypto_api",
  1462. ]
  1463. [[package]]
  1464. name = "crypto_box"
  1465. version = "0.9.1"
  1466. source = "registry+https://github.com/rust-lang/crates.io-index"
  1467. checksum = "16182b4f39a82ec8a6851155cc4c0cda3065bb1db33651726a29e1951de0f009"
  1468. dependencies = [
  1469. "aead 0.5.2",
  1470. "chacha20",
  1471. "crypto_secretbox",
  1472. "curve25519-dalek",
  1473. "salsa20",
  1474. "subtle",
  1475. "zeroize",
  1476. ]
  1477. [[package]]
  1478. name = "crypto_secretbox"
  1479. version = "0.1.1"
  1480. source = "registry+https://github.com/rust-lang/crates.io-index"
  1481. checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1"
  1482. dependencies = [
  1483. "aead 0.5.2",
  1484. "chacha20",
  1485. "cipher 0.4.4",
  1486. "generic-array",
  1487. "poly1305",
  1488. "salsa20",
  1489. "subtle",
  1490. "zeroize",
  1491. ]
  1492. [[package]]
  1493. name = "csv"
  1494. version = "1.3.0"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
  1497. dependencies = [
  1498. "csv-core",
  1499. "itoa",
  1500. "ryu",
  1501. "serde",
  1502. ]
  1503. [[package]]
  1504. name = "csv-core"
  1505. version = "0.1.11"
  1506. source = "registry+https://github.com/rust-lang/crates.io-index"
  1507. checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
  1508. dependencies = [
  1509. "memchr",
  1510. ]
  1511. [[package]]
  1512. name = "ct-codecs"
  1513. version = "1.1.1"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
  1516. [[package]]
  1517. name = "ctr"
  1518. version = "0.6.0"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f"
  1521. dependencies = [
  1522. "cipher 0.2.5",
  1523. ]
  1524. [[package]]
  1525. name = "ctr"
  1526. version = "0.9.2"
  1527. source = "registry+https://github.com/rust-lang/crates.io-index"
  1528. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1529. dependencies = [
  1530. "cipher 0.4.4",
  1531. ]
  1532. [[package]]
  1533. name = "ctrlc"
  1534. version = "3.4.1"
  1535. source = "registry+https://github.com/rust-lang/crates.io-index"
  1536. checksum = "82e95fbd621905b854affdc67943b043a0fbb6ed7385fd5a25650d19a8a6cfdf"
  1537. dependencies = [
  1538. "nix",
  1539. "windows-sys 0.48.0",
  1540. ]
  1541. [[package]]
  1542. name = "curl"
  1543. version = "0.4.44"
  1544. source = "registry+https://github.com/rust-lang/crates.io-index"
  1545. checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
  1546. dependencies = [
  1547. "curl-sys",
  1548. "libc",
  1549. "openssl-probe",
  1550. "openssl-sys",
  1551. "schannel",
  1552. "socket2 0.4.10",
  1553. "winapi",
  1554. ]
  1555. [[package]]
  1556. name = "curl-sys"
  1557. version = "0.4.70+curl-8.5.0"
  1558. source = "registry+https://github.com/rust-lang/crates.io-index"
  1559. checksum = "3c0333d8849afe78a4c8102a429a446bfdd055832af071945520e835ae2d841e"
  1560. dependencies = [
  1561. "cc",
  1562. "libc",
  1563. "libnghttp2-sys",
  1564. "libz-sys",
  1565. "openssl-sys",
  1566. "pkg-config",
  1567. "vcpkg",
  1568. "windows-sys 0.48.0",
  1569. ]
  1570. [[package]]
  1571. name = "curve25519-dalek"
  1572. version = "4.1.1"
  1573. source = "registry+https://github.com/rust-lang/crates.io-index"
  1574. checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
  1575. dependencies = [
  1576. "cfg-if 1.0.0",
  1577. "cpufeatures",
  1578. "curve25519-dalek-derive",
  1579. "digest 0.10.7",
  1580. "fiat-crypto",
  1581. "platforms",
  1582. "rustc_version 0.4.0",
  1583. "subtle",
  1584. "zeroize",
  1585. ]
  1586. [[package]]
  1587. name = "curve25519-dalek-derive"
  1588. version = "0.1.1"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1591. dependencies = [
  1592. "proc-macro2",
  1593. "quote",
  1594. "syn 2.0.41",
  1595. ]
  1596. [[package]]
  1597. name = "darkfi"
  1598. version = "0.4.1"
  1599. dependencies = [
  1600. "arti-client",
  1601. "async-recursion",
  1602. "async-rustls",
  1603. "async-trait",
  1604. "blake3 1.5.0",
  1605. "bs58",
  1606. "chrono",
  1607. "clap 4.4.11",
  1608. "crypto_api_chachapoly",
  1609. "darkfi-derive",
  1610. "darkfi-sdk",
  1611. "darkfi-serial",
  1612. "dashu",
  1613. "easy-parallel",
  1614. "ed25519-compact",
  1615. "futures",
  1616. "halo2_gadgets",
  1617. "halo2_proofs",
  1618. "lazy_static",
  1619. "libc",
  1620. "libsqlite3-sys",
  1621. "log",
  1622. "num-bigint",
  1623. "pin-project-lite 0.2.13",
  1624. "plotters",
  1625. "prettytable-rs",
  1626. "rand 0.8.5",
  1627. "randomx",
  1628. "rcgen",
  1629. "rusqlite",
  1630. "rustls-pemfile",
  1631. "semver 1.0.20",
  1632. "serde",
  1633. "simplelog",
  1634. "sled",
  1635. "sled-overlay",
  1636. "smol",
  1637. "socket2 0.5.5",
  1638. "structopt",
  1639. "structopt-toml",
  1640. "thiserror",
  1641. "tinyjson",
  1642. "toml 0.8.8",
  1643. "tor-error",
  1644. "tor-hscrypto",
  1645. "tor-rtcompat",
  1646. "url",
  1647. "wasmer",
  1648. "wasmer-compiler-singlepass",
  1649. "wasmer-middlewares",
  1650. "x509-parser",
  1651. ]
  1652. [[package]]
  1653. name = "darkfi-contract-test-harness"
  1654. version = "0.4.1"
  1655. dependencies = [
  1656. "blake3 1.5.0",
  1657. "bs58",
  1658. "darkfi",
  1659. "darkfi-sdk",
  1660. "darkfi-serial",
  1661. "darkfi_consensus_contract",
  1662. "darkfi_dao_contract",
  1663. "darkfi_deployooor_contract",
  1664. "darkfi_money_contract",
  1665. "log",
  1666. "rand 0.8.5",
  1667. "simplelog",
  1668. "sled",
  1669. ]
  1670. [[package]]
  1671. name = "darkfi-derive"
  1672. version = "0.4.1"
  1673. dependencies = [
  1674. "darkfi-derive-internal",
  1675. "proc-macro-crate 2.0.0",
  1676. "proc-macro2",
  1677. "quote",
  1678. "syn 2.0.41",
  1679. ]
  1680. [[package]]
  1681. name = "darkfi-derive-internal"
  1682. version = "0.4.1"
  1683. dependencies = [
  1684. "proc-macro2",
  1685. "quote",
  1686. "syn 2.0.41",
  1687. ]
  1688. [[package]]
  1689. name = "darkfi-mmproxy"
  1690. version = "0.4.1"
  1691. dependencies = [
  1692. "darkfi",
  1693. "darkfi-serial",
  1694. "easy-parallel",
  1695. "hex",
  1696. "log",
  1697. "monero",
  1698. "serde",
  1699. "signal-hook",
  1700. "signal-hook-async-std",
  1701. "simplelog",
  1702. "smol",
  1703. "structopt",
  1704. "structopt-toml",
  1705. "surf",
  1706. "tide",
  1707. "url",
  1708. ]
  1709. [[package]]
  1710. name = "darkfi-sdk"
  1711. version = "0.4.1"
  1712. dependencies = [
  1713. "blake2b_simd",
  1714. "blake3 1.5.0",
  1715. "bridgetree",
  1716. "bs58",
  1717. "chacha20poly1305",
  1718. "darkfi-serial",
  1719. "halo2_gadgets",
  1720. "halo2_proofs",
  1721. "lazy_static",
  1722. "num-bigint",
  1723. "num-traits",
  1724. "pasta_curves",
  1725. "rand 0.8.5",
  1726. "rand_core 0.6.4",
  1727. "sha2 0.10.8",
  1728. "subtle",
  1729. "thiserror",
  1730. ]
  1731. [[package]]
  1732. name = "darkfi-sdk-py"
  1733. version = "0.4.1"
  1734. dependencies = [
  1735. "darkfi",
  1736. "darkfi-sdk",
  1737. "halo2_gadgets",
  1738. "pyo3",
  1739. "rand 0.8.5",
  1740. ]
  1741. [[package]]
  1742. name = "darkfi-serial"
  1743. version = "0.4.1"
  1744. dependencies = [
  1745. "async-trait",
  1746. "blake3 1.5.0",
  1747. "bridgetree",
  1748. "darkfi-derive",
  1749. "futures-lite 2.1.0",
  1750. "pasta_curves",
  1751. "semver 1.0.20",
  1752. "url",
  1753. ]
  1754. [[package]]
  1755. name = "darkfi_consensus_contract"
  1756. version = "0.4.1"
  1757. dependencies = [
  1758. "blake3 1.5.0",
  1759. "bs58",
  1760. "chacha20poly1305",
  1761. "darkfi",
  1762. "darkfi-contract-test-harness",
  1763. "darkfi-sdk",
  1764. "darkfi-serial",
  1765. "darkfi_money_contract",
  1766. "getrandom 0.2.11",
  1767. "halo2_proofs",
  1768. "log",
  1769. "rand 0.8.5",
  1770. "simplelog",
  1771. "sled",
  1772. "smol",
  1773. "thiserror",
  1774. ]
  1775. [[package]]
  1776. name = "darkfi_dao_contract"
  1777. version = "0.4.1"
  1778. dependencies = [
  1779. "blake3 1.5.0",
  1780. "bs58",
  1781. "chacha20poly1305",
  1782. "darkfi",
  1783. "darkfi-contract-test-harness",
  1784. "darkfi-sdk",
  1785. "darkfi-serial",
  1786. "darkfi_money_contract",
  1787. "getrandom 0.2.11",
  1788. "halo2_proofs",
  1789. "log",
  1790. "rand 0.8.5",
  1791. "simplelog",
  1792. "sled",
  1793. "smol",
  1794. "thiserror",
  1795. ]
  1796. [[package]]
  1797. name = "darkfi_deployooor_contract"
  1798. version = "0.4.1"
  1799. dependencies = [
  1800. "async-trait",
  1801. "darkfi-sdk",
  1802. "darkfi-serial",
  1803. "getrandom 0.2.11",
  1804. "thiserror",
  1805. "wasmparser 0.118.1",
  1806. ]
  1807. [[package]]
  1808. name = "darkfi_money_contract"
  1809. version = "0.4.1"
  1810. dependencies = [
  1811. "blake3 1.5.0",
  1812. "bs58",
  1813. "chacha20poly1305",
  1814. "darkfi",
  1815. "darkfi-contract-test-harness",
  1816. "darkfi-sdk",
  1817. "darkfi-serial",
  1818. "getrandom 0.2.11",
  1819. "halo2_proofs",
  1820. "log",
  1821. "rand 0.8.5",
  1822. "simplelog",
  1823. "sled",
  1824. "smol",
  1825. "thiserror",
  1826. ]
  1827. [[package]]
  1828. name = "darkfid2"
  1829. version = "0.4.1"
  1830. dependencies = [
  1831. "async-trait",
  1832. "blake3 1.5.0",
  1833. "bs58",
  1834. "darkfi",
  1835. "darkfi-contract-test-harness",
  1836. "darkfi-sdk",
  1837. "darkfi-serial",
  1838. "darkfi_consensus_contract",
  1839. "darkfi_money_contract",
  1840. "easy-parallel",
  1841. "log",
  1842. "num-bigint",
  1843. "rand 0.8.5",
  1844. "serde",
  1845. "signal-hook",
  1846. "signal-hook-async-std",
  1847. "simplelog",
  1848. "sled",
  1849. "smol",
  1850. "structopt",
  1851. "structopt-toml",
  1852. "tinyjson",
  1853. "url",
  1854. ]
  1855. [[package]]
  1856. name = "darkirc"
  1857. version = "0.4.2"
  1858. dependencies = [
  1859. "async-rustls",
  1860. "async-trait",
  1861. "blake3 1.5.0",
  1862. "bs58",
  1863. "crypto_box",
  1864. "darkfi",
  1865. "darkfi-sdk",
  1866. "darkfi-serial",
  1867. "easy-parallel",
  1868. "futures",
  1869. "libc",
  1870. "log",
  1871. "rand 0.8.5",
  1872. "rustls-pemfile",
  1873. "serde",
  1874. "signal-hook",
  1875. "signal-hook-async-std",
  1876. "simplelog",
  1877. "sled",
  1878. "smol",
  1879. "structopt",
  1880. "structopt-toml",
  1881. "toml 0.8.8",
  1882. "url",
  1883. ]
  1884. [[package]]
  1885. name = "darling"
  1886. version = "0.10.2"
  1887. source = "registry+https://github.com/rust-lang/crates.io-index"
  1888. checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
  1889. dependencies = [
  1890. "darling_core 0.10.2",
  1891. "darling_macro 0.10.2",
  1892. ]
  1893. [[package]]
  1894. name = "darling"
  1895. version = "0.14.4"
  1896. source = "registry+https://github.com/rust-lang/crates.io-index"
  1897. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  1898. dependencies = [
  1899. "darling_core 0.14.4",
  1900. "darling_macro 0.14.4",
  1901. ]
  1902. [[package]]
  1903. name = "darling"
  1904. version = "0.20.3"
  1905. source = "registry+https://github.com/rust-lang/crates.io-index"
  1906. checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
  1907. dependencies = [
  1908. "darling_core 0.20.3",
  1909. "darling_macro 0.20.3",
  1910. ]
  1911. [[package]]
  1912. name = "darling_core"
  1913. version = "0.10.2"
  1914. source = "registry+https://github.com/rust-lang/crates.io-index"
  1915. checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
  1916. dependencies = [
  1917. "fnv",
  1918. "ident_case",
  1919. "proc-macro2",
  1920. "quote",
  1921. "strsim 0.9.3",
  1922. "syn 1.0.109",
  1923. ]
  1924. [[package]]
  1925. name = "darling_core"
  1926. version = "0.14.4"
  1927. source = "registry+https://github.com/rust-lang/crates.io-index"
  1928. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  1929. dependencies = [
  1930. "fnv",
  1931. "ident_case",
  1932. "proc-macro2",
  1933. "quote",
  1934. "strsim 0.10.0",
  1935. "syn 1.0.109",
  1936. ]
  1937. [[package]]
  1938. name = "darling_core"
  1939. version = "0.20.3"
  1940. source = "registry+https://github.com/rust-lang/crates.io-index"
  1941. checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
  1942. dependencies = [
  1943. "fnv",
  1944. "ident_case",
  1945. "proc-macro2",
  1946. "quote",
  1947. "strsim 0.10.0",
  1948. "syn 2.0.41",
  1949. ]
  1950. [[package]]
  1951. name = "darling_macro"
  1952. version = "0.10.2"
  1953. source = "registry+https://github.com/rust-lang/crates.io-index"
  1954. checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
  1955. dependencies = [
  1956. "darling_core 0.10.2",
  1957. "quote",
  1958. "syn 1.0.109",
  1959. ]
  1960. [[package]]
  1961. name = "darling_macro"
  1962. version = "0.14.4"
  1963. source = "registry+https://github.com/rust-lang/crates.io-index"
  1964. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  1965. dependencies = [
  1966. "darling_core 0.14.4",
  1967. "quote",
  1968. "syn 1.0.109",
  1969. ]
  1970. [[package]]
  1971. name = "darling_macro"
  1972. version = "0.20.3"
  1973. source = "registry+https://github.com/rust-lang/crates.io-index"
  1974. checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
  1975. dependencies = [
  1976. "darling_core 0.20.3",
  1977. "quote",
  1978. "syn 2.0.41",
  1979. ]
  1980. [[package]]
  1981. name = "dashmap"
  1982. version = "5.5.3"
  1983. source = "registry+https://github.com/rust-lang/crates.io-index"
  1984. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  1985. dependencies = [
  1986. "cfg-if 1.0.0",
  1987. "hashbrown 0.14.3",
  1988. "lock_api",
  1989. "once_cell",
  1990. "parking_lot_core 0.9.9",
  1991. ]
  1992. [[package]]
  1993. name = "dashu"
  1994. version = "0.4.0"
  1995. source = "registry+https://github.com/rust-lang/crates.io-index"
  1996. checksum = "0b669b1473cc6b33aba72ab3ddfe1055ff8fc28accd85130c412c2cd922a7c4e"
  1997. dependencies = [
  1998. "dashu-base",
  1999. "dashu-float",
  2000. "dashu-int",
  2001. "dashu-macros",
  2002. "dashu-ratio",
  2003. ]
  2004. [[package]]
  2005. name = "dashu-base"
  2006. version = "0.4.0"
  2007. source = "registry+https://github.com/rust-lang/crates.io-index"
  2008. checksum = "e183fc153511989674ede304b5592c74683393ca09cf20391898c28d6ba04264"
  2009. [[package]]
  2010. name = "dashu-float"
  2011. version = "0.4.0"
  2012. source = "registry+https://github.com/rust-lang/crates.io-index"
  2013. checksum = "a7696675af30ae057b1629d27b153bbafb06461826b7d0ef1858d06b801f355f"
  2014. dependencies = [
  2015. "dashu-base",
  2016. "dashu-int",
  2017. "num-modular",
  2018. "num-order",
  2019. "static_assertions",
  2020. ]
  2021. [[package]]
  2022. name = "dashu-int"
  2023. version = "0.4.0"
  2024. source = "registry+https://github.com/rust-lang/crates.io-index"
  2025. checksum = "cc257a884b3e8c9a1a577ff7226dcb4d6bda0ff96dfa76975e2c9d7205e3b8ea"
  2026. dependencies = [
  2027. "cfg-if 1.0.0",
  2028. "dashu-base",
  2029. "num-modular",
  2030. "num-order",
  2031. "static_assertions",
  2032. ]
  2033. [[package]]
  2034. name = "dashu-macros"
  2035. version = "0.4.0"
  2036. source = "registry+https://github.com/rust-lang/crates.io-index"
  2037. checksum = "e496c319e615b86b21d6b0ea9e2f96a4f5fb2eb4178293b04a51ffc30a6c3f54"
  2038. dependencies = [
  2039. "dashu-base",
  2040. "dashu-float",
  2041. "dashu-int",
  2042. "dashu-ratio",
  2043. "proc-macro2",
  2044. "quote",
  2045. ]
  2046. [[package]]
  2047. name = "dashu-ratio"
  2048. version = "0.4.0"
  2049. source = "registry+https://github.com/rust-lang/crates.io-index"
  2050. checksum = "0f0f73f0ad6cbc94f52306455603e307b065af83bc61101968d53b6870127a05"
  2051. dependencies = [
  2052. "dashu-base",
  2053. "dashu-float",
  2054. "dashu-int",
  2055. "num-modular",
  2056. "num-order",
  2057. ]
  2058. [[package]]
  2059. name = "data-encoding"
  2060. version = "2.5.0"
  2061. source = "registry+https://github.com/rust-lang/crates.io-index"
  2062. checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
  2063. [[package]]
  2064. name = "dchat"
  2065. version = "0.4.2"
  2066. dependencies = [
  2067. "async-trait",
  2068. "darkfi",
  2069. "darkfi-serial",
  2070. "easy-parallel",
  2071. "log",
  2072. "serde",
  2073. "signal-hook",
  2074. "signal-hook-async-std",
  2075. "simplelog",
  2076. "smol",
  2077. "structopt",
  2078. "structopt-toml",
  2079. "url",
  2080. ]
  2081. [[package]]
  2082. name = "dchatd"
  2083. version = "0.4.2"
  2084. dependencies = [
  2085. "async-trait",
  2086. "darkfi",
  2087. "darkfi-serial",
  2088. "easy-parallel",
  2089. "log",
  2090. "serde",
  2091. "signal-hook",
  2092. "signal-hook-async-std",
  2093. "simplelog",
  2094. "smol",
  2095. "structopt",
  2096. "structopt-toml",
  2097. "url",
  2098. ]
  2099. [[package]]
  2100. name = "der"
  2101. version = "0.7.8"
  2102. source = "registry+https://github.com/rust-lang/crates.io-index"
  2103. checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
  2104. dependencies = [
  2105. "const-oid",
  2106. "pem-rfc7468",
  2107. "zeroize",
  2108. ]
  2109. [[package]]
  2110. name = "der-parser"
  2111. version = "8.2.0"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e"
  2114. dependencies = [
  2115. "asn1-rs",
  2116. "displaydoc",
  2117. "nom",
  2118. "num-bigint",
  2119. "num-traits",
  2120. "rusticata-macros",
  2121. ]
  2122. [[package]]
  2123. name = "deranged"
  2124. version = "0.3.10"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc"
  2127. dependencies = [
  2128. "powerfmt",
  2129. "serde",
  2130. ]
  2131. [[package]]
  2132. name = "derivative"
  2133. version = "2.2.0"
  2134. source = "registry+https://github.com/rust-lang/crates.io-index"
  2135. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  2136. dependencies = [
  2137. "proc-macro2",
  2138. "quote",
  2139. "syn 1.0.109",
  2140. ]
  2141. [[package]]
  2142. name = "derive-adhoc"
  2143. version = "0.7.3"
  2144. source = "registry+https://github.com/rust-lang/crates.io-index"
  2145. checksum = "5283ac2881753c76c0892406705553f0d9ab30649f81e18964d3408f4501edb8"
  2146. dependencies = [
  2147. "derive-adhoc-macros",
  2148. "heck 0.4.1",
  2149. ]
  2150. [[package]]
  2151. name = "derive-adhoc-macros"
  2152. version = "0.7.3"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "c21b673a9b8c78c34908e6fcb42b922e11c4df2de5237f1c3f58d3285904a84b"
  2155. dependencies = [
  2156. "heck 0.4.1",
  2157. "itertools 0.11.0",
  2158. "proc-macro-crate 1.3.1",
  2159. "proc-macro2",
  2160. "quote",
  2161. "sha3",
  2162. "strum",
  2163. "syn 1.0.109",
  2164. "void",
  2165. ]
  2166. [[package]]
  2167. name = "derive_builder"
  2168. version = "0.9.0"
  2169. source = "registry+https://github.com/rust-lang/crates.io-index"
  2170. checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
  2171. dependencies = [
  2172. "darling 0.10.2",
  2173. "derive_builder_core",
  2174. "proc-macro2",
  2175. "quote",
  2176. "syn 1.0.109",
  2177. ]
  2178. [[package]]
  2179. name = "derive_builder_core"
  2180. version = "0.9.0"
  2181. source = "registry+https://github.com/rust-lang/crates.io-index"
  2182. checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
  2183. dependencies = [
  2184. "darling 0.10.2",
  2185. "proc-macro2",
  2186. "quote",
  2187. "syn 1.0.109",
  2188. ]
  2189. [[package]]
  2190. name = "derive_builder_core_fork_arti"
  2191. version = "0.11.2"
  2192. source = "registry+https://github.com/rust-lang/crates.io-index"
  2193. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  2194. dependencies = [
  2195. "darling 0.14.4",
  2196. "proc-macro2",
  2197. "quote",
  2198. "syn 1.0.109",
  2199. ]
  2200. [[package]]
  2201. name = "derive_builder_fork_arti"
  2202. version = "0.11.2"
  2203. source = "registry+https://github.com/rust-lang/crates.io-index"
  2204. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  2205. dependencies = [
  2206. "derive_builder_macro_fork_arti",
  2207. ]
  2208. [[package]]
  2209. name = "derive_builder_macro_fork_arti"
  2210. version = "0.11.2"
  2211. source = "registry+https://github.com/rust-lang/crates.io-index"
  2212. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  2213. dependencies = [
  2214. "derive_builder_core_fork_arti",
  2215. "syn 1.0.109",
  2216. ]
  2217. [[package]]
  2218. name = "derive_more"
  2219. version = "0.99.17"
  2220. source = "registry+https://github.com/rust-lang/crates.io-index"
  2221. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  2222. dependencies = [
  2223. "convert_case",
  2224. "proc-macro2",
  2225. "quote",
  2226. "rustc_version 0.4.0",
  2227. "syn 1.0.109",
  2228. ]
  2229. [[package]]
  2230. name = "digest"
  2231. version = "0.9.0"
  2232. source = "registry+https://github.com/rust-lang/crates.io-index"
  2233. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  2234. dependencies = [
  2235. "generic-array",
  2236. ]
  2237. [[package]]
  2238. name = "digest"
  2239. version = "0.10.7"
  2240. source = "registry+https://github.com/rust-lang/crates.io-index"
  2241. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  2242. dependencies = [
  2243. "block-buffer 0.10.4",
  2244. "const-oid",
  2245. "crypto-common",
  2246. "subtle",
  2247. ]
  2248. [[package]]
  2249. name = "directories"
  2250. version = "5.0.1"
  2251. source = "registry+https://github.com/rust-lang/crates.io-index"
  2252. checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
  2253. dependencies = [
  2254. "dirs-sys",
  2255. ]
  2256. [[package]]
  2257. name = "dirs"
  2258. version = "5.0.1"
  2259. source = "registry+https://github.com/rust-lang/crates.io-index"
  2260. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  2261. dependencies = [
  2262. "dirs-sys",
  2263. ]
  2264. [[package]]
  2265. name = "dirs-next"
  2266. version = "2.0.0"
  2267. source = "registry+https://github.com/rust-lang/crates.io-index"
  2268. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  2269. dependencies = [
  2270. "cfg-if 1.0.0",
  2271. "dirs-sys-next",
  2272. ]
  2273. [[package]]
  2274. name = "dirs-sys"
  2275. version = "0.4.1"
  2276. source = "registry+https://github.com/rust-lang/crates.io-index"
  2277. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  2278. dependencies = [
  2279. "libc",
  2280. "option-ext",
  2281. "redox_users",
  2282. "windows-sys 0.48.0",
  2283. ]
  2284. [[package]]
  2285. name = "dirs-sys-next"
  2286. version = "0.1.2"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  2289. dependencies = [
  2290. "libc",
  2291. "redox_users",
  2292. "winapi",
  2293. ]
  2294. [[package]]
  2295. name = "discard"
  2296. version = "1.0.4"
  2297. source = "registry+https://github.com/rust-lang/crates.io-index"
  2298. checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
  2299. [[package]]
  2300. name = "displaydoc"
  2301. version = "0.2.4"
  2302. source = "registry+https://github.com/rust-lang/crates.io-index"
  2303. checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
  2304. dependencies = [
  2305. "proc-macro2",
  2306. "quote",
  2307. "syn 2.0.41",
  2308. ]
  2309. [[package]]
  2310. name = "dlib"
  2311. version = "0.5.2"
  2312. source = "registry+https://github.com/rust-lang/crates.io-index"
  2313. checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
  2314. dependencies = [
  2315. "libloading 0.8.1",
  2316. ]
  2317. [[package]]
  2318. name = "downcast-rs"
  2319. version = "1.2.0"
  2320. source = "registry+https://github.com/rust-lang/crates.io-index"
  2321. checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
  2322. [[package]]
  2323. name = "dwrote"
  2324. version = "0.11.0"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b"
  2327. dependencies = [
  2328. "lazy_static",
  2329. "libc",
  2330. "winapi",
  2331. "wio",
  2332. ]
  2333. [[package]]
  2334. name = "dyn-clone"
  2335. version = "1.0.16"
  2336. source = "registry+https://github.com/rust-lang/crates.io-index"
  2337. checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
  2338. [[package]]
  2339. name = "dynasm"
  2340. version = "1.2.3"
  2341. source = "registry+https://github.com/rust-lang/crates.io-index"
  2342. checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
  2343. dependencies = [
  2344. "bitflags 1.3.2",
  2345. "byteorder",
  2346. "lazy_static",
  2347. "proc-macro-error",
  2348. "proc-macro2",
  2349. "quote",
  2350. "syn 1.0.109",
  2351. ]
  2352. [[package]]
  2353. name = "dynasmrt"
  2354. version = "1.2.3"
  2355. source = "registry+https://github.com/rust-lang/crates.io-index"
  2356. checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
  2357. dependencies = [
  2358. "byteorder",
  2359. "dynasm",
  2360. "memmap2 0.5.10",
  2361. ]
  2362. [[package]]
  2363. name = "easy-parallel"
  2364. version = "3.3.1"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  2367. [[package]]
  2368. name = "ecdsa"
  2369. version = "0.16.9"
  2370. source = "registry+https://github.com/rust-lang/crates.io-index"
  2371. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  2372. dependencies = [
  2373. "der",
  2374. "digest 0.10.7",
  2375. "elliptic-curve",
  2376. "rfc6979",
  2377. "signature 2.2.0",
  2378. "spki",
  2379. ]
  2380. [[package]]
  2381. name = "ed25519"
  2382. version = "2.2.3"
  2383. source = "registry+https://github.com/rust-lang/crates.io-index"
  2384. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  2385. dependencies = [
  2386. "pkcs8",
  2387. "signature 2.2.0",
  2388. ]
  2389. [[package]]
  2390. name = "ed25519-compact"
  2391. version = "2.0.4"
  2392. source = "registry+https://github.com/rust-lang/crates.io-index"
  2393. checksum = "6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c"
  2394. dependencies = [
  2395. "ct-codecs",
  2396. "getrandom 0.2.11",
  2397. ]
  2398. [[package]]
  2399. name = "ed25519-dalek"
  2400. version = "2.1.0"
  2401. source = "registry+https://github.com/rust-lang/crates.io-index"
  2402. checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0"
  2403. dependencies = [
  2404. "curve25519-dalek",
  2405. "ed25519",
  2406. "merlin",
  2407. "rand_core 0.6.4",
  2408. "serde",
  2409. "sha2 0.10.8",
  2410. "subtle",
  2411. "zeroize",
  2412. ]
  2413. [[package]]
  2414. name = "educe"
  2415. version = "0.4.23"
  2416. source = "registry+https://github.com/rust-lang/crates.io-index"
  2417. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  2418. dependencies = [
  2419. "enum-ordinalize",
  2420. "proc-macro2",
  2421. "quote",
  2422. "syn 1.0.109",
  2423. ]
  2424. [[package]]
  2425. name = "either"
  2426. version = "1.9.0"
  2427. source = "registry+https://github.com/rust-lang/crates.io-index"
  2428. checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
  2429. [[package]]
  2430. name = "elliptic-curve"
  2431. version = "0.13.8"
  2432. source = "registry+https://github.com/rust-lang/crates.io-index"
  2433. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  2434. dependencies = [
  2435. "base16ct",
  2436. "crypto-bigint",
  2437. "digest 0.10.7",
  2438. "ff",
  2439. "generic-array",
  2440. "group",
  2441. "pkcs8",
  2442. "rand_core 0.6.4",
  2443. "sec1",
  2444. "subtle",
  2445. "zeroize",
  2446. ]
  2447. [[package]]
  2448. name = "encode_unicode"
  2449. version = "1.0.0"
  2450. source = "registry+https://github.com/rust-lang/crates.io-index"
  2451. checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
  2452. [[package]]
  2453. name = "encoding_rs"
  2454. version = "0.8.33"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
  2457. dependencies = [
  2458. "cfg-if 1.0.0",
  2459. ]
  2460. [[package]]
  2461. name = "enum-iterator"
  2462. version = "0.7.0"
  2463. source = "registry+https://github.com/rust-lang/crates.io-index"
  2464. checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
  2465. dependencies = [
  2466. "enum-iterator-derive",
  2467. ]
  2468. [[package]]
  2469. name = "enum-iterator-derive"
  2470. version = "0.7.0"
  2471. source = "registry+https://github.com/rust-lang/crates.io-index"
  2472. checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
  2473. dependencies = [
  2474. "proc-macro2",
  2475. "quote",
  2476. "syn 1.0.109",
  2477. ]
  2478. [[package]]
  2479. name = "enum-ordinalize"
  2480. version = "3.1.15"
  2481. source = "registry+https://github.com/rust-lang/crates.io-index"
  2482. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  2483. dependencies = [
  2484. "num-bigint",
  2485. "num-traits",
  2486. "proc-macro2",
  2487. "quote",
  2488. "syn 2.0.41",
  2489. ]
  2490. [[package]]
  2491. name = "enumset"
  2492. version = "1.1.3"
  2493. source = "registry+https://github.com/rust-lang/crates.io-index"
  2494. checksum = "226c0da7462c13fb57e5cc9e0dc8f0635e7d27f276a3a7fd30054647f669007d"
  2495. dependencies = [
  2496. "enumset_derive",
  2497. ]
  2498. [[package]]
  2499. name = "enumset_derive"
  2500. version = "0.8.1"
  2501. source = "registry+https://github.com/rust-lang/crates.io-index"
  2502. checksum = "e08b6c6ab82d70f08844964ba10c7babb716de2ecaeab9be5717918a5177d3af"
  2503. dependencies = [
  2504. "darling 0.20.3",
  2505. "proc-macro2",
  2506. "quote",
  2507. "syn 2.0.41",
  2508. ]
  2509. [[package]]
  2510. name = "equivalent"
  2511. version = "1.0.1"
  2512. source = "registry+https://github.com/rust-lang/crates.io-index"
  2513. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  2514. [[package]]
  2515. name = "erased-serde"
  2516. version = "0.3.31"
  2517. source = "registry+https://github.com/rust-lang/crates.io-index"
  2518. checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
  2519. dependencies = [
  2520. "serde",
  2521. ]
  2522. [[package]]
  2523. name = "errno"
  2524. version = "0.3.8"
  2525. source = "registry+https://github.com/rust-lang/crates.io-index"
  2526. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  2527. dependencies = [
  2528. "libc",
  2529. "windows-sys 0.52.0",
  2530. ]
  2531. [[package]]
  2532. name = "error-chain"
  2533. version = "0.12.4"
  2534. source = "registry+https://github.com/rust-lang/crates.io-index"
  2535. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  2536. dependencies = [
  2537. "version_check",
  2538. ]
  2539. [[package]]
  2540. name = "event-listener"
  2541. version = "2.5.3"
  2542. source = "registry+https://github.com/rust-lang/crates.io-index"
  2543. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  2544. [[package]]
  2545. name = "event-listener"
  2546. version = "3.1.0"
  2547. source = "registry+https://github.com/rust-lang/crates.io-index"
  2548. checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
  2549. dependencies = [
  2550. "concurrent-queue",
  2551. "parking",
  2552. "pin-project-lite 0.2.13",
  2553. ]
  2554. [[package]]
  2555. name = "event-listener"
  2556. version = "4.0.0"
  2557. source = "registry+https://github.com/rust-lang/crates.io-index"
  2558. checksum = "770d968249b5d99410d61f5bf89057f3199a077a04d087092f58e7d10692baae"
  2559. dependencies = [
  2560. "concurrent-queue",
  2561. "parking",
  2562. "pin-project-lite 0.2.13",
  2563. ]
  2564. [[package]]
  2565. name = "event-listener-strategy"
  2566. version = "0.4.0"
  2567. source = "registry+https://github.com/rust-lang/crates.io-index"
  2568. checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
  2569. dependencies = [
  2570. "event-listener 4.0.0",
  2571. "pin-project-lite 0.2.13",
  2572. ]
  2573. [[package]]
  2574. name = "fallible-iterator"
  2575. version = "0.2.0"
  2576. source = "registry+https://github.com/rust-lang/crates.io-index"
  2577. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  2578. [[package]]
  2579. name = "fallible-iterator"
  2580. version = "0.3.0"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  2583. [[package]]
  2584. name = "fallible-streaming-iterator"
  2585. version = "0.1.9"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  2588. [[package]]
  2589. name = "fastrand"
  2590. version = "1.9.0"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  2593. dependencies = [
  2594. "instant",
  2595. ]
  2596. [[package]]
  2597. name = "fastrand"
  2598. version = "2.0.1"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
  2601. [[package]]
  2602. name = "fdeflate"
  2603. version = "0.3.1"
  2604. source = "registry+https://github.com/rust-lang/crates.io-index"
  2605. checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868"
  2606. dependencies = [
  2607. "simd-adler32",
  2608. ]
  2609. [[package]]
  2610. name = "femme"
  2611. version = "2.2.1"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "cc04871e5ae3aa2952d552dae6b291b3099723bf779a8054281c1366a54613ef"
  2614. dependencies = [
  2615. "cfg-if 1.0.0",
  2616. "js-sys",
  2617. "log",
  2618. "serde",
  2619. "serde_derive",
  2620. "serde_json",
  2621. "wasm-bindgen",
  2622. "web-sys",
  2623. ]
  2624. [[package]]
  2625. name = "ff"
  2626. version = "0.13.0"
  2627. source = "registry+https://github.com/rust-lang/crates.io-index"
  2628. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  2629. dependencies = [
  2630. "bitvec",
  2631. "rand_core 0.6.4",
  2632. "subtle",
  2633. ]
  2634. [[package]]
  2635. name = "fiat-crypto"
  2636. version = "0.2.5"
  2637. source = "registry+https://github.com/rust-lang/crates.io-index"
  2638. checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7"
  2639. [[package]]
  2640. name = "fixed-hash"
  2641. version = "0.8.0"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  2644. dependencies = [
  2645. "byteorder",
  2646. "rand 0.8.5",
  2647. "rustc-hex",
  2648. "static_assertions",
  2649. ]
  2650. [[package]]
  2651. name = "flate2"
  2652. version = "1.0.28"
  2653. source = "registry+https://github.com/rust-lang/crates.io-index"
  2654. checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
  2655. dependencies = [
  2656. "crc32fast",
  2657. "miniz_oxide",
  2658. ]
  2659. [[package]]
  2660. name = "float-ord"
  2661. version = "0.2.0"
  2662. source = "registry+https://github.com/rust-lang/crates.io-index"
  2663. checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
  2664. [[package]]
  2665. name = "fluid-let"
  2666. version = "1.0.0"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  2669. [[package]]
  2670. name = "flume"
  2671. version = "0.9.2"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132"
  2674. dependencies = [
  2675. "futures-core",
  2676. "futures-sink",
  2677. "spinning_top",
  2678. ]
  2679. [[package]]
  2680. name = "fnv"
  2681. version = "1.0.7"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2684. [[package]]
  2685. name = "font-kit"
  2686. version = "0.11.0"
  2687. source = "registry+https://github.com/rust-lang/crates.io-index"
  2688. checksum = "21fe28504d371085fae9ac7a3450f0b289ab71e07c8e57baa3fb68b9e57d6ce5"
  2689. dependencies = [
  2690. "bitflags 1.3.2",
  2691. "byteorder",
  2692. "core-foundation",
  2693. "core-graphics",
  2694. "core-text",
  2695. "dirs-next",
  2696. "dwrote",
  2697. "float-ord",
  2698. "freetype",
  2699. "lazy_static",
  2700. "libc",
  2701. "log",
  2702. "pathfinder_geometry",
  2703. "pathfinder_simd",
  2704. "walkdir",
  2705. "winapi",
  2706. "yeslogic-fontconfig-sys",
  2707. ]
  2708. [[package]]
  2709. name = "foreign-types"
  2710. version = "0.3.2"
  2711. source = "registry+https://github.com/rust-lang/crates.io-index"
  2712. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  2713. dependencies = [
  2714. "foreign-types-shared",
  2715. ]
  2716. [[package]]
  2717. name = "foreign-types-shared"
  2718. version = "0.1.1"
  2719. source = "registry+https://github.com/rust-lang/crates.io-index"
  2720. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  2721. [[package]]
  2722. name = "form_urlencoded"
  2723. version = "1.2.1"
  2724. source = "registry+https://github.com/rust-lang/crates.io-index"
  2725. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  2726. dependencies = [
  2727. "percent-encoding",
  2728. ]
  2729. [[package]]
  2730. name = "freetype"
  2731. version = "0.7.0"
  2732. source = "registry+https://github.com/rust-lang/crates.io-index"
  2733. checksum = "bee38378a9e3db1cc693b4f88d166ae375338a0ff75cb8263e1c601d51f35dc6"
  2734. dependencies = [
  2735. "freetype-sys",
  2736. "libc",
  2737. ]
  2738. [[package]]
  2739. name = "freetype-sys"
  2740. version = "0.13.1"
  2741. source = "registry+https://github.com/rust-lang/crates.io-index"
  2742. checksum = "a37d4011c0cc628dfa766fcc195454f4b068d7afdc2adfd28861191d866e731a"
  2743. dependencies = [
  2744. "cmake",
  2745. "libc",
  2746. "pkg-config",
  2747. ]
  2748. [[package]]
  2749. name = "fs-mistrust"
  2750. version = "0.7.5"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "d56cf38399669a80f0bc5fa9289985301cb947db12ff9471d58a87029dde0bad"
  2753. dependencies = [
  2754. "derive_builder_fork_arti",
  2755. "dirs",
  2756. "educe",
  2757. "libc",
  2758. "once_cell",
  2759. "pwd-grp",
  2760. "serde",
  2761. "thiserror",
  2762. "walkdir",
  2763. ]
  2764. [[package]]
  2765. name = "fs2"
  2766. version = "0.4.3"
  2767. source = "registry+https://github.com/rust-lang/crates.io-index"
  2768. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  2769. dependencies = [
  2770. "libc",
  2771. "winapi",
  2772. ]
  2773. [[package]]
  2774. name = "fslock"
  2775. version = "0.2.1"
  2776. source = "registry+https://github.com/rust-lang/crates.io-index"
  2777. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  2778. dependencies = [
  2779. "libc",
  2780. "winapi",
  2781. ]
  2782. [[package]]
  2783. name = "funty"
  2784. version = "2.0.0"
  2785. source = "registry+https://github.com/rust-lang/crates.io-index"
  2786. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2787. [[package]]
  2788. name = "futures"
  2789. version = "0.3.29"
  2790. source = "registry+https://github.com/rust-lang/crates.io-index"
  2791. checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
  2792. dependencies = [
  2793. "futures-channel",
  2794. "futures-core",
  2795. "futures-executor",
  2796. "futures-io",
  2797. "futures-sink",
  2798. "futures-task",
  2799. "futures-util",
  2800. ]
  2801. [[package]]
  2802. name = "futures-channel"
  2803. version = "0.3.29"
  2804. source = "registry+https://github.com/rust-lang/crates.io-index"
  2805. checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
  2806. dependencies = [
  2807. "futures-core",
  2808. "futures-sink",
  2809. ]
  2810. [[package]]
  2811. name = "futures-core"
  2812. version = "0.3.29"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
  2815. [[package]]
  2816. name = "futures-executor"
  2817. version = "0.3.29"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
  2820. dependencies = [
  2821. "futures-core",
  2822. "futures-task",
  2823. "futures-util",
  2824. ]
  2825. [[package]]
  2826. name = "futures-io"
  2827. version = "0.3.29"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
  2830. [[package]]
  2831. name = "futures-lite"
  2832. version = "1.13.0"
  2833. source = "registry+https://github.com/rust-lang/crates.io-index"
  2834. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  2835. dependencies = [
  2836. "fastrand 1.9.0",
  2837. "futures-core",
  2838. "futures-io",
  2839. "memchr",
  2840. "parking",
  2841. "pin-project-lite 0.2.13",
  2842. "waker-fn",
  2843. ]
  2844. [[package]]
  2845. name = "futures-lite"
  2846. version = "2.1.0"
  2847. source = "registry+https://github.com/rust-lang/crates.io-index"
  2848. checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
  2849. dependencies = [
  2850. "fastrand 2.0.1",
  2851. "futures-core",
  2852. "futures-io",
  2853. "parking",
  2854. "pin-project-lite 0.2.13",
  2855. ]
  2856. [[package]]
  2857. name = "futures-macro"
  2858. version = "0.3.29"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
  2861. dependencies = [
  2862. "proc-macro2",
  2863. "quote",
  2864. "syn 2.0.41",
  2865. ]
  2866. [[package]]
  2867. name = "futures-sink"
  2868. version = "0.3.29"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
  2871. [[package]]
  2872. name = "futures-task"
  2873. version = "0.3.29"
  2874. source = "registry+https://github.com/rust-lang/crates.io-index"
  2875. checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
  2876. [[package]]
  2877. name = "futures-util"
  2878. version = "0.3.29"
  2879. source = "registry+https://github.com/rust-lang/crates.io-index"
  2880. checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
  2881. dependencies = [
  2882. "futures-channel",
  2883. "futures-core",
  2884. "futures-io",
  2885. "futures-macro",
  2886. "futures-sink",
  2887. "futures-task",
  2888. "memchr",
  2889. "pin-project-lite 0.2.13",
  2890. "pin-utils",
  2891. "slab",
  2892. ]
  2893. [[package]]
  2894. name = "fxhash"
  2895. version = "0.2.1"
  2896. source = "registry+https://github.com/rust-lang/crates.io-index"
  2897. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2898. dependencies = [
  2899. "byteorder",
  2900. ]
  2901. [[package]]
  2902. name = "generic-array"
  2903. version = "0.14.7"
  2904. source = "registry+https://github.com/rust-lang/crates.io-index"
  2905. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2906. dependencies = [
  2907. "typenum",
  2908. "version_check",
  2909. "zeroize",
  2910. ]
  2911. [[package]]
  2912. name = "genev"
  2913. version = "0.4.1"
  2914. dependencies = [
  2915. "clap 4.4.11",
  2916. "darkfi",
  2917. "darkfi-serial",
  2918. "genevd",
  2919. "log",
  2920. "simplelog",
  2921. "smol",
  2922. "tinyjson",
  2923. "url",
  2924. ]
  2925. [[package]]
  2926. name = "genevd"
  2927. version = "0.4.1"
  2928. dependencies = [
  2929. "async-trait",
  2930. "blake3 1.5.0",
  2931. "darkfi",
  2932. "darkfi-serial",
  2933. "easy-parallel",
  2934. "log",
  2935. "serde",
  2936. "signal-hook",
  2937. "signal-hook-async-std",
  2938. "simplelog",
  2939. "sled",
  2940. "smol",
  2941. "structopt",
  2942. "structopt-toml",
  2943. "tinyjson",
  2944. "url",
  2945. ]
  2946. [[package]]
  2947. name = "getrandom"
  2948. version = "0.1.16"
  2949. source = "registry+https://github.com/rust-lang/crates.io-index"
  2950. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  2951. dependencies = [
  2952. "cfg-if 1.0.0",
  2953. "libc",
  2954. "wasi 0.9.0+wasi-snapshot-preview1",
  2955. ]
  2956. [[package]]
  2957. name = "getrandom"
  2958. version = "0.2.11"
  2959. source = "registry+https://github.com/rust-lang/crates.io-index"
  2960. checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
  2961. dependencies = [
  2962. "cfg-if 1.0.0",
  2963. "js-sys",
  2964. "libc",
  2965. "wasi 0.11.0+wasi-snapshot-preview1",
  2966. "wasm-bindgen",
  2967. ]
  2968. [[package]]
  2969. name = "ghash"
  2970. version = "0.3.1"
  2971. source = "registry+https://github.com/rust-lang/crates.io-index"
  2972. checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
  2973. dependencies = [
  2974. "opaque-debug",
  2975. "polyval",
  2976. ]
  2977. [[package]]
  2978. name = "gif"
  2979. version = "0.12.0"
  2980. source = "registry+https://github.com/rust-lang/crates.io-index"
  2981. checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
  2982. dependencies = [
  2983. "color_quant",
  2984. "weezl",
  2985. ]
  2986. [[package]]
  2987. name = "gimli"
  2988. version = "0.26.2"
  2989. source = "registry+https://github.com/rust-lang/crates.io-index"
  2990. checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
  2991. dependencies = [
  2992. "fallible-iterator 0.2.0",
  2993. "indexmap 1.9.3",
  2994. "stable_deref_trait",
  2995. ]
  2996. [[package]]
  2997. name = "gimli"
  2998. version = "0.28.1"
  2999. source = "registry+https://github.com/rust-lang/crates.io-index"
  3000. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  3001. [[package]]
  3002. name = "glob"
  3003. version = "0.3.1"
  3004. source = "registry+https://github.com/rust-lang/crates.io-index"
  3005. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  3006. [[package]]
  3007. name = "glob-match"
  3008. version = "0.2.1"
  3009. source = "registry+https://github.com/rust-lang/crates.io-index"
  3010. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  3011. [[package]]
  3012. name = "gloo-timers"
  3013. version = "0.2.6"
  3014. source = "registry+https://github.com/rust-lang/crates.io-index"
  3015. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  3016. dependencies = [
  3017. "futures-channel",
  3018. "futures-core",
  3019. "js-sys",
  3020. "wasm-bindgen",
  3021. ]
  3022. [[package]]
  3023. name = "group"
  3024. version = "0.13.0"
  3025. source = "registry+https://github.com/rust-lang/crates.io-index"
  3026. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  3027. dependencies = [
  3028. "ff",
  3029. "rand_core 0.6.4",
  3030. "subtle",
  3031. ]
  3032. [[package]]
  3033. name = "halo2_gadgets"
  3034. version = "0.3.0"
  3035. source = "git+https://github.com/parazyd/halo2?branch=v4#397c77cf97e30587d4cdc9676679c6def268daca"
  3036. dependencies = [
  3037. "arrayvec 0.7.4",
  3038. "bitvec",
  3039. "ff",
  3040. "group",
  3041. "halo2_proofs",
  3042. "lazy_static",
  3043. "pasta_curves",
  3044. "proptest",
  3045. "rand 0.8.5",
  3046. "subtle",
  3047. "uint",
  3048. ]
  3049. [[package]]
  3050. name = "halo2_proofs"
  3051. version = "0.3.0"
  3052. source = "git+https://github.com/parazyd/halo2?branch=v4#397c77cf97e30587d4cdc9676679c6def268daca"
  3053. dependencies = [
  3054. "blake2b_simd",
  3055. "ff",
  3056. "group",
  3057. "maybe-rayon",
  3058. "pasta_curves",
  3059. "plotters",
  3060. "rand_core 0.6.4",
  3061. "tabbycat",
  3062. "tracing",
  3063. ]
  3064. [[package]]
  3065. name = "hashbrown"
  3066. version = "0.12.3"
  3067. source = "registry+https://github.com/rust-lang/crates.io-index"
  3068. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  3069. dependencies = [
  3070. "ahash 0.7.7",
  3071. ]
  3072. [[package]]
  3073. name = "hashbrown"
  3074. version = "0.14.3"
  3075. source = "registry+https://github.com/rust-lang/crates.io-index"
  3076. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  3077. dependencies = [
  3078. "ahash 0.8.6",
  3079. "allocator-api2",
  3080. ]
  3081. [[package]]
  3082. name = "hashlink"
  3083. version = "0.8.4"
  3084. source = "registry+https://github.com/rust-lang/crates.io-index"
  3085. checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
  3086. dependencies = [
  3087. "hashbrown 0.14.3",
  3088. ]
  3089. [[package]]
  3090. name = "heck"
  3091. version = "0.3.3"
  3092. source = "registry+https://github.com/rust-lang/crates.io-index"
  3093. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  3094. dependencies = [
  3095. "unicode-segmentation",
  3096. ]
  3097. [[package]]
  3098. name = "heck"
  3099. version = "0.4.1"
  3100. source = "registry+https://github.com/rust-lang/crates.io-index"
  3101. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  3102. [[package]]
  3103. name = "hermit-abi"
  3104. version = "0.1.19"
  3105. source = "registry+https://github.com/rust-lang/crates.io-index"
  3106. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  3107. dependencies = [
  3108. "libc",
  3109. ]
  3110. [[package]]
  3111. name = "hermit-abi"
  3112. version = "0.3.3"
  3113. source = "registry+https://github.com/rust-lang/crates.io-index"
  3114. checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
  3115. [[package]]
  3116. name = "hex"
  3117. version = "0.4.3"
  3118. source = "registry+https://github.com/rust-lang/crates.io-index"
  3119. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  3120. [[package]]
  3121. name = "hex-literal"
  3122. version = "0.4.1"
  3123. source = "registry+https://github.com/rust-lang/crates.io-index"
  3124. checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
  3125. [[package]]
  3126. name = "hkdf"
  3127. version = "0.10.0"
  3128. source = "registry+https://github.com/rust-lang/crates.io-index"
  3129. checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
  3130. dependencies = [
  3131. "digest 0.9.0",
  3132. "hmac 0.10.1",
  3133. ]
  3134. [[package]]
  3135. name = "hkdf"
  3136. version = "0.12.3"
  3137. source = "registry+https://github.com/rust-lang/crates.io-index"
  3138. checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
  3139. dependencies = [
  3140. "hmac 0.12.1",
  3141. ]
  3142. [[package]]
  3143. name = "hmac"
  3144. version = "0.10.1"
  3145. source = "registry+https://github.com/rust-lang/crates.io-index"
  3146. checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
  3147. dependencies = [
  3148. "crypto-mac 0.10.0",
  3149. "digest 0.9.0",
  3150. ]
  3151. [[package]]
  3152. name = "hmac"
  3153. version = "0.11.0"
  3154. source = "registry+https://github.com/rust-lang/crates.io-index"
  3155. checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
  3156. dependencies = [
  3157. "crypto-mac 0.11.0",
  3158. "digest 0.9.0",
  3159. ]
  3160. [[package]]
  3161. name = "hmac"
  3162. version = "0.12.1"
  3163. source = "registry+https://github.com/rust-lang/crates.io-index"
  3164. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  3165. dependencies = [
  3166. "digest 0.10.7",
  3167. ]
  3168. [[package]]
  3169. name = "home"
  3170. version = "0.5.5"
  3171. source = "registry+https://github.com/rust-lang/crates.io-index"
  3172. checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
  3173. dependencies = [
  3174. "windows-sys 0.48.0",
  3175. ]
  3176. [[package]]
  3177. name = "hostname-validator"
  3178. version = "1.1.1"
  3179. source = "registry+https://github.com/rust-lang/crates.io-index"
  3180. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  3181. [[package]]
  3182. name = "http"
  3183. version = "0.2.11"
  3184. source = "registry+https://github.com/rust-lang/crates.io-index"
  3185. checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
  3186. dependencies = [
  3187. "bytes 1.5.0",
  3188. "fnv",
  3189. "itoa",
  3190. ]
  3191. [[package]]
  3192. name = "http"
  3193. version = "1.0.0"
  3194. source = "registry+https://github.com/rust-lang/crates.io-index"
  3195. checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
  3196. dependencies = [
  3197. "bytes 1.5.0",
  3198. "fnv",
  3199. "itoa",
  3200. ]
  3201. [[package]]
  3202. name = "http-client"
  3203. version = "6.5.3"
  3204. source = "registry+https://github.com/rust-lang/crates.io-index"
  3205. checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
  3206. dependencies = [
  3207. "async-std",
  3208. "async-trait",
  3209. "cfg-if 1.0.0",
  3210. "http-types",
  3211. "isahc",
  3212. "log",
  3213. ]
  3214. [[package]]
  3215. name = "http-types"
  3216. version = "2.12.0"
  3217. source = "registry+https://github.com/rust-lang/crates.io-index"
  3218. checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
  3219. dependencies = [
  3220. "anyhow",
  3221. "async-channel 1.9.0",
  3222. "async-std",
  3223. "base64 0.13.1",
  3224. "cookie",
  3225. "futures-lite 1.13.0",
  3226. "infer",
  3227. "pin-project-lite 0.2.13",
  3228. "rand 0.7.3",
  3229. "serde",
  3230. "serde_json",
  3231. "serde_qs",
  3232. "serde_urlencoded",
  3233. "url",
  3234. ]
  3235. [[package]]
  3236. name = "httparse"
  3237. version = "1.8.0"
  3238. source = "registry+https://github.com/rust-lang/crates.io-index"
  3239. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  3240. [[package]]
  3241. name = "httpdate"
  3242. version = "1.0.3"
  3243. source = "registry+https://github.com/rust-lang/crates.io-index"
  3244. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  3245. [[package]]
  3246. name = "humantime"
  3247. version = "2.1.0"
  3248. source = "registry+https://github.com/rust-lang/crates.io-index"
  3249. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  3250. [[package]]
  3251. name = "humantime-serde"
  3252. version = "1.1.1"
  3253. source = "registry+https://github.com/rust-lang/crates.io-index"
  3254. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  3255. dependencies = [
  3256. "humantime",
  3257. "serde",
  3258. ]
  3259. [[package]]
  3260. name = "iana-time-zone"
  3261. version = "0.1.58"
  3262. source = "registry+https://github.com/rust-lang/crates.io-index"
  3263. checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
  3264. dependencies = [
  3265. "android_system_properties",
  3266. "core-foundation-sys",
  3267. "iana-time-zone-haiku",
  3268. "js-sys",
  3269. "wasm-bindgen",
  3270. "windows-core",
  3271. ]
  3272. [[package]]
  3273. name = "iana-time-zone-haiku"
  3274. version = "0.1.2"
  3275. source = "registry+https://github.com/rust-lang/crates.io-index"
  3276. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3277. dependencies = [
  3278. "cc",
  3279. ]
  3280. [[package]]
  3281. name = "ident_case"
  3282. version = "1.0.1"
  3283. source = "registry+https://github.com/rust-lang/crates.io-index"
  3284. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3285. [[package]]
  3286. name = "idna"
  3287. version = "0.5.0"
  3288. source = "registry+https://github.com/rust-lang/crates.io-index"
  3289. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  3290. dependencies = [
  3291. "unicode-bidi",
  3292. "unicode-normalization",
  3293. ]
  3294. [[package]]
  3295. name = "image"
  3296. version = "0.24.7"
  3297. source = "registry+https://github.com/rust-lang/crates.io-index"
  3298. checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
  3299. dependencies = [
  3300. "bytemuck",
  3301. "byteorder",
  3302. "color_quant",
  3303. "jpeg-decoder",
  3304. "num-rational",
  3305. "num-traits",
  3306. "png",
  3307. ]
  3308. [[package]]
  3309. name = "incrementalmerkletree"
  3310. version = "0.5.0"
  3311. source = "registry+https://github.com/rust-lang/crates.io-index"
  3312. checksum = "361c467824d4d9d4f284be4b2608800839419dccc4d4608f28345237fe354623"
  3313. dependencies = [
  3314. "either",
  3315. ]
  3316. [[package]]
  3317. name = "indexmap"
  3318. version = "1.9.3"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3321. dependencies = [
  3322. "autocfg",
  3323. "hashbrown 0.12.3",
  3324. "serde",
  3325. ]
  3326. [[package]]
  3327. name = "indexmap"
  3328. version = "2.1.0"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
  3331. dependencies = [
  3332. "equivalent",
  3333. "hashbrown 0.14.3",
  3334. "serde",
  3335. ]
  3336. [[package]]
  3337. name = "indoc"
  3338. version = "2.0.4"
  3339. source = "registry+https://github.com/rust-lang/crates.io-index"
  3340. checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
  3341. [[package]]
  3342. name = "infer"
  3343. version = "0.2.3"
  3344. source = "registry+https://github.com/rust-lang/crates.io-index"
  3345. checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
  3346. [[package]]
  3347. name = "inout"
  3348. version = "0.1.3"
  3349. source = "registry+https://github.com/rust-lang/crates.io-index"
  3350. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  3351. dependencies = [
  3352. "generic-array",
  3353. ]
  3354. [[package]]
  3355. name = "instant"
  3356. version = "0.1.12"
  3357. source = "registry+https://github.com/rust-lang/crates.io-index"
  3358. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  3359. dependencies = [
  3360. "cfg-if 1.0.0",
  3361. ]
  3362. [[package]]
  3363. name = "io-lifetimes"
  3364. version = "1.0.11"
  3365. source = "registry+https://github.com/rust-lang/crates.io-index"
  3366. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  3367. dependencies = [
  3368. "hermit-abi 0.3.3",
  3369. "libc",
  3370. "windows-sys 0.48.0",
  3371. ]
  3372. [[package]]
  3373. name = "is-terminal"
  3374. version = "0.4.9"
  3375. source = "registry+https://github.com/rust-lang/crates.io-index"
  3376. checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
  3377. dependencies = [
  3378. "hermit-abi 0.3.3",
  3379. "rustix 0.38.28",
  3380. "windows-sys 0.48.0",
  3381. ]
  3382. [[package]]
  3383. name = "isahc"
  3384. version = "0.9.14"
  3385. source = "registry+https://github.com/rust-lang/crates.io-index"
  3386. checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a"
  3387. dependencies = [
  3388. "bytes 0.5.6",
  3389. "crossbeam-utils",
  3390. "curl",
  3391. "curl-sys",
  3392. "flume",
  3393. "futures-lite 1.13.0",
  3394. "http 0.2.11",
  3395. "log",
  3396. "once_cell",
  3397. "slab",
  3398. "sluice",
  3399. "tracing",
  3400. "tracing-futures",
  3401. "url",
  3402. "waker-fn",
  3403. ]
  3404. [[package]]
  3405. name = "itertools"
  3406. version = "0.11.0"
  3407. source = "registry+https://github.com/rust-lang/crates.io-index"
  3408. checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
  3409. dependencies = [
  3410. "either",
  3411. ]
  3412. [[package]]
  3413. name = "itertools"
  3414. version = "0.12.0"
  3415. source = "registry+https://github.com/rust-lang/crates.io-index"
  3416. checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
  3417. dependencies = [
  3418. "either",
  3419. ]
  3420. [[package]]
  3421. name = "itoa"
  3422. version = "1.0.10"
  3423. source = "registry+https://github.com/rust-lang/crates.io-index"
  3424. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  3425. [[package]]
  3426. name = "jpeg-decoder"
  3427. version = "0.3.0"
  3428. source = "registry+https://github.com/rust-lang/crates.io-index"
  3429. checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
  3430. [[package]]
  3431. name = "js-sys"
  3432. version = "0.3.66"
  3433. source = "registry+https://github.com/rust-lang/crates.io-index"
  3434. checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
  3435. dependencies = [
  3436. "wasm-bindgen",
  3437. ]
  3438. [[package]]
  3439. name = "keccak"
  3440. version = "0.1.4"
  3441. source = "registry+https://github.com/rust-lang/crates.io-index"
  3442. checksum = "8f6d5ed8676d904364de097082f4e7d240b571b67989ced0240f08b7f966f940"
  3443. dependencies = [
  3444. "cpufeatures",
  3445. ]
  3446. [[package]]
  3447. name = "kv-log-macro"
  3448. version = "1.0.7"
  3449. source = "registry+https://github.com/rust-lang/crates.io-index"
  3450. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  3451. dependencies = [
  3452. "log",
  3453. ]
  3454. [[package]]
  3455. name = "lazy_static"
  3456. version = "1.4.0"
  3457. source = "registry+https://github.com/rust-lang/crates.io-index"
  3458. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  3459. dependencies = [
  3460. "spin 0.5.2",
  3461. ]
  3462. [[package]]
  3463. name = "lazycell"
  3464. version = "1.3.0"
  3465. source = "registry+https://github.com/rust-lang/crates.io-index"
  3466. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  3467. [[package]]
  3468. name = "leb128"
  3469. version = "0.2.5"
  3470. source = "registry+https://github.com/rust-lang/crates.io-index"
  3471. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  3472. [[package]]
  3473. name = "libc"
  3474. version = "0.2.151"
  3475. source = "registry+https://github.com/rust-lang/crates.io-index"
  3476. checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
  3477. [[package]]
  3478. name = "libloading"
  3479. version = "0.7.4"
  3480. source = "registry+https://github.com/rust-lang/crates.io-index"
  3481. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  3482. dependencies = [
  3483. "cfg-if 1.0.0",
  3484. "winapi",
  3485. ]
  3486. [[package]]
  3487. name = "libloading"
  3488. version = "0.8.1"
  3489. source = "registry+https://github.com/rust-lang/crates.io-index"
  3490. checksum = "c571b676ddfc9a8c12f1f3d3085a7b163966a8fd8098a90640953ce5f6170161"
  3491. dependencies = [
  3492. "cfg-if 1.0.0",
  3493. "windows-sys 0.48.0",
  3494. ]
  3495. [[package]]
  3496. name = "libm"
  3497. version = "0.2.8"
  3498. source = "registry+https://github.com/rust-lang/crates.io-index"
  3499. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  3500. [[package]]
  3501. name = "libnghttp2-sys"
  3502. version = "0.1.8+1.55.1"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "4fae956c192dadcdb5dace96db71fa0b827333cce7c7b38dc71446f024d8a340"
  3505. dependencies = [
  3506. "cc",
  3507. "libc",
  3508. ]
  3509. [[package]]
  3510. name = "libredox"
  3511. version = "0.0.1"
  3512. source = "registry+https://github.com/rust-lang/crates.io-index"
  3513. checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
  3514. dependencies = [
  3515. "bitflags 2.4.1",
  3516. "libc",
  3517. "redox_syscall 0.4.1",
  3518. ]
  3519. [[package]]
  3520. name = "libsqlite3-sys"
  3521. version = "0.27.0"
  3522. source = "registry+https://github.com/rust-lang/crates.io-index"
  3523. checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
  3524. dependencies = [
  3525. "pkg-config",
  3526. "vcpkg",
  3527. ]
  3528. [[package]]
  3529. name = "libz-sys"
  3530. version = "1.1.12"
  3531. source = "registry+https://github.com/rust-lang/crates.io-index"
  3532. checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
  3533. dependencies = [
  3534. "cc",
  3535. "libc",
  3536. "pkg-config",
  3537. "vcpkg",
  3538. ]
  3539. [[package]]
  3540. name = "lilith"
  3541. version = "0.4.1"
  3542. dependencies = [
  3543. "async-trait",
  3544. "darkfi",
  3545. "easy-parallel",
  3546. "futures",
  3547. "log",
  3548. "semver 1.0.20",
  3549. "serde",
  3550. "signal-hook",
  3551. "signal-hook-async-std",
  3552. "simplelog",
  3553. "smol",
  3554. "structopt",
  3555. "structopt-toml",
  3556. "tinyjson",
  3557. "toml 0.8.8",
  3558. "url",
  3559. ]
  3560. [[package]]
  3561. name = "linux-raw-sys"
  3562. version = "0.3.8"
  3563. source = "registry+https://github.com/rust-lang/crates.io-index"
  3564. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  3565. [[package]]
  3566. name = "linux-raw-sys"
  3567. version = "0.4.12"
  3568. source = "registry+https://github.com/rust-lang/crates.io-index"
  3569. checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
  3570. [[package]]
  3571. name = "lock_api"
  3572. version = "0.4.11"
  3573. source = "registry+https://github.com/rust-lang/crates.io-index"
  3574. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  3575. dependencies = [
  3576. "autocfg",
  3577. "scopeguard",
  3578. ]
  3579. [[package]]
  3580. name = "log"
  3581. version = "0.4.20"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
  3584. dependencies = [
  3585. "serde",
  3586. "value-bag",
  3587. ]
  3588. [[package]]
  3589. name = "mach"
  3590. version = "0.3.2"
  3591. source = "registry+https://github.com/rust-lang/crates.io-index"
  3592. checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
  3593. dependencies = [
  3594. "libc",
  3595. ]
  3596. [[package]]
  3597. name = "matchers"
  3598. version = "0.1.0"
  3599. source = "registry+https://github.com/rust-lang/crates.io-index"
  3600. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  3601. dependencies = [
  3602. "regex-automata 0.1.10",
  3603. ]
  3604. [[package]]
  3605. name = "maybe-rayon"
  3606. version = "0.1.1"
  3607. source = "registry+https://github.com/rust-lang/crates.io-index"
  3608. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  3609. dependencies = [
  3610. "cfg-if 1.0.0",
  3611. "rayon",
  3612. ]
  3613. [[package]]
  3614. name = "memchr"
  3615. version = "2.6.4"
  3616. source = "registry+https://github.com/rust-lang/crates.io-index"
  3617. checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
  3618. [[package]]
  3619. name = "memmap2"
  3620. version = "0.5.10"
  3621. source = "registry+https://github.com/rust-lang/crates.io-index"
  3622. checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
  3623. dependencies = [
  3624. "libc",
  3625. ]
  3626. [[package]]
  3627. name = "memmap2"
  3628. version = "0.6.2"
  3629. source = "registry+https://github.com/rust-lang/crates.io-index"
  3630. checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
  3631. dependencies = [
  3632. "libc",
  3633. ]
  3634. [[package]]
  3635. name = "memmap2"
  3636. version = "0.9.0"
  3637. source = "registry+https://github.com/rust-lang/crates.io-index"
  3638. checksum = "deaba38d7abf1d4cca21cc89e932e542ba2b9258664d2a9ef0e61512039c9375"
  3639. dependencies = [
  3640. "libc",
  3641. ]
  3642. [[package]]
  3643. name = "memoffset"
  3644. version = "0.9.0"
  3645. source = "registry+https://github.com/rust-lang/crates.io-index"
  3646. checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
  3647. dependencies = [
  3648. "autocfg",
  3649. ]
  3650. [[package]]
  3651. name = "merlin"
  3652. version = "3.0.0"
  3653. source = "registry+https://github.com/rust-lang/crates.io-index"
  3654. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  3655. dependencies = [
  3656. "byteorder",
  3657. "keccak",
  3658. "rand_core 0.6.4",
  3659. "zeroize",
  3660. ]
  3661. [[package]]
  3662. name = "mime"
  3663. version = "0.3.17"
  3664. source = "registry+https://github.com/rust-lang/crates.io-index"
  3665. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3666. [[package]]
  3667. name = "mime_guess"
  3668. version = "2.0.4"
  3669. source = "registry+https://github.com/rust-lang/crates.io-index"
  3670. checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
  3671. dependencies = [
  3672. "mime",
  3673. "unicase",
  3674. ]
  3675. [[package]]
  3676. name = "minimal-lexical"
  3677. version = "0.2.1"
  3678. source = "registry+https://github.com/rust-lang/crates.io-index"
  3679. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3680. [[package]]
  3681. name = "miniz_oxide"
  3682. version = "0.7.1"
  3683. source = "registry+https://github.com/rust-lang/crates.io-index"
  3684. checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
  3685. dependencies = [
  3686. "adler",
  3687. "simd-adler32",
  3688. ]
  3689. [[package]]
  3690. name = "monero"
  3691. version = "0.19.0"
  3692. source = "git+https://github.com/monero-rs/monero-rs?branch=main#ef123326d96e2db1f6f44955102917cf48dcbea2"
  3693. dependencies = [
  3694. "base58-monero",
  3695. "curve25519-dalek",
  3696. "fixed-hash",
  3697. "hex",
  3698. "hex-literal",
  3699. "sealed",
  3700. "thiserror",
  3701. "tiny-keccak",
  3702. ]
  3703. [[package]]
  3704. name = "more-asserts"
  3705. version = "0.2.2"
  3706. source = "registry+https://github.com/rust-lang/crates.io-index"
  3707. checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
  3708. [[package]]
  3709. name = "nix"
  3710. version = "0.27.1"
  3711. source = "registry+https://github.com/rust-lang/crates.io-index"
  3712. checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
  3713. dependencies = [
  3714. "bitflags 2.4.1",
  3715. "cfg-if 1.0.0",
  3716. "libc",
  3717. ]
  3718. [[package]]
  3719. name = "nom"
  3720. version = "7.1.3"
  3721. source = "registry+https://github.com/rust-lang/crates.io-index"
  3722. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3723. dependencies = [
  3724. "memchr",
  3725. "minimal-lexical",
  3726. ]
  3727. [[package]]
  3728. name = "nu-ansi-term"
  3729. version = "0.46.0"
  3730. source = "registry+https://github.com/rust-lang/crates.io-index"
  3731. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  3732. dependencies = [
  3733. "overload",
  3734. "winapi",
  3735. ]
  3736. [[package]]
  3737. name = "num-bigint"
  3738. version = "0.4.4"
  3739. source = "registry+https://github.com/rust-lang/crates.io-index"
  3740. checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
  3741. dependencies = [
  3742. "autocfg",
  3743. "num-integer",
  3744. "num-traits",
  3745. ]
  3746. [[package]]
  3747. name = "num-bigint-dig"
  3748. version = "0.8.4"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  3751. dependencies = [
  3752. "byteorder",
  3753. "lazy_static",
  3754. "libm",
  3755. "num-integer",
  3756. "num-iter",
  3757. "num-traits",
  3758. "rand 0.8.5",
  3759. "smallvec",
  3760. "zeroize",
  3761. ]
  3762. [[package]]
  3763. name = "num-integer"
  3764. version = "0.1.45"
  3765. source = "registry+https://github.com/rust-lang/crates.io-index"
  3766. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  3767. dependencies = [
  3768. "autocfg",
  3769. "num-traits",
  3770. ]
  3771. [[package]]
  3772. name = "num-iter"
  3773. version = "0.1.43"
  3774. source = "registry+https://github.com/rust-lang/crates.io-index"
  3775. checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
  3776. dependencies = [
  3777. "autocfg",
  3778. "num-integer",
  3779. "num-traits",
  3780. ]
  3781. [[package]]
  3782. name = "num-modular"
  3783. version = "0.6.1"
  3784. source = "registry+https://github.com/rust-lang/crates.io-index"
  3785. checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
  3786. [[package]]
  3787. name = "num-order"
  3788. version = "1.2.0"
  3789. source = "registry+https://github.com/rust-lang/crates.io-index"
  3790. checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
  3791. dependencies = [
  3792. "num-modular",
  3793. ]
  3794. [[package]]
  3795. name = "num-rational"
  3796. version = "0.4.1"
  3797. source = "registry+https://github.com/rust-lang/crates.io-index"
  3798. checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
  3799. dependencies = [
  3800. "autocfg",
  3801. "num-integer",
  3802. "num-traits",
  3803. ]
  3804. [[package]]
  3805. name = "num-traits"
  3806. version = "0.2.17"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
  3809. dependencies = [
  3810. "autocfg",
  3811. "libm",
  3812. ]
  3813. [[package]]
  3814. name = "num_enum"
  3815. version = "0.7.1"
  3816. source = "registry+https://github.com/rust-lang/crates.io-index"
  3817. checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0"
  3818. dependencies = [
  3819. "num_enum_derive",
  3820. ]
  3821. [[package]]
  3822. name = "num_enum_derive"
  3823. version = "0.7.1"
  3824. source = "registry+https://github.com/rust-lang/crates.io-index"
  3825. checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e"
  3826. dependencies = [
  3827. "proc-macro-crate 2.0.0",
  3828. "proc-macro2",
  3829. "quote",
  3830. "syn 2.0.41",
  3831. ]
  3832. [[package]]
  3833. name = "num_threads"
  3834. version = "0.1.6"
  3835. source = "registry+https://github.com/rust-lang/crates.io-index"
  3836. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  3837. dependencies = [
  3838. "libc",
  3839. ]
  3840. [[package]]
  3841. name = "object"
  3842. version = "0.32.1"
  3843. source = "registry+https://github.com/rust-lang/crates.io-index"
  3844. checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
  3845. dependencies = [
  3846. "memchr",
  3847. ]
  3848. [[package]]
  3849. name = "oid-registry"
  3850. version = "0.6.1"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
  3853. dependencies = [
  3854. "asn1-rs",
  3855. ]
  3856. [[package]]
  3857. name = "once_cell"
  3858. version = "1.19.0"
  3859. source = "registry+https://github.com/rust-lang/crates.io-index"
  3860. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  3861. [[package]]
  3862. name = "opaque-debug"
  3863. version = "0.3.0"
  3864. source = "registry+https://github.com/rust-lang/crates.io-index"
  3865. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  3866. [[package]]
  3867. name = "openssl-probe"
  3868. version = "0.1.5"
  3869. source = "registry+https://github.com/rust-lang/crates.io-index"
  3870. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  3871. [[package]]
  3872. name = "openssl-sys"
  3873. version = "0.9.97"
  3874. source = "registry+https://github.com/rust-lang/crates.io-index"
  3875. checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b"
  3876. dependencies = [
  3877. "cc",
  3878. "libc",
  3879. "pkg-config",
  3880. "vcpkg",
  3881. ]
  3882. [[package]]
  3883. name = "option-ext"
  3884. version = "0.2.0"
  3885. source = "registry+https://github.com/rust-lang/crates.io-index"
  3886. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  3887. [[package]]
  3888. name = "ordered-float"
  3889. version = "2.10.1"
  3890. source = "registry+https://github.com/rust-lang/crates.io-index"
  3891. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  3892. dependencies = [
  3893. "num-traits",
  3894. ]
  3895. [[package]]
  3896. name = "overload"
  3897. version = "0.1.1"
  3898. source = "registry+https://github.com/rust-lang/crates.io-index"
  3899. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3900. [[package]]
  3901. name = "p256"
  3902. version = "0.13.2"
  3903. source = "registry+https://github.com/rust-lang/crates.io-index"
  3904. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  3905. dependencies = [
  3906. "ecdsa",
  3907. "elliptic-curve",
  3908. "primeorder",
  3909. "sha2 0.10.8",
  3910. ]
  3911. [[package]]
  3912. name = "p384"
  3913. version = "0.13.0"
  3914. source = "registry+https://github.com/rust-lang/crates.io-index"
  3915. checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
  3916. dependencies = [
  3917. "ecdsa",
  3918. "elliptic-curve",
  3919. "primeorder",
  3920. "sha2 0.10.8",
  3921. ]
  3922. [[package]]
  3923. name = "p521"
  3924. version = "0.13.3"
  3925. source = "registry+https://github.com/rust-lang/crates.io-index"
  3926. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  3927. dependencies = [
  3928. "base16ct",
  3929. "ecdsa",
  3930. "elliptic-curve",
  3931. "primeorder",
  3932. "rand_core 0.6.4",
  3933. "sha2 0.10.8",
  3934. ]
  3935. [[package]]
  3936. name = "parking"
  3937. version = "2.2.0"
  3938. source = "registry+https://github.com/rust-lang/crates.io-index"
  3939. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  3940. [[package]]
  3941. name = "parking_lot"
  3942. version = "0.11.2"
  3943. source = "registry+https://github.com/rust-lang/crates.io-index"
  3944. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3945. dependencies = [
  3946. "instant",
  3947. "lock_api",
  3948. "parking_lot_core 0.8.6",
  3949. ]
  3950. [[package]]
  3951. name = "parking_lot"
  3952. version = "0.12.1"
  3953. source = "registry+https://github.com/rust-lang/crates.io-index"
  3954. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  3955. dependencies = [
  3956. "lock_api",
  3957. "parking_lot_core 0.9.9",
  3958. ]
  3959. [[package]]
  3960. name = "parking_lot_core"
  3961. version = "0.8.6"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3964. dependencies = [
  3965. "cfg-if 1.0.0",
  3966. "instant",
  3967. "libc",
  3968. "redox_syscall 0.2.16",
  3969. "smallvec",
  3970. "winapi",
  3971. ]
  3972. [[package]]
  3973. name = "parking_lot_core"
  3974. version = "0.9.9"
  3975. source = "registry+https://github.com/rust-lang/crates.io-index"
  3976. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  3977. dependencies = [
  3978. "cfg-if 1.0.0",
  3979. "libc",
  3980. "redox_syscall 0.4.1",
  3981. "smallvec",
  3982. "windows-targets 0.48.5",
  3983. ]
  3984. [[package]]
  3985. name = "pasta_curves"
  3986. version = "0.5.1"
  3987. source = "registry+https://github.com/rust-lang/crates.io-index"
  3988. checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095"
  3989. dependencies = [
  3990. "blake2b_simd",
  3991. "ff",
  3992. "group",
  3993. "lazy_static",
  3994. "rand 0.8.5",
  3995. "static_assertions",
  3996. "subtle",
  3997. ]
  3998. [[package]]
  3999. name = "paste"
  4000. version = "1.0.14"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
  4003. [[package]]
  4004. name = "pathdiff"
  4005. version = "0.2.1"
  4006. source = "registry+https://github.com/rust-lang/crates.io-index"
  4007. checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
  4008. [[package]]
  4009. name = "pathfinder_geometry"
  4010. version = "0.5.1"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
  4013. dependencies = [
  4014. "log",
  4015. "pathfinder_simd",
  4016. ]
  4017. [[package]]
  4018. name = "pathfinder_simd"
  4019. version = "0.5.2"
  4020. source = "registry+https://github.com/rust-lang/crates.io-index"
  4021. checksum = "0444332826c70dc47be74a7c6a5fc44e23a7905ad6858d4162b658320455ef93"
  4022. dependencies = [
  4023. "rustc_version 0.4.0",
  4024. ]
  4025. [[package]]
  4026. name = "peeking_take_while"
  4027. version = "0.1.2"
  4028. source = "registry+https://github.com/rust-lang/crates.io-index"
  4029. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  4030. [[package]]
  4031. name = "pem"
  4032. version = "3.0.3"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
  4035. dependencies = [
  4036. "base64 0.21.5",
  4037. "serde",
  4038. ]
  4039. [[package]]
  4040. name = "pem-rfc7468"
  4041. version = "0.7.0"
  4042. source = "registry+https://github.com/rust-lang/crates.io-index"
  4043. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  4044. dependencies = [
  4045. "base64ct",
  4046. ]
  4047. [[package]]
  4048. name = "percent-encoding"
  4049. version = "2.3.1"
  4050. source = "registry+https://github.com/rust-lang/crates.io-index"
  4051. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  4052. [[package]]
  4053. name = "phf"
  4054. version = "0.11.2"
  4055. source = "registry+https://github.com/rust-lang/crates.io-index"
  4056. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  4057. dependencies = [
  4058. "phf_macros",
  4059. "phf_shared",
  4060. ]
  4061. [[package]]
  4062. name = "phf_generator"
  4063. version = "0.11.2"
  4064. source = "registry+https://github.com/rust-lang/crates.io-index"
  4065. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  4066. dependencies = [
  4067. "phf_shared",
  4068. "rand 0.8.5",
  4069. ]
  4070. [[package]]
  4071. name = "phf_macros"
  4072. version = "0.11.2"
  4073. source = "registry+https://github.com/rust-lang/crates.io-index"
  4074. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  4075. dependencies = [
  4076. "phf_generator",
  4077. "phf_shared",
  4078. "proc-macro2",
  4079. "quote",
  4080. "syn 2.0.41",
  4081. ]
  4082. [[package]]
  4083. name = "phf_shared"
  4084. version = "0.11.2"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  4087. dependencies = [
  4088. "siphasher",
  4089. ]
  4090. [[package]]
  4091. name = "pin-project"
  4092. version = "1.1.3"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
  4095. dependencies = [
  4096. "pin-project-internal",
  4097. ]
  4098. [[package]]
  4099. name = "pin-project-internal"
  4100. version = "1.1.3"
  4101. source = "registry+https://github.com/rust-lang/crates.io-index"
  4102. checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
  4103. dependencies = [
  4104. "proc-macro2",
  4105. "quote",
  4106. "syn 2.0.41",
  4107. ]
  4108. [[package]]
  4109. name = "pin-project-lite"
  4110. version = "0.1.12"
  4111. source = "registry+https://github.com/rust-lang/crates.io-index"
  4112. checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
  4113. [[package]]
  4114. name = "pin-project-lite"
  4115. version = "0.2.13"
  4116. source = "registry+https://github.com/rust-lang/crates.io-index"
  4117. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  4118. [[package]]
  4119. name = "pin-utils"
  4120. version = "0.1.0"
  4121. source = "registry+https://github.com/rust-lang/crates.io-index"
  4122. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4123. [[package]]
  4124. name = "piper"
  4125. version = "0.2.1"
  4126. source = "registry+https://github.com/rust-lang/crates.io-index"
  4127. checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
  4128. dependencies = [
  4129. "atomic-waker",
  4130. "fastrand 2.0.1",
  4131. "futures-io",
  4132. ]
  4133. [[package]]
  4134. name = "pkcs1"
  4135. version = "0.7.5"
  4136. source = "registry+https://github.com/rust-lang/crates.io-index"
  4137. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  4138. dependencies = [
  4139. "der",
  4140. "pkcs8",
  4141. "spki",
  4142. ]
  4143. [[package]]
  4144. name = "pkcs8"
  4145. version = "0.10.2"
  4146. source = "registry+https://github.com/rust-lang/crates.io-index"
  4147. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4148. dependencies = [
  4149. "der",
  4150. "spki",
  4151. ]
  4152. [[package]]
  4153. name = "pkg-config"
  4154. version = "0.3.27"
  4155. source = "registry+https://github.com/rust-lang/crates.io-index"
  4156. checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
  4157. [[package]]
  4158. name = "platforms"
  4159. version = "3.2.0"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0"
  4162. [[package]]
  4163. name = "plotters"
  4164. version = "0.3.5"
  4165. source = "registry+https://github.com/rust-lang/crates.io-index"
  4166. checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
  4167. dependencies = [
  4168. "chrono",
  4169. "font-kit",
  4170. "image",
  4171. "lazy_static",
  4172. "num-traits",
  4173. "pathfinder_geometry",
  4174. "plotters-backend",
  4175. "plotters-bitmap",
  4176. "plotters-svg",
  4177. "ttf-parser",
  4178. "wasm-bindgen",
  4179. "web-sys",
  4180. ]
  4181. [[package]]
  4182. name = "plotters-backend"
  4183. version = "0.3.5"
  4184. source = "registry+https://github.com/rust-lang/crates.io-index"
  4185. checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
  4186. [[package]]
  4187. name = "plotters-bitmap"
  4188. version = "0.3.3"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "0cebbe1f70205299abc69e8b295035bb52a6a70ee35474ad10011f0a4efb8543"
  4191. dependencies = [
  4192. "gif",
  4193. "image",
  4194. "plotters-backend",
  4195. ]
  4196. [[package]]
  4197. name = "plotters-svg"
  4198. version = "0.3.5"
  4199. source = "registry+https://github.com/rust-lang/crates.io-index"
  4200. checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
  4201. dependencies = [
  4202. "plotters-backend",
  4203. ]
  4204. [[package]]
  4205. name = "png"
  4206. version = "0.17.10"
  4207. source = "registry+https://github.com/rust-lang/crates.io-index"
  4208. checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64"
  4209. dependencies = [
  4210. "bitflags 1.3.2",
  4211. "crc32fast",
  4212. "fdeflate",
  4213. "flate2",
  4214. "miniz_oxide",
  4215. ]
  4216. [[package]]
  4217. name = "polling"
  4218. version = "2.8.0"
  4219. source = "registry+https://github.com/rust-lang/crates.io-index"
  4220. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  4221. dependencies = [
  4222. "autocfg",
  4223. "bitflags 1.3.2",
  4224. "cfg-if 1.0.0",
  4225. "concurrent-queue",
  4226. "libc",
  4227. "log",
  4228. "pin-project-lite 0.2.13",
  4229. "windows-sys 0.48.0",
  4230. ]
  4231. [[package]]
  4232. name = "polling"
  4233. version = "3.3.1"
  4234. source = "registry+https://github.com/rust-lang/crates.io-index"
  4235. checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e"
  4236. dependencies = [
  4237. "cfg-if 1.0.0",
  4238. "concurrent-queue",
  4239. "pin-project-lite 0.2.13",
  4240. "rustix 0.38.28",
  4241. "tracing",
  4242. "windows-sys 0.52.0",
  4243. ]
  4244. [[package]]
  4245. name = "poly1305"
  4246. version = "0.8.0"
  4247. source = "registry+https://github.com/rust-lang/crates.io-index"
  4248. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4249. dependencies = [
  4250. "cpufeatures",
  4251. "opaque-debug",
  4252. "universal-hash 0.5.1",
  4253. ]
  4254. [[package]]
  4255. name = "polyval"
  4256. version = "0.4.5"
  4257. source = "registry+https://github.com/rust-lang/crates.io-index"
  4258. checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
  4259. dependencies = [
  4260. "cpuid-bool",
  4261. "opaque-debug",
  4262. "universal-hash 0.4.0",
  4263. ]
  4264. [[package]]
  4265. name = "postage"
  4266. version = "0.5.0"
  4267. source = "registry+https://github.com/rust-lang/crates.io-index"
  4268. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  4269. dependencies = [
  4270. "atomic",
  4271. "crossbeam-queue",
  4272. "futures",
  4273. "parking_lot 0.12.1",
  4274. "pin-project",
  4275. "static_assertions",
  4276. "thiserror",
  4277. ]
  4278. [[package]]
  4279. name = "powerfmt"
  4280. version = "0.2.0"
  4281. source = "registry+https://github.com/rust-lang/crates.io-index"
  4282. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4283. [[package]]
  4284. name = "ppv-lite86"
  4285. version = "0.2.17"
  4286. source = "registry+https://github.com/rust-lang/crates.io-index"
  4287. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  4288. [[package]]
  4289. name = "prettyplease"
  4290. version = "0.2.15"
  4291. source = "registry+https://github.com/rust-lang/crates.io-index"
  4292. checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d"
  4293. dependencies = [
  4294. "proc-macro2",
  4295. "syn 2.0.41",
  4296. ]
  4297. [[package]]
  4298. name = "prettytable-rs"
  4299. version = "0.10.0"
  4300. source = "registry+https://github.com/rust-lang/crates.io-index"
  4301. checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
  4302. dependencies = [
  4303. "csv",
  4304. "encode_unicode",
  4305. "is-terminal",
  4306. "lazy_static",
  4307. "term",
  4308. "unicode-width",
  4309. ]
  4310. [[package]]
  4311. name = "primeorder"
  4312. version = "0.13.6"
  4313. source = "registry+https://github.com/rust-lang/crates.io-index"
  4314. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4315. dependencies = [
  4316. "elliptic-curve",
  4317. ]
  4318. [[package]]
  4319. name = "priority-queue"
  4320. version = "1.3.2"
  4321. source = "registry+https://github.com/rust-lang/crates.io-index"
  4322. checksum = "fff39edfcaec0d64e8d0da38564fad195d2d51b680940295fcc307366e101e61"
  4323. dependencies = [
  4324. "autocfg",
  4325. "indexmap 1.9.3",
  4326. ]
  4327. [[package]]
  4328. name = "proc-macro-crate"
  4329. version = "1.3.1"
  4330. source = "registry+https://github.com/rust-lang/crates.io-index"
  4331. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  4332. dependencies = [
  4333. "once_cell",
  4334. "toml_edit 0.19.15",
  4335. ]
  4336. [[package]]
  4337. name = "proc-macro-crate"
  4338. version = "2.0.0"
  4339. source = "registry+https://github.com/rust-lang/crates.io-index"
  4340. checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
  4341. dependencies = [
  4342. "toml_edit 0.20.7",
  4343. ]
  4344. [[package]]
  4345. name = "proc-macro-error"
  4346. version = "1.0.4"
  4347. source = "registry+https://github.com/rust-lang/crates.io-index"
  4348. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4349. dependencies = [
  4350. "proc-macro-error-attr",
  4351. "proc-macro2",
  4352. "quote",
  4353. "syn 1.0.109",
  4354. "version_check",
  4355. ]
  4356. [[package]]
  4357. name = "proc-macro-error-attr"
  4358. version = "1.0.4"
  4359. source = "registry+https://github.com/rust-lang/crates.io-index"
  4360. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4361. dependencies = [
  4362. "proc-macro2",
  4363. "quote",
  4364. "version_check",
  4365. ]
  4366. [[package]]
  4367. name = "proc-macro-hack"
  4368. version = "0.5.20+deprecated"
  4369. source = "registry+https://github.com/rust-lang/crates.io-index"
  4370. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  4371. [[package]]
  4372. name = "proc-macro2"
  4373. version = "1.0.70"
  4374. source = "registry+https://github.com/rust-lang/crates.io-index"
  4375. checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
  4376. dependencies = [
  4377. "unicode-ident",
  4378. ]
  4379. [[package]]
  4380. name = "proptest"
  4381. version = "1.4.0"
  4382. source = "registry+https://github.com/rust-lang/crates.io-index"
  4383. checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
  4384. dependencies = [
  4385. "bit-set",
  4386. "bit-vec",
  4387. "bitflags 2.4.1",
  4388. "lazy_static",
  4389. "num-traits",
  4390. "rand 0.8.5",
  4391. "rand_chacha 0.3.1",
  4392. "rand_xorshift",
  4393. "regex-syntax 0.8.2",
  4394. "rusty-fork",
  4395. "tempfile",
  4396. "unarray",
  4397. ]
  4398. [[package]]
  4399. name = "ptr_meta"
  4400. version = "0.1.4"
  4401. source = "registry+https://github.com/rust-lang/crates.io-index"
  4402. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  4403. dependencies = [
  4404. "ptr_meta_derive",
  4405. ]
  4406. [[package]]
  4407. name = "ptr_meta_derive"
  4408. version = "0.1.4"
  4409. source = "registry+https://github.com/rust-lang/crates.io-index"
  4410. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  4411. dependencies = [
  4412. "proc-macro2",
  4413. "quote",
  4414. "syn 1.0.109",
  4415. ]
  4416. [[package]]
  4417. name = "pulldown-cmark"
  4418. version = "0.9.3"
  4419. source = "registry+https://github.com/rust-lang/crates.io-index"
  4420. checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
  4421. dependencies = [
  4422. "bitflags 1.3.2",
  4423. "memchr",
  4424. "unicase",
  4425. ]
  4426. [[package]]
  4427. name = "pwd-grp"
  4428. version = "0.1.1"
  4429. source = "registry+https://github.com/rust-lang/crates.io-index"
  4430. checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
  4431. dependencies = [
  4432. "derive-adhoc",
  4433. "libc",
  4434. "paste",
  4435. "thiserror",
  4436. ]
  4437. [[package]]
  4438. name = "pyo3"
  4439. version = "0.20.0"
  4440. source = "registry+https://github.com/rust-lang/crates.io-index"
  4441. checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b"
  4442. dependencies = [
  4443. "cfg-if 1.0.0",
  4444. "indoc",
  4445. "libc",
  4446. "memoffset",
  4447. "parking_lot 0.12.1",
  4448. "pyo3-build-config",
  4449. "pyo3-ffi",
  4450. "pyo3-macros",
  4451. "unindent",
  4452. ]
  4453. [[package]]
  4454. name = "pyo3-build-config"
  4455. version = "0.20.0"
  4456. source = "registry+https://github.com/rust-lang/crates.io-index"
  4457. checksum = "a96fe70b176a89cff78f2fa7b3c930081e163d5379b4dcdf993e3ae29ca662e5"
  4458. dependencies = [
  4459. "once_cell",
  4460. "target-lexicon",
  4461. ]
  4462. [[package]]
  4463. name = "pyo3-ffi"
  4464. version = "0.20.0"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "214929900fd25e6604661ed9cf349727c8920d47deff196c4e28165a6ef2a96b"
  4467. dependencies = [
  4468. "libc",
  4469. "pyo3-build-config",
  4470. ]
  4471. [[package]]
  4472. name = "pyo3-macros"
  4473. version = "0.20.0"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. checksum = "dac53072f717aa1bfa4db832b39de8c875b7c7af4f4a6fe93cdbf9264cf8383b"
  4476. dependencies = [
  4477. "proc-macro2",
  4478. "pyo3-macros-backend",
  4479. "quote",
  4480. "syn 2.0.41",
  4481. ]
  4482. [[package]]
  4483. name = "pyo3-macros-backend"
  4484. version = "0.20.0"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "7774b5a8282bd4f25f803b1f0d945120be959a36c72e08e7cd031c792fdfd424"
  4487. dependencies = [
  4488. "heck 0.4.1",
  4489. "proc-macro2",
  4490. "quote",
  4491. "syn 2.0.41",
  4492. ]
  4493. [[package]]
  4494. name = "quick-error"
  4495. version = "1.2.3"
  4496. source = "registry+https://github.com/rust-lang/crates.io-index"
  4497. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4498. [[package]]
  4499. name = "quote"
  4500. version = "1.0.33"
  4501. source = "registry+https://github.com/rust-lang/crates.io-index"
  4502. checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
  4503. dependencies = [
  4504. "proc-macro2",
  4505. ]
  4506. [[package]]
  4507. name = "radium"
  4508. version = "0.7.0"
  4509. source = "registry+https://github.com/rust-lang/crates.io-index"
  4510. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  4511. [[package]]
  4512. name = "rand"
  4513. version = "0.7.3"
  4514. source = "registry+https://github.com/rust-lang/crates.io-index"
  4515. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  4516. dependencies = [
  4517. "getrandom 0.1.16",
  4518. "libc",
  4519. "rand_chacha 0.2.2",
  4520. "rand_core 0.5.1",
  4521. "rand_hc",
  4522. ]
  4523. [[package]]
  4524. name = "rand"
  4525. version = "0.8.5"
  4526. source = "registry+https://github.com/rust-lang/crates.io-index"
  4527. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4528. dependencies = [
  4529. "libc",
  4530. "rand_chacha 0.3.1",
  4531. "rand_core 0.6.4",
  4532. ]
  4533. [[package]]
  4534. name = "rand_chacha"
  4535. version = "0.2.2"
  4536. source = "registry+https://github.com/rust-lang/crates.io-index"
  4537. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  4538. dependencies = [
  4539. "ppv-lite86",
  4540. "rand_core 0.5.1",
  4541. ]
  4542. [[package]]
  4543. name = "rand_chacha"
  4544. version = "0.3.1"
  4545. source = "registry+https://github.com/rust-lang/crates.io-index"
  4546. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4547. dependencies = [
  4548. "ppv-lite86",
  4549. "rand_core 0.6.4",
  4550. ]
  4551. [[package]]
  4552. name = "rand_core"
  4553. version = "0.5.1"
  4554. source = "registry+https://github.com/rust-lang/crates.io-index"
  4555. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  4556. dependencies = [
  4557. "getrandom 0.1.16",
  4558. ]
  4559. [[package]]
  4560. name = "rand_core"
  4561. version = "0.6.4"
  4562. source = "registry+https://github.com/rust-lang/crates.io-index"
  4563. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4564. dependencies = [
  4565. "getrandom 0.2.11",
  4566. ]
  4567. [[package]]
  4568. name = "rand_hc"
  4569. version = "0.2.0"
  4570. source = "registry+https://github.com/rust-lang/crates.io-index"
  4571. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  4572. dependencies = [
  4573. "rand_core 0.5.1",
  4574. ]
  4575. [[package]]
  4576. name = "rand_xorshift"
  4577. version = "0.3.0"
  4578. source = "registry+https://github.com/rust-lang/crates.io-index"
  4579. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  4580. dependencies = [
  4581. "rand_core 0.6.4",
  4582. ]
  4583. [[package]]
  4584. name = "randomx"
  4585. version = "1.1.11"
  4586. source = "git+https://github.com/darkrenaissance/RandomX#65c0b322edf5ab66fad53bd0d163b7a2e9c63125"
  4587. dependencies = [
  4588. "bindgen",
  4589. "bitflags 1.3.2",
  4590. ]
  4591. [[package]]
  4592. name = "rayon"
  4593. version = "1.8.0"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
  4596. dependencies = [
  4597. "either",
  4598. "rayon-core",
  4599. ]
  4600. [[package]]
  4601. name = "rayon-core"
  4602. version = "1.12.0"
  4603. source = "registry+https://github.com/rust-lang/crates.io-index"
  4604. checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
  4605. dependencies = [
  4606. "crossbeam-deque",
  4607. "crossbeam-utils",
  4608. ]
  4609. [[package]]
  4610. name = "rcgen"
  4611. version = "0.11.3"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6"
  4614. dependencies = [
  4615. "pem",
  4616. "ring 0.16.20",
  4617. "time 0.3.30",
  4618. "yasna",
  4619. ]
  4620. [[package]]
  4621. name = "redox_syscall"
  4622. version = "0.2.16"
  4623. source = "registry+https://github.com/rust-lang/crates.io-index"
  4624. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  4625. dependencies = [
  4626. "bitflags 1.3.2",
  4627. ]
  4628. [[package]]
  4629. name = "redox_syscall"
  4630. version = "0.4.1"
  4631. source = "registry+https://github.com/rust-lang/crates.io-index"
  4632. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  4633. dependencies = [
  4634. "bitflags 1.3.2",
  4635. ]
  4636. [[package]]
  4637. name = "redox_users"
  4638. version = "0.4.4"
  4639. source = "registry+https://github.com/rust-lang/crates.io-index"
  4640. checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
  4641. dependencies = [
  4642. "getrandom 0.2.11",
  4643. "libredox",
  4644. "thiserror",
  4645. ]
  4646. [[package]]
  4647. name = "regalloc2"
  4648. version = "0.5.1"
  4649. source = "registry+https://github.com/rust-lang/crates.io-index"
  4650. checksum = "300d4fbfb40c1c66a78ba3ddd41c1110247cf52f97b87d0f2fc9209bd49b030c"
  4651. dependencies = [
  4652. "fxhash",
  4653. "log",
  4654. "slice-group-by",
  4655. "smallvec",
  4656. ]
  4657. [[package]]
  4658. name = "regex"
  4659. version = "1.10.2"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
  4662. dependencies = [
  4663. "aho-corasick",
  4664. "memchr",
  4665. "regex-automata 0.4.3",
  4666. "regex-syntax 0.8.2",
  4667. ]
  4668. [[package]]
  4669. name = "regex-automata"
  4670. version = "0.1.10"
  4671. source = "registry+https://github.com/rust-lang/crates.io-index"
  4672. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  4673. dependencies = [
  4674. "regex-syntax 0.6.29",
  4675. ]
  4676. [[package]]
  4677. name = "regex-automata"
  4678. version = "0.4.3"
  4679. source = "registry+https://github.com/rust-lang/crates.io-index"
  4680. checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
  4681. dependencies = [
  4682. "aho-corasick",
  4683. "memchr",
  4684. "regex-syntax 0.8.2",
  4685. ]
  4686. [[package]]
  4687. name = "regex-syntax"
  4688. version = "0.6.29"
  4689. source = "registry+https://github.com/rust-lang/crates.io-index"
  4690. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  4691. [[package]]
  4692. name = "regex-syntax"
  4693. version = "0.8.2"
  4694. source = "registry+https://github.com/rust-lang/crates.io-index"
  4695. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  4696. [[package]]
  4697. name = "region"
  4698. version = "3.0.0"
  4699. source = "registry+https://github.com/rust-lang/crates.io-index"
  4700. checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e"
  4701. dependencies = [
  4702. "bitflags 1.3.2",
  4703. "libc",
  4704. "mach",
  4705. "winapi",
  4706. ]
  4707. [[package]]
  4708. name = "rend"
  4709. version = "0.4.1"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
  4712. dependencies = [
  4713. "bytecheck",
  4714. ]
  4715. [[package]]
  4716. name = "retain_mut"
  4717. version = "0.1.9"
  4718. source = "registry+https://github.com/rust-lang/crates.io-index"
  4719. checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
  4720. [[package]]
  4721. name = "retry-error"
  4722. version = "0.5.1"
  4723. source = "registry+https://github.com/rust-lang/crates.io-index"
  4724. checksum = "c5e700775c6b1ef3b76bda447c1d88921334a6127600cc041140b29dc8582f19"
  4725. [[package]]
  4726. name = "rfc6979"
  4727. version = "0.4.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  4730. dependencies = [
  4731. "hmac 0.12.1",
  4732. "subtle",
  4733. ]
  4734. [[package]]
  4735. name = "ring"
  4736. version = "0.16.20"
  4737. source = "registry+https://github.com/rust-lang/crates.io-index"
  4738. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4739. dependencies = [
  4740. "cc",
  4741. "libc",
  4742. "once_cell",
  4743. "spin 0.5.2",
  4744. "untrusted 0.7.1",
  4745. "web-sys",
  4746. "winapi",
  4747. ]
  4748. [[package]]
  4749. name = "ring"
  4750. version = "0.17.7"
  4751. source = "registry+https://github.com/rust-lang/crates.io-index"
  4752. checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
  4753. dependencies = [
  4754. "cc",
  4755. "getrandom 0.2.11",
  4756. "libc",
  4757. "spin 0.9.8",
  4758. "untrusted 0.9.0",
  4759. "windows-sys 0.48.0",
  4760. ]
  4761. [[package]]
  4762. name = "rkyv"
  4763. version = "0.7.42"
  4764. source = "registry+https://github.com/rust-lang/crates.io-index"
  4765. checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
  4766. dependencies = [
  4767. "bitvec",
  4768. "bytecheck",
  4769. "hashbrown 0.12.3",
  4770. "indexmap 1.9.3",
  4771. "ptr_meta",
  4772. "rend",
  4773. "rkyv_derive",
  4774. "seahash",
  4775. "tinyvec",
  4776. "uuid",
  4777. ]
  4778. [[package]]
  4779. name = "rkyv_derive"
  4780. version = "0.7.42"
  4781. source = "registry+https://github.com/rust-lang/crates.io-index"
  4782. checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
  4783. dependencies = [
  4784. "proc-macro2",
  4785. "quote",
  4786. "syn 1.0.109",
  4787. ]
  4788. [[package]]
  4789. name = "routefinder"
  4790. version = "0.4.0"
  4791. source = "registry+https://github.com/rust-lang/crates.io-index"
  4792. checksum = "a44ef95cc607e41a7021da5cfb0f357ee0805113af2e9e6c617857c260940db4"
  4793. dependencies = [
  4794. "smartcow",
  4795. "smartstring",
  4796. ]
  4797. [[package]]
  4798. name = "rsa"
  4799. version = "0.9.6"
  4800. source = "registry+https://github.com/rust-lang/crates.io-index"
  4801. checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
  4802. dependencies = [
  4803. "const-oid",
  4804. "digest 0.10.7",
  4805. "num-bigint-dig",
  4806. "num-integer",
  4807. "num-traits",
  4808. "pkcs1",
  4809. "pkcs8",
  4810. "rand_core 0.6.4",
  4811. "sha2 0.10.8",
  4812. "signature 2.2.0",
  4813. "spki",
  4814. "subtle",
  4815. "zeroize",
  4816. ]
  4817. [[package]]
  4818. name = "rusqlite"
  4819. version = "0.30.0"
  4820. source = "registry+https://github.com/rust-lang/crates.io-index"
  4821. checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d"
  4822. dependencies = [
  4823. "bitflags 2.4.1",
  4824. "fallible-iterator 0.3.0",
  4825. "fallible-streaming-iterator",
  4826. "hashlink",
  4827. "libsqlite3-sys",
  4828. "smallvec",
  4829. "time 0.3.30",
  4830. ]
  4831. [[package]]
  4832. name = "rustc-demangle"
  4833. version = "0.1.23"
  4834. source = "registry+https://github.com/rust-lang/crates.io-index"
  4835. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  4836. [[package]]
  4837. name = "rustc-hash"
  4838. version = "1.1.0"
  4839. source = "registry+https://github.com/rust-lang/crates.io-index"
  4840. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4841. [[package]]
  4842. name = "rustc-hex"
  4843. version = "2.1.0"
  4844. source = "registry+https://github.com/rust-lang/crates.io-index"
  4845. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  4846. [[package]]
  4847. name = "rustc_version"
  4848. version = "0.2.3"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  4851. dependencies = [
  4852. "semver 0.9.0",
  4853. ]
  4854. [[package]]
  4855. name = "rustc_version"
  4856. version = "0.4.0"
  4857. source = "registry+https://github.com/rust-lang/crates.io-index"
  4858. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4859. dependencies = [
  4860. "semver 1.0.20",
  4861. ]
  4862. [[package]]
  4863. name = "rusticata-macros"
  4864. version = "4.1.0"
  4865. source = "registry+https://github.com/rust-lang/crates.io-index"
  4866. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  4867. dependencies = [
  4868. "nom",
  4869. ]
  4870. [[package]]
  4871. name = "rustix"
  4872. version = "0.37.27"
  4873. source = "registry+https://github.com/rust-lang/crates.io-index"
  4874. checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
  4875. dependencies = [
  4876. "bitflags 1.3.2",
  4877. "errno",
  4878. "io-lifetimes",
  4879. "libc",
  4880. "linux-raw-sys 0.3.8",
  4881. "windows-sys 0.48.0",
  4882. ]
  4883. [[package]]
  4884. name = "rustix"
  4885. version = "0.38.28"
  4886. source = "registry+https://github.com/rust-lang/crates.io-index"
  4887. checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
  4888. dependencies = [
  4889. "bitflags 2.4.1",
  4890. "errno",
  4891. "libc",
  4892. "linux-raw-sys 0.4.12",
  4893. "windows-sys 0.52.0",
  4894. ]
  4895. [[package]]
  4896. name = "rustls"
  4897. version = "0.21.10"
  4898. source = "registry+https://github.com/rust-lang/crates.io-index"
  4899. checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
  4900. dependencies = [
  4901. "log",
  4902. "ring 0.17.7",
  4903. "rustls-webpki",
  4904. "sct",
  4905. ]
  4906. [[package]]
  4907. name = "rustls-pemfile"
  4908. version = "2.0.0"
  4909. source = "registry+https://github.com/rust-lang/crates.io-index"
  4910. checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4"
  4911. dependencies = [
  4912. "base64 0.21.5",
  4913. "rustls-pki-types",
  4914. ]
  4915. [[package]]
  4916. name = "rustls-pki-types"
  4917. version = "1.0.1"
  4918. source = "registry+https://github.com/rust-lang/crates.io-index"
  4919. checksum = "e7673e0aa20ee4937c6aacfc12bb8341cfbf054cdd21df6bec5fd0629fe9339b"
  4920. [[package]]
  4921. name = "rustls-webpki"
  4922. version = "0.101.7"
  4923. source = "registry+https://github.com/rust-lang/crates.io-index"
  4924. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  4925. dependencies = [
  4926. "ring 0.17.7",
  4927. "untrusted 0.9.0",
  4928. ]
  4929. [[package]]
  4930. name = "rustversion"
  4931. version = "1.0.14"
  4932. source = "registry+https://github.com/rust-lang/crates.io-index"
  4933. checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
  4934. [[package]]
  4935. name = "rusty-fork"
  4936. version = "0.3.0"
  4937. source = "registry+https://github.com/rust-lang/crates.io-index"
  4938. checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
  4939. dependencies = [
  4940. "fnv",
  4941. "quick-error",
  4942. "tempfile",
  4943. "wait-timeout",
  4944. ]
  4945. [[package]]
  4946. name = "ryu"
  4947. version = "1.0.16"
  4948. source = "registry+https://github.com/rust-lang/crates.io-index"
  4949. checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
  4950. [[package]]
  4951. name = "safelog"
  4952. version = "0.3.4"
  4953. source = "registry+https://github.com/rust-lang/crates.io-index"
  4954. checksum = "cbde572e12860540299239347c110992c8082cafb526a024c4efe79b2891b6df"
  4955. dependencies = [
  4956. "derive_more",
  4957. "educe",
  4958. "either",
  4959. "fluid-let",
  4960. "thiserror",
  4961. ]
  4962. [[package]]
  4963. name = "salsa20"
  4964. version = "0.10.2"
  4965. source = "registry+https://github.com/rust-lang/crates.io-index"
  4966. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  4967. dependencies = [
  4968. "cipher 0.4.4",
  4969. ]
  4970. [[package]]
  4971. name = "same-file"
  4972. version = "1.0.6"
  4973. source = "registry+https://github.com/rust-lang/crates.io-index"
  4974. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  4975. dependencies = [
  4976. "winapi-util",
  4977. ]
  4978. [[package]]
  4979. name = "sanitize-filename"
  4980. version = "0.5.0"
  4981. source = "registry+https://github.com/rust-lang/crates.io-index"
  4982. checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603"
  4983. dependencies = [
  4984. "lazy_static",
  4985. "regex",
  4986. ]
  4987. [[package]]
  4988. name = "schannel"
  4989. version = "0.1.22"
  4990. source = "registry+https://github.com/rust-lang/crates.io-index"
  4991. checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
  4992. dependencies = [
  4993. "windows-sys 0.48.0",
  4994. ]
  4995. [[package]]
  4996. name = "scopeguard"
  4997. version = "1.2.0"
  4998. source = "registry+https://github.com/rust-lang/crates.io-index"
  4999. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  5000. [[package]]
  5001. name = "sct"
  5002. version = "0.7.1"
  5003. source = "registry+https://github.com/rust-lang/crates.io-index"
  5004. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  5005. dependencies = [
  5006. "ring 0.17.7",
  5007. "untrusted 0.9.0",
  5008. ]
  5009. [[package]]
  5010. name = "seahash"
  5011. version = "4.1.0"
  5012. source = "registry+https://github.com/rust-lang/crates.io-index"
  5013. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  5014. [[package]]
  5015. name = "sealed"
  5016. version = "0.5.0"
  5017. source = "registry+https://github.com/rust-lang/crates.io-index"
  5018. checksum = "f4a8caec23b7800fb97971a1c6ae365b6239aaeddfb934d6265f8505e795699d"
  5019. dependencies = [
  5020. "heck 0.4.1",
  5021. "proc-macro2",
  5022. "quote",
  5023. "syn 2.0.41",
  5024. ]
  5025. [[package]]
  5026. name = "sec1"
  5027. version = "0.7.3"
  5028. source = "registry+https://github.com/rust-lang/crates.io-index"
  5029. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  5030. dependencies = [
  5031. "base16ct",
  5032. "der",
  5033. "generic-array",
  5034. "pkcs8",
  5035. "subtle",
  5036. "zeroize",
  5037. ]
  5038. [[package]]
  5039. name = "self_cell"
  5040. version = "1.0.2"
  5041. source = "registry+https://github.com/rust-lang/crates.io-index"
  5042. checksum = "e388332cd64eb80cd595a00941baf513caffae8dce9cfd0467fc9c66397dade6"
  5043. [[package]]
  5044. name = "semver"
  5045. version = "0.9.0"
  5046. source = "registry+https://github.com/rust-lang/crates.io-index"
  5047. checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  5048. dependencies = [
  5049. "semver-parser",
  5050. ]
  5051. [[package]]
  5052. name = "semver"
  5053. version = "1.0.20"
  5054. source = "registry+https://github.com/rust-lang/crates.io-index"
  5055. checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
  5056. dependencies = [
  5057. "serde",
  5058. ]
  5059. [[package]]
  5060. name = "semver-parser"
  5061. version = "0.7.0"
  5062. source = "registry+https://github.com/rust-lang/crates.io-index"
  5063. checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  5064. [[package]]
  5065. name = "serde"
  5066. version = "1.0.193"
  5067. source = "registry+https://github.com/rust-lang/crates.io-index"
  5068. checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
  5069. dependencies = [
  5070. "serde_derive",
  5071. ]
  5072. [[package]]
  5073. name = "serde-value"
  5074. version = "0.7.0"
  5075. source = "registry+https://github.com/rust-lang/crates.io-index"
  5076. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  5077. dependencies = [
  5078. "ordered-float",
  5079. "serde",
  5080. ]
  5081. [[package]]
  5082. name = "serde-wasm-bindgen"
  5083. version = "0.4.5"
  5084. source = "registry+https://github.com/rust-lang/crates.io-index"
  5085. checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
  5086. dependencies = [
  5087. "js-sys",
  5088. "serde",
  5089. "wasm-bindgen",
  5090. ]
  5091. [[package]]
  5092. name = "serde_derive"
  5093. version = "1.0.193"
  5094. source = "registry+https://github.com/rust-lang/crates.io-index"
  5095. checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
  5096. dependencies = [
  5097. "proc-macro2",
  5098. "quote",
  5099. "syn 2.0.41",
  5100. ]
  5101. [[package]]
  5102. name = "serde_fmt"
  5103. version = "1.0.3"
  5104. source = "registry+https://github.com/rust-lang/crates.io-index"
  5105. checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
  5106. dependencies = [
  5107. "serde",
  5108. ]
  5109. [[package]]
  5110. name = "serde_ignored"
  5111. version = "0.1.9"
  5112. source = "registry+https://github.com/rust-lang/crates.io-index"
  5113. checksum = "80c31d5c53fd39f208e770f5a20a0bb214dee2a8d0d8adba18e19ad95a482ca5"
  5114. dependencies = [
  5115. "serde",
  5116. ]
  5117. [[package]]
  5118. name = "serde_json"
  5119. version = "1.0.108"
  5120. source = "registry+https://github.com/rust-lang/crates.io-index"
  5121. checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
  5122. dependencies = [
  5123. "itoa",
  5124. "ryu",
  5125. "serde",
  5126. ]
  5127. [[package]]
  5128. name = "serde_qs"
  5129. version = "0.8.5"
  5130. source = "registry+https://github.com/rust-lang/crates.io-index"
  5131. checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
  5132. dependencies = [
  5133. "percent-encoding",
  5134. "serde",
  5135. "thiserror",
  5136. ]
  5137. [[package]]
  5138. name = "serde_spanned"
  5139. version = "0.6.4"
  5140. source = "registry+https://github.com/rust-lang/crates.io-index"
  5141. checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
  5142. dependencies = [
  5143. "serde",
  5144. ]
  5145. [[package]]
  5146. name = "serde_urlencoded"
  5147. version = "0.7.1"
  5148. source = "registry+https://github.com/rust-lang/crates.io-index"
  5149. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  5150. dependencies = [
  5151. "form_urlencoded",
  5152. "itoa",
  5153. "ryu",
  5154. "serde",
  5155. ]
  5156. [[package]]
  5157. name = "serde_with"
  5158. version = "3.4.0"
  5159. source = "registry+https://github.com/rust-lang/crates.io-index"
  5160. checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
  5161. dependencies = [
  5162. "base64 0.21.5",
  5163. "chrono",
  5164. "hex",
  5165. "indexmap 1.9.3",
  5166. "indexmap 2.1.0",
  5167. "serde",
  5168. "serde_json",
  5169. "serde_with_macros",
  5170. "time 0.3.30",
  5171. ]
  5172. [[package]]
  5173. name = "serde_with_macros"
  5174. version = "3.4.0"
  5175. source = "registry+https://github.com/rust-lang/crates.io-index"
  5176. checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788"
  5177. dependencies = [
  5178. "darling 0.20.3",
  5179. "proc-macro2",
  5180. "quote",
  5181. "syn 2.0.41",
  5182. ]
  5183. [[package]]
  5184. name = "sha1"
  5185. version = "0.6.1"
  5186. source = "registry+https://github.com/rust-lang/crates.io-index"
  5187. checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
  5188. dependencies = [
  5189. "sha1_smol",
  5190. ]
  5191. [[package]]
  5192. name = "sha1"
  5193. version = "0.10.6"
  5194. source = "registry+https://github.com/rust-lang/crates.io-index"
  5195. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  5196. dependencies = [
  5197. "cfg-if 1.0.0",
  5198. "cpufeatures",
  5199. "digest 0.10.7",
  5200. ]
  5201. [[package]]
  5202. name = "sha1_smol"
  5203. version = "1.0.0"
  5204. source = "registry+https://github.com/rust-lang/crates.io-index"
  5205. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  5206. [[package]]
  5207. name = "sha2"
  5208. version = "0.9.9"
  5209. source = "registry+https://github.com/rust-lang/crates.io-index"
  5210. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  5211. dependencies = [
  5212. "block-buffer 0.9.0",
  5213. "cfg-if 1.0.0",
  5214. "cpufeatures",
  5215. "digest 0.9.0",
  5216. "opaque-debug",
  5217. ]
  5218. [[package]]
  5219. name = "sha2"
  5220. version = "0.10.8"
  5221. source = "registry+https://github.com/rust-lang/crates.io-index"
  5222. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  5223. dependencies = [
  5224. "cfg-if 1.0.0",
  5225. "cpufeatures",
  5226. "digest 0.10.7",
  5227. ]
  5228. [[package]]
  5229. name = "sha3"
  5230. version = "0.10.8"
  5231. source = "registry+https://github.com/rust-lang/crates.io-index"
  5232. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  5233. dependencies = [
  5234. "digest 0.10.7",
  5235. "keccak",
  5236. ]
  5237. [[package]]
  5238. name = "sharded-slab"
  5239. version = "0.1.7"
  5240. source = "registry+https://github.com/rust-lang/crates.io-index"
  5241. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  5242. dependencies = [
  5243. "lazy_static",
  5244. ]
  5245. [[package]]
  5246. name = "shared-buffer"
  5247. version = "0.1.3"
  5248. source = "registry+https://github.com/rust-lang/crates.io-index"
  5249. checksum = "2cf61602ee61e2f83dd016b3e6387245291cf728ea071c378b35088125b4d995"
  5250. dependencies = [
  5251. "bytes 1.5.0",
  5252. "memmap2 0.6.2",
  5253. ]
  5254. [[package]]
  5255. name = "shellexpand"
  5256. version = "3.1.0"
  5257. source = "registry+https://github.com/rust-lang/crates.io-index"
  5258. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  5259. dependencies = [
  5260. "dirs",
  5261. ]
  5262. [[package]]
  5263. name = "shlex"
  5264. version = "1.2.0"
  5265. source = "registry+https://github.com/rust-lang/crates.io-index"
  5266. checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
  5267. [[package]]
  5268. name = "signal-hook"
  5269. version = "0.3.17"
  5270. source = "registry+https://github.com/rust-lang/crates.io-index"
  5271. checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
  5272. dependencies = [
  5273. "libc",
  5274. "signal-hook-registry",
  5275. ]
  5276. [[package]]
  5277. name = "signal-hook-async-std"
  5278. version = "0.2.2"
  5279. source = "registry+https://github.com/rust-lang/crates.io-index"
  5280. checksum = "0c4aa94397e2023af5b7cff5b8d4785e935cfb77f0e4aab0cae3b26258ace556"
  5281. dependencies = [
  5282. "async-io 1.13.0",
  5283. "futures-lite 1.13.0",
  5284. "libc",
  5285. "signal-hook",
  5286. ]
  5287. [[package]]
  5288. name = "signal-hook-registry"
  5289. version = "1.4.1"
  5290. source = "registry+https://github.com/rust-lang/crates.io-index"
  5291. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  5292. dependencies = [
  5293. "libc",
  5294. ]
  5295. [[package]]
  5296. name = "signature"
  5297. version = "1.6.4"
  5298. source = "registry+https://github.com/rust-lang/crates.io-index"
  5299. checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
  5300. [[package]]
  5301. name = "signature"
  5302. version = "2.2.0"
  5303. source = "registry+https://github.com/rust-lang/crates.io-index"
  5304. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  5305. dependencies = [
  5306. "digest 0.10.7",
  5307. "rand_core 0.6.4",
  5308. ]
  5309. [[package]]
  5310. name = "simd-adler32"
  5311. version = "0.3.7"
  5312. source = "registry+https://github.com/rust-lang/crates.io-index"
  5313. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  5314. [[package]]
  5315. name = "simdutf8"
  5316. version = "0.1.4"
  5317. source = "registry+https://github.com/rust-lang/crates.io-index"
  5318. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  5319. [[package]]
  5320. name = "simple_asn1"
  5321. version = "0.6.2"
  5322. source = "registry+https://github.com/rust-lang/crates.io-index"
  5323. checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
  5324. dependencies = [
  5325. "num-bigint",
  5326. "num-traits",
  5327. "thiserror",
  5328. "time 0.3.30",
  5329. ]
  5330. [[package]]
  5331. name = "simplelog"
  5332. version = "0.12.1"
  5333. source = "registry+https://github.com/rust-lang/crates.io-index"
  5334. checksum = "acee08041c5de3d5048c8b3f6f13fafb3026b24ba43c6a695a0c76179b844369"
  5335. dependencies = [
  5336. "log",
  5337. "termcolor",
  5338. "time 0.3.30",
  5339. ]
  5340. [[package]]
  5341. name = "siphasher"
  5342. version = "0.3.11"
  5343. source = "registry+https://github.com/rust-lang/crates.io-index"
  5344. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  5345. [[package]]
  5346. name = "skeptic"
  5347. version = "0.13.7"
  5348. source = "registry+https://github.com/rust-lang/crates.io-index"
  5349. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  5350. dependencies = [
  5351. "bytecount",
  5352. "cargo_metadata",
  5353. "error-chain",
  5354. "glob",
  5355. "pulldown-cmark",
  5356. "tempfile",
  5357. "walkdir",
  5358. ]
  5359. [[package]]
  5360. name = "slab"
  5361. version = "0.4.9"
  5362. source = "registry+https://github.com/rust-lang/crates.io-index"
  5363. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  5364. dependencies = [
  5365. "autocfg",
  5366. ]
  5367. [[package]]
  5368. name = "sled"
  5369. version = "0.34.7"
  5370. source = "registry+https://github.com/rust-lang/crates.io-index"
  5371. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  5372. dependencies = [
  5373. "crc32fast",
  5374. "crossbeam-epoch",
  5375. "crossbeam-utils",
  5376. "fs2",
  5377. "fxhash",
  5378. "libc",
  5379. "log",
  5380. "parking_lot 0.11.2",
  5381. ]
  5382. [[package]]
  5383. name = "sled-overlay"
  5384. version = "0.0.8"
  5385. source = "registry+https://github.com/rust-lang/crates.io-index"
  5386. checksum = "88e44aa08940d9725a49a20955b44cd9807445d5bb7ad3cd3a6ae8eb45352d05"
  5387. dependencies = [
  5388. "sled",
  5389. ]
  5390. [[package]]
  5391. name = "slice-group-by"
  5392. version = "0.3.1"
  5393. source = "registry+https://github.com/rust-lang/crates.io-index"
  5394. checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
  5395. [[package]]
  5396. name = "slotmap"
  5397. version = "1.0.7"
  5398. source = "registry+https://github.com/rust-lang/crates.io-index"
  5399. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  5400. dependencies = [
  5401. "version_check",
  5402. ]
  5403. [[package]]
  5404. name = "sluice"
  5405. version = "0.5.5"
  5406. source = "registry+https://github.com/rust-lang/crates.io-index"
  5407. checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
  5408. dependencies = [
  5409. "async-channel 1.9.0",
  5410. "futures-core",
  5411. "futures-io",
  5412. ]
  5413. [[package]]
  5414. name = "smallvec"
  5415. version = "1.11.2"
  5416. source = "registry+https://github.com/rust-lang/crates.io-index"
  5417. checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
  5418. [[package]]
  5419. name = "smartcow"
  5420. version = "0.1.0"
  5421. source = "registry+https://github.com/rust-lang/crates.io-index"
  5422. checksum = "05e3ed3ccf93c7425507e5e2261a3fc90d14267d491f360b9b679ae0a4ce693e"
  5423. dependencies = [
  5424. "smartstring",
  5425. ]
  5426. [[package]]
  5427. name = "smartstring"
  5428. version = "0.2.10"
  5429. source = "registry+https://github.com/rust-lang/crates.io-index"
  5430. checksum = "e714dff2b33f2321fdcd475b71cec79781a692d846f37f415fb395a1d2bcd48e"
  5431. dependencies = [
  5432. "static_assertions",
  5433. ]
  5434. [[package]]
  5435. name = "smol"
  5436. version = "1.3.0"
  5437. source = "registry+https://github.com/rust-lang/crates.io-index"
  5438. checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
  5439. dependencies = [
  5440. "async-channel 1.9.0",
  5441. "async-executor",
  5442. "async-fs",
  5443. "async-io 1.13.0",
  5444. "async-lock 2.8.0",
  5445. "async-net",
  5446. "async-process",
  5447. "blocking",
  5448. "futures-lite 1.13.0",
  5449. ]
  5450. [[package]]
  5451. name = "socket2"
  5452. version = "0.4.10"
  5453. source = "registry+https://github.com/rust-lang/crates.io-index"
  5454. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  5455. dependencies = [
  5456. "libc",
  5457. "winapi",
  5458. ]
  5459. [[package]]
  5460. name = "socket2"
  5461. version = "0.5.5"
  5462. source = "registry+https://github.com/rust-lang/crates.io-index"
  5463. checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
  5464. dependencies = [
  5465. "libc",
  5466. "windows-sys 0.48.0",
  5467. ]
  5468. [[package]]
  5469. name = "spin"
  5470. version = "0.5.2"
  5471. source = "registry+https://github.com/rust-lang/crates.io-index"
  5472. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5473. [[package]]
  5474. name = "spin"
  5475. version = "0.9.8"
  5476. source = "registry+https://github.com/rust-lang/crates.io-index"
  5477. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  5478. [[package]]
  5479. name = "spinning_top"
  5480. version = "0.2.5"
  5481. source = "registry+https://github.com/rust-lang/crates.io-index"
  5482. checksum = "5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0"
  5483. dependencies = [
  5484. "lock_api",
  5485. ]
  5486. [[package]]
  5487. name = "spki"
  5488. version = "0.7.3"
  5489. source = "registry+https://github.com/rust-lang/crates.io-index"
  5490. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  5491. dependencies = [
  5492. "base64ct",
  5493. "der",
  5494. ]
  5495. [[package]]
  5496. name = "ssh-cipher"
  5497. version = "0.2.0"
  5498. source = "registry+https://github.com/rust-lang/crates.io-index"
  5499. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  5500. dependencies = [
  5501. "cipher 0.4.4",
  5502. "ssh-encoding",
  5503. ]
  5504. [[package]]
  5505. name = "ssh-encoding"
  5506. version = "0.2.0"
  5507. source = "registry+https://github.com/rust-lang/crates.io-index"
  5508. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  5509. dependencies = [
  5510. "base64ct",
  5511. "pem-rfc7468",
  5512. "sha2 0.10.8",
  5513. ]
  5514. [[package]]
  5515. name = "ssh-key"
  5516. version = "0.6.3"
  5517. source = "registry+https://github.com/rust-lang/crates.io-index"
  5518. checksum = "c51901eb883a5b442b506a1f8fa483d143f3bab513fe721e398ec56c77624feb"
  5519. dependencies = [
  5520. "p256",
  5521. "p384",
  5522. "p521",
  5523. "rand_core 0.6.4",
  5524. "rsa",
  5525. "sec1",
  5526. "sha2 0.10.8",
  5527. "signature 2.2.0",
  5528. "ssh-cipher",
  5529. "ssh-encoding",
  5530. "subtle",
  5531. "zeroize",
  5532. ]
  5533. [[package]]
  5534. name = "stable_deref_trait"
  5535. version = "1.2.0"
  5536. source = "registry+https://github.com/rust-lang/crates.io-index"
  5537. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5538. [[package]]
  5539. name = "standback"
  5540. version = "0.2.17"
  5541. source = "registry+https://github.com/rust-lang/crates.io-index"
  5542. checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
  5543. dependencies = [
  5544. "version_check",
  5545. ]
  5546. [[package]]
  5547. name = "static_assertions"
  5548. version = "1.1.0"
  5549. source = "registry+https://github.com/rust-lang/crates.io-index"
  5550. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5551. [[package]]
  5552. name = "stdweb"
  5553. version = "0.4.20"
  5554. source = "registry+https://github.com/rust-lang/crates.io-index"
  5555. checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
  5556. dependencies = [
  5557. "discard",
  5558. "rustc_version 0.2.3",
  5559. "stdweb-derive",
  5560. "stdweb-internal-macros",
  5561. "stdweb-internal-runtime",
  5562. "wasm-bindgen",
  5563. ]
  5564. [[package]]
  5565. name = "stdweb-derive"
  5566. version = "0.5.3"
  5567. source = "registry+https://github.com/rust-lang/crates.io-index"
  5568. checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
  5569. dependencies = [
  5570. "proc-macro2",
  5571. "quote",
  5572. "serde",
  5573. "serde_derive",
  5574. "syn 1.0.109",
  5575. ]
  5576. [[package]]
  5577. name = "stdweb-internal-macros"
  5578. version = "0.2.9"
  5579. source = "registry+https://github.com/rust-lang/crates.io-index"
  5580. checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
  5581. dependencies = [
  5582. "base-x",
  5583. "proc-macro2",
  5584. "quote",
  5585. "serde",
  5586. "serde_derive",
  5587. "serde_json",
  5588. "sha1 0.6.1",
  5589. "syn 1.0.109",
  5590. ]
  5591. [[package]]
  5592. name = "stdweb-internal-runtime"
  5593. version = "0.1.5"
  5594. source = "registry+https://github.com/rust-lang/crates.io-index"
  5595. checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
  5596. [[package]]
  5597. name = "strsim"
  5598. version = "0.8.0"
  5599. source = "registry+https://github.com/rust-lang/crates.io-index"
  5600. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  5601. [[package]]
  5602. name = "strsim"
  5603. version = "0.9.3"
  5604. source = "registry+https://github.com/rust-lang/crates.io-index"
  5605. checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
  5606. [[package]]
  5607. name = "strsim"
  5608. version = "0.10.0"
  5609. source = "registry+https://github.com/rust-lang/crates.io-index"
  5610. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  5611. [[package]]
  5612. name = "structopt"
  5613. version = "0.3.26"
  5614. source = "registry+https://github.com/rust-lang/crates.io-index"
  5615. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  5616. dependencies = [
  5617. "clap 2.34.0",
  5618. "lazy_static",
  5619. "structopt-derive",
  5620. ]
  5621. [[package]]
  5622. name = "structopt-derive"
  5623. version = "0.4.18"
  5624. source = "registry+https://github.com/rust-lang/crates.io-index"
  5625. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  5626. dependencies = [
  5627. "heck 0.3.3",
  5628. "proc-macro-error",
  5629. "proc-macro2",
  5630. "quote",
  5631. "syn 1.0.109",
  5632. ]
  5633. [[package]]
  5634. name = "structopt-toml"
  5635. version = "0.5.1"
  5636. source = "registry+https://github.com/rust-lang/crates.io-index"
  5637. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  5638. dependencies = [
  5639. "anyhow",
  5640. "clap 2.34.0",
  5641. "serde",
  5642. "serde_derive",
  5643. "skeptic",
  5644. "structopt",
  5645. "structopt-toml-derive",
  5646. "toml 0.5.11",
  5647. ]
  5648. [[package]]
  5649. name = "structopt-toml-derive"
  5650. version = "0.5.1"
  5651. source = "registry+https://github.com/rust-lang/crates.io-index"
  5652. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  5653. dependencies = [
  5654. "heck 0.4.1",
  5655. "proc-macro2",
  5656. "quote",
  5657. "syn 1.0.109",
  5658. ]
  5659. [[package]]
  5660. name = "strum"
  5661. version = "0.25.0"
  5662. source = "registry+https://github.com/rust-lang/crates.io-index"
  5663. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  5664. dependencies = [
  5665. "strum_macros",
  5666. ]
  5667. [[package]]
  5668. name = "strum_macros"
  5669. version = "0.25.3"
  5670. source = "registry+https://github.com/rust-lang/crates.io-index"
  5671. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  5672. dependencies = [
  5673. "heck 0.4.1",
  5674. "proc-macro2",
  5675. "quote",
  5676. "rustversion",
  5677. "syn 2.0.41",
  5678. ]
  5679. [[package]]
  5680. name = "subtle"
  5681. version = "2.5.0"
  5682. source = "registry+https://github.com/rust-lang/crates.io-index"
  5683. checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
  5684. [[package]]
  5685. name = "surf"
  5686. version = "2.3.2"
  5687. source = "registry+https://github.com/rust-lang/crates.io-index"
  5688. checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7"
  5689. dependencies = [
  5690. "async-std",
  5691. "async-trait",
  5692. "cfg-if 1.0.0",
  5693. "encoding_rs",
  5694. "futures-util",
  5695. "getrandom 0.2.11",
  5696. "http-client",
  5697. "http-types",
  5698. "log",
  5699. "mime_guess",
  5700. "once_cell",
  5701. "pin-project-lite 0.2.13",
  5702. "serde",
  5703. "serde_json",
  5704. "web-sys",
  5705. ]
  5706. [[package]]
  5707. name = "sval"
  5708. version = "2.10.2"
  5709. source = "registry+https://github.com/rust-lang/crates.io-index"
  5710. checksum = "b15df12a8db7c216a04b4b438f90d50d5335cd38f161b56389c9f5c9d96d0873"
  5711. [[package]]
  5712. name = "sval_buffer"
  5713. version = "2.10.2"
  5714. source = "registry+https://github.com/rust-lang/crates.io-index"
  5715. checksum = "57e80556bc8acea0446e574ce542ad6114a76a0237f28a842bc01ca3ea98f479"
  5716. dependencies = [
  5717. "sval",
  5718. "sval_ref",
  5719. ]
  5720. [[package]]
  5721. name = "sval_dynamic"
  5722. version = "2.10.2"
  5723. source = "registry+https://github.com/rust-lang/crates.io-index"
  5724. checksum = "9d93d2259edb1d7b4316179f0a98c62e3ffc726f47ab200e07cfe382771f57b8"
  5725. dependencies = [
  5726. "sval",
  5727. ]
  5728. [[package]]
  5729. name = "sval_fmt"
  5730. version = "2.10.2"
  5731. source = "registry+https://github.com/rust-lang/crates.io-index"
  5732. checksum = "532f7f882226f7a5a4656f5151224aaebf8217e0d539cb1595b831bace921343"
  5733. dependencies = [
  5734. "itoa",
  5735. "ryu",
  5736. "sval",
  5737. ]
  5738. [[package]]
  5739. name = "sval_json"
  5740. version = "2.10.2"
  5741. source = "registry+https://github.com/rust-lang/crates.io-index"
  5742. checksum = "76e03bd8aa0ae6ee018f7ae95c9714577687a4415bd1a5f19b26e34695f7e072"
  5743. dependencies = [
  5744. "itoa",
  5745. "ryu",
  5746. "sval",
  5747. ]
  5748. [[package]]
  5749. name = "sval_ref"
  5750. version = "2.10.2"
  5751. source = "registry+https://github.com/rust-lang/crates.io-index"
  5752. checksum = "75ed054f2fb8c2a0ab5d36c1ec57b412919700099fc5e32ad8e7a38b23e1a9e1"
  5753. dependencies = [
  5754. "sval",
  5755. ]
  5756. [[package]]
  5757. name = "sval_serde"
  5758. version = "2.10.2"
  5759. source = "registry+https://github.com/rust-lang/crates.io-index"
  5760. checksum = "7ff191c4ff05b67e3844c161021427646cde5d6624597958be158357d9200586"
  5761. dependencies = [
  5762. "serde",
  5763. "sval",
  5764. "sval_buffer",
  5765. "sval_fmt",
  5766. ]
  5767. [[package]]
  5768. name = "swapd"
  5769. version = "0.4.1"
  5770. dependencies = [
  5771. "darkfi",
  5772. "darkfi-serial",
  5773. "easy-parallel",
  5774. "log",
  5775. "serde",
  5776. "signal-hook",
  5777. "signal-hook-async-std",
  5778. "simplelog",
  5779. "sled",
  5780. "smol",
  5781. "structopt",
  5782. "structopt-toml",
  5783. "url",
  5784. ]
  5785. [[package]]
  5786. name = "syn"
  5787. version = "1.0.109"
  5788. source = "registry+https://github.com/rust-lang/crates.io-index"
  5789. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  5790. dependencies = [
  5791. "proc-macro2",
  5792. "quote",
  5793. "unicode-ident",
  5794. ]
  5795. [[package]]
  5796. name = "syn"
  5797. version = "2.0.41"
  5798. source = "registry+https://github.com/rust-lang/crates.io-index"
  5799. checksum = "44c8b28c477cc3bf0e7966561e3460130e1255f7a1cf71931075f1c5e7a7e269"
  5800. dependencies = [
  5801. "proc-macro2",
  5802. "quote",
  5803. "unicode-ident",
  5804. ]
  5805. [[package]]
  5806. name = "synstructure"
  5807. version = "0.12.6"
  5808. source = "registry+https://github.com/rust-lang/crates.io-index"
  5809. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  5810. dependencies = [
  5811. "proc-macro2",
  5812. "quote",
  5813. "syn 1.0.109",
  5814. "unicode-xid",
  5815. ]
  5816. [[package]]
  5817. name = "tabbycat"
  5818. version = "0.1.2"
  5819. source = "registry+https://github.com/rust-lang/crates.io-index"
  5820. checksum = "c45590f0f859197b4545be1b17b2bc3cc7bb075f7d1cc0ea1dc6521c0bf256a3"
  5821. dependencies = [
  5822. "anyhow",
  5823. "derive_builder",
  5824. "regex",
  5825. ]
  5826. [[package]]
  5827. name = "tap"
  5828. version = "1.0.1"
  5829. source = "registry+https://github.com/rust-lang/crates.io-index"
  5830. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5831. [[package]]
  5832. name = "target-lexicon"
  5833. version = "0.12.12"
  5834. source = "registry+https://github.com/rust-lang/crates.io-index"
  5835. checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"
  5836. [[package]]
  5837. name = "taud"
  5838. version = "0.4.1"
  5839. dependencies = [
  5840. "async-trait",
  5841. "blake3 1.5.0",
  5842. "bs58",
  5843. "chrono",
  5844. "crypto_box",
  5845. "darkfi",
  5846. "darkfi-serial",
  5847. "easy-parallel",
  5848. "futures",
  5849. "hex",
  5850. "libc",
  5851. "log",
  5852. "rand 0.8.5",
  5853. "serde",
  5854. "signal-hook",
  5855. "signal-hook-async-std",
  5856. "simplelog",
  5857. "sled",
  5858. "smol",
  5859. "structopt",
  5860. "structopt-toml",
  5861. "thiserror",
  5862. "tinyjson",
  5863. "toml 0.8.8",
  5864. "url",
  5865. ]
  5866. [[package]]
  5867. name = "tempfile"
  5868. version = "3.8.1"
  5869. source = "registry+https://github.com/rust-lang/crates.io-index"
  5870. checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
  5871. dependencies = [
  5872. "cfg-if 1.0.0",
  5873. "fastrand 2.0.1",
  5874. "redox_syscall 0.4.1",
  5875. "rustix 0.38.28",
  5876. "windows-sys 0.48.0",
  5877. ]
  5878. [[package]]
  5879. name = "term"
  5880. version = "0.7.0"
  5881. source = "registry+https://github.com/rust-lang/crates.io-index"
  5882. checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
  5883. dependencies = [
  5884. "dirs-next",
  5885. "rustversion",
  5886. "winapi",
  5887. ]
  5888. [[package]]
  5889. name = "termcolor"
  5890. version = "1.1.3"
  5891. source = "registry+https://github.com/rust-lang/crates.io-index"
  5892. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  5893. dependencies = [
  5894. "winapi-util",
  5895. ]
  5896. [[package]]
  5897. name = "textwrap"
  5898. version = "0.11.0"
  5899. source = "registry+https://github.com/rust-lang/crates.io-index"
  5900. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  5901. dependencies = [
  5902. "unicode-width",
  5903. ]
  5904. [[package]]
  5905. name = "thiserror"
  5906. version = "1.0.50"
  5907. source = "registry+https://github.com/rust-lang/crates.io-index"
  5908. checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
  5909. dependencies = [
  5910. "thiserror-impl",
  5911. ]
  5912. [[package]]
  5913. name = "thiserror-impl"
  5914. version = "1.0.50"
  5915. source = "registry+https://github.com/rust-lang/crates.io-index"
  5916. checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
  5917. dependencies = [
  5918. "proc-macro2",
  5919. "quote",
  5920. "syn 2.0.41",
  5921. ]
  5922. [[package]]
  5923. name = "thread_local"
  5924. version = "1.1.7"
  5925. source = "registry+https://github.com/rust-lang/crates.io-index"
  5926. checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
  5927. dependencies = [
  5928. "cfg-if 1.0.0",
  5929. "once_cell",
  5930. ]
  5931. [[package]]
  5932. name = "tide"
  5933. version = "0.17.0-beta.1"
  5934. source = "registry+https://github.com/rust-lang/crates.io-index"
  5935. checksum = "c5a885fbeb66af9d607a731ce167e3fdfe65e49a68f37f4bbd8618b5efc6ad51"
  5936. dependencies = [
  5937. "async-h1",
  5938. "async-session",
  5939. "async-sse",
  5940. "async-std",
  5941. "async-trait",
  5942. "femme",
  5943. "futures-util",
  5944. "http-client",
  5945. "http-types",
  5946. "kv-log-macro",
  5947. "log",
  5948. "pin-project-lite 0.2.13",
  5949. "routefinder",
  5950. "serde",
  5951. "serde_json",
  5952. ]
  5953. [[package]]
  5954. name = "time"
  5955. version = "0.2.27"
  5956. source = "registry+https://github.com/rust-lang/crates.io-index"
  5957. checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
  5958. dependencies = [
  5959. "const_fn",
  5960. "libc",
  5961. "standback",
  5962. "stdweb",
  5963. "time-macros 0.1.1",
  5964. "version_check",
  5965. "winapi",
  5966. ]
  5967. [[package]]
  5968. name = "time"
  5969. version = "0.3.30"
  5970. source = "registry+https://github.com/rust-lang/crates.io-index"
  5971. checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
  5972. dependencies = [
  5973. "deranged",
  5974. "itoa",
  5975. "libc",
  5976. "num_threads",
  5977. "powerfmt",
  5978. "serde",
  5979. "time-core",
  5980. "time-macros 0.2.15",
  5981. ]
  5982. [[package]]
  5983. name = "time-core"
  5984. version = "0.1.2"
  5985. source = "registry+https://github.com/rust-lang/crates.io-index"
  5986. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  5987. [[package]]
  5988. name = "time-macros"
  5989. version = "0.1.1"
  5990. source = "registry+https://github.com/rust-lang/crates.io-index"
  5991. checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
  5992. dependencies = [
  5993. "proc-macro-hack",
  5994. "time-macros-impl",
  5995. ]
  5996. [[package]]
  5997. name = "time-macros"
  5998. version = "0.2.15"
  5999. source = "registry+https://github.com/rust-lang/crates.io-index"
  6000. checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
  6001. dependencies = [
  6002. "time-core",
  6003. ]
  6004. [[package]]
  6005. name = "time-macros-impl"
  6006. version = "0.1.2"
  6007. source = "registry+https://github.com/rust-lang/crates.io-index"
  6008. checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
  6009. dependencies = [
  6010. "proc-macro-hack",
  6011. "proc-macro2",
  6012. "quote",
  6013. "standback",
  6014. "syn 1.0.109",
  6015. ]
  6016. [[package]]
  6017. name = "tiny-keccak"
  6018. version = "2.0.2"
  6019. source = "registry+https://github.com/rust-lang/crates.io-index"
  6020. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  6021. dependencies = [
  6022. "crunchy",
  6023. ]
  6024. [[package]]
  6025. name = "tinyjson"
  6026. version = "2.5.1"
  6027. source = "registry+https://github.com/rust-lang/crates.io-index"
  6028. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  6029. [[package]]
  6030. name = "tinystr"
  6031. version = "0.7.5"
  6032. source = "registry+https://github.com/rust-lang/crates.io-index"
  6033. checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece"
  6034. dependencies = [
  6035. "displaydoc",
  6036. ]
  6037. [[package]]
  6038. name = "tinyvec"
  6039. version = "1.6.0"
  6040. source = "registry+https://github.com/rust-lang/crates.io-index"
  6041. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  6042. dependencies = [
  6043. "tinyvec_macros",
  6044. ]
  6045. [[package]]
  6046. name = "tinyvec_macros"
  6047. version = "0.1.1"
  6048. source = "registry+https://github.com/rust-lang/crates.io-index"
  6049. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  6050. [[package]]
  6051. name = "toml"
  6052. version = "0.5.11"
  6053. source = "registry+https://github.com/rust-lang/crates.io-index"
  6054. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  6055. dependencies = [
  6056. "serde",
  6057. ]
  6058. [[package]]
  6059. name = "toml"
  6060. version = "0.7.8"
  6061. source = "registry+https://github.com/rust-lang/crates.io-index"
  6062. checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
  6063. dependencies = [
  6064. "serde",
  6065. "serde_spanned",
  6066. "toml_datetime",
  6067. "toml_edit 0.19.15",
  6068. ]
  6069. [[package]]
  6070. name = "toml"
  6071. version = "0.8.8"
  6072. source = "registry+https://github.com/rust-lang/crates.io-index"
  6073. checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
  6074. dependencies = [
  6075. "serde",
  6076. "serde_spanned",
  6077. "toml_datetime",
  6078. "toml_edit 0.21.0",
  6079. ]
  6080. [[package]]
  6081. name = "toml_datetime"
  6082. version = "0.6.5"
  6083. source = "registry+https://github.com/rust-lang/crates.io-index"
  6084. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  6085. dependencies = [
  6086. "serde",
  6087. ]
  6088. [[package]]
  6089. name = "toml_edit"
  6090. version = "0.19.15"
  6091. source = "registry+https://github.com/rust-lang/crates.io-index"
  6092. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  6093. dependencies = [
  6094. "indexmap 2.1.0",
  6095. "serde",
  6096. "serde_spanned",
  6097. "toml_datetime",
  6098. "winnow",
  6099. ]
  6100. [[package]]
  6101. name = "toml_edit"
  6102. version = "0.20.7"
  6103. source = "registry+https://github.com/rust-lang/crates.io-index"
  6104. checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
  6105. dependencies = [
  6106. "indexmap 2.1.0",
  6107. "toml_datetime",
  6108. "winnow",
  6109. ]
  6110. [[package]]
  6111. name = "toml_edit"
  6112. version = "0.21.0"
  6113. source = "registry+https://github.com/rust-lang/crates.io-index"
  6114. checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
  6115. dependencies = [
  6116. "indexmap 2.1.0",
  6117. "serde",
  6118. "serde_spanned",
  6119. "toml_datetime",
  6120. "winnow",
  6121. ]
  6122. [[package]]
  6123. name = "tor-async-utils"
  6124. version = "0.1.5"
  6125. source = "registry+https://github.com/rust-lang/crates.io-index"
  6126. checksum = "154dff0d035ea51ee67b491aca0d90875fae090cfea430527fcc343a0c59c0a3"
  6127. dependencies = [
  6128. "futures",
  6129. "pin-project",
  6130. "postage",
  6131. "thiserror",
  6132. "void",
  6133. ]
  6134. [[package]]
  6135. name = "tor-basic-utils"
  6136. version = "0.8.0"
  6137. source = "registry+https://github.com/rust-lang/crates.io-index"
  6138. checksum = "11e82b6e151be1ba47f9aad40e02bb1dc8b2b174bc493b4a1d942ba8e405e3d3"
  6139. dependencies = [
  6140. "hex",
  6141. "libc",
  6142. "paste",
  6143. "rand 0.8.5",
  6144. "rand_chacha 0.3.1",
  6145. "slab",
  6146. "thiserror",
  6147. ]
  6148. [[package]]
  6149. name = "tor-bytes"
  6150. version = "0.8.0"
  6151. source = "registry+https://github.com/rust-lang/crates.io-index"
  6152. checksum = "46270ae4dba2a1a0632bcc2d0441de0f967ec480b52b5ee920c7d92c2de03e6d"
  6153. dependencies = [
  6154. "bytes 1.5.0",
  6155. "digest 0.10.7",
  6156. "educe",
  6157. "getrandom 0.2.11",
  6158. "signature 2.2.0",
  6159. "thiserror",
  6160. "tor-error",
  6161. "tor-llcrypto",
  6162. "zeroize",
  6163. ]
  6164. [[package]]
  6165. name = "tor-cell"
  6166. version = "0.14.0"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "95e03cdb2f056684cb2bb55e4f334464817e691a52a31961acdd5dc502cf5a36"
  6169. dependencies = [
  6170. "bitflags 2.4.1",
  6171. "bytes 1.5.0",
  6172. "caret",
  6173. "derive_more",
  6174. "educe",
  6175. "paste",
  6176. "rand 0.8.5",
  6177. "thiserror",
  6178. "tor-basic-utils",
  6179. "tor-bytes",
  6180. "tor-cert",
  6181. "tor-error",
  6182. "tor-hscrypto",
  6183. "tor-linkspec",
  6184. "tor-llcrypto",
  6185. "tor-units",
  6186. ]
  6187. [[package]]
  6188. name = "tor-cert"
  6189. version = "0.9.0"
  6190. source = "registry+https://github.com/rust-lang/crates.io-index"
  6191. checksum = "f8b7e01e5dd4b990e1269432239a8d4820a525ddb212ffaeea84855ce4fb674c"
  6192. dependencies = [
  6193. "caret",
  6194. "derive_more",
  6195. "digest 0.10.7",
  6196. "signature 1.6.4",
  6197. "thiserror",
  6198. "tor-bytes",
  6199. "tor-checkable",
  6200. "tor-llcrypto",
  6201. ]
  6202. [[package]]
  6203. name = "tor-chanmgr"
  6204. version = "0.12.0"
  6205. source = "registry+https://github.com/rust-lang/crates.io-index"
  6206. checksum = "d239e009a2fdf805abf180f6d3ef4adf84059098c0218a5207ce788a3b6cbab0"
  6207. dependencies = [
  6208. "async-trait",
  6209. "derive_builder_fork_arti",
  6210. "derive_more",
  6211. "educe",
  6212. "futures",
  6213. "postage",
  6214. "rand 0.8.5",
  6215. "safelog",
  6216. "serde",
  6217. "thiserror",
  6218. "tor-async-utils",
  6219. "tor-basic-utils",
  6220. "tor-cell",
  6221. "tor-config",
  6222. "tor-error",
  6223. "tor-linkspec",
  6224. "tor-llcrypto",
  6225. "tor-netdir",
  6226. "tor-proto",
  6227. "tor-rtcompat",
  6228. "tor-socksproto",
  6229. "tor-units",
  6230. "tracing",
  6231. "void",
  6232. ]
  6233. [[package]]
  6234. name = "tor-checkable"
  6235. version = "0.6.0"
  6236. source = "registry+https://github.com/rust-lang/crates.io-index"
  6237. checksum = "2621b68f18b04fdc09b24c825aceae9f839121c324edd606897055c0b8ba8c86"
  6238. dependencies = [
  6239. "humantime",
  6240. "signature 1.6.4",
  6241. "thiserror",
  6242. "tor-llcrypto",
  6243. ]
  6244. [[package]]
  6245. name = "tor-circmgr"
  6246. version = "0.13.0"
  6247. source = "registry+https://github.com/rust-lang/crates.io-index"
  6248. checksum = "22ad71c509608a5d020aa27a93f0fdc0e6e244a1d1f550760c863cdbe2342bd2"
  6249. dependencies = [
  6250. "amplify",
  6251. "async-trait",
  6252. "bounded-vec-deque",
  6253. "derive_builder_fork_arti",
  6254. "derive_more",
  6255. "downcast-rs",
  6256. "dyn-clone",
  6257. "educe",
  6258. "futures",
  6259. "humantime-serde",
  6260. "itertools 0.12.0",
  6261. "once_cell",
  6262. "pin-project",
  6263. "rand 0.8.5",
  6264. "retry-error",
  6265. "safelog",
  6266. "serde",
  6267. "static_assertions",
  6268. "thiserror",
  6269. "tor-async-utils",
  6270. "tor-basic-utils",
  6271. "tor-chanmgr",
  6272. "tor-config",
  6273. "tor-error",
  6274. "tor-guardmgr",
  6275. "tor-hscrypto",
  6276. "tor-linkspec",
  6277. "tor-netdir",
  6278. "tor-netdoc",
  6279. "tor-persist",
  6280. "tor-proto",
  6281. "tor-rtcompat",
  6282. "tracing",
  6283. "void",
  6284. "weak-table",
  6285. ]
  6286. [[package]]
  6287. name = "tor-config"
  6288. version = "0.9.7"
  6289. source = "registry+https://github.com/rust-lang/crates.io-index"
  6290. checksum = "7269acd2a6216641ee7448bffade1f8270236a2cbecf37f7f9e2261fa284b46b"
  6291. dependencies = [
  6292. "config",
  6293. "derive-adhoc",
  6294. "derive_builder_fork_arti",
  6295. "directories",
  6296. "educe",
  6297. "either",
  6298. "fs-mistrust",
  6299. "itertools 0.12.0",
  6300. "once_cell",
  6301. "paste",
  6302. "regex",
  6303. "serde",
  6304. "serde-value",
  6305. "serde_ignored",
  6306. "shellexpand",
  6307. "strum",
  6308. "thiserror",
  6309. "toml 0.7.8",
  6310. "tor-basic-utils",
  6311. "tor-error",
  6312. "tracing",
  6313. "void",
  6314. ]
  6315. [[package]]
  6316. name = "tor-consdiff"
  6317. version = "0.6.0"
  6318. source = "registry+https://github.com/rust-lang/crates.io-index"
  6319. checksum = "d54a6bee9535b09f433cdf0a2315f39448e19feadf76ac6cf752cd7e928be21c"
  6320. dependencies = [
  6321. "digest 0.10.7",
  6322. "hex",
  6323. "thiserror",
  6324. "tor-llcrypto",
  6325. ]
  6326. [[package]]
  6327. name = "tor-dirclient"
  6328. version = "0.11.0"
  6329. source = "registry+https://github.com/rust-lang/crates.io-index"
  6330. checksum = "00746b93f0f7731522dac4731970389d23dee3daec4a2f519d70417bcd2a5240"
  6331. dependencies = [
  6332. "async-compression",
  6333. "base64ct",
  6334. "derive_more",
  6335. "futures",
  6336. "hex",
  6337. "http 1.0.0",
  6338. "httparse",
  6339. "httpdate",
  6340. "itertools 0.12.0",
  6341. "memchr",
  6342. "thiserror",
  6343. "tor-circmgr",
  6344. "tor-error",
  6345. "tor-hscrypto",
  6346. "tor-linkspec",
  6347. "tor-llcrypto",
  6348. "tor-netdoc",
  6349. "tor-proto",
  6350. "tor-rtcompat",
  6351. "tracing",
  6352. ]
  6353. [[package]]
  6354. name = "tor-dirmgr"
  6355. version = "0.13.0"
  6356. source = "registry+https://github.com/rust-lang/crates.io-index"
  6357. checksum = "f58bbd0934d23a0f901050d840571213ce708e7600a2b347dbe9ef86e023029d"
  6358. dependencies = [
  6359. "async-trait",
  6360. "base64ct",
  6361. "derive_builder_fork_arti",
  6362. "derive_more",
  6363. "digest 0.10.7",
  6364. "educe",
  6365. "event-listener 4.0.0",
  6366. "fs-mistrust",
  6367. "fslock",
  6368. "futures",
  6369. "hex",
  6370. "humantime",
  6371. "humantime-serde",
  6372. "itertools 0.12.0",
  6373. "memmap2 0.9.0",
  6374. "once_cell",
  6375. "paste",
  6376. "postage",
  6377. "rand 0.8.5",
  6378. "retry-error",
  6379. "rusqlite",
  6380. "safelog",
  6381. "scopeguard",
  6382. "serde",
  6383. "signature 1.6.4",
  6384. "strum",
  6385. "thiserror",
  6386. "time 0.3.30",
  6387. "tor-async-utils",
  6388. "tor-basic-utils",
  6389. "tor-checkable",
  6390. "tor-circmgr",
  6391. "tor-config",
  6392. "tor-consdiff",
  6393. "tor-dirclient",
  6394. "tor-error",
  6395. "tor-guardmgr",
  6396. "tor-llcrypto",
  6397. "tor-netdir",
  6398. "tor-netdoc",
  6399. "tor-proto",
  6400. "tor-rtcompat",
  6401. "tracing",
  6402. ]
  6403. [[package]]
  6404. name = "tor-error"
  6405. version = "0.5.5"
  6406. source = "registry+https://github.com/rust-lang/crates.io-index"
  6407. checksum = "fc4dec82bb91affde760c803e84efceaaca18c26e99fc7e5255038605546e106"
  6408. dependencies = [
  6409. "backtrace",
  6410. "derive_more",
  6411. "futures",
  6412. "once_cell",
  6413. "paste",
  6414. "retry-error",
  6415. "static_assertions",
  6416. "strum",
  6417. "thiserror",
  6418. "tracing",
  6419. ]
  6420. [[package]]
  6421. name = "tor-guardmgr"
  6422. version = "0.12.0"
  6423. source = "registry+https://github.com/rust-lang/crates.io-index"
  6424. checksum = "ec3b5f8c87dff7045ad7377e5ce9d0334a966afbf6ba7d2ece502fdbe641d1be"
  6425. dependencies = [
  6426. "base64ct",
  6427. "derive_builder_fork_arti",
  6428. "derive_more",
  6429. "dyn-clone",
  6430. "educe",
  6431. "futures",
  6432. "humantime",
  6433. "humantime-serde",
  6434. "itertools 0.12.0",
  6435. "num_enum",
  6436. "pin-project",
  6437. "postage",
  6438. "rand 0.8.5",
  6439. "retain_mut",
  6440. "safelog",
  6441. "serde",
  6442. "strum",
  6443. "thiserror",
  6444. "tor-async-utils",
  6445. "tor-basic-utils",
  6446. "tor-config",
  6447. "tor-error",
  6448. "tor-linkspec",
  6449. "tor-llcrypto",
  6450. "tor-netdir",
  6451. "tor-netdoc",
  6452. "tor-persist",
  6453. "tor-proto",
  6454. "tor-rtcompat",
  6455. "tor-units",
  6456. "tracing",
  6457. ]
  6458. [[package]]
  6459. name = "tor-hsclient"
  6460. version = "0.7.0"
  6461. source = "registry+https://github.com/rust-lang/crates.io-index"
  6462. checksum = "ae622c438f8253eb82098f5b8057d695defd8acb8dffa3555dca542c97baf4f2"
  6463. dependencies = [
  6464. "async-trait",
  6465. "derive_more",
  6466. "educe",
  6467. "either",
  6468. "futures",
  6469. "itertools 0.12.0",
  6470. "postage",
  6471. "rand 0.8.5",
  6472. "rand_core 0.6.4",
  6473. "retry-error",
  6474. "safelog",
  6475. "slotmap",
  6476. "strum",
  6477. "thiserror",
  6478. "tor-async-utils",
  6479. "tor-basic-utils",
  6480. "tor-bytes",
  6481. "tor-cell",
  6482. "tor-checkable",
  6483. "tor-circmgr",
  6484. "tor-config",
  6485. "tor-dirclient",
  6486. "tor-error",
  6487. "tor-hscrypto",
  6488. "tor-keymgr",
  6489. "tor-linkspec",
  6490. "tor-llcrypto",
  6491. "tor-netdir",
  6492. "tor-netdoc",
  6493. "tor-proto",
  6494. "tor-rtcompat",
  6495. "tracing",
  6496. ]
  6497. [[package]]
  6498. name = "tor-hscrypto"
  6499. version = "0.4.0"
  6500. source = "registry+https://github.com/rust-lang/crates.io-index"
  6501. checksum = "7fdff90517c38a7704bbf10d7bea9fccdfce60d35b5434250e1ca43660b977f1"
  6502. dependencies = [
  6503. "data-encoding",
  6504. "derive_more",
  6505. "digest 0.10.7",
  6506. "itertools 0.12.0",
  6507. "paste",
  6508. "rand 0.8.5",
  6509. "rand_core 0.6.4",
  6510. "safelog",
  6511. "serde",
  6512. "signature 2.2.0",
  6513. "subtle",
  6514. "thiserror",
  6515. "tor-basic-utils",
  6516. "tor-bytes",
  6517. "tor-error",
  6518. "tor-llcrypto",
  6519. "tor-units",
  6520. ]
  6521. [[package]]
  6522. name = "tor-keymgr"
  6523. version = "0.5.0"
  6524. source = "registry+https://github.com/rust-lang/crates.io-index"
  6525. checksum = "44b637303ad2702401d36d2c95541bc4780383c0aa35901b86c4538a7441e332"
  6526. dependencies = [
  6527. "arrayvec 0.7.4",
  6528. "derive-adhoc",
  6529. "derive_builder_fork_arti",
  6530. "derive_more",
  6531. "downcast-rs",
  6532. "dyn-clone",
  6533. "fs-mistrust",
  6534. "glob-match",
  6535. "itertools 0.12.0",
  6536. "rand 0.8.5",
  6537. "serde",
  6538. "ssh-key",
  6539. "thiserror",
  6540. "tor-config",
  6541. "tor-error",
  6542. "tor-hscrypto",
  6543. "tor-llcrypto",
  6544. "walkdir",
  6545. "zeroize",
  6546. ]
  6547. [[package]]
  6548. name = "tor-linkspec"
  6549. version = "0.9.0"
  6550. source = "registry+https://github.com/rust-lang/crates.io-index"
  6551. checksum = "aa8a24909c90ac8292bd4cc98686bea66ef93ecc278d2dcfb5052827dee130c8"
  6552. dependencies = [
  6553. "base64ct",
  6554. "by_address",
  6555. "caret",
  6556. "cfg-if 1.0.0",
  6557. "derive_builder_fork_arti",
  6558. "derive_more",
  6559. "educe",
  6560. "hex",
  6561. "itertools 0.12.0",
  6562. "safelog",
  6563. "serde",
  6564. "serde_with",
  6565. "strum",
  6566. "thiserror",
  6567. "tor-basic-utils",
  6568. "tor-bytes",
  6569. "tor-config",
  6570. "tor-llcrypto",
  6571. "tor-protover",
  6572. ]
  6573. [[package]]
  6574. name = "tor-llcrypto"
  6575. version = "0.6.0"
  6576. source = "registry+https://github.com/rust-lang/crates.io-index"
  6577. checksum = "07b84fe0188173166240065213a65695b008161b23d72bd21a90a537178d1cc6"
  6578. dependencies = [
  6579. "aes 0.8.3",
  6580. "base64ct",
  6581. "ctr 0.9.2",
  6582. "curve25519-dalek",
  6583. "derive_more",
  6584. "digest 0.10.7",
  6585. "ed25519-dalek",
  6586. "educe",
  6587. "getrandom 0.2.11",
  6588. "hex",
  6589. "rand_core 0.6.4",
  6590. "rsa",
  6591. "safelog",
  6592. "serde",
  6593. "sha1 0.10.6",
  6594. "sha2 0.10.8",
  6595. "sha3",
  6596. "signature 2.2.0",
  6597. "simple_asn1",
  6598. "subtle",
  6599. "thiserror",
  6600. "x25519-dalek",
  6601. "zeroize",
  6602. ]
  6603. [[package]]
  6604. name = "tor-netdir"
  6605. version = "0.10.0"
  6606. source = "registry+https://github.com/rust-lang/crates.io-index"
  6607. checksum = "db4f25e45f47b8f13d1b72ed2f2634f0595538abae123f0c168c8592f36bea9a"
  6608. dependencies = [
  6609. "bitflags 2.4.1",
  6610. "derive_builder_fork_arti",
  6611. "derive_more",
  6612. "digest 0.10.7",
  6613. "futures",
  6614. "hex",
  6615. "humantime",
  6616. "itertools 0.12.0",
  6617. "num_enum",
  6618. "rand 0.8.5",
  6619. "serde",
  6620. "signature 1.6.4",
  6621. "static_assertions",
  6622. "strum",
  6623. "thiserror",
  6624. "time 0.3.30",
  6625. "tor-basic-utils",
  6626. "tor-checkable",
  6627. "tor-config",
  6628. "tor-error",
  6629. "tor-hscrypto",
  6630. "tor-linkspec",
  6631. "tor-llcrypto",
  6632. "tor-netdoc",
  6633. "tor-protover",
  6634. "tor-units",
  6635. "tracing",
  6636. "typed-index-collections",
  6637. ]
  6638. [[package]]
  6639. name = "tor-netdoc"
  6640. version = "0.10.0"
  6641. source = "registry+https://github.com/rust-lang/crates.io-index"
  6642. checksum = "1c8fdb79eb0d45e6fe2490a36352913cc8087edafd521df90cedc085c2c851fe"
  6643. dependencies = [
  6644. "amplify",
  6645. "base64ct",
  6646. "bitflags 2.4.1",
  6647. "cipher 0.4.4",
  6648. "derive_builder_fork_arti",
  6649. "derive_more",
  6650. "digest 0.10.7",
  6651. "educe",
  6652. "hex",
  6653. "humantime",
  6654. "itertools 0.12.0",
  6655. "once_cell",
  6656. "phf",
  6657. "rand 0.8.5",
  6658. "serde",
  6659. "serde_with",
  6660. "signature 1.6.4",
  6661. "smallvec",
  6662. "subtle",
  6663. "thiserror",
  6664. "time 0.3.30",
  6665. "tinystr",
  6666. "tor-basic-utils",
  6667. "tor-bytes",
  6668. "tor-cell",
  6669. "tor-cert",
  6670. "tor-checkable",
  6671. "tor-error",
  6672. "tor-hscrypto",
  6673. "tor-linkspec",
  6674. "tor-llcrypto",
  6675. "tor-protover",
  6676. "tor-units",
  6677. "weak-table",
  6678. "zeroize",
  6679. ]
  6680. [[package]]
  6681. name = "tor-persist"
  6682. version = "0.8.0"
  6683. source = "registry+https://github.com/rust-lang/crates.io-index"
  6684. checksum = "1d4daf63b4d111aa0d2699e5bcfd9193123d4e68ef326c4cf09b905598685225"
  6685. dependencies = [
  6686. "derive_more",
  6687. "fs-mistrust",
  6688. "fslock",
  6689. "sanitize-filename",
  6690. "serde",
  6691. "serde_json",
  6692. "thiserror",
  6693. "tor-error",
  6694. "tracing",
  6695. ]
  6696. [[package]]
  6697. name = "tor-proto"
  6698. version = "0.14.0"
  6699. source = "registry+https://github.com/rust-lang/crates.io-index"
  6700. checksum = "0a86cacde60835efec682d3ba38284f7318850f196c1f215e401a0d4bd1bca3f"
  6701. dependencies = [
  6702. "asynchronous-codec",
  6703. "bitvec",
  6704. "bytes 1.5.0",
  6705. "cipher 0.4.4",
  6706. "coarsetime",
  6707. "derive_builder_fork_arti",
  6708. "derive_more",
  6709. "digest 0.10.7",
  6710. "educe",
  6711. "futures",
  6712. "hkdf 0.12.3",
  6713. "hmac 0.12.1",
  6714. "pin-project",
  6715. "rand 0.8.5",
  6716. "rand_core 0.6.4",
  6717. "safelog",
  6718. "subtle",
  6719. "thiserror",
  6720. "tor-async-utils",
  6721. "tor-basic-utils",
  6722. "tor-bytes",
  6723. "tor-cell",
  6724. "tor-cert",
  6725. "tor-checkable",
  6726. "tor-config",
  6727. "tor-error",
  6728. "tor-hscrypto",
  6729. "tor-linkspec",
  6730. "tor-llcrypto",
  6731. "tor-protover",
  6732. "tor-rtcompat",
  6733. "tor-rtmock",
  6734. "tor-units",
  6735. "tracing",
  6736. "typenum",
  6737. "visibility",
  6738. "void",
  6739. "zeroize",
  6740. ]
  6741. [[package]]
  6742. name = "tor-protover"
  6743. version = "0.5.4"
  6744. source = "registry+https://github.com/rust-lang/crates.io-index"
  6745. checksum = "203fe1e2a4de305d285f8cf4edfe1d392e89c1e13cf69835dad43a0120a6ea83"
  6746. dependencies = [
  6747. "caret",
  6748. "thiserror",
  6749. ]
  6750. [[package]]
  6751. name = "tor-rtcompat"
  6752. version = "0.9.6"
  6753. source = "registry+https://github.com/rust-lang/crates.io-index"
  6754. checksum = "a3631fa5457470b52acbc4581dd0bbbb2a459b024157f24ad30185130bea15db"
  6755. dependencies = [
  6756. "async-io 2.2.2",
  6757. "async-rustls",
  6758. "async-std",
  6759. "async-trait",
  6760. "async_executors",
  6761. "educe",
  6762. "futures",
  6763. "pin-project",
  6764. "rustls",
  6765. "thiserror",
  6766. "x509-signature",
  6767. ]
  6768. [[package]]
  6769. name = "tor-rtmock"
  6770. version = "0.11.1"
  6771. source = "registry+https://github.com/rust-lang/crates.io-index"
  6772. checksum = "1e54eab8e1436e94bc4777a865205809cf0fe8feddca56e44f754b087908583b"
  6773. dependencies = [
  6774. "amplify",
  6775. "async-trait",
  6776. "backtrace",
  6777. "derive-adhoc",
  6778. "derive_more",
  6779. "educe",
  6780. "futures",
  6781. "humantime",
  6782. "itertools 0.12.0",
  6783. "pin-project",
  6784. "priority-queue",
  6785. "slotmap",
  6786. "strum",
  6787. "thiserror",
  6788. "tor-async-utils",
  6789. "tor-error",
  6790. "tor-rtcompat",
  6791. "tracing",
  6792. "tracing-test",
  6793. "void",
  6794. ]
  6795. [[package]]
  6796. name = "tor-socksproto"
  6797. version = "0.8.0"
  6798. source = "registry+https://github.com/rust-lang/crates.io-index"
  6799. checksum = "4c98be3d44a66b2441e7fb55757a8795d73c523cec76cd4417dd762f80cec7ba"
  6800. dependencies = [
  6801. "caret",
  6802. "subtle",
  6803. "thiserror",
  6804. "tor-bytes",
  6805. "tor-error",
  6806. ]
  6807. [[package]]
  6808. name = "tor-units"
  6809. version = "0.6.4"
  6810. source = "registry+https://github.com/rust-lang/crates.io-index"
  6811. checksum = "a924669b39fa305ccb42190abcc4ea623b596b48948429bc4d62f03c5ecf0dbe"
  6812. dependencies = [
  6813. "derive_more",
  6814. "thiserror",
  6815. ]
  6816. [[package]]
  6817. name = "tracing"
  6818. version = "0.1.40"
  6819. source = "registry+https://github.com/rust-lang/crates.io-index"
  6820. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  6821. dependencies = [
  6822. "log",
  6823. "pin-project-lite 0.2.13",
  6824. "tracing-attributes",
  6825. "tracing-core",
  6826. ]
  6827. [[package]]
  6828. name = "tracing-attributes"
  6829. version = "0.1.27"
  6830. source = "registry+https://github.com/rust-lang/crates.io-index"
  6831. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  6832. dependencies = [
  6833. "proc-macro2",
  6834. "quote",
  6835. "syn 2.0.41",
  6836. ]
  6837. [[package]]
  6838. name = "tracing-core"
  6839. version = "0.1.32"
  6840. source = "registry+https://github.com/rust-lang/crates.io-index"
  6841. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  6842. dependencies = [
  6843. "once_cell",
  6844. "valuable",
  6845. ]
  6846. [[package]]
  6847. name = "tracing-futures"
  6848. version = "0.2.5"
  6849. source = "registry+https://github.com/rust-lang/crates.io-index"
  6850. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  6851. dependencies = [
  6852. "pin-project",
  6853. "tracing",
  6854. ]
  6855. [[package]]
  6856. name = "tracing-log"
  6857. version = "0.2.0"
  6858. source = "registry+https://github.com/rust-lang/crates.io-index"
  6859. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  6860. dependencies = [
  6861. "log",
  6862. "once_cell",
  6863. "tracing-core",
  6864. ]
  6865. [[package]]
  6866. name = "tracing-subscriber"
  6867. version = "0.3.18"
  6868. source = "registry+https://github.com/rust-lang/crates.io-index"
  6869. checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
  6870. dependencies = [
  6871. "matchers",
  6872. "nu-ansi-term",
  6873. "once_cell",
  6874. "regex",
  6875. "sharded-slab",
  6876. "smallvec",
  6877. "thread_local",
  6878. "tracing",
  6879. "tracing-core",
  6880. "tracing-log",
  6881. ]
  6882. [[package]]
  6883. name = "tracing-test"
  6884. version = "0.2.4"
  6885. source = "registry+https://github.com/rust-lang/crates.io-index"
  6886. checksum = "3a2c0ff408fe918a94c428a3f2ad04e4afd5c95bbc08fcf868eff750c15728a4"
  6887. dependencies = [
  6888. "lazy_static",
  6889. "tracing-core",
  6890. "tracing-subscriber",
  6891. "tracing-test-macro",
  6892. ]
  6893. [[package]]
  6894. name = "tracing-test-macro"
  6895. version = "0.2.4"
  6896. source = "registry+https://github.com/rust-lang/crates.io-index"
  6897. checksum = "258bc1c4f8e2e73a977812ab339d503e6feeb92700f6d07a6de4d321522d5c08"
  6898. dependencies = [
  6899. "lazy_static",
  6900. "quote",
  6901. "syn 1.0.109",
  6902. ]
  6903. [[package]]
  6904. name = "ttf-parser"
  6905. version = "0.17.1"
  6906. source = "registry+https://github.com/rust-lang/crates.io-index"
  6907. checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff"
  6908. [[package]]
  6909. name = "typed-index-collections"
  6910. version = "3.1.0"
  6911. source = "registry+https://github.com/rust-lang/crates.io-index"
  6912. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  6913. [[package]]
  6914. name = "typenum"
  6915. version = "1.17.0"
  6916. source = "registry+https://github.com/rust-lang/crates.io-index"
  6917. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  6918. [[package]]
  6919. name = "uint"
  6920. version = "0.9.5"
  6921. source = "registry+https://github.com/rust-lang/crates.io-index"
  6922. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  6923. dependencies = [
  6924. "byteorder",
  6925. "crunchy",
  6926. "hex",
  6927. "static_assertions",
  6928. ]
  6929. [[package]]
  6930. name = "unarray"
  6931. version = "0.1.4"
  6932. source = "registry+https://github.com/rust-lang/crates.io-index"
  6933. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  6934. [[package]]
  6935. name = "unicase"
  6936. version = "2.7.0"
  6937. source = "registry+https://github.com/rust-lang/crates.io-index"
  6938. checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
  6939. dependencies = [
  6940. "version_check",
  6941. ]
  6942. [[package]]
  6943. name = "unicode-bidi"
  6944. version = "0.3.14"
  6945. source = "registry+https://github.com/rust-lang/crates.io-index"
  6946. checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
  6947. [[package]]
  6948. name = "unicode-ident"
  6949. version = "1.0.12"
  6950. source = "registry+https://github.com/rust-lang/crates.io-index"
  6951. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  6952. [[package]]
  6953. name = "unicode-normalization"
  6954. version = "0.1.22"
  6955. source = "registry+https://github.com/rust-lang/crates.io-index"
  6956. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  6957. dependencies = [
  6958. "tinyvec",
  6959. ]
  6960. [[package]]
  6961. name = "unicode-segmentation"
  6962. version = "1.10.1"
  6963. source = "registry+https://github.com/rust-lang/crates.io-index"
  6964. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  6965. [[package]]
  6966. name = "unicode-width"
  6967. version = "0.1.11"
  6968. source = "registry+https://github.com/rust-lang/crates.io-index"
  6969. checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
  6970. [[package]]
  6971. name = "unicode-xid"
  6972. version = "0.2.4"
  6973. source = "registry+https://github.com/rust-lang/crates.io-index"
  6974. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  6975. [[package]]
  6976. name = "unindent"
  6977. version = "0.2.3"
  6978. source = "registry+https://github.com/rust-lang/crates.io-index"
  6979. checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
  6980. [[package]]
  6981. name = "universal-hash"
  6982. version = "0.4.0"
  6983. source = "registry+https://github.com/rust-lang/crates.io-index"
  6984. checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
  6985. dependencies = [
  6986. "generic-array",
  6987. "subtle",
  6988. ]
  6989. [[package]]
  6990. name = "universal-hash"
  6991. version = "0.5.1"
  6992. source = "registry+https://github.com/rust-lang/crates.io-index"
  6993. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  6994. dependencies = [
  6995. "crypto-common",
  6996. "subtle",
  6997. ]
  6998. [[package]]
  6999. name = "untrusted"
  7000. version = "0.7.1"
  7001. source = "registry+https://github.com/rust-lang/crates.io-index"
  7002. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  7003. [[package]]
  7004. name = "untrusted"
  7005. version = "0.9.0"
  7006. source = "registry+https://github.com/rust-lang/crates.io-index"
  7007. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  7008. [[package]]
  7009. name = "url"
  7010. version = "2.5.0"
  7011. source = "registry+https://github.com/rust-lang/crates.io-index"
  7012. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  7013. dependencies = [
  7014. "form_urlencoded",
  7015. "idna",
  7016. "percent-encoding",
  7017. "serde",
  7018. ]
  7019. [[package]]
  7020. name = "utf8parse"
  7021. version = "0.2.1"
  7022. source = "registry+https://github.com/rust-lang/crates.io-index"
  7023. checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
  7024. [[package]]
  7025. name = "uuid"
  7026. version = "1.6.1"
  7027. source = "registry+https://github.com/rust-lang/crates.io-index"
  7028. checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
  7029. [[package]]
  7030. name = "valuable"
  7031. version = "0.1.0"
  7032. source = "registry+https://github.com/rust-lang/crates.io-index"
  7033. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  7034. [[package]]
  7035. name = "value-bag"
  7036. version = "1.4.2"
  7037. source = "registry+https://github.com/rust-lang/crates.io-index"
  7038. checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe"
  7039. dependencies = [
  7040. "value-bag-serde1",
  7041. "value-bag-sval2",
  7042. ]
  7043. [[package]]
  7044. name = "value-bag-serde1"
  7045. version = "1.4.2"
  7046. source = "registry+https://github.com/rust-lang/crates.io-index"
  7047. checksum = "07ba39dc791ecb35baad371a3fc04c6eab688c04937d2e0ac6c22b612c0357bf"
  7048. dependencies = [
  7049. "erased-serde",
  7050. "serde",
  7051. "serde_fmt",
  7052. ]
  7053. [[package]]
  7054. name = "value-bag-sval2"
  7055. version = "1.4.2"
  7056. source = "registry+https://github.com/rust-lang/crates.io-index"
  7057. checksum = "c3e06c10810a57bbf45778d023d432a50a1daa7d185991ae06bcfb6c654d0945"
  7058. dependencies = [
  7059. "sval",
  7060. "sval_buffer",
  7061. "sval_dynamic",
  7062. "sval_fmt",
  7063. "sval_json",
  7064. "sval_ref",
  7065. "sval_serde",
  7066. ]
  7067. [[package]]
  7068. name = "vanityaddr"
  7069. version = "0.4.1"
  7070. dependencies = [
  7071. "arg",
  7072. "bs58",
  7073. "ctrlc",
  7074. "darkfi",
  7075. "darkfi-sdk",
  7076. "rand 0.8.5",
  7077. "rayon",
  7078. ]
  7079. [[package]]
  7080. name = "vcpkg"
  7081. version = "0.2.15"
  7082. source = "registry+https://github.com/rust-lang/crates.io-index"
  7083. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  7084. [[package]]
  7085. name = "vec_map"
  7086. version = "0.8.2"
  7087. source = "registry+https://github.com/rust-lang/crates.io-index"
  7088. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  7089. [[package]]
  7090. name = "version_check"
  7091. version = "0.9.4"
  7092. source = "registry+https://github.com/rust-lang/crates.io-index"
  7093. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  7094. [[package]]
  7095. name = "visibility"
  7096. version = "0.1.0"
  7097. source = "registry+https://github.com/rust-lang/crates.io-index"
  7098. checksum = "b3fd98999db9227cf28e59d83e1f120f42bc233d4b152e8fab9bc87d5bb1e0f8"
  7099. dependencies = [
  7100. "proc-macro2",
  7101. "quote",
  7102. "syn 2.0.41",
  7103. ]
  7104. [[package]]
  7105. name = "void"
  7106. version = "1.0.2"
  7107. source = "registry+https://github.com/rust-lang/crates.io-index"
  7108. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  7109. [[package]]
  7110. name = "wait-timeout"
  7111. version = "0.2.0"
  7112. source = "registry+https://github.com/rust-lang/crates.io-index"
  7113. checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  7114. dependencies = [
  7115. "libc",
  7116. ]
  7117. [[package]]
  7118. name = "waker-fn"
  7119. version = "1.1.1"
  7120. source = "registry+https://github.com/rust-lang/crates.io-index"
  7121. checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
  7122. [[package]]
  7123. name = "walkdir"
  7124. version = "2.4.0"
  7125. source = "registry+https://github.com/rust-lang/crates.io-index"
  7126. checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
  7127. dependencies = [
  7128. "same-file",
  7129. "winapi-util",
  7130. ]
  7131. [[package]]
  7132. name = "wasi"
  7133. version = "0.9.0+wasi-snapshot-preview1"
  7134. source = "registry+https://github.com/rust-lang/crates.io-index"
  7135. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  7136. [[package]]
  7137. name = "wasi"
  7138. version = "0.11.0+wasi-snapshot-preview1"
  7139. source = "registry+https://github.com/rust-lang/crates.io-index"
  7140. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  7141. [[package]]
  7142. name = "wasm-bindgen"
  7143. version = "0.2.89"
  7144. source = "registry+https://github.com/rust-lang/crates.io-index"
  7145. checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
  7146. dependencies = [
  7147. "cfg-if 1.0.0",
  7148. "serde",
  7149. "serde_json",
  7150. "wasm-bindgen-macro",
  7151. ]
  7152. [[package]]
  7153. name = "wasm-bindgen-backend"
  7154. version = "0.2.89"
  7155. source = "registry+https://github.com/rust-lang/crates.io-index"
  7156. checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
  7157. dependencies = [
  7158. "bumpalo",
  7159. "log",
  7160. "once_cell",
  7161. "proc-macro2",
  7162. "quote",
  7163. "syn 2.0.41",
  7164. "wasm-bindgen-shared",
  7165. ]
  7166. [[package]]
  7167. name = "wasm-bindgen-futures"
  7168. version = "0.4.39"
  7169. source = "registry+https://github.com/rust-lang/crates.io-index"
  7170. checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
  7171. dependencies = [
  7172. "cfg-if 1.0.0",
  7173. "js-sys",
  7174. "wasm-bindgen",
  7175. "web-sys",
  7176. ]
  7177. [[package]]
  7178. name = "wasm-bindgen-macro"
  7179. version = "0.2.89"
  7180. source = "registry+https://github.com/rust-lang/crates.io-index"
  7181. checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
  7182. dependencies = [
  7183. "quote",
  7184. "wasm-bindgen-macro-support",
  7185. ]
  7186. [[package]]
  7187. name = "wasm-bindgen-macro-support"
  7188. version = "0.2.89"
  7189. source = "registry+https://github.com/rust-lang/crates.io-index"
  7190. checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
  7191. dependencies = [
  7192. "proc-macro2",
  7193. "quote",
  7194. "syn 2.0.41",
  7195. "wasm-bindgen-backend",
  7196. "wasm-bindgen-shared",
  7197. ]
  7198. [[package]]
  7199. name = "wasm-bindgen-shared"
  7200. version = "0.2.89"
  7201. source = "registry+https://github.com/rust-lang/crates.io-index"
  7202. checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
  7203. [[package]]
  7204. name = "wasm-encoder"
  7205. version = "0.32.0"
  7206. source = "registry+https://github.com/rust-lang/crates.io-index"
  7207. checksum = "1ba64e81215916eaeb48fee292f29401d69235d62d8b8fd92a7b2844ec5ae5f7"
  7208. dependencies = [
  7209. "leb128",
  7210. ]
  7211. [[package]]
  7212. name = "wasmer"
  7213. version = "4.2.4"
  7214. source = "registry+https://github.com/rust-lang/crates.io-index"
  7215. checksum = "ce45cc009177ca345a6d041f9062305ad467d15e7d41494f5b81ab46d62d7a58"
  7216. dependencies = [
  7217. "bytes 1.5.0",
  7218. "cfg-if 1.0.0",
  7219. "derivative",
  7220. "indexmap 1.9.3",
  7221. "js-sys",
  7222. "more-asserts",
  7223. "rustc-demangle",
  7224. "serde",
  7225. "serde-wasm-bindgen",
  7226. "shared-buffer",
  7227. "target-lexicon",
  7228. "thiserror",
  7229. "wasm-bindgen",
  7230. "wasmer-compiler",
  7231. "wasmer-compiler-cranelift",
  7232. "wasmer-derive",
  7233. "wasmer-types",
  7234. "wasmer-vm",
  7235. "wat",
  7236. "winapi",
  7237. ]
  7238. [[package]]
  7239. name = "wasmer-compiler"
  7240. version = "4.2.4"
  7241. source = "registry+https://github.com/rust-lang/crates.io-index"
  7242. checksum = "e044f6140c844602b920deb4526aea3cc9c0d7cf23f00730bb9b2034669f522a"
  7243. dependencies = [
  7244. "backtrace",
  7245. "bytes 1.5.0",
  7246. "cfg-if 1.0.0",
  7247. "enum-iterator",
  7248. "enumset",
  7249. "lazy_static",
  7250. "leb128",
  7251. "memmap2 0.5.10",
  7252. "more-asserts",
  7253. "region",
  7254. "rkyv",
  7255. "self_cell",
  7256. "shared-buffer",
  7257. "smallvec",
  7258. "thiserror",
  7259. "wasmer-types",
  7260. "wasmer-vm",
  7261. "wasmparser 0.95.0",
  7262. "winapi",
  7263. ]
  7264. [[package]]
  7265. name = "wasmer-compiler-cranelift"
  7266. version = "4.2.4"
  7267. source = "registry+https://github.com/rust-lang/crates.io-index"
  7268. checksum = "32ce02358eb44a149d791c1d6648fb7f8b2f99cd55e3c4eef0474653ec8cc889"
  7269. dependencies = [
  7270. "cranelift-codegen",
  7271. "cranelift-entity",
  7272. "cranelift-frontend",
  7273. "gimli 0.26.2",
  7274. "more-asserts",
  7275. "rayon",
  7276. "smallvec",
  7277. "target-lexicon",
  7278. "tracing",
  7279. "wasmer-compiler",
  7280. "wasmer-types",
  7281. ]
  7282. [[package]]
  7283. name = "wasmer-compiler-singlepass"
  7284. version = "4.2.4"
  7285. source = "registry+https://github.com/rust-lang/crates.io-index"
  7286. checksum = "45dc438250a91d6c0a57912714f8b3b899a0f5bb3a5f1eae5bc97858b7a006a9"
  7287. dependencies = [
  7288. "byteorder",
  7289. "dynasm",
  7290. "dynasmrt",
  7291. "enumset",
  7292. "gimli 0.26.2",
  7293. "lazy_static",
  7294. "more-asserts",
  7295. "rayon",
  7296. "smallvec",
  7297. "wasmer-compiler",
  7298. "wasmer-types",
  7299. ]
  7300. [[package]]
  7301. name = "wasmer-derive"
  7302. version = "4.2.4"
  7303. source = "registry+https://github.com/rust-lang/crates.io-index"
  7304. checksum = "c782d80401edb08e1eba206733f7859db6c997fc5a7f5fb44edc3ecd801468f6"
  7305. dependencies = [
  7306. "proc-macro-error",
  7307. "proc-macro2",
  7308. "quote",
  7309. "syn 1.0.109",
  7310. ]
  7311. [[package]]
  7312. name = "wasmer-middlewares"
  7313. version = "4.2.4"
  7314. source = "registry+https://github.com/rust-lang/crates.io-index"
  7315. checksum = "66d4f27f76b7b5325476c8851f34920ae562ef0de3c830fdbc4feafff6782187"
  7316. dependencies = [
  7317. "wasmer",
  7318. "wasmer-types",
  7319. "wasmer-vm",
  7320. ]
  7321. [[package]]
  7322. name = "wasmer-types"
  7323. version = "4.2.4"
  7324. source = "registry+https://github.com/rust-lang/crates.io-index"
  7325. checksum = "fd09e80d4d74bb9fd0ce6c3c106b1ceba1a050f9948db9d9b78ae53c172d6157"
  7326. dependencies = [
  7327. "bytecheck",
  7328. "enum-iterator",
  7329. "enumset",
  7330. "indexmap 1.9.3",
  7331. "more-asserts",
  7332. "rkyv",
  7333. "target-lexicon",
  7334. "thiserror",
  7335. ]
  7336. [[package]]
  7337. name = "wasmer-vm"
  7338. version = "4.2.4"
  7339. source = "registry+https://github.com/rust-lang/crates.io-index"
  7340. checksum = "bdcd8a4fd36414a7b6a003dbfbd32393bce3e155d715dd877c05c1b7a41d224d"
  7341. dependencies = [
  7342. "backtrace",
  7343. "cc",
  7344. "cfg-if 1.0.0",
  7345. "corosensei",
  7346. "crossbeam-queue",
  7347. "dashmap",
  7348. "derivative",
  7349. "enum-iterator",
  7350. "fnv",
  7351. "indexmap 1.9.3",
  7352. "lazy_static",
  7353. "libc",
  7354. "mach",
  7355. "memoffset",
  7356. "more-asserts",
  7357. "region",
  7358. "scopeguard",
  7359. "thiserror",
  7360. "wasmer-types",
  7361. "winapi",
  7362. ]
  7363. [[package]]
  7364. name = "wasmparser"
  7365. version = "0.95.0"
  7366. source = "registry+https://github.com/rust-lang/crates.io-index"
  7367. checksum = "f2ea896273ea99b15132414be1da01ab0d8836415083298ecaffbe308eaac87a"
  7368. dependencies = [
  7369. "indexmap 1.9.3",
  7370. "url",
  7371. ]
  7372. [[package]]
  7373. name = "wasmparser"
  7374. version = "0.118.1"
  7375. source = "registry+https://github.com/rust-lang/crates.io-index"
  7376. checksum = "95ee9723b928e735d53000dec9eae7b07a60e490c85ab54abb66659fc61bfcd9"
  7377. dependencies = [
  7378. "indexmap 2.1.0",
  7379. "semver 1.0.20",
  7380. ]
  7381. [[package]]
  7382. name = "wast"
  7383. version = "64.0.0"
  7384. source = "registry+https://github.com/rust-lang/crates.io-index"
  7385. checksum = "a259b226fd6910225aa7baeba82f9d9933b6d00f2ce1b49b80fa4214328237cc"
  7386. dependencies = [
  7387. "leb128",
  7388. "memchr",
  7389. "unicode-width",
  7390. "wasm-encoder",
  7391. ]
  7392. [[package]]
  7393. name = "wat"
  7394. version = "1.0.71"
  7395. source = "registry+https://github.com/rust-lang/crates.io-index"
  7396. checksum = "53253d920ab413fca1c7dc2161d601c79b4fdf631d0ba51dd4343bf9b556c3f6"
  7397. dependencies = [
  7398. "wast",
  7399. ]
  7400. [[package]]
  7401. name = "weak-table"
  7402. version = "0.3.2"
  7403. source = "registry+https://github.com/rust-lang/crates.io-index"
  7404. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  7405. [[package]]
  7406. name = "web-sys"
  7407. version = "0.3.66"
  7408. source = "registry+https://github.com/rust-lang/crates.io-index"
  7409. checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
  7410. dependencies = [
  7411. "js-sys",
  7412. "wasm-bindgen",
  7413. ]
  7414. [[package]]
  7415. name = "weezl"
  7416. version = "0.1.7"
  7417. source = "registry+https://github.com/rust-lang/crates.io-index"
  7418. checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
  7419. [[package]]
  7420. name = "which"
  7421. version = "4.4.2"
  7422. source = "registry+https://github.com/rust-lang/crates.io-index"
  7423. checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
  7424. dependencies = [
  7425. "either",
  7426. "home",
  7427. "once_cell",
  7428. "rustix 0.38.28",
  7429. ]
  7430. [[package]]
  7431. name = "winapi"
  7432. version = "0.3.9"
  7433. source = "registry+https://github.com/rust-lang/crates.io-index"
  7434. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7435. dependencies = [
  7436. "winapi-i686-pc-windows-gnu",
  7437. "winapi-x86_64-pc-windows-gnu",
  7438. ]
  7439. [[package]]
  7440. name = "winapi-i686-pc-windows-gnu"
  7441. version = "0.4.0"
  7442. source = "registry+https://github.com/rust-lang/crates.io-index"
  7443. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7444. [[package]]
  7445. name = "winapi-util"
  7446. version = "0.1.6"
  7447. source = "registry+https://github.com/rust-lang/crates.io-index"
  7448. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  7449. dependencies = [
  7450. "winapi",
  7451. ]
  7452. [[package]]
  7453. name = "winapi-x86_64-pc-windows-gnu"
  7454. version = "0.4.0"
  7455. source = "registry+https://github.com/rust-lang/crates.io-index"
  7456. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  7457. [[package]]
  7458. name = "windows-core"
  7459. version = "0.51.1"
  7460. source = "registry+https://github.com/rust-lang/crates.io-index"
  7461. checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
  7462. dependencies = [
  7463. "windows-targets 0.48.5",
  7464. ]
  7465. [[package]]
  7466. name = "windows-sys"
  7467. version = "0.33.0"
  7468. source = "registry+https://github.com/rust-lang/crates.io-index"
  7469. checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75"
  7470. dependencies = [
  7471. "windows_aarch64_msvc 0.33.0",
  7472. "windows_i686_gnu 0.33.0",
  7473. "windows_i686_msvc 0.33.0",
  7474. "windows_x86_64_gnu 0.33.0",
  7475. "windows_x86_64_msvc 0.33.0",
  7476. ]
  7477. [[package]]
  7478. name = "windows-sys"
  7479. version = "0.48.0"
  7480. source = "registry+https://github.com/rust-lang/crates.io-index"
  7481. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  7482. dependencies = [
  7483. "windows-targets 0.48.5",
  7484. ]
  7485. [[package]]
  7486. name = "windows-sys"
  7487. version = "0.52.0"
  7488. source = "registry+https://github.com/rust-lang/crates.io-index"
  7489. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  7490. dependencies = [
  7491. "windows-targets 0.52.0",
  7492. ]
  7493. [[package]]
  7494. name = "windows-targets"
  7495. version = "0.48.5"
  7496. source = "registry+https://github.com/rust-lang/crates.io-index"
  7497. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  7498. dependencies = [
  7499. "windows_aarch64_gnullvm 0.48.5",
  7500. "windows_aarch64_msvc 0.48.5",
  7501. "windows_i686_gnu 0.48.5",
  7502. "windows_i686_msvc 0.48.5",
  7503. "windows_x86_64_gnu 0.48.5",
  7504. "windows_x86_64_gnullvm 0.48.5",
  7505. "windows_x86_64_msvc 0.48.5",
  7506. ]
  7507. [[package]]
  7508. name = "windows-targets"
  7509. version = "0.52.0"
  7510. source = "registry+https://github.com/rust-lang/crates.io-index"
  7511. checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
  7512. dependencies = [
  7513. "windows_aarch64_gnullvm 0.52.0",
  7514. "windows_aarch64_msvc 0.52.0",
  7515. "windows_i686_gnu 0.52.0",
  7516. "windows_i686_msvc 0.52.0",
  7517. "windows_x86_64_gnu 0.52.0",
  7518. "windows_x86_64_gnullvm 0.52.0",
  7519. "windows_x86_64_msvc 0.52.0",
  7520. ]
  7521. [[package]]
  7522. name = "windows_aarch64_gnullvm"
  7523. version = "0.48.5"
  7524. source = "registry+https://github.com/rust-lang/crates.io-index"
  7525. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  7526. [[package]]
  7527. name = "windows_aarch64_gnullvm"
  7528. version = "0.52.0"
  7529. source = "registry+https://github.com/rust-lang/crates.io-index"
  7530. checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
  7531. [[package]]
  7532. name = "windows_aarch64_msvc"
  7533. version = "0.33.0"
  7534. source = "registry+https://github.com/rust-lang/crates.io-index"
  7535. checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807"
  7536. [[package]]
  7537. name = "windows_aarch64_msvc"
  7538. version = "0.48.5"
  7539. source = "registry+https://github.com/rust-lang/crates.io-index"
  7540. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  7541. [[package]]
  7542. name = "windows_aarch64_msvc"
  7543. version = "0.52.0"
  7544. source = "registry+https://github.com/rust-lang/crates.io-index"
  7545. checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
  7546. [[package]]
  7547. name = "windows_i686_gnu"
  7548. version = "0.33.0"
  7549. source = "registry+https://github.com/rust-lang/crates.io-index"
  7550. checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e"
  7551. [[package]]
  7552. name = "windows_i686_gnu"
  7553. version = "0.48.5"
  7554. source = "registry+https://github.com/rust-lang/crates.io-index"
  7555. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  7556. [[package]]
  7557. name = "windows_i686_gnu"
  7558. version = "0.52.0"
  7559. source = "registry+https://github.com/rust-lang/crates.io-index"
  7560. checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
  7561. [[package]]
  7562. name = "windows_i686_msvc"
  7563. version = "0.33.0"
  7564. source = "registry+https://github.com/rust-lang/crates.io-index"
  7565. checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0"
  7566. [[package]]
  7567. name = "windows_i686_msvc"
  7568. version = "0.48.5"
  7569. source = "registry+https://github.com/rust-lang/crates.io-index"
  7570. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  7571. [[package]]
  7572. name = "windows_i686_msvc"
  7573. version = "0.52.0"
  7574. source = "registry+https://github.com/rust-lang/crates.io-index"
  7575. checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
  7576. [[package]]
  7577. name = "windows_x86_64_gnu"
  7578. version = "0.33.0"
  7579. source = "registry+https://github.com/rust-lang/crates.io-index"
  7580. checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784"
  7581. [[package]]
  7582. name = "windows_x86_64_gnu"
  7583. version = "0.48.5"
  7584. source = "registry+https://github.com/rust-lang/crates.io-index"
  7585. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  7586. [[package]]
  7587. name = "windows_x86_64_gnu"
  7588. version = "0.52.0"
  7589. source = "registry+https://github.com/rust-lang/crates.io-index"
  7590. checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
  7591. [[package]]
  7592. name = "windows_x86_64_gnullvm"
  7593. version = "0.48.5"
  7594. source = "registry+https://github.com/rust-lang/crates.io-index"
  7595. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  7596. [[package]]
  7597. name = "windows_x86_64_gnullvm"
  7598. version = "0.52.0"
  7599. source = "registry+https://github.com/rust-lang/crates.io-index"
  7600. checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
  7601. [[package]]
  7602. name = "windows_x86_64_msvc"
  7603. version = "0.33.0"
  7604. source = "registry+https://github.com/rust-lang/crates.io-index"
  7605. checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa"
  7606. [[package]]
  7607. name = "windows_x86_64_msvc"
  7608. version = "0.48.5"
  7609. source = "registry+https://github.com/rust-lang/crates.io-index"
  7610. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  7611. [[package]]
  7612. name = "windows_x86_64_msvc"
  7613. version = "0.52.0"
  7614. source = "registry+https://github.com/rust-lang/crates.io-index"
  7615. checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
  7616. [[package]]
  7617. name = "winnow"
  7618. version = "0.5.28"
  7619. source = "registry+https://github.com/rust-lang/crates.io-index"
  7620. checksum = "6c830786f7720c2fd27a1a0e27a709dbd3c4d009b56d098fc742d4f4eab91fe2"
  7621. dependencies = [
  7622. "memchr",
  7623. ]
  7624. [[package]]
  7625. name = "wio"
  7626. version = "0.2.2"
  7627. source = "registry+https://github.com/rust-lang/crates.io-index"
  7628. checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
  7629. dependencies = [
  7630. "winapi",
  7631. ]
  7632. [[package]]
  7633. name = "wyz"
  7634. version = "0.5.1"
  7635. source = "registry+https://github.com/rust-lang/crates.io-index"
  7636. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  7637. dependencies = [
  7638. "tap",
  7639. ]
  7640. [[package]]
  7641. name = "x25519-dalek"
  7642. version = "2.0.0"
  7643. source = "registry+https://github.com/rust-lang/crates.io-index"
  7644. checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
  7645. dependencies = [
  7646. "curve25519-dalek",
  7647. "rand_core 0.6.4",
  7648. "serde",
  7649. "zeroize",
  7650. ]
  7651. [[package]]
  7652. name = "x509-parser"
  7653. version = "0.15.1"
  7654. source = "registry+https://github.com/rust-lang/crates.io-index"
  7655. checksum = "7069fba5b66b9193bd2c5d3d4ff12b839118f6bcbef5328efafafb5395cf63da"
  7656. dependencies = [
  7657. "asn1-rs",
  7658. "data-encoding",
  7659. "der-parser",
  7660. "lazy_static",
  7661. "nom",
  7662. "oid-registry",
  7663. "ring 0.16.20",
  7664. "rusticata-macros",
  7665. "thiserror",
  7666. "time 0.3.30",
  7667. ]
  7668. [[package]]
  7669. name = "x509-signature"
  7670. version = "0.5.0"
  7671. source = "registry+https://github.com/rust-lang/crates.io-index"
  7672. checksum = "9fb2bc2a902d992cd5f471ee3ab0ffd6603047a4207384562755b9d6de977518"
  7673. dependencies = [
  7674. "ring 0.16.20",
  7675. "untrusted 0.7.1",
  7676. ]
  7677. [[package]]
  7678. name = "yasna"
  7679. version = "0.5.2"
  7680. source = "registry+https://github.com/rust-lang/crates.io-index"
  7681. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  7682. dependencies = [
  7683. "time 0.3.30",
  7684. ]
  7685. [[package]]
  7686. name = "yeslogic-fontconfig-sys"
  7687. version = "3.2.0"
  7688. source = "registry+https://github.com/rust-lang/crates.io-index"
  7689. checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386"
  7690. dependencies = [
  7691. "const-cstr",
  7692. "dlib",
  7693. "once_cell",
  7694. "pkg-config",
  7695. ]
  7696. [[package]]
  7697. name = "zerocopy"
  7698. version = "0.7.30"
  7699. source = "registry+https://github.com/rust-lang/crates.io-index"
  7700. checksum = "306dca4455518f1f31635ec308b6b3e4eb1b11758cefafc782827d0aa7acb5c7"
  7701. dependencies = [
  7702. "zerocopy-derive",
  7703. ]
  7704. [[package]]
  7705. name = "zerocopy-derive"
  7706. version = "0.7.30"
  7707. source = "registry+https://github.com/rust-lang/crates.io-index"
  7708. checksum = "be912bf68235a88fbefd1b73415cb218405958d1655b2ece9035a19920bdf6ba"
  7709. dependencies = [
  7710. "proc-macro2",
  7711. "quote",
  7712. "syn 2.0.41",
  7713. ]
  7714. [[package]]
  7715. name = "zeroize"
  7716. version = "1.7.0"
  7717. source = "registry+https://github.com/rust-lang/crates.io-index"
  7718. checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
  7719. dependencies = [
  7720. "zeroize_derive",
  7721. ]
  7722. [[package]]
  7723. name = "zeroize_derive"
  7724. version = "1.4.2"
  7725. source = "registry+https://github.com/rust-lang/crates.io-index"
  7726. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  7727. dependencies = [
  7728. "proc-macro2",
  7729. "quote",
  7730. "syn 2.0.41",
  7731. ]
  7732. [[package]]
  7733. name = "zkas"
  7734. version = "0.4.1"
  7735. dependencies = [
  7736. "arg",
  7737. "darkfi",
  7738. ]