Cargo.lock 194 KB

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