Cargo.lock 186 KB

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