Cargo.lock 211 KB

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