Cargo.lock 215 KB

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