Cargo.lock 187 KB

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