Cargo.lock 197 KB

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