Cargo.lock 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258
  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.4.2"
  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. "serde",
  2023. "signal-hook",
  2024. "signal-hook-async-std",
  2025. "simplelog",
  2026. "sled",
  2027. "smol",
  2028. "structopt",
  2029. "structopt-toml",
  2030. "toml 0.8.12",
  2031. "url",
  2032. ]
  2033. [[package]]
  2034. name = "darling"
  2035. version = "0.10.2"
  2036. source = "registry+https://github.com/rust-lang/crates.io-index"
  2037. checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
  2038. dependencies = [
  2039. "darling_core 0.10.2",
  2040. "darling_macro 0.10.2",
  2041. ]
  2042. [[package]]
  2043. name = "darling"
  2044. version = "0.14.4"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  2047. dependencies = [
  2048. "darling_core 0.14.4",
  2049. "darling_macro 0.14.4",
  2050. ]
  2051. [[package]]
  2052. name = "darling"
  2053. version = "0.20.8"
  2054. source = "registry+https://github.com/rust-lang/crates.io-index"
  2055. checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
  2056. dependencies = [
  2057. "darling_core 0.20.8",
  2058. "darling_macro 0.20.8",
  2059. ]
  2060. [[package]]
  2061. name = "darling_core"
  2062. version = "0.10.2"
  2063. source = "registry+https://github.com/rust-lang/crates.io-index"
  2064. checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
  2065. dependencies = [
  2066. "fnv",
  2067. "ident_case",
  2068. "proc-macro2",
  2069. "quote",
  2070. "strsim 0.9.3",
  2071. "syn 1.0.109",
  2072. ]
  2073. [[package]]
  2074. name = "darling_core"
  2075. version = "0.14.4"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  2078. dependencies = [
  2079. "fnv",
  2080. "ident_case",
  2081. "proc-macro2",
  2082. "quote",
  2083. "strsim 0.10.0",
  2084. "syn 1.0.109",
  2085. ]
  2086. [[package]]
  2087. name = "darling_core"
  2088. version = "0.20.8"
  2089. source = "registry+https://github.com/rust-lang/crates.io-index"
  2090. checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
  2091. dependencies = [
  2092. "fnv",
  2093. "ident_case",
  2094. "proc-macro2",
  2095. "quote",
  2096. "strsim 0.10.0",
  2097. "syn 2.0.53",
  2098. ]
  2099. [[package]]
  2100. name = "darling_macro"
  2101. version = "0.10.2"
  2102. source = "registry+https://github.com/rust-lang/crates.io-index"
  2103. checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
  2104. dependencies = [
  2105. "darling_core 0.10.2",
  2106. "quote",
  2107. "syn 1.0.109",
  2108. ]
  2109. [[package]]
  2110. name = "darling_macro"
  2111. version = "0.14.4"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  2114. dependencies = [
  2115. "darling_core 0.14.4",
  2116. "quote",
  2117. "syn 1.0.109",
  2118. ]
  2119. [[package]]
  2120. name = "darling_macro"
  2121. version = "0.20.8"
  2122. source = "registry+https://github.com/rust-lang/crates.io-index"
  2123. checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
  2124. dependencies = [
  2125. "darling_core 0.20.8",
  2126. "quote",
  2127. "syn 2.0.53",
  2128. ]
  2129. [[package]]
  2130. name = "dashmap"
  2131. version = "5.5.3"
  2132. source = "registry+https://github.com/rust-lang/crates.io-index"
  2133. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  2134. dependencies = [
  2135. "cfg-if 1.0.0",
  2136. "hashbrown 0.14.3",
  2137. "lock_api",
  2138. "once_cell",
  2139. "parking_lot_core 0.9.9",
  2140. ]
  2141. [[package]]
  2142. name = "dasp_sample"
  2143. version = "0.11.0"
  2144. source = "registry+https://github.com/rust-lang/crates.io-index"
  2145. checksum = "0c87e182de0887fd5361989c677c4e8f5000cd9491d6d563161a8f3a5519fc7f"
  2146. [[package]]
  2147. name = "data-encoding"
  2148. version = "2.5.0"
  2149. source = "registry+https://github.com/rust-lang/crates.io-index"
  2150. checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
  2151. [[package]]
  2152. name = "dchatd"
  2153. version = "0.4.1"
  2154. dependencies = [
  2155. "async-trait",
  2156. "darkfi",
  2157. "darkfi-serial",
  2158. "easy-parallel",
  2159. "log",
  2160. "serde",
  2161. "signal-hook",
  2162. "signal-hook-async-std",
  2163. "simplelog",
  2164. "smol",
  2165. "structopt",
  2166. "structopt-toml",
  2167. "url",
  2168. ]
  2169. [[package]]
  2170. name = "der"
  2171. version = "0.7.8"
  2172. source = "registry+https://github.com/rust-lang/crates.io-index"
  2173. checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
  2174. dependencies = [
  2175. "const-oid",
  2176. "pem-rfc7468",
  2177. "zeroize",
  2178. ]
  2179. [[package]]
  2180. name = "der-parser"
  2181. version = "9.0.0"
  2182. source = "registry+https://github.com/rust-lang/crates.io-index"
  2183. checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
  2184. dependencies = [
  2185. "asn1-rs",
  2186. "displaydoc",
  2187. "nom",
  2188. "num-bigint",
  2189. "num-traits",
  2190. "rusticata-macros",
  2191. ]
  2192. [[package]]
  2193. name = "deranged"
  2194. version = "0.3.11"
  2195. source = "registry+https://github.com/rust-lang/crates.io-index"
  2196. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  2197. dependencies = [
  2198. "powerfmt",
  2199. "serde",
  2200. ]
  2201. [[package]]
  2202. name = "derivative"
  2203. version = "2.2.0"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  2206. dependencies = [
  2207. "proc-macro2",
  2208. "quote",
  2209. "syn 1.0.109",
  2210. ]
  2211. [[package]]
  2212. name = "derive-adhoc"
  2213. version = "0.7.3"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "5283ac2881753c76c0892406705553f0d9ab30649f81e18964d3408f4501edb8"
  2216. dependencies = [
  2217. "derive-adhoc-macros 0.7.3",
  2218. "heck 0.4.1",
  2219. ]
  2220. [[package]]
  2221. name = "derive-adhoc"
  2222. version = "0.8.2"
  2223. source = "registry+https://github.com/rust-lang/crates.io-index"
  2224. checksum = "57ca5c68cf8568ff97903eeea4d54a7ab8b15f71ac439a3eff1cbdb2a707fd62"
  2225. dependencies = [
  2226. "derive-adhoc-macros 0.8.2",
  2227. "heck 0.4.1",
  2228. ]
  2229. [[package]]
  2230. name = "derive-adhoc-macros"
  2231. version = "0.7.3"
  2232. source = "registry+https://github.com/rust-lang/crates.io-index"
  2233. checksum = "c21b673a9b8c78c34908e6fcb42b922e11c4df2de5237f1c3f58d3285904a84b"
  2234. dependencies = [
  2235. "heck 0.4.1",
  2236. "itertools 0.11.0",
  2237. "proc-macro-crate 1.3.1",
  2238. "proc-macro2",
  2239. "quote",
  2240. "sha3",
  2241. "strum 0.25.0",
  2242. "syn 1.0.109",
  2243. "void",
  2244. ]
  2245. [[package]]
  2246. name = "derive-adhoc-macros"
  2247. version = "0.8.2"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "6f35abdabee572dec7fba2cad5e21a47ba99fe75347c8cad233a39890a5b2807"
  2250. dependencies = [
  2251. "heck 0.4.1",
  2252. "itertools 0.12.1",
  2253. "proc-macro-crate 2.0.0",
  2254. "proc-macro2",
  2255. "quote",
  2256. "sha3",
  2257. "strum 0.25.0",
  2258. "syn 2.0.53",
  2259. "void",
  2260. ]
  2261. [[package]]
  2262. name = "derive_builder"
  2263. version = "0.9.0"
  2264. source = "registry+https://github.com/rust-lang/crates.io-index"
  2265. checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
  2266. dependencies = [
  2267. "darling 0.10.2",
  2268. "derive_builder_core",
  2269. "proc-macro2",
  2270. "quote",
  2271. "syn 1.0.109",
  2272. ]
  2273. [[package]]
  2274. name = "derive_builder_core"
  2275. version = "0.9.0"
  2276. source = "registry+https://github.com/rust-lang/crates.io-index"
  2277. checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
  2278. dependencies = [
  2279. "darling 0.10.2",
  2280. "proc-macro2",
  2281. "quote",
  2282. "syn 1.0.109",
  2283. ]
  2284. [[package]]
  2285. name = "derive_builder_core_fork_arti"
  2286. version = "0.11.2"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  2289. dependencies = [
  2290. "darling 0.14.4",
  2291. "proc-macro2",
  2292. "quote",
  2293. "syn 1.0.109",
  2294. ]
  2295. [[package]]
  2296. name = "derive_builder_fork_arti"
  2297. version = "0.11.2"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  2300. dependencies = [
  2301. "derive_builder_macro_fork_arti",
  2302. ]
  2303. [[package]]
  2304. name = "derive_builder_macro_fork_arti"
  2305. version = "0.11.2"
  2306. source = "registry+https://github.com/rust-lang/crates.io-index"
  2307. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  2308. dependencies = [
  2309. "derive_builder_core_fork_arti",
  2310. "syn 1.0.109",
  2311. ]
  2312. [[package]]
  2313. name = "derive_more"
  2314. version = "0.99.17"
  2315. source = "registry+https://github.com/rust-lang/crates.io-index"
  2316. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  2317. dependencies = [
  2318. "convert_case",
  2319. "proc-macro2",
  2320. "quote",
  2321. "rustc_version 0.4.0",
  2322. "syn 1.0.109",
  2323. ]
  2324. [[package]]
  2325. name = "digest"
  2326. version = "0.9.0"
  2327. source = "registry+https://github.com/rust-lang/crates.io-index"
  2328. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  2329. dependencies = [
  2330. "generic-array",
  2331. ]
  2332. [[package]]
  2333. name = "digest"
  2334. version = "0.10.7"
  2335. source = "registry+https://github.com/rust-lang/crates.io-index"
  2336. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  2337. dependencies = [
  2338. "block-buffer 0.10.4",
  2339. "const-oid",
  2340. "crypto-common",
  2341. "subtle",
  2342. ]
  2343. [[package]]
  2344. name = "directories"
  2345. version = "5.0.1"
  2346. source = "registry+https://github.com/rust-lang/crates.io-index"
  2347. checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
  2348. dependencies = [
  2349. "dirs-sys",
  2350. ]
  2351. [[package]]
  2352. name = "dirs"
  2353. version = "5.0.1"
  2354. source = "registry+https://github.com/rust-lang/crates.io-index"
  2355. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  2356. dependencies = [
  2357. "dirs-sys",
  2358. ]
  2359. [[package]]
  2360. name = "dirs-next"
  2361. version = "2.0.0"
  2362. source = "registry+https://github.com/rust-lang/crates.io-index"
  2363. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  2364. dependencies = [
  2365. "cfg-if 1.0.0",
  2366. "dirs-sys-next",
  2367. ]
  2368. [[package]]
  2369. name = "dirs-sys"
  2370. version = "0.4.1"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  2373. dependencies = [
  2374. "libc",
  2375. "option-ext",
  2376. "redox_users",
  2377. "windows-sys 0.48.0",
  2378. ]
  2379. [[package]]
  2380. name = "dirs-sys-next"
  2381. version = "0.1.2"
  2382. source = "registry+https://github.com/rust-lang/crates.io-index"
  2383. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  2384. dependencies = [
  2385. "libc",
  2386. "redox_users",
  2387. "winapi",
  2388. ]
  2389. [[package]]
  2390. name = "discard"
  2391. version = "1.0.4"
  2392. source = "registry+https://github.com/rust-lang/crates.io-index"
  2393. checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
  2394. [[package]]
  2395. name = "displaydoc"
  2396. version = "0.2.4"
  2397. source = "registry+https://github.com/rust-lang/crates.io-index"
  2398. checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
  2399. dependencies = [
  2400. "proc-macro2",
  2401. "quote",
  2402. "syn 2.0.53",
  2403. ]
  2404. [[package]]
  2405. name = "dlib"
  2406. version = "0.5.2"
  2407. source = "registry+https://github.com/rust-lang/crates.io-index"
  2408. checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
  2409. dependencies = [
  2410. "libloading",
  2411. ]
  2412. [[package]]
  2413. name = "downcast-rs"
  2414. version = "1.2.0"
  2415. source = "registry+https://github.com/rust-lang/crates.io-index"
  2416. checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
  2417. [[package]]
  2418. name = "drk"
  2419. version = "0.4.1"
  2420. dependencies = [
  2421. "blake3 1.5.1",
  2422. "bs58",
  2423. "darkfi",
  2424. "darkfi-sdk",
  2425. "darkfi-serial",
  2426. "darkfi_dao_contract",
  2427. "darkfi_money_contract",
  2428. "easy-parallel",
  2429. "lazy_static",
  2430. "log",
  2431. "prettytable-rs",
  2432. "rand 0.8.5",
  2433. "rodio",
  2434. "rusqlite",
  2435. "serde",
  2436. "signal-hook",
  2437. "signal-hook-async-std",
  2438. "simplelog",
  2439. "smol",
  2440. "structopt",
  2441. "structopt-toml",
  2442. "url",
  2443. ]
  2444. [[package]]
  2445. name = "dwrote"
  2446. version = "0.11.0"
  2447. source = "registry+https://github.com/rust-lang/crates.io-index"
  2448. checksum = "439a1c2ba5611ad3ed731280541d36d2e9c4ac5e7fb818a27b604bdc5a6aa65b"
  2449. dependencies = [
  2450. "lazy_static",
  2451. "libc",
  2452. "winapi",
  2453. "wio",
  2454. ]
  2455. [[package]]
  2456. name = "dyn-clone"
  2457. version = "1.0.17"
  2458. source = "registry+https://github.com/rust-lang/crates.io-index"
  2459. checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
  2460. [[package]]
  2461. name = "dynasm"
  2462. version = "1.2.3"
  2463. source = "registry+https://github.com/rust-lang/crates.io-index"
  2464. checksum = "add9a102807b524ec050363f09e06f1504214b0e1c7797f64261c891022dce8b"
  2465. dependencies = [
  2466. "bitflags 1.3.2",
  2467. "byteorder",
  2468. "lazy_static",
  2469. "proc-macro-error",
  2470. "proc-macro2",
  2471. "quote",
  2472. "syn 1.0.109",
  2473. ]
  2474. [[package]]
  2475. name = "dynasmrt"
  2476. version = "1.2.3"
  2477. source = "registry+https://github.com/rust-lang/crates.io-index"
  2478. checksum = "64fba5a42bd76a17cad4bfa00de168ee1cbfa06a5e8ce992ae880218c05641a9"
  2479. dependencies = [
  2480. "byteorder",
  2481. "dynasm",
  2482. "memmap2 0.5.10",
  2483. ]
  2484. [[package]]
  2485. name = "easy-parallel"
  2486. version = "3.3.1"
  2487. source = "registry+https://github.com/rust-lang/crates.io-index"
  2488. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  2489. [[package]]
  2490. name = "ecdsa"
  2491. version = "0.16.9"
  2492. source = "registry+https://github.com/rust-lang/crates.io-index"
  2493. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  2494. dependencies = [
  2495. "der",
  2496. "digest 0.10.7",
  2497. "elliptic-curve",
  2498. "rfc6979",
  2499. "signature",
  2500. "spki",
  2501. ]
  2502. [[package]]
  2503. name = "ed25519"
  2504. version = "2.2.3"
  2505. source = "registry+https://github.com/rust-lang/crates.io-index"
  2506. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  2507. dependencies = [
  2508. "pkcs8",
  2509. "signature",
  2510. ]
  2511. [[package]]
  2512. name = "ed25519-compact"
  2513. version = "2.1.1"
  2514. source = "registry+https://github.com/rust-lang/crates.io-index"
  2515. checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190"
  2516. dependencies = [
  2517. "ct-codecs",
  2518. "getrandom 0.2.12",
  2519. ]
  2520. [[package]]
  2521. name = "ed25519-dalek"
  2522. version = "2.1.1"
  2523. source = "registry+https://github.com/rust-lang/crates.io-index"
  2524. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  2525. dependencies = [
  2526. "curve25519-dalek",
  2527. "ed25519",
  2528. "merlin",
  2529. "rand_core 0.6.4",
  2530. "serde",
  2531. "sha2 0.10.8",
  2532. "subtle",
  2533. "zeroize",
  2534. ]
  2535. [[package]]
  2536. name = "educe"
  2537. version = "0.4.23"
  2538. source = "registry+https://github.com/rust-lang/crates.io-index"
  2539. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  2540. dependencies = [
  2541. "enum-ordinalize",
  2542. "proc-macro2",
  2543. "quote",
  2544. "syn 1.0.109",
  2545. ]
  2546. [[package]]
  2547. name = "either"
  2548. version = "1.10.0"
  2549. source = "registry+https://github.com/rust-lang/crates.io-index"
  2550. checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
  2551. [[package]]
  2552. name = "elliptic-curve"
  2553. version = "0.13.8"
  2554. source = "registry+https://github.com/rust-lang/crates.io-index"
  2555. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  2556. dependencies = [
  2557. "base16ct",
  2558. "crypto-bigint",
  2559. "digest 0.10.7",
  2560. "ff",
  2561. "generic-array",
  2562. "group",
  2563. "pkcs8",
  2564. "rand_core 0.6.4",
  2565. "sec1",
  2566. "subtle",
  2567. "zeroize",
  2568. ]
  2569. [[package]]
  2570. name = "encode_unicode"
  2571. version = "1.0.0"
  2572. source = "registry+https://github.com/rust-lang/crates.io-index"
  2573. checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
  2574. [[package]]
  2575. name = "encoding_rs"
  2576. version = "0.8.33"
  2577. source = "registry+https://github.com/rust-lang/crates.io-index"
  2578. checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
  2579. dependencies = [
  2580. "cfg-if 1.0.0",
  2581. ]
  2582. [[package]]
  2583. name = "enum-iterator"
  2584. version = "0.7.0"
  2585. source = "registry+https://github.com/rust-lang/crates.io-index"
  2586. checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
  2587. dependencies = [
  2588. "enum-iterator-derive",
  2589. ]
  2590. [[package]]
  2591. name = "enum-iterator-derive"
  2592. version = "0.7.0"
  2593. source = "registry+https://github.com/rust-lang/crates.io-index"
  2594. checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
  2595. dependencies = [
  2596. "proc-macro2",
  2597. "quote",
  2598. "syn 1.0.109",
  2599. ]
  2600. [[package]]
  2601. name = "enum-ordinalize"
  2602. version = "3.1.15"
  2603. source = "registry+https://github.com/rust-lang/crates.io-index"
  2604. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  2605. dependencies = [
  2606. "num-bigint",
  2607. "num-traits",
  2608. "proc-macro2",
  2609. "quote",
  2610. "syn 2.0.53",
  2611. ]
  2612. [[package]]
  2613. name = "enumset"
  2614. version = "1.1.3"
  2615. source = "registry+https://github.com/rust-lang/crates.io-index"
  2616. checksum = "226c0da7462c13fb57e5cc9e0dc8f0635e7d27f276a3a7fd30054647f669007d"
  2617. dependencies = [
  2618. "enumset_derive",
  2619. ]
  2620. [[package]]
  2621. name = "enumset_derive"
  2622. version = "0.8.1"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "e08b6c6ab82d70f08844964ba10c7babb716de2ecaeab9be5717918a5177d3af"
  2625. dependencies = [
  2626. "darling 0.20.8",
  2627. "proc-macro2",
  2628. "quote",
  2629. "syn 2.0.53",
  2630. ]
  2631. [[package]]
  2632. name = "equivalent"
  2633. version = "1.0.1"
  2634. source = "registry+https://github.com/rust-lang/crates.io-index"
  2635. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  2636. [[package]]
  2637. name = "erased-serde"
  2638. version = "0.4.4"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "2b73807008a3c7f171cc40312f37d95ef0396e048b5848d775f54b1a4dd4a0d3"
  2641. dependencies = [
  2642. "serde",
  2643. ]
  2644. [[package]]
  2645. name = "errno"
  2646. version = "0.3.8"
  2647. source = "registry+https://github.com/rust-lang/crates.io-index"
  2648. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  2649. dependencies = [
  2650. "libc",
  2651. "windows-sys 0.52.0",
  2652. ]
  2653. [[package]]
  2654. name = "error-chain"
  2655. version = "0.12.4"
  2656. source = "registry+https://github.com/rust-lang/crates.io-index"
  2657. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  2658. dependencies = [
  2659. "version_check",
  2660. ]
  2661. [[package]]
  2662. name = "event-listener"
  2663. version = "2.5.3"
  2664. source = "registry+https://github.com/rust-lang/crates.io-index"
  2665. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  2666. [[package]]
  2667. name = "event-listener"
  2668. version = "3.1.0"
  2669. source = "registry+https://github.com/rust-lang/crates.io-index"
  2670. checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
  2671. dependencies = [
  2672. "concurrent-queue",
  2673. "parking",
  2674. "pin-project-lite 0.2.13",
  2675. ]
  2676. [[package]]
  2677. name = "event-listener"
  2678. version = "4.0.3"
  2679. source = "registry+https://github.com/rust-lang/crates.io-index"
  2680. checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
  2681. dependencies = [
  2682. "concurrent-queue",
  2683. "parking",
  2684. "pin-project-lite 0.2.13",
  2685. ]
  2686. [[package]]
  2687. name = "event-listener"
  2688. version = "5.2.0"
  2689. source = "registry+https://github.com/rust-lang/crates.io-index"
  2690. checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91"
  2691. dependencies = [
  2692. "concurrent-queue",
  2693. "parking",
  2694. "pin-project-lite 0.2.13",
  2695. ]
  2696. [[package]]
  2697. name = "event-listener-strategy"
  2698. version = "0.4.0"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
  2701. dependencies = [
  2702. "event-listener 4.0.3",
  2703. "pin-project-lite 0.2.13",
  2704. ]
  2705. [[package]]
  2706. name = "event-listener-strategy"
  2707. version = "0.5.0"
  2708. source = "registry+https://github.com/rust-lang/crates.io-index"
  2709. checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291"
  2710. dependencies = [
  2711. "event-listener 5.2.0",
  2712. "pin-project-lite 0.2.13",
  2713. ]
  2714. [[package]]
  2715. name = "fallible-iterator"
  2716. version = "0.2.0"
  2717. source = "registry+https://github.com/rust-lang/crates.io-index"
  2718. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  2719. [[package]]
  2720. name = "fallible-iterator"
  2721. version = "0.3.0"
  2722. source = "registry+https://github.com/rust-lang/crates.io-index"
  2723. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  2724. [[package]]
  2725. name = "fallible-streaming-iterator"
  2726. version = "0.1.9"
  2727. source = "registry+https://github.com/rust-lang/crates.io-index"
  2728. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  2729. [[package]]
  2730. name = "fastrand"
  2731. version = "1.9.0"
  2732. source = "registry+https://github.com/rust-lang/crates.io-index"
  2733. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  2734. dependencies = [
  2735. "instant",
  2736. ]
  2737. [[package]]
  2738. name = "fastrand"
  2739. version = "2.0.1"
  2740. source = "registry+https://github.com/rust-lang/crates.io-index"
  2741. checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
  2742. [[package]]
  2743. name = "fdeflate"
  2744. version = "0.3.4"
  2745. source = "registry+https://github.com/rust-lang/crates.io-index"
  2746. checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
  2747. dependencies = [
  2748. "simd-adler32",
  2749. ]
  2750. [[package]]
  2751. name = "femme"
  2752. version = "2.2.1"
  2753. source = "registry+https://github.com/rust-lang/crates.io-index"
  2754. checksum = "cc04871e5ae3aa2952d552dae6b291b3099723bf779a8054281c1366a54613ef"
  2755. dependencies = [
  2756. "cfg-if 1.0.0",
  2757. "js-sys",
  2758. "log",
  2759. "serde",
  2760. "serde_derive",
  2761. "serde_json",
  2762. "wasm-bindgen",
  2763. "web-sys",
  2764. ]
  2765. [[package]]
  2766. name = "ff"
  2767. version = "0.13.0"
  2768. source = "registry+https://github.com/rust-lang/crates.io-index"
  2769. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  2770. dependencies = [
  2771. "bitvec",
  2772. "rand_core 0.6.4",
  2773. "subtle",
  2774. ]
  2775. [[package]]
  2776. name = "fiat-crypto"
  2777. version = "0.2.7"
  2778. source = "registry+https://github.com/rust-lang/crates.io-index"
  2779. checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f"
  2780. [[package]]
  2781. name = "filetime"
  2782. version = "0.2.23"
  2783. source = "registry+https://github.com/rust-lang/crates.io-index"
  2784. checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
  2785. dependencies = [
  2786. "cfg-if 1.0.0",
  2787. "libc",
  2788. "redox_syscall 0.4.1",
  2789. "windows-sys 0.52.0",
  2790. ]
  2791. [[package]]
  2792. name = "fixed-hash"
  2793. version = "0.8.0"
  2794. source = "registry+https://github.com/rust-lang/crates.io-index"
  2795. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  2796. dependencies = [
  2797. "byteorder",
  2798. "rand 0.8.5",
  2799. "rustc-hex",
  2800. "static_assertions",
  2801. ]
  2802. [[package]]
  2803. name = "flate2"
  2804. version = "1.0.28"
  2805. source = "registry+https://github.com/rust-lang/crates.io-index"
  2806. checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
  2807. dependencies = [
  2808. "crc32fast",
  2809. "miniz_oxide",
  2810. ]
  2811. [[package]]
  2812. name = "float-ord"
  2813. version = "0.2.0"
  2814. source = "registry+https://github.com/rust-lang/crates.io-index"
  2815. checksum = "7bad48618fdb549078c333a7a8528acb57af271d0433bdecd523eb620628364e"
  2816. [[package]]
  2817. name = "fluid-let"
  2818. version = "1.0.0"
  2819. source = "registry+https://github.com/rust-lang/crates.io-index"
  2820. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  2821. [[package]]
  2822. name = "flume"
  2823. version = "0.9.2"
  2824. source = "registry+https://github.com/rust-lang/crates.io-index"
  2825. checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132"
  2826. dependencies = [
  2827. "futures-core",
  2828. "futures-sink",
  2829. "spinning_top",
  2830. ]
  2831. [[package]]
  2832. name = "fnv"
  2833. version = "1.0.7"
  2834. source = "registry+https://github.com/rust-lang/crates.io-index"
  2835. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2836. [[package]]
  2837. name = "font-kit"
  2838. version = "0.11.0"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "21fe28504d371085fae9ac7a3450f0b289ab71e07c8e57baa3fb68b9e57d6ce5"
  2841. dependencies = [
  2842. "bitflags 1.3.2",
  2843. "byteorder",
  2844. "core-foundation",
  2845. "core-graphics",
  2846. "core-text",
  2847. "dirs-next",
  2848. "dwrote",
  2849. "float-ord",
  2850. "freetype",
  2851. "lazy_static",
  2852. "libc",
  2853. "log",
  2854. "pathfinder_geometry",
  2855. "pathfinder_simd",
  2856. "walkdir",
  2857. "winapi",
  2858. "yeslogic-fontconfig-sys",
  2859. ]
  2860. [[package]]
  2861. name = "foreign-types"
  2862. version = "0.3.2"
  2863. source = "registry+https://github.com/rust-lang/crates.io-index"
  2864. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  2865. dependencies = [
  2866. "foreign-types-shared",
  2867. ]
  2868. [[package]]
  2869. name = "foreign-types-shared"
  2870. version = "0.1.1"
  2871. source = "registry+https://github.com/rust-lang/crates.io-index"
  2872. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  2873. [[package]]
  2874. name = "form_urlencoded"
  2875. version = "1.2.1"
  2876. source = "registry+https://github.com/rust-lang/crates.io-index"
  2877. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  2878. dependencies = [
  2879. "percent-encoding",
  2880. ]
  2881. [[package]]
  2882. name = "freetype"
  2883. version = "0.7.1"
  2884. source = "registry+https://github.com/rust-lang/crates.io-index"
  2885. checksum = "efc8599a3078adf8edeb86c71e9f8fa7d88af5ca31e806a867756081f90f5d83"
  2886. dependencies = [
  2887. "freetype-sys",
  2888. "libc",
  2889. ]
  2890. [[package]]
  2891. name = "freetype-sys"
  2892. version = "0.19.0"
  2893. source = "registry+https://github.com/rust-lang/crates.io-index"
  2894. checksum = "66ee28c39a43d89fbed8b4798fb4ba56722cfd2b5af81f9326c27614ba88ecd5"
  2895. dependencies = [
  2896. "cc",
  2897. "libc",
  2898. "pkg-config",
  2899. ]
  2900. [[package]]
  2901. name = "fs-mistrust"
  2902. version = "0.7.8"
  2903. source = "registry+https://github.com/rust-lang/crates.io-index"
  2904. checksum = "0af38a7e00ec1cc0cae8002d3cc9738ebb97d623bc519ca8a9b471e9bc8cdb75"
  2905. dependencies = [
  2906. "derive_builder_fork_arti",
  2907. "dirs",
  2908. "educe",
  2909. "libc",
  2910. "once_cell",
  2911. "pwd-grp",
  2912. "serde",
  2913. "thiserror",
  2914. "walkdir",
  2915. ]
  2916. [[package]]
  2917. name = "fs2"
  2918. version = "0.4.3"
  2919. source = "registry+https://github.com/rust-lang/crates.io-index"
  2920. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  2921. dependencies = [
  2922. "libc",
  2923. "winapi",
  2924. ]
  2925. [[package]]
  2926. name = "fslock"
  2927. version = "0.2.1"
  2928. source = "registry+https://github.com/rust-lang/crates.io-index"
  2929. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  2930. dependencies = [
  2931. "libc",
  2932. "winapi",
  2933. ]
  2934. [[package]]
  2935. name = "fslock-arti-fork"
  2936. version = "0.2.0"
  2937. source = "registry+https://github.com/rust-lang/crates.io-index"
  2938. checksum = "8b21bd626aaab7b904b20bef6d9e06298914a0c8d9fb8b010483766b2e532791"
  2939. dependencies = [
  2940. "libc",
  2941. "winapi",
  2942. ]
  2943. [[package]]
  2944. name = "fslock-guard"
  2945. version = "0.1.1"
  2946. source = "registry+https://github.com/rust-lang/crates.io-index"
  2947. checksum = "b2a8cb6a456f2340bca9a2934857b531c107311d5d271e8b57be43ac87a87489"
  2948. dependencies = [
  2949. "fslock-arti-fork",
  2950. "thiserror",
  2951. "winapi",
  2952. ]
  2953. [[package]]
  2954. name = "funty"
  2955. version = "2.0.0"
  2956. source = "registry+https://github.com/rust-lang/crates.io-index"
  2957. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2958. [[package]]
  2959. name = "futures"
  2960. version = "0.3.30"
  2961. source = "registry+https://github.com/rust-lang/crates.io-index"
  2962. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  2963. dependencies = [
  2964. "futures-channel",
  2965. "futures-core",
  2966. "futures-executor",
  2967. "futures-io",
  2968. "futures-sink",
  2969. "futures-task",
  2970. "futures-util",
  2971. ]
  2972. [[package]]
  2973. name = "futures-channel"
  2974. version = "0.3.30"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  2977. dependencies = [
  2978. "futures-core",
  2979. "futures-sink",
  2980. ]
  2981. [[package]]
  2982. name = "futures-core"
  2983. version = "0.3.30"
  2984. source = "registry+https://github.com/rust-lang/crates.io-index"
  2985. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  2986. [[package]]
  2987. name = "futures-executor"
  2988. version = "0.3.30"
  2989. source = "registry+https://github.com/rust-lang/crates.io-index"
  2990. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  2991. dependencies = [
  2992. "futures-core",
  2993. "futures-task",
  2994. "futures-util",
  2995. ]
  2996. [[package]]
  2997. name = "futures-io"
  2998. version = "0.3.30"
  2999. source = "registry+https://github.com/rust-lang/crates.io-index"
  3000. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  3001. [[package]]
  3002. name = "futures-lite"
  3003. version = "1.13.0"
  3004. source = "registry+https://github.com/rust-lang/crates.io-index"
  3005. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  3006. dependencies = [
  3007. "fastrand 1.9.0",
  3008. "futures-core",
  3009. "futures-io",
  3010. "memchr",
  3011. "parking",
  3012. "pin-project-lite 0.2.13",
  3013. "waker-fn",
  3014. ]
  3015. [[package]]
  3016. name = "futures-lite"
  3017. version = "2.3.0"
  3018. source = "registry+https://github.com/rust-lang/crates.io-index"
  3019. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  3020. dependencies = [
  3021. "fastrand 2.0.1",
  3022. "futures-core",
  3023. "futures-io",
  3024. "parking",
  3025. "pin-project-lite 0.2.13",
  3026. ]
  3027. [[package]]
  3028. name = "futures-macro"
  3029. version = "0.3.30"
  3030. source = "registry+https://github.com/rust-lang/crates.io-index"
  3031. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  3032. dependencies = [
  3033. "proc-macro2",
  3034. "quote",
  3035. "syn 2.0.53",
  3036. ]
  3037. [[package]]
  3038. name = "futures-rustls"
  3039. version = "0.25.1"
  3040. source = "registry+https://github.com/rust-lang/crates.io-index"
  3041. checksum = "c8d8a2499f0fecc0492eb3e47eab4e92da7875e1028ad2528f214ac3346ca04e"
  3042. dependencies = [
  3043. "futures-io",
  3044. "rustls",
  3045. "rustls-pki-types",
  3046. ]
  3047. [[package]]
  3048. name = "futures-sink"
  3049. version = "0.3.30"
  3050. source = "registry+https://github.com/rust-lang/crates.io-index"
  3051. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  3052. [[package]]
  3053. name = "futures-task"
  3054. version = "0.3.30"
  3055. source = "registry+https://github.com/rust-lang/crates.io-index"
  3056. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  3057. [[package]]
  3058. name = "futures-util"
  3059. version = "0.3.30"
  3060. source = "registry+https://github.com/rust-lang/crates.io-index"
  3061. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  3062. dependencies = [
  3063. "futures-channel",
  3064. "futures-core",
  3065. "futures-io",
  3066. "futures-macro",
  3067. "futures-sink",
  3068. "futures-task",
  3069. "memchr",
  3070. "pin-project-lite 0.2.13",
  3071. "pin-utils",
  3072. "slab",
  3073. ]
  3074. [[package]]
  3075. name = "fxhash"
  3076. version = "0.2.1"
  3077. source = "registry+https://github.com/rust-lang/crates.io-index"
  3078. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  3079. dependencies = [
  3080. "byteorder",
  3081. ]
  3082. [[package]]
  3083. name = "generic-array"
  3084. version = "0.14.7"
  3085. source = "registry+https://github.com/rust-lang/crates.io-index"
  3086. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  3087. dependencies = [
  3088. "typenum",
  3089. "version_check",
  3090. "zeroize",
  3091. ]
  3092. [[package]]
  3093. name = "genev"
  3094. version = "0.4.1"
  3095. dependencies = [
  3096. "clap 4.5.3",
  3097. "darkfi",
  3098. "darkfi-serial",
  3099. "genevd",
  3100. "log",
  3101. "simplelog",
  3102. "smol",
  3103. "tinyjson",
  3104. "url",
  3105. ]
  3106. [[package]]
  3107. name = "genevd"
  3108. version = "0.4.1"
  3109. dependencies = [
  3110. "async-trait",
  3111. "blake3 1.5.1",
  3112. "darkfi",
  3113. "darkfi-serial",
  3114. "easy-parallel",
  3115. "log",
  3116. "serde",
  3117. "signal-hook",
  3118. "signal-hook-async-std",
  3119. "simplelog",
  3120. "sled",
  3121. "smol",
  3122. "structopt",
  3123. "structopt-toml",
  3124. "tinyjson",
  3125. "url",
  3126. ]
  3127. [[package]]
  3128. name = "getrandom"
  3129. version = "0.1.16"
  3130. source = "registry+https://github.com/rust-lang/crates.io-index"
  3131. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  3132. dependencies = [
  3133. "cfg-if 1.0.0",
  3134. "libc",
  3135. "wasi 0.9.0+wasi-snapshot-preview1",
  3136. ]
  3137. [[package]]
  3138. name = "getrandom"
  3139. version = "0.2.12"
  3140. source = "registry+https://github.com/rust-lang/crates.io-index"
  3141. checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
  3142. dependencies = [
  3143. "cfg-if 1.0.0",
  3144. "js-sys",
  3145. "libc",
  3146. "wasi 0.11.0+wasi-snapshot-preview1",
  3147. "wasm-bindgen",
  3148. ]
  3149. [[package]]
  3150. name = "ghash"
  3151. version = "0.3.1"
  3152. source = "registry+https://github.com/rust-lang/crates.io-index"
  3153. checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
  3154. dependencies = [
  3155. "opaque-debug",
  3156. "polyval",
  3157. ]
  3158. [[package]]
  3159. name = "gif"
  3160. version = "0.12.0"
  3161. source = "registry+https://github.com/rust-lang/crates.io-index"
  3162. checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
  3163. dependencies = [
  3164. "color_quant",
  3165. "weezl",
  3166. ]
  3167. [[package]]
  3168. name = "gimli"
  3169. version = "0.26.2"
  3170. source = "registry+https://github.com/rust-lang/crates.io-index"
  3171. checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
  3172. dependencies = [
  3173. "fallible-iterator 0.2.0",
  3174. "indexmap 1.9.3",
  3175. "stable_deref_trait",
  3176. ]
  3177. [[package]]
  3178. name = "gimli"
  3179. version = "0.28.1"
  3180. source = "registry+https://github.com/rust-lang/crates.io-index"
  3181. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  3182. [[package]]
  3183. name = "glob"
  3184. version = "0.3.1"
  3185. source = "registry+https://github.com/rust-lang/crates.io-index"
  3186. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  3187. [[package]]
  3188. name = "glob-match"
  3189. version = "0.2.1"
  3190. source = "registry+https://github.com/rust-lang/crates.io-index"
  3191. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  3192. [[package]]
  3193. name = "gloo-timers"
  3194. version = "0.2.6"
  3195. source = "registry+https://github.com/rust-lang/crates.io-index"
  3196. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  3197. dependencies = [
  3198. "futures-channel",
  3199. "futures-core",
  3200. "js-sys",
  3201. "wasm-bindgen",
  3202. ]
  3203. [[package]]
  3204. name = "group"
  3205. version = "0.13.0"
  3206. source = "registry+https://github.com/rust-lang/crates.io-index"
  3207. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  3208. dependencies = [
  3209. "ff",
  3210. "rand_core 0.6.4",
  3211. "subtle",
  3212. ]
  3213. [[package]]
  3214. name = "growable-bloom-filter"
  3215. version = "2.1.0"
  3216. source = "registry+https://github.com/rust-lang/crates.io-index"
  3217. checksum = "c669fa03050eb3445343f215d62fc1ab831e8098bc9a55f26e9724faff11075c"
  3218. dependencies = [
  3219. "serde",
  3220. "serde_bytes",
  3221. "serde_derive",
  3222. "xxhash-rust",
  3223. ]
  3224. [[package]]
  3225. name = "half"
  3226. version = "2.4.0"
  3227. source = "registry+https://github.com/rust-lang/crates.io-index"
  3228. checksum = "b5eceaaeec696539ddaf7b333340f1af35a5aa87ae3e4f3ead0532f72affab2e"
  3229. dependencies = [
  3230. "cfg-if 1.0.0",
  3231. "crunchy",
  3232. ]
  3233. [[package]]
  3234. name = "halo2_gadgets"
  3235. version = "0.3.0"
  3236. source = "git+https://github.com/parazyd/halo2?branch=v4#23d312ee30307c47388a810c2997a2d19186e24a"
  3237. dependencies = [
  3238. "arrayvec 0.7.4",
  3239. "bitvec",
  3240. "ff",
  3241. "group",
  3242. "halo2_proofs",
  3243. "lazy_static",
  3244. "pasta_curves",
  3245. "proptest",
  3246. "rand 0.8.5",
  3247. "subtle",
  3248. "uint",
  3249. ]
  3250. [[package]]
  3251. name = "halo2_proofs"
  3252. version = "0.3.0"
  3253. source = "git+https://github.com/parazyd/halo2?branch=v4#23d312ee30307c47388a810c2997a2d19186e24a"
  3254. dependencies = [
  3255. "blake2b_simd",
  3256. "ff",
  3257. "group",
  3258. "maybe-rayon",
  3259. "pasta_curves",
  3260. "plotters",
  3261. "rand_core 0.6.4",
  3262. "tabbycat",
  3263. "tracing",
  3264. ]
  3265. [[package]]
  3266. name = "hashbrown"
  3267. version = "0.12.3"
  3268. source = "registry+https://github.com/rust-lang/crates.io-index"
  3269. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  3270. dependencies = [
  3271. "ahash 0.7.8",
  3272. ]
  3273. [[package]]
  3274. name = "hashbrown"
  3275. version = "0.14.3"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  3278. dependencies = [
  3279. "ahash 0.8.11",
  3280. "allocator-api2",
  3281. ]
  3282. [[package]]
  3283. name = "hashlink"
  3284. version = "0.9.0"
  3285. source = "registry+https://github.com/rust-lang/crates.io-index"
  3286. checksum = "692eaaf7f7607518dd3cef090f1474b61edc5301d8012f09579920df68b725ee"
  3287. dependencies = [
  3288. "hashbrown 0.14.3",
  3289. ]
  3290. [[package]]
  3291. name = "heck"
  3292. version = "0.3.3"
  3293. source = "registry+https://github.com/rust-lang/crates.io-index"
  3294. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  3295. dependencies = [
  3296. "unicode-segmentation",
  3297. ]
  3298. [[package]]
  3299. name = "heck"
  3300. version = "0.4.1"
  3301. source = "registry+https://github.com/rust-lang/crates.io-index"
  3302. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  3303. [[package]]
  3304. name = "heck"
  3305. version = "0.5.0"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  3308. [[package]]
  3309. name = "hermit-abi"
  3310. version = "0.1.19"
  3311. source = "registry+https://github.com/rust-lang/crates.io-index"
  3312. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  3313. dependencies = [
  3314. "libc",
  3315. ]
  3316. [[package]]
  3317. name = "hermit-abi"
  3318. version = "0.3.9"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  3321. [[package]]
  3322. name = "hex"
  3323. version = "0.4.3"
  3324. source = "registry+https://github.com/rust-lang/crates.io-index"
  3325. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  3326. [[package]]
  3327. name = "hex-literal"
  3328. version = "0.4.1"
  3329. source = "registry+https://github.com/rust-lang/crates.io-index"
  3330. checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46"
  3331. [[package]]
  3332. name = "hkdf"
  3333. version = "0.10.0"
  3334. source = "registry+https://github.com/rust-lang/crates.io-index"
  3335. checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
  3336. dependencies = [
  3337. "digest 0.9.0",
  3338. "hmac 0.10.1",
  3339. ]
  3340. [[package]]
  3341. name = "hkdf"
  3342. version = "0.12.4"
  3343. source = "registry+https://github.com/rust-lang/crates.io-index"
  3344. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  3345. dependencies = [
  3346. "hmac 0.12.1",
  3347. ]
  3348. [[package]]
  3349. name = "hmac"
  3350. version = "0.10.1"
  3351. source = "registry+https://github.com/rust-lang/crates.io-index"
  3352. checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
  3353. dependencies = [
  3354. "crypto-mac 0.10.0",
  3355. "digest 0.9.0",
  3356. ]
  3357. [[package]]
  3358. name = "hmac"
  3359. version = "0.11.0"
  3360. source = "registry+https://github.com/rust-lang/crates.io-index"
  3361. checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
  3362. dependencies = [
  3363. "crypto-mac 0.11.0",
  3364. "digest 0.9.0",
  3365. ]
  3366. [[package]]
  3367. name = "hmac"
  3368. version = "0.12.1"
  3369. source = "registry+https://github.com/rust-lang/crates.io-index"
  3370. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  3371. dependencies = [
  3372. "digest 0.10.7",
  3373. ]
  3374. [[package]]
  3375. name = "home"
  3376. version = "0.5.9"
  3377. source = "registry+https://github.com/rust-lang/crates.io-index"
  3378. checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
  3379. dependencies = [
  3380. "windows-sys 0.52.0",
  3381. ]
  3382. [[package]]
  3383. name = "hostname-validator"
  3384. version = "1.1.1"
  3385. source = "registry+https://github.com/rust-lang/crates.io-index"
  3386. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  3387. [[package]]
  3388. name = "http"
  3389. version = "0.2.12"
  3390. source = "registry+https://github.com/rust-lang/crates.io-index"
  3391. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  3392. dependencies = [
  3393. "bytes 1.5.0",
  3394. "fnv",
  3395. "itoa",
  3396. ]
  3397. [[package]]
  3398. name = "http"
  3399. version = "1.1.0"
  3400. source = "registry+https://github.com/rust-lang/crates.io-index"
  3401. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  3402. dependencies = [
  3403. "bytes 1.5.0",
  3404. "fnv",
  3405. "itoa",
  3406. ]
  3407. [[package]]
  3408. name = "http-client"
  3409. version = "6.5.3"
  3410. source = "registry+https://github.com/rust-lang/crates.io-index"
  3411. checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
  3412. dependencies = [
  3413. "async-std",
  3414. "async-trait",
  3415. "cfg-if 1.0.0",
  3416. "http-types",
  3417. "isahc",
  3418. "log",
  3419. ]
  3420. [[package]]
  3421. name = "http-types"
  3422. version = "2.12.0"
  3423. source = "registry+https://github.com/rust-lang/crates.io-index"
  3424. checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
  3425. dependencies = [
  3426. "anyhow",
  3427. "async-channel 1.9.0",
  3428. "async-std",
  3429. "base64 0.13.1",
  3430. "cookie",
  3431. "futures-lite 1.13.0",
  3432. "infer",
  3433. "pin-project-lite 0.2.13",
  3434. "rand 0.7.3",
  3435. "serde",
  3436. "serde_json",
  3437. "serde_qs",
  3438. "serde_urlencoded",
  3439. "url",
  3440. ]
  3441. [[package]]
  3442. name = "httparse"
  3443. version = "1.8.0"
  3444. source = "registry+https://github.com/rust-lang/crates.io-index"
  3445. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  3446. [[package]]
  3447. name = "httpdate"
  3448. version = "1.0.3"
  3449. source = "registry+https://github.com/rust-lang/crates.io-index"
  3450. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  3451. [[package]]
  3452. name = "humantime"
  3453. version = "2.1.0"
  3454. source = "registry+https://github.com/rust-lang/crates.io-index"
  3455. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  3456. [[package]]
  3457. name = "humantime-serde"
  3458. version = "1.1.1"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  3461. dependencies = [
  3462. "humantime",
  3463. "serde",
  3464. ]
  3465. [[package]]
  3466. name = "iana-time-zone"
  3467. version = "0.1.60"
  3468. source = "registry+https://github.com/rust-lang/crates.io-index"
  3469. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  3470. dependencies = [
  3471. "android_system_properties",
  3472. "core-foundation-sys",
  3473. "iana-time-zone-haiku",
  3474. "js-sys",
  3475. "wasm-bindgen",
  3476. "windows-core 0.52.0",
  3477. ]
  3478. [[package]]
  3479. name = "iana-time-zone-haiku"
  3480. version = "0.1.2"
  3481. source = "registry+https://github.com/rust-lang/crates.io-index"
  3482. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3483. dependencies = [
  3484. "cc",
  3485. ]
  3486. [[package]]
  3487. name = "ident_case"
  3488. version = "1.0.1"
  3489. source = "registry+https://github.com/rust-lang/crates.io-index"
  3490. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3491. [[package]]
  3492. name = "idna"
  3493. version = "0.5.0"
  3494. source = "registry+https://github.com/rust-lang/crates.io-index"
  3495. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  3496. dependencies = [
  3497. "unicode-bidi",
  3498. "unicode-normalization",
  3499. ]
  3500. [[package]]
  3501. name = "image"
  3502. version = "0.24.9"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
  3505. dependencies = [
  3506. "bytemuck",
  3507. "byteorder",
  3508. "color_quant",
  3509. "jpeg-decoder",
  3510. "num-traits",
  3511. "png",
  3512. ]
  3513. [[package]]
  3514. name = "incrementalmerkletree"
  3515. version = "0.5.0"
  3516. source = "registry+https://github.com/rust-lang/crates.io-index"
  3517. checksum = "361c467824d4d9d4f284be4b2608800839419dccc4d4608f28345237fe354623"
  3518. dependencies = [
  3519. "either",
  3520. ]
  3521. [[package]]
  3522. name = "indexmap"
  3523. version = "1.9.3"
  3524. source = "registry+https://github.com/rust-lang/crates.io-index"
  3525. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3526. dependencies = [
  3527. "autocfg",
  3528. "hashbrown 0.12.3",
  3529. "serde",
  3530. ]
  3531. [[package]]
  3532. name = "indexmap"
  3533. version = "2.2.5"
  3534. source = "registry+https://github.com/rust-lang/crates.io-index"
  3535. checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
  3536. dependencies = [
  3537. "equivalent",
  3538. "hashbrown 0.14.3",
  3539. "serde",
  3540. ]
  3541. [[package]]
  3542. name = "indoc"
  3543. version = "2.0.4"
  3544. source = "registry+https://github.com/rust-lang/crates.io-index"
  3545. checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
  3546. [[package]]
  3547. name = "infer"
  3548. version = "0.2.3"
  3549. source = "registry+https://github.com/rust-lang/crates.io-index"
  3550. checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
  3551. [[package]]
  3552. name = "inout"
  3553. version = "0.1.3"
  3554. source = "registry+https://github.com/rust-lang/crates.io-index"
  3555. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  3556. dependencies = [
  3557. "generic-array",
  3558. ]
  3559. [[package]]
  3560. name = "instant"
  3561. version = "0.1.12"
  3562. source = "registry+https://github.com/rust-lang/crates.io-index"
  3563. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  3564. dependencies = [
  3565. "cfg-if 1.0.0",
  3566. ]
  3567. [[package]]
  3568. name = "inventory"
  3569. version = "0.3.15"
  3570. source = "registry+https://github.com/rust-lang/crates.io-index"
  3571. checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
  3572. [[package]]
  3573. name = "io-lifetimes"
  3574. version = "1.0.11"
  3575. source = "registry+https://github.com/rust-lang/crates.io-index"
  3576. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  3577. dependencies = [
  3578. "hermit-abi 0.3.9",
  3579. "libc",
  3580. "windows-sys 0.48.0",
  3581. ]
  3582. [[package]]
  3583. name = "is-terminal"
  3584. version = "0.4.12"
  3585. source = "registry+https://github.com/rust-lang/crates.io-index"
  3586. checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
  3587. dependencies = [
  3588. "hermit-abi 0.3.9",
  3589. "libc",
  3590. "windows-sys 0.52.0",
  3591. ]
  3592. [[package]]
  3593. name = "isahc"
  3594. version = "0.9.14"
  3595. source = "registry+https://github.com/rust-lang/crates.io-index"
  3596. checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a"
  3597. dependencies = [
  3598. "bytes 0.5.6",
  3599. "crossbeam-utils",
  3600. "curl",
  3601. "curl-sys",
  3602. "flume",
  3603. "futures-lite 1.13.0",
  3604. "http 0.2.12",
  3605. "log",
  3606. "once_cell",
  3607. "slab",
  3608. "sluice",
  3609. "tracing",
  3610. "tracing-futures",
  3611. "url",
  3612. "waker-fn",
  3613. ]
  3614. [[package]]
  3615. name = "itertools"
  3616. version = "0.10.5"
  3617. source = "registry+https://github.com/rust-lang/crates.io-index"
  3618. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  3619. dependencies = [
  3620. "either",
  3621. ]
  3622. [[package]]
  3623. name = "itertools"
  3624. version = "0.11.0"
  3625. source = "registry+https://github.com/rust-lang/crates.io-index"
  3626. checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
  3627. dependencies = [
  3628. "either",
  3629. ]
  3630. [[package]]
  3631. name = "itertools"
  3632. version = "0.12.1"
  3633. source = "registry+https://github.com/rust-lang/crates.io-index"
  3634. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  3635. dependencies = [
  3636. "either",
  3637. ]
  3638. [[package]]
  3639. name = "itoa"
  3640. version = "1.0.10"
  3641. source = "registry+https://github.com/rust-lang/crates.io-index"
  3642. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  3643. [[package]]
  3644. name = "jni"
  3645. version = "0.21.1"
  3646. source = "registry+https://github.com/rust-lang/crates.io-index"
  3647. checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
  3648. dependencies = [
  3649. "cesu8",
  3650. "cfg-if 1.0.0",
  3651. "combine",
  3652. "jni-sys",
  3653. "log",
  3654. "thiserror",
  3655. "walkdir",
  3656. "windows-sys 0.45.0",
  3657. ]
  3658. [[package]]
  3659. name = "jni-sys"
  3660. version = "0.3.0"
  3661. source = "registry+https://github.com/rust-lang/crates.io-index"
  3662. checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
  3663. [[package]]
  3664. name = "jobserver"
  3665. version = "0.1.28"
  3666. source = "registry+https://github.com/rust-lang/crates.io-index"
  3667. checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
  3668. dependencies = [
  3669. "libc",
  3670. ]
  3671. [[package]]
  3672. name = "jpeg-decoder"
  3673. version = "0.3.1"
  3674. source = "registry+https://github.com/rust-lang/crates.io-index"
  3675. checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
  3676. [[package]]
  3677. name = "js-sys"
  3678. version = "0.3.69"
  3679. source = "registry+https://github.com/rust-lang/crates.io-index"
  3680. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  3681. dependencies = [
  3682. "wasm-bindgen",
  3683. ]
  3684. [[package]]
  3685. name = "k12"
  3686. version = "0.3.0"
  3687. source = "registry+https://github.com/rust-lang/crates.io-index"
  3688. checksum = "f4dc5fdb62af2f520116927304f15d25b3c2667b4817b90efdc045194c912c54"
  3689. dependencies = [
  3690. "digest 0.10.7",
  3691. "sha3",
  3692. ]
  3693. [[package]]
  3694. name = "keccak"
  3695. version = "0.1.5"
  3696. source = "registry+https://github.com/rust-lang/crates.io-index"
  3697. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  3698. dependencies = [
  3699. "cpufeatures",
  3700. ]
  3701. [[package]]
  3702. name = "kv-log-macro"
  3703. version = "1.0.7"
  3704. source = "registry+https://github.com/rust-lang/crates.io-index"
  3705. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  3706. dependencies = [
  3707. "log",
  3708. ]
  3709. [[package]]
  3710. name = "lazy_static"
  3711. version = "1.4.0"
  3712. source = "registry+https://github.com/rust-lang/crates.io-index"
  3713. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  3714. dependencies = [
  3715. "spin 0.5.2",
  3716. ]
  3717. [[package]]
  3718. name = "lazycell"
  3719. version = "1.3.0"
  3720. source = "registry+https://github.com/rust-lang/crates.io-index"
  3721. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  3722. [[package]]
  3723. name = "leb128"
  3724. version = "0.2.5"
  3725. source = "registry+https://github.com/rust-lang/crates.io-index"
  3726. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  3727. [[package]]
  3728. name = "libc"
  3729. version = "0.2.153"
  3730. source = "registry+https://github.com/rust-lang/crates.io-index"
  3731. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  3732. [[package]]
  3733. name = "libloading"
  3734. version = "0.8.3"
  3735. source = "registry+https://github.com/rust-lang/crates.io-index"
  3736. checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
  3737. dependencies = [
  3738. "cfg-if 1.0.0",
  3739. "windows-targets 0.52.4",
  3740. ]
  3741. [[package]]
  3742. name = "libm"
  3743. version = "0.2.8"
  3744. source = "registry+https://github.com/rust-lang/crates.io-index"
  3745. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  3746. [[package]]
  3747. name = "libnghttp2-sys"
  3748. version = "0.1.9+1.58.0"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "b57e858af2798e167e709b9d969325b6d8e9d50232fcbc494d7d54f976854a64"
  3751. dependencies = [
  3752. "cc",
  3753. "libc",
  3754. ]
  3755. [[package]]
  3756. name = "libredox"
  3757. version = "0.0.1"
  3758. source = "registry+https://github.com/rust-lang/crates.io-index"
  3759. checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
  3760. dependencies = [
  3761. "bitflags 2.5.0",
  3762. "libc",
  3763. "redox_syscall 0.4.1",
  3764. ]
  3765. [[package]]
  3766. name = "libsqlite3-sys"
  3767. version = "0.28.0"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
  3770. dependencies = [
  3771. "pkg-config",
  3772. "vcpkg",
  3773. ]
  3774. [[package]]
  3775. name = "libz-sys"
  3776. version = "1.1.16"
  3777. source = "registry+https://github.com/rust-lang/crates.io-index"
  3778. checksum = "5e143b5e666b2695d28f6bca6497720813f699c9602dd7f5cac91008b8ada7f9"
  3779. dependencies = [
  3780. "cc",
  3781. "libc",
  3782. "pkg-config",
  3783. "vcpkg",
  3784. ]
  3785. [[package]]
  3786. name = "lilith"
  3787. version = "0.4.2"
  3788. dependencies = [
  3789. "async-trait",
  3790. "darkfi",
  3791. "easy-parallel",
  3792. "futures",
  3793. "log",
  3794. "semver 1.0.22",
  3795. "serde",
  3796. "signal-hook",
  3797. "signal-hook-async-std",
  3798. "simplelog",
  3799. "smol",
  3800. "structopt",
  3801. "structopt-toml",
  3802. "tinyjson",
  3803. "toml 0.8.12",
  3804. "url",
  3805. ]
  3806. [[package]]
  3807. name = "linux-raw-sys"
  3808. version = "0.3.8"
  3809. source = "registry+https://github.com/rust-lang/crates.io-index"
  3810. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  3811. [[package]]
  3812. name = "linux-raw-sys"
  3813. version = "0.4.13"
  3814. source = "registry+https://github.com/rust-lang/crates.io-index"
  3815. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  3816. [[package]]
  3817. name = "lock_api"
  3818. version = "0.4.11"
  3819. source = "registry+https://github.com/rust-lang/crates.io-index"
  3820. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  3821. dependencies = [
  3822. "autocfg",
  3823. "scopeguard",
  3824. ]
  3825. [[package]]
  3826. name = "log"
  3827. version = "0.4.21"
  3828. source = "registry+https://github.com/rust-lang/crates.io-index"
  3829. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  3830. dependencies = [
  3831. "serde",
  3832. "value-bag",
  3833. ]
  3834. [[package]]
  3835. name = "lzma-sys"
  3836. version = "0.1.20"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  3839. dependencies = [
  3840. "cc",
  3841. "libc",
  3842. "pkg-config",
  3843. ]
  3844. [[package]]
  3845. name = "mach"
  3846. version = "0.3.2"
  3847. source = "registry+https://github.com/rust-lang/crates.io-index"
  3848. checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
  3849. dependencies = [
  3850. "libc",
  3851. ]
  3852. [[package]]
  3853. name = "mach2"
  3854. version = "0.4.2"
  3855. source = "registry+https://github.com/rust-lang/crates.io-index"
  3856. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  3857. dependencies = [
  3858. "libc",
  3859. ]
  3860. [[package]]
  3861. name = "matchers"
  3862. version = "0.1.0"
  3863. source = "registry+https://github.com/rust-lang/crates.io-index"
  3864. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  3865. dependencies = [
  3866. "regex-automata 0.1.10",
  3867. ]
  3868. [[package]]
  3869. name = "maybe-rayon"
  3870. version = "0.1.1"
  3871. source = "registry+https://github.com/rust-lang/crates.io-index"
  3872. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  3873. dependencies = [
  3874. "cfg-if 1.0.0",
  3875. "rayon",
  3876. ]
  3877. [[package]]
  3878. name = "memchr"
  3879. version = "2.7.1"
  3880. source = "registry+https://github.com/rust-lang/crates.io-index"
  3881. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  3882. [[package]]
  3883. name = "memmap2"
  3884. version = "0.5.10"
  3885. source = "registry+https://github.com/rust-lang/crates.io-index"
  3886. checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
  3887. dependencies = [
  3888. "libc",
  3889. ]
  3890. [[package]]
  3891. name = "memmap2"
  3892. version = "0.6.2"
  3893. source = "registry+https://github.com/rust-lang/crates.io-index"
  3894. checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
  3895. dependencies = [
  3896. "libc",
  3897. ]
  3898. [[package]]
  3899. name = "memmap2"
  3900. version = "0.9.4"
  3901. source = "registry+https://github.com/rust-lang/crates.io-index"
  3902. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  3903. dependencies = [
  3904. "libc",
  3905. ]
  3906. [[package]]
  3907. name = "memoffset"
  3908. version = "0.9.0"
  3909. source = "registry+https://github.com/rust-lang/crates.io-index"
  3910. checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
  3911. dependencies = [
  3912. "autocfg",
  3913. ]
  3914. [[package]]
  3915. name = "merlin"
  3916. version = "3.0.0"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  3919. dependencies = [
  3920. "byteorder",
  3921. "keccak",
  3922. "rand_core 0.6.4",
  3923. "zeroize",
  3924. ]
  3925. [[package]]
  3926. name = "mime"
  3927. version = "0.3.17"
  3928. source = "registry+https://github.com/rust-lang/crates.io-index"
  3929. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3930. [[package]]
  3931. name = "mime_guess"
  3932. version = "2.0.4"
  3933. source = "registry+https://github.com/rust-lang/crates.io-index"
  3934. checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
  3935. dependencies = [
  3936. "mime",
  3937. "unicase",
  3938. ]
  3939. [[package]]
  3940. name = "minerd"
  3941. version = "0.4.1"
  3942. dependencies = [
  3943. "darkfi",
  3944. "darkfi-sdk",
  3945. "darkfi-serial",
  3946. "easy-parallel",
  3947. "log",
  3948. "num-bigint",
  3949. "serde",
  3950. "signal-hook",
  3951. "signal-hook-async-std",
  3952. "simplelog",
  3953. "smol",
  3954. "structopt",
  3955. "structopt-toml",
  3956. "tinyjson",
  3957. "url",
  3958. ]
  3959. [[package]]
  3960. name = "minimal-lexical"
  3961. version = "0.2.1"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3964. [[package]]
  3965. name = "minimp3-sys"
  3966. version = "0.3.2"
  3967. source = "registry+https://github.com/rust-lang/crates.io-index"
  3968. checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90"
  3969. dependencies = [
  3970. "cc",
  3971. ]
  3972. [[package]]
  3973. name = "minimp3_fixed"
  3974. version = "0.5.4"
  3975. source = "registry+https://github.com/rust-lang/crates.io-index"
  3976. checksum = "42b0f14e7e75da97ae396c2656b10262a3d4afa2ec98f35795630eff0c8b951b"
  3977. dependencies = [
  3978. "minimp3-sys",
  3979. "slice-ring-buffer",
  3980. "thiserror",
  3981. ]
  3982. [[package]]
  3983. name = "miniz_oxide"
  3984. version = "0.7.2"
  3985. source = "registry+https://github.com/rust-lang/crates.io-index"
  3986. checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
  3987. dependencies = [
  3988. "adler",
  3989. "simd-adler32",
  3990. ]
  3991. [[package]]
  3992. name = "monero"
  3993. version = "0.20.0"
  3994. source = "registry+https://github.com/rust-lang/crates.io-index"
  3995. checksum = "1b205707fd34b01a547f2fe77e687b40fed05966fb82e955b86ac55cd8ee31b5"
  3996. dependencies = [
  3997. "base58-monero",
  3998. "curve25519-dalek",
  3999. "fixed-hash",
  4000. "hex",
  4001. "hex-literal",
  4002. "sealed",
  4003. "thiserror",
  4004. "tiny-keccak",
  4005. ]
  4006. [[package]]
  4007. name = "more-asserts"
  4008. version = "0.2.2"
  4009. source = "registry+https://github.com/rust-lang/crates.io-index"
  4010. checksum = "7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389"
  4011. [[package]]
  4012. name = "ndk"
  4013. version = "0.8.0"
  4014. source = "registry+https://github.com/rust-lang/crates.io-index"
  4015. checksum = "2076a31b7010b17a38c01907c45b945e8f11495ee4dd588309718901b1f7a5b7"
  4016. dependencies = [
  4017. "bitflags 2.5.0",
  4018. "jni-sys",
  4019. "log",
  4020. "ndk-sys",
  4021. "num_enum",
  4022. "thiserror",
  4023. ]
  4024. [[package]]
  4025. name = "ndk-context"
  4026. version = "0.1.1"
  4027. source = "registry+https://github.com/rust-lang/crates.io-index"
  4028. checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
  4029. [[package]]
  4030. name = "ndk-sys"
  4031. version = "0.5.0+25.2.9519653"
  4032. source = "registry+https://github.com/rust-lang/crates.io-index"
  4033. checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
  4034. dependencies = [
  4035. "jni-sys",
  4036. ]
  4037. [[package]]
  4038. name = "nix"
  4039. version = "0.28.0"
  4040. source = "registry+https://github.com/rust-lang/crates.io-index"
  4041. checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
  4042. dependencies = [
  4043. "bitflags 2.5.0",
  4044. "cfg-if 1.0.0",
  4045. "cfg_aliases",
  4046. "libc",
  4047. ]
  4048. [[package]]
  4049. name = "nom"
  4050. version = "7.1.3"
  4051. source = "registry+https://github.com/rust-lang/crates.io-index"
  4052. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  4053. dependencies = [
  4054. "memchr",
  4055. "minimal-lexical",
  4056. ]
  4057. [[package]]
  4058. name = "nu-ansi-term"
  4059. version = "0.46.0"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  4062. dependencies = [
  4063. "overload",
  4064. "winapi",
  4065. ]
  4066. [[package]]
  4067. name = "num-bigint"
  4068. version = "0.4.4"
  4069. source = "registry+https://github.com/rust-lang/crates.io-index"
  4070. checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
  4071. dependencies = [
  4072. "autocfg",
  4073. "num-integer",
  4074. "num-traits",
  4075. ]
  4076. [[package]]
  4077. name = "num-bigint-dig"
  4078. version = "0.8.4"
  4079. source = "registry+https://github.com/rust-lang/crates.io-index"
  4080. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  4081. dependencies = [
  4082. "byteorder",
  4083. "lazy_static",
  4084. "libm",
  4085. "num-integer",
  4086. "num-iter",
  4087. "num-traits",
  4088. "rand 0.8.5",
  4089. "smallvec",
  4090. "zeroize",
  4091. ]
  4092. [[package]]
  4093. name = "num-conv"
  4094. version = "0.1.0"
  4095. source = "registry+https://github.com/rust-lang/crates.io-index"
  4096. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  4097. [[package]]
  4098. name = "num-derive"
  4099. version = "0.4.2"
  4100. source = "registry+https://github.com/rust-lang/crates.io-index"
  4101. checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
  4102. dependencies = [
  4103. "proc-macro2",
  4104. "quote",
  4105. "syn 2.0.53",
  4106. ]
  4107. [[package]]
  4108. name = "num-integer"
  4109. version = "0.1.46"
  4110. source = "registry+https://github.com/rust-lang/crates.io-index"
  4111. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  4112. dependencies = [
  4113. "num-traits",
  4114. ]
  4115. [[package]]
  4116. name = "num-iter"
  4117. version = "0.1.44"
  4118. source = "registry+https://github.com/rust-lang/crates.io-index"
  4119. checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
  4120. dependencies = [
  4121. "autocfg",
  4122. "num-integer",
  4123. "num-traits",
  4124. ]
  4125. [[package]]
  4126. name = "num-traits"
  4127. version = "0.2.18"
  4128. source = "registry+https://github.com/rust-lang/crates.io-index"
  4129. checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
  4130. dependencies = [
  4131. "autocfg",
  4132. "libm",
  4133. ]
  4134. [[package]]
  4135. name = "num_enum"
  4136. version = "0.7.2"
  4137. source = "registry+https://github.com/rust-lang/crates.io-index"
  4138. checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
  4139. dependencies = [
  4140. "num_enum_derive",
  4141. ]
  4142. [[package]]
  4143. name = "num_enum_derive"
  4144. version = "0.7.2"
  4145. source = "registry+https://github.com/rust-lang/crates.io-index"
  4146. checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
  4147. dependencies = [
  4148. "proc-macro-crate 3.1.0",
  4149. "proc-macro2",
  4150. "quote",
  4151. "syn 2.0.53",
  4152. ]
  4153. [[package]]
  4154. name = "num_threads"
  4155. version = "0.1.7"
  4156. source = "registry+https://github.com/rust-lang/crates.io-index"
  4157. checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
  4158. dependencies = [
  4159. "libc",
  4160. ]
  4161. [[package]]
  4162. name = "object"
  4163. version = "0.32.2"
  4164. source = "registry+https://github.com/rust-lang/crates.io-index"
  4165. checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
  4166. dependencies = [
  4167. "memchr",
  4168. ]
  4169. [[package]]
  4170. name = "oboe"
  4171. version = "0.6.1"
  4172. source = "registry+https://github.com/rust-lang/crates.io-index"
  4173. checksum = "e8b61bebd49e5d43f5f8cc7ee2891c16e0f41ec7954d36bcb6c14c5e0de867fb"
  4174. dependencies = [
  4175. "jni",
  4176. "ndk",
  4177. "ndk-context",
  4178. "num-derive",
  4179. "num-traits",
  4180. "oboe-sys",
  4181. ]
  4182. [[package]]
  4183. name = "oboe-sys"
  4184. version = "0.6.1"
  4185. source = "registry+https://github.com/rust-lang/crates.io-index"
  4186. checksum = "6c8bb09a4a2b1d668170cfe0a7d5bc103f8999fb316c98099b6a9939c9f2e79d"
  4187. dependencies = [
  4188. "cc",
  4189. ]
  4190. [[package]]
  4191. name = "oid-registry"
  4192. version = "0.7.0"
  4193. source = "registry+https://github.com/rust-lang/crates.io-index"
  4194. checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d"
  4195. dependencies = [
  4196. "asn1-rs",
  4197. ]
  4198. [[package]]
  4199. name = "once_cell"
  4200. version = "1.19.0"
  4201. source = "registry+https://github.com/rust-lang/crates.io-index"
  4202. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  4203. [[package]]
  4204. name = "oorandom"
  4205. version = "11.1.3"
  4206. source = "registry+https://github.com/rust-lang/crates.io-index"
  4207. checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
  4208. [[package]]
  4209. name = "opaque-debug"
  4210. version = "0.3.1"
  4211. source = "registry+https://github.com/rust-lang/crates.io-index"
  4212. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  4213. [[package]]
  4214. name = "openssl"
  4215. version = "0.10.64"
  4216. source = "registry+https://github.com/rust-lang/crates.io-index"
  4217. checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
  4218. dependencies = [
  4219. "bitflags 2.5.0",
  4220. "cfg-if 1.0.0",
  4221. "foreign-types",
  4222. "libc",
  4223. "once_cell",
  4224. "openssl-macros",
  4225. "openssl-sys",
  4226. ]
  4227. [[package]]
  4228. name = "openssl-macros"
  4229. version = "0.1.1"
  4230. source = "registry+https://github.com/rust-lang/crates.io-index"
  4231. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  4232. dependencies = [
  4233. "proc-macro2",
  4234. "quote",
  4235. "syn 2.0.53",
  4236. ]
  4237. [[package]]
  4238. name = "openssl-probe"
  4239. version = "0.1.5"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  4242. [[package]]
  4243. name = "openssl-src"
  4244. version = "300.2.3+3.2.1"
  4245. source = "registry+https://github.com/rust-lang/crates.io-index"
  4246. checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843"
  4247. dependencies = [
  4248. "cc",
  4249. ]
  4250. [[package]]
  4251. name = "openssl-sys"
  4252. version = "0.9.101"
  4253. source = "registry+https://github.com/rust-lang/crates.io-index"
  4254. checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
  4255. dependencies = [
  4256. "cc",
  4257. "libc",
  4258. "openssl-src",
  4259. "pkg-config",
  4260. "vcpkg",
  4261. ]
  4262. [[package]]
  4263. name = "option-ext"
  4264. version = "0.2.0"
  4265. source = "registry+https://github.com/rust-lang/crates.io-index"
  4266. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  4267. [[package]]
  4268. name = "ordered-float"
  4269. version = "2.10.1"
  4270. source = "registry+https://github.com/rust-lang/crates.io-index"
  4271. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  4272. dependencies = [
  4273. "num-traits",
  4274. ]
  4275. [[package]]
  4276. name = "os_str_bytes"
  4277. version = "6.6.1"
  4278. source = "registry+https://github.com/rust-lang/crates.io-index"
  4279. checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
  4280. [[package]]
  4281. name = "overload"
  4282. version = "0.1.1"
  4283. source = "registry+https://github.com/rust-lang/crates.io-index"
  4284. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  4285. [[package]]
  4286. name = "p256"
  4287. version = "0.13.2"
  4288. source = "registry+https://github.com/rust-lang/crates.io-index"
  4289. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  4290. dependencies = [
  4291. "ecdsa",
  4292. "elliptic-curve",
  4293. "primeorder",
  4294. "sha2 0.10.8",
  4295. ]
  4296. [[package]]
  4297. name = "p384"
  4298. version = "0.13.0"
  4299. source = "registry+https://github.com/rust-lang/crates.io-index"
  4300. checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
  4301. dependencies = [
  4302. "ecdsa",
  4303. "elliptic-curve",
  4304. "primeorder",
  4305. "sha2 0.10.8",
  4306. ]
  4307. [[package]]
  4308. name = "p521"
  4309. version = "0.13.3"
  4310. source = "registry+https://github.com/rust-lang/crates.io-index"
  4311. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  4312. dependencies = [
  4313. "base16ct",
  4314. "ecdsa",
  4315. "elliptic-curve",
  4316. "primeorder",
  4317. "rand_core 0.6.4",
  4318. "sha2 0.10.8",
  4319. ]
  4320. [[package]]
  4321. name = "parking"
  4322. version = "2.2.0"
  4323. source = "registry+https://github.com/rust-lang/crates.io-index"
  4324. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  4325. [[package]]
  4326. name = "parking_lot"
  4327. version = "0.11.2"
  4328. source = "registry+https://github.com/rust-lang/crates.io-index"
  4329. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  4330. dependencies = [
  4331. "instant",
  4332. "lock_api",
  4333. "parking_lot_core 0.8.6",
  4334. ]
  4335. [[package]]
  4336. name = "parking_lot"
  4337. version = "0.12.1"
  4338. source = "registry+https://github.com/rust-lang/crates.io-index"
  4339. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  4340. dependencies = [
  4341. "lock_api",
  4342. "parking_lot_core 0.9.9",
  4343. ]
  4344. [[package]]
  4345. name = "parking_lot_core"
  4346. version = "0.8.6"
  4347. source = "registry+https://github.com/rust-lang/crates.io-index"
  4348. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  4349. dependencies = [
  4350. "cfg-if 1.0.0",
  4351. "instant",
  4352. "libc",
  4353. "redox_syscall 0.2.16",
  4354. "smallvec",
  4355. "winapi",
  4356. ]
  4357. [[package]]
  4358. name = "parking_lot_core"
  4359. version = "0.9.9"
  4360. source = "registry+https://github.com/rust-lang/crates.io-index"
  4361. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  4362. dependencies = [
  4363. "cfg-if 1.0.0",
  4364. "libc",
  4365. "redox_syscall 0.4.1",
  4366. "smallvec",
  4367. "windows-targets 0.48.5",
  4368. ]
  4369. [[package]]
  4370. name = "pasta_curves"
  4371. version = "0.5.1"
  4372. source = "registry+https://github.com/rust-lang/crates.io-index"
  4373. checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095"
  4374. dependencies = [
  4375. "blake2b_simd",
  4376. "ff",
  4377. "group",
  4378. "lazy_static",
  4379. "rand 0.8.5",
  4380. "static_assertions",
  4381. "subtle",
  4382. ]
  4383. [[package]]
  4384. name = "paste"
  4385. version = "1.0.14"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
  4388. [[package]]
  4389. name = "pathdiff"
  4390. version = "0.2.1"
  4391. source = "registry+https://github.com/rust-lang/crates.io-index"
  4392. checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
  4393. [[package]]
  4394. name = "pathfinder_geometry"
  4395. version = "0.5.1"
  4396. source = "registry+https://github.com/rust-lang/crates.io-index"
  4397. checksum = "0b7b7e7b4ea703700ce73ebf128e1450eb69c3a8329199ffbfb9b2a0418e5ad3"
  4398. dependencies = [
  4399. "log",
  4400. "pathfinder_simd",
  4401. ]
  4402. [[package]]
  4403. name = "pathfinder_simd"
  4404. version = "0.5.3"
  4405. source = "git+https://github.com/servo/pathfinder?branch=main#30419d07660dc11a21e42ef4a7fa329600cff152"
  4406. dependencies = [
  4407. "rustc_version 0.4.0",
  4408. ]
  4409. [[package]]
  4410. name = "peeking_take_while"
  4411. version = "0.1.2"
  4412. source = "registry+https://github.com/rust-lang/crates.io-index"
  4413. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  4414. [[package]]
  4415. name = "pem"
  4416. version = "3.0.3"
  4417. source = "registry+https://github.com/rust-lang/crates.io-index"
  4418. checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
  4419. dependencies = [
  4420. "base64 0.21.7",
  4421. "serde",
  4422. ]
  4423. [[package]]
  4424. name = "pem-rfc7468"
  4425. version = "0.7.0"
  4426. source = "registry+https://github.com/rust-lang/crates.io-index"
  4427. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  4428. dependencies = [
  4429. "base64ct",
  4430. ]
  4431. [[package]]
  4432. name = "percent-encoding"
  4433. version = "2.3.1"
  4434. source = "registry+https://github.com/rust-lang/crates.io-index"
  4435. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  4436. [[package]]
  4437. name = "phf"
  4438. version = "0.11.2"
  4439. source = "registry+https://github.com/rust-lang/crates.io-index"
  4440. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  4441. dependencies = [
  4442. "phf_macros",
  4443. "phf_shared",
  4444. ]
  4445. [[package]]
  4446. name = "phf_generator"
  4447. version = "0.11.2"
  4448. source = "registry+https://github.com/rust-lang/crates.io-index"
  4449. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  4450. dependencies = [
  4451. "phf_shared",
  4452. "rand 0.8.5",
  4453. ]
  4454. [[package]]
  4455. name = "phf_macros"
  4456. version = "0.11.2"
  4457. source = "registry+https://github.com/rust-lang/crates.io-index"
  4458. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  4459. dependencies = [
  4460. "phf_generator",
  4461. "phf_shared",
  4462. "proc-macro2",
  4463. "quote",
  4464. "syn 2.0.53",
  4465. ]
  4466. [[package]]
  4467. name = "phf_shared"
  4468. version = "0.11.2"
  4469. source = "registry+https://github.com/rust-lang/crates.io-index"
  4470. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  4471. dependencies = [
  4472. "siphasher",
  4473. ]
  4474. [[package]]
  4475. name = "pin-project"
  4476. version = "1.1.5"
  4477. source = "registry+https://github.com/rust-lang/crates.io-index"
  4478. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  4479. dependencies = [
  4480. "pin-project-internal",
  4481. ]
  4482. [[package]]
  4483. name = "pin-project-internal"
  4484. version = "1.1.5"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  4487. dependencies = [
  4488. "proc-macro2",
  4489. "quote",
  4490. "syn 2.0.53",
  4491. ]
  4492. [[package]]
  4493. name = "pin-project-lite"
  4494. version = "0.1.12"
  4495. source = "registry+https://github.com/rust-lang/crates.io-index"
  4496. checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
  4497. [[package]]
  4498. name = "pin-project-lite"
  4499. version = "0.2.13"
  4500. source = "registry+https://github.com/rust-lang/crates.io-index"
  4501. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  4502. [[package]]
  4503. name = "pin-utils"
  4504. version = "0.1.0"
  4505. source = "registry+https://github.com/rust-lang/crates.io-index"
  4506. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4507. [[package]]
  4508. name = "piper"
  4509. version = "0.2.1"
  4510. source = "registry+https://github.com/rust-lang/crates.io-index"
  4511. checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
  4512. dependencies = [
  4513. "atomic-waker",
  4514. "fastrand 2.0.1",
  4515. "futures-io",
  4516. ]
  4517. [[package]]
  4518. name = "pkcs1"
  4519. version = "0.7.5"
  4520. source = "registry+https://github.com/rust-lang/crates.io-index"
  4521. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  4522. dependencies = [
  4523. "der",
  4524. "pkcs8",
  4525. "spki",
  4526. ]
  4527. [[package]]
  4528. name = "pkcs8"
  4529. version = "0.10.2"
  4530. source = "registry+https://github.com/rust-lang/crates.io-index"
  4531. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4532. dependencies = [
  4533. "der",
  4534. "spki",
  4535. ]
  4536. [[package]]
  4537. name = "pkg-config"
  4538. version = "0.3.30"
  4539. source = "registry+https://github.com/rust-lang/crates.io-index"
  4540. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  4541. [[package]]
  4542. name = "platforms"
  4543. version = "3.3.0"
  4544. source = "registry+https://github.com/rust-lang/crates.io-index"
  4545. checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
  4546. [[package]]
  4547. name = "plotters"
  4548. version = "0.3.5"
  4549. source = "registry+https://github.com/rust-lang/crates.io-index"
  4550. checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
  4551. dependencies = [
  4552. "chrono",
  4553. "font-kit",
  4554. "image",
  4555. "lazy_static",
  4556. "num-traits",
  4557. "pathfinder_geometry",
  4558. "plotters-backend",
  4559. "plotters-bitmap",
  4560. "plotters-svg",
  4561. "ttf-parser",
  4562. "wasm-bindgen",
  4563. "web-sys",
  4564. ]
  4565. [[package]]
  4566. name = "plotters-backend"
  4567. version = "0.3.5"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
  4570. [[package]]
  4571. name = "plotters-bitmap"
  4572. version = "0.3.3"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "0cebbe1f70205299abc69e8b295035bb52a6a70ee35474ad10011f0a4efb8543"
  4575. dependencies = [
  4576. "gif",
  4577. "image",
  4578. "plotters-backend",
  4579. ]
  4580. [[package]]
  4581. name = "plotters-svg"
  4582. version = "0.3.5"
  4583. source = "registry+https://github.com/rust-lang/crates.io-index"
  4584. checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
  4585. dependencies = [
  4586. "plotters-backend",
  4587. ]
  4588. [[package]]
  4589. name = "png"
  4590. version = "0.17.13"
  4591. source = "registry+https://github.com/rust-lang/crates.io-index"
  4592. checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
  4593. dependencies = [
  4594. "bitflags 1.3.2",
  4595. "crc32fast",
  4596. "fdeflate",
  4597. "flate2",
  4598. "miniz_oxide",
  4599. ]
  4600. [[package]]
  4601. name = "polling"
  4602. version = "2.8.0"
  4603. source = "registry+https://github.com/rust-lang/crates.io-index"
  4604. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  4605. dependencies = [
  4606. "autocfg",
  4607. "bitflags 1.3.2",
  4608. "cfg-if 1.0.0",
  4609. "concurrent-queue",
  4610. "libc",
  4611. "log",
  4612. "pin-project-lite 0.2.13",
  4613. "windows-sys 0.48.0",
  4614. ]
  4615. [[package]]
  4616. name = "polling"
  4617. version = "3.5.0"
  4618. source = "registry+https://github.com/rust-lang/crates.io-index"
  4619. checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9"
  4620. dependencies = [
  4621. "cfg-if 1.0.0",
  4622. "concurrent-queue",
  4623. "pin-project-lite 0.2.13",
  4624. "rustix 0.38.32",
  4625. "tracing",
  4626. "windows-sys 0.52.0",
  4627. ]
  4628. [[package]]
  4629. name = "poly1305"
  4630. version = "0.8.0"
  4631. source = "registry+https://github.com/rust-lang/crates.io-index"
  4632. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4633. dependencies = [
  4634. "cpufeatures",
  4635. "opaque-debug",
  4636. "universal-hash 0.5.1",
  4637. ]
  4638. [[package]]
  4639. name = "polyval"
  4640. version = "0.4.5"
  4641. source = "registry+https://github.com/rust-lang/crates.io-index"
  4642. checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
  4643. dependencies = [
  4644. "cpuid-bool",
  4645. "opaque-debug",
  4646. "universal-hash 0.4.0",
  4647. ]
  4648. [[package]]
  4649. name = "portable-atomic"
  4650. version = "1.6.0"
  4651. source = "registry+https://github.com/rust-lang/crates.io-index"
  4652. checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
  4653. [[package]]
  4654. name = "postage"
  4655. version = "0.5.0"
  4656. source = "registry+https://github.com/rust-lang/crates.io-index"
  4657. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  4658. dependencies = [
  4659. "atomic",
  4660. "crossbeam-queue",
  4661. "futures",
  4662. "parking_lot 0.12.1",
  4663. "pin-project",
  4664. "static_assertions",
  4665. "thiserror",
  4666. ]
  4667. [[package]]
  4668. name = "powerfmt"
  4669. version = "0.2.0"
  4670. source = "registry+https://github.com/rust-lang/crates.io-index"
  4671. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4672. [[package]]
  4673. name = "ppv-lite86"
  4674. version = "0.2.17"
  4675. source = "registry+https://github.com/rust-lang/crates.io-index"
  4676. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  4677. [[package]]
  4678. name = "prettyplease"
  4679. version = "0.2.16"
  4680. source = "registry+https://github.com/rust-lang/crates.io-index"
  4681. checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
  4682. dependencies = [
  4683. "proc-macro2",
  4684. "syn 2.0.53",
  4685. ]
  4686. [[package]]
  4687. name = "prettytable-rs"
  4688. version = "0.10.0"
  4689. source = "registry+https://github.com/rust-lang/crates.io-index"
  4690. checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
  4691. dependencies = [
  4692. "csv",
  4693. "encode_unicode",
  4694. "is-terminal",
  4695. "lazy_static",
  4696. "term",
  4697. "unicode-width",
  4698. ]
  4699. [[package]]
  4700. name = "primeorder"
  4701. version = "0.13.6"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4704. dependencies = [
  4705. "elliptic-curve",
  4706. ]
  4707. [[package]]
  4708. name = "priority-queue"
  4709. version = "1.4.0"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785"
  4712. dependencies = [
  4713. "autocfg",
  4714. "indexmap 1.9.3",
  4715. ]
  4716. [[package]]
  4717. name = "proc-macro-crate"
  4718. version = "1.3.1"
  4719. source = "registry+https://github.com/rust-lang/crates.io-index"
  4720. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  4721. dependencies = [
  4722. "once_cell",
  4723. "toml_edit 0.19.15",
  4724. ]
  4725. [[package]]
  4726. name = "proc-macro-crate"
  4727. version = "2.0.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
  4730. dependencies = [
  4731. "toml_edit 0.20.7",
  4732. ]
  4733. [[package]]
  4734. name = "proc-macro-crate"
  4735. version = "3.1.0"
  4736. source = "registry+https://github.com/rust-lang/crates.io-index"
  4737. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  4738. dependencies = [
  4739. "toml_edit 0.21.1",
  4740. ]
  4741. [[package]]
  4742. name = "proc-macro-error"
  4743. version = "1.0.4"
  4744. source = "registry+https://github.com/rust-lang/crates.io-index"
  4745. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4746. dependencies = [
  4747. "proc-macro-error-attr",
  4748. "proc-macro2",
  4749. "quote",
  4750. "syn 1.0.109",
  4751. "version_check",
  4752. ]
  4753. [[package]]
  4754. name = "proc-macro-error-attr"
  4755. version = "1.0.4"
  4756. source = "registry+https://github.com/rust-lang/crates.io-index"
  4757. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4758. dependencies = [
  4759. "proc-macro2",
  4760. "quote",
  4761. "version_check",
  4762. ]
  4763. [[package]]
  4764. name = "proc-macro-hack"
  4765. version = "0.5.20+deprecated"
  4766. source = "registry+https://github.com/rust-lang/crates.io-index"
  4767. checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
  4768. [[package]]
  4769. name = "proc-macro2"
  4770. version = "1.0.79"
  4771. source = "registry+https://github.com/rust-lang/crates.io-index"
  4772. checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
  4773. dependencies = [
  4774. "unicode-ident",
  4775. ]
  4776. [[package]]
  4777. name = "proptest"
  4778. version = "1.4.0"
  4779. source = "registry+https://github.com/rust-lang/crates.io-index"
  4780. checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
  4781. dependencies = [
  4782. "bit-set",
  4783. "bit-vec",
  4784. "bitflags 2.5.0",
  4785. "lazy_static",
  4786. "num-traits",
  4787. "rand 0.8.5",
  4788. "rand_chacha 0.3.1",
  4789. "rand_xorshift",
  4790. "regex-syntax 0.8.2",
  4791. "rusty-fork",
  4792. "tempfile",
  4793. "unarray",
  4794. ]
  4795. [[package]]
  4796. name = "ptr_meta"
  4797. version = "0.1.4"
  4798. source = "registry+https://github.com/rust-lang/crates.io-index"
  4799. checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
  4800. dependencies = [
  4801. "ptr_meta_derive",
  4802. ]
  4803. [[package]]
  4804. name = "ptr_meta_derive"
  4805. version = "0.1.4"
  4806. source = "registry+https://github.com/rust-lang/crates.io-index"
  4807. checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
  4808. dependencies = [
  4809. "proc-macro2",
  4810. "quote",
  4811. "syn 1.0.109",
  4812. ]
  4813. [[package]]
  4814. name = "pulldown-cmark"
  4815. version = "0.9.6"
  4816. source = "registry+https://github.com/rust-lang/crates.io-index"
  4817. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  4818. dependencies = [
  4819. "bitflags 2.5.0",
  4820. "memchr",
  4821. "unicase",
  4822. ]
  4823. [[package]]
  4824. name = "pwd-grp"
  4825. version = "0.1.1"
  4826. source = "registry+https://github.com/rust-lang/crates.io-index"
  4827. checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
  4828. dependencies = [
  4829. "derive-adhoc 0.7.3",
  4830. "libc",
  4831. "paste",
  4832. "thiserror",
  4833. ]
  4834. [[package]]
  4835. name = "pyo3"
  4836. version = "0.20.3"
  4837. source = "registry+https://github.com/rust-lang/crates.io-index"
  4838. checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
  4839. dependencies = [
  4840. "cfg-if 1.0.0",
  4841. "indoc",
  4842. "libc",
  4843. "memoffset",
  4844. "parking_lot 0.12.1",
  4845. "portable-atomic",
  4846. "pyo3-build-config",
  4847. "pyo3-ffi",
  4848. "pyo3-macros",
  4849. "unindent",
  4850. ]
  4851. [[package]]
  4852. name = "pyo3-build-config"
  4853. version = "0.20.3"
  4854. source = "registry+https://github.com/rust-lang/crates.io-index"
  4855. checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
  4856. dependencies = [
  4857. "once_cell",
  4858. "target-lexicon",
  4859. ]
  4860. [[package]]
  4861. name = "pyo3-ffi"
  4862. version = "0.20.3"
  4863. source = "registry+https://github.com/rust-lang/crates.io-index"
  4864. checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
  4865. dependencies = [
  4866. "libc",
  4867. "pyo3-build-config",
  4868. ]
  4869. [[package]]
  4870. name = "pyo3-macros"
  4871. version = "0.20.3"
  4872. source = "registry+https://github.com/rust-lang/crates.io-index"
  4873. checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
  4874. dependencies = [
  4875. "proc-macro2",
  4876. "pyo3-macros-backend",
  4877. "quote",
  4878. "syn 2.0.53",
  4879. ]
  4880. [[package]]
  4881. name = "pyo3-macros-backend"
  4882. version = "0.20.3"
  4883. source = "registry+https://github.com/rust-lang/crates.io-index"
  4884. checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
  4885. dependencies = [
  4886. "heck 0.4.1",
  4887. "proc-macro2",
  4888. "pyo3-build-config",
  4889. "quote",
  4890. "syn 2.0.53",
  4891. ]
  4892. [[package]]
  4893. name = "quick-error"
  4894. version = "1.2.3"
  4895. source = "registry+https://github.com/rust-lang/crates.io-index"
  4896. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4897. [[package]]
  4898. name = "quote"
  4899. version = "1.0.35"
  4900. source = "registry+https://github.com/rust-lang/crates.io-index"
  4901. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  4902. dependencies = [
  4903. "proc-macro2",
  4904. ]
  4905. [[package]]
  4906. name = "radium"
  4907. version = "0.7.0"
  4908. source = "registry+https://github.com/rust-lang/crates.io-index"
  4909. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  4910. [[package]]
  4911. name = "rand"
  4912. version = "0.7.3"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  4915. dependencies = [
  4916. "getrandom 0.1.16",
  4917. "libc",
  4918. "rand_chacha 0.2.2",
  4919. "rand_core 0.5.1",
  4920. "rand_hc",
  4921. ]
  4922. [[package]]
  4923. name = "rand"
  4924. version = "0.8.5"
  4925. source = "registry+https://github.com/rust-lang/crates.io-index"
  4926. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4927. dependencies = [
  4928. "libc",
  4929. "rand_chacha 0.3.1",
  4930. "rand_core 0.6.4",
  4931. ]
  4932. [[package]]
  4933. name = "rand_chacha"
  4934. version = "0.2.2"
  4935. source = "registry+https://github.com/rust-lang/crates.io-index"
  4936. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  4937. dependencies = [
  4938. "ppv-lite86",
  4939. "rand_core 0.5.1",
  4940. ]
  4941. [[package]]
  4942. name = "rand_chacha"
  4943. version = "0.3.1"
  4944. source = "registry+https://github.com/rust-lang/crates.io-index"
  4945. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4946. dependencies = [
  4947. "ppv-lite86",
  4948. "rand_core 0.6.4",
  4949. ]
  4950. [[package]]
  4951. name = "rand_core"
  4952. version = "0.5.1"
  4953. source = "registry+https://github.com/rust-lang/crates.io-index"
  4954. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  4955. dependencies = [
  4956. "getrandom 0.1.16",
  4957. ]
  4958. [[package]]
  4959. name = "rand_core"
  4960. version = "0.6.4"
  4961. source = "registry+https://github.com/rust-lang/crates.io-index"
  4962. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4963. dependencies = [
  4964. "getrandom 0.2.12",
  4965. ]
  4966. [[package]]
  4967. name = "rand_hc"
  4968. version = "0.2.0"
  4969. source = "registry+https://github.com/rust-lang/crates.io-index"
  4970. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  4971. dependencies = [
  4972. "rand_core 0.5.1",
  4973. ]
  4974. [[package]]
  4975. name = "rand_xorshift"
  4976. version = "0.3.0"
  4977. source = "registry+https://github.com/rust-lang/crates.io-index"
  4978. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  4979. dependencies = [
  4980. "rand_core 0.6.4",
  4981. ]
  4982. [[package]]
  4983. name = "randomx"
  4984. version = "1.1.11"
  4985. source = "git+https://github.com/darkrenaissance/RandomX#65c0b322edf5ab66fad53bd0d163b7a2e9c63125"
  4986. dependencies = [
  4987. "bindgen 0.66.1",
  4988. "bitflags 1.3.2",
  4989. ]
  4990. [[package]]
  4991. name = "rayon"
  4992. version = "1.9.0"
  4993. source = "registry+https://github.com/rust-lang/crates.io-index"
  4994. checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
  4995. dependencies = [
  4996. "either",
  4997. "rayon-core",
  4998. ]
  4999. [[package]]
  5000. name = "rayon-core"
  5001. version = "1.12.1"
  5002. source = "registry+https://github.com/rust-lang/crates.io-index"
  5003. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  5004. dependencies = [
  5005. "crossbeam-deque",
  5006. "crossbeam-utils",
  5007. ]
  5008. [[package]]
  5009. name = "rcgen"
  5010. version = "0.12.1"
  5011. source = "registry+https://github.com/rust-lang/crates.io-index"
  5012. checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
  5013. dependencies = [
  5014. "pem",
  5015. "ring 0.17.8",
  5016. "time 0.3.34",
  5017. "yasna",
  5018. ]
  5019. [[package]]
  5020. name = "redox_syscall"
  5021. version = "0.2.16"
  5022. source = "registry+https://github.com/rust-lang/crates.io-index"
  5023. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  5024. dependencies = [
  5025. "bitflags 1.3.2",
  5026. ]
  5027. [[package]]
  5028. name = "redox_syscall"
  5029. version = "0.4.1"
  5030. source = "registry+https://github.com/rust-lang/crates.io-index"
  5031. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  5032. dependencies = [
  5033. "bitflags 1.3.2",
  5034. ]
  5035. [[package]]
  5036. name = "redox_users"
  5037. version = "0.4.4"
  5038. source = "registry+https://github.com/rust-lang/crates.io-index"
  5039. checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
  5040. dependencies = [
  5041. "getrandom 0.2.12",
  5042. "libredox",
  5043. "thiserror",
  5044. ]
  5045. [[package]]
  5046. name = "regalloc2"
  5047. version = "0.5.1"
  5048. source = "registry+https://github.com/rust-lang/crates.io-index"
  5049. checksum = "300d4fbfb40c1c66a78ba3ddd41c1110247cf52f97b87d0f2fc9209bd49b030c"
  5050. dependencies = [
  5051. "fxhash",
  5052. "log",
  5053. "slice-group-by",
  5054. "smallvec",
  5055. ]
  5056. [[package]]
  5057. name = "regex"
  5058. version = "1.10.3"
  5059. source = "registry+https://github.com/rust-lang/crates.io-index"
  5060. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  5061. dependencies = [
  5062. "aho-corasick",
  5063. "memchr",
  5064. "regex-automata 0.4.6",
  5065. "regex-syntax 0.8.2",
  5066. ]
  5067. [[package]]
  5068. name = "regex-automata"
  5069. version = "0.1.10"
  5070. source = "registry+https://github.com/rust-lang/crates.io-index"
  5071. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  5072. dependencies = [
  5073. "regex-syntax 0.6.29",
  5074. ]
  5075. [[package]]
  5076. name = "regex-automata"
  5077. version = "0.4.6"
  5078. source = "registry+https://github.com/rust-lang/crates.io-index"
  5079. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  5080. dependencies = [
  5081. "aho-corasick",
  5082. "memchr",
  5083. "regex-syntax 0.8.2",
  5084. ]
  5085. [[package]]
  5086. name = "regex-syntax"
  5087. version = "0.6.29"
  5088. source = "registry+https://github.com/rust-lang/crates.io-index"
  5089. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  5090. [[package]]
  5091. name = "regex-syntax"
  5092. version = "0.8.2"
  5093. source = "registry+https://github.com/rust-lang/crates.io-index"
  5094. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  5095. [[package]]
  5096. name = "region"
  5097. version = "3.0.0"
  5098. source = "registry+https://github.com/rust-lang/crates.io-index"
  5099. checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e"
  5100. dependencies = [
  5101. "bitflags 1.3.2",
  5102. "libc",
  5103. "mach",
  5104. "winapi",
  5105. ]
  5106. [[package]]
  5107. name = "rend"
  5108. version = "0.4.2"
  5109. source = "registry+https://github.com/rust-lang/crates.io-index"
  5110. checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
  5111. dependencies = [
  5112. "bytecheck",
  5113. ]
  5114. [[package]]
  5115. name = "retry-error"
  5116. version = "0.5.1"
  5117. source = "registry+https://github.com/rust-lang/crates.io-index"
  5118. checksum = "c5e700775c6b1ef3b76bda447c1d88921334a6127600cc041140b29dc8582f19"
  5119. [[package]]
  5120. name = "rfc6979"
  5121. version = "0.4.0"
  5122. source = "registry+https://github.com/rust-lang/crates.io-index"
  5123. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  5124. dependencies = [
  5125. "hmac 0.12.1",
  5126. "subtle",
  5127. ]
  5128. [[package]]
  5129. name = "ring"
  5130. version = "0.16.20"
  5131. source = "registry+https://github.com/rust-lang/crates.io-index"
  5132. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  5133. dependencies = [
  5134. "cc",
  5135. "libc",
  5136. "once_cell",
  5137. "spin 0.5.2",
  5138. "untrusted 0.7.1",
  5139. "web-sys",
  5140. "winapi",
  5141. ]
  5142. [[package]]
  5143. name = "ring"
  5144. version = "0.17.8"
  5145. source = "registry+https://github.com/rust-lang/crates.io-index"
  5146. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  5147. dependencies = [
  5148. "cc",
  5149. "cfg-if 1.0.0",
  5150. "getrandom 0.2.12",
  5151. "libc",
  5152. "spin 0.9.8",
  5153. "untrusted 0.9.0",
  5154. "windows-sys 0.52.0",
  5155. ]
  5156. [[package]]
  5157. name = "rkyv"
  5158. version = "0.7.44"
  5159. source = "registry+https://github.com/rust-lang/crates.io-index"
  5160. checksum = "5cba464629b3394fc4dbc6f940ff8f5b4ff5c7aef40f29166fd4ad12acbc99c0"
  5161. dependencies = [
  5162. "bitvec",
  5163. "bytecheck",
  5164. "bytes 1.5.0",
  5165. "hashbrown 0.12.3",
  5166. "indexmap 1.9.3",
  5167. "ptr_meta",
  5168. "rend",
  5169. "rkyv_derive",
  5170. "seahash",
  5171. "tinyvec",
  5172. "uuid",
  5173. ]
  5174. [[package]]
  5175. name = "rkyv_derive"
  5176. version = "0.7.44"
  5177. source = "registry+https://github.com/rust-lang/crates.io-index"
  5178. checksum = "a7dddfff8de25e6f62b9d64e6e432bf1c6736c57d20323e15ee10435fbda7c65"
  5179. dependencies = [
  5180. "proc-macro2",
  5181. "quote",
  5182. "syn 1.0.109",
  5183. ]
  5184. [[package]]
  5185. name = "rodio"
  5186. version = "0.17.3"
  5187. source = "registry+https://github.com/rust-lang/crates.io-index"
  5188. checksum = "3b1bb7b48ee48471f55da122c0044fcc7600cfcc85db88240b89cb832935e611"
  5189. dependencies = [
  5190. "cpal",
  5191. "minimp3_fixed",
  5192. ]
  5193. [[package]]
  5194. name = "routefinder"
  5195. version = "0.4.0"
  5196. source = "registry+https://github.com/rust-lang/crates.io-index"
  5197. checksum = "a44ef95cc607e41a7021da5cfb0f357ee0805113af2e9e6c617857c260940db4"
  5198. dependencies = [
  5199. "smartcow",
  5200. "smartstring",
  5201. ]
  5202. [[package]]
  5203. name = "rsa"
  5204. version = "0.9.6"
  5205. source = "registry+https://github.com/rust-lang/crates.io-index"
  5206. checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
  5207. dependencies = [
  5208. "const-oid",
  5209. "digest 0.10.7",
  5210. "num-bigint-dig",
  5211. "num-integer",
  5212. "num-traits",
  5213. "pkcs1",
  5214. "pkcs8",
  5215. "rand_core 0.6.4",
  5216. "sha2 0.10.8",
  5217. "signature",
  5218. "spki",
  5219. "subtle",
  5220. "zeroize",
  5221. ]
  5222. [[package]]
  5223. name = "rusqlite"
  5224. version = "0.31.0"
  5225. source = "registry+https://github.com/rust-lang/crates.io-index"
  5226. checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
  5227. dependencies = [
  5228. "bitflags 2.5.0",
  5229. "fallible-iterator 0.3.0",
  5230. "fallible-streaming-iterator",
  5231. "hashlink",
  5232. "libsqlite3-sys",
  5233. "smallvec",
  5234. "time 0.3.34",
  5235. ]
  5236. [[package]]
  5237. name = "rustc-demangle"
  5238. version = "0.1.23"
  5239. source = "registry+https://github.com/rust-lang/crates.io-index"
  5240. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  5241. [[package]]
  5242. name = "rustc-hash"
  5243. version = "1.1.0"
  5244. source = "registry+https://github.com/rust-lang/crates.io-index"
  5245. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  5246. [[package]]
  5247. name = "rustc-hex"
  5248. version = "2.1.0"
  5249. source = "registry+https://github.com/rust-lang/crates.io-index"
  5250. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  5251. [[package]]
  5252. name = "rustc_version"
  5253. version = "0.2.3"
  5254. source = "registry+https://github.com/rust-lang/crates.io-index"
  5255. checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
  5256. dependencies = [
  5257. "semver 0.9.0",
  5258. ]
  5259. [[package]]
  5260. name = "rustc_version"
  5261. version = "0.4.0"
  5262. source = "registry+https://github.com/rust-lang/crates.io-index"
  5263. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  5264. dependencies = [
  5265. "semver 1.0.22",
  5266. ]
  5267. [[package]]
  5268. name = "rusticata-macros"
  5269. version = "4.1.0"
  5270. source = "registry+https://github.com/rust-lang/crates.io-index"
  5271. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  5272. dependencies = [
  5273. "nom",
  5274. ]
  5275. [[package]]
  5276. name = "rustix"
  5277. version = "0.37.27"
  5278. source = "registry+https://github.com/rust-lang/crates.io-index"
  5279. checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
  5280. dependencies = [
  5281. "bitflags 1.3.2",
  5282. "errno",
  5283. "io-lifetimes",
  5284. "libc",
  5285. "linux-raw-sys 0.3.8",
  5286. "windows-sys 0.48.0",
  5287. ]
  5288. [[package]]
  5289. name = "rustix"
  5290. version = "0.38.32"
  5291. source = "registry+https://github.com/rust-lang/crates.io-index"
  5292. checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
  5293. dependencies = [
  5294. "bitflags 2.5.0",
  5295. "errno",
  5296. "libc",
  5297. "linux-raw-sys 0.4.13",
  5298. "windows-sys 0.52.0",
  5299. ]
  5300. [[package]]
  5301. name = "rustls"
  5302. version = "0.22.2"
  5303. source = "registry+https://github.com/rust-lang/crates.io-index"
  5304. checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
  5305. dependencies = [
  5306. "ring 0.17.8",
  5307. "rustls-pki-types",
  5308. "rustls-webpki",
  5309. "subtle",
  5310. "zeroize",
  5311. ]
  5312. [[package]]
  5313. name = "rustls-pemfile"
  5314. version = "2.1.1"
  5315. source = "registry+https://github.com/rust-lang/crates.io-index"
  5316. checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
  5317. dependencies = [
  5318. "base64 0.21.7",
  5319. "rustls-pki-types",
  5320. ]
  5321. [[package]]
  5322. name = "rustls-pki-types"
  5323. version = "1.3.1"
  5324. source = "registry+https://github.com/rust-lang/crates.io-index"
  5325. checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
  5326. [[package]]
  5327. name = "rustls-webpki"
  5328. version = "0.102.2"
  5329. source = "registry+https://github.com/rust-lang/crates.io-index"
  5330. checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
  5331. dependencies = [
  5332. "ring 0.17.8",
  5333. "rustls-pki-types",
  5334. "untrusted 0.9.0",
  5335. ]
  5336. [[package]]
  5337. name = "rustversion"
  5338. version = "1.0.14"
  5339. source = "registry+https://github.com/rust-lang/crates.io-index"
  5340. checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
  5341. [[package]]
  5342. name = "rusty-fork"
  5343. version = "0.3.0"
  5344. source = "registry+https://github.com/rust-lang/crates.io-index"
  5345. checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
  5346. dependencies = [
  5347. "fnv",
  5348. "quick-error",
  5349. "tempfile",
  5350. "wait-timeout",
  5351. ]
  5352. [[package]]
  5353. name = "ryu"
  5354. version = "1.0.17"
  5355. source = "registry+https://github.com/rust-lang/crates.io-index"
  5356. checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
  5357. [[package]]
  5358. name = "safelog"
  5359. version = "0.3.5"
  5360. source = "registry+https://github.com/rust-lang/crates.io-index"
  5361. checksum = "b4dd088c4f8f20154e72ef45c78b31b1225b19b448dd3b0f37d605de1b8b8ef5"
  5362. dependencies = [
  5363. "derive_more",
  5364. "educe",
  5365. "either",
  5366. "fluid-let",
  5367. "thiserror",
  5368. ]
  5369. [[package]]
  5370. name = "salsa20"
  5371. version = "0.10.2"
  5372. source = "registry+https://github.com/rust-lang/crates.io-index"
  5373. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  5374. dependencies = [
  5375. "cipher 0.4.4",
  5376. ]
  5377. [[package]]
  5378. name = "same-file"
  5379. version = "1.0.6"
  5380. source = "registry+https://github.com/rust-lang/crates.io-index"
  5381. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  5382. dependencies = [
  5383. "winapi-util",
  5384. ]
  5385. [[package]]
  5386. name = "sanitize-filename"
  5387. version = "0.5.0"
  5388. source = "registry+https://github.com/rust-lang/crates.io-index"
  5389. checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603"
  5390. dependencies = [
  5391. "lazy_static",
  5392. "regex",
  5393. ]
  5394. [[package]]
  5395. name = "schannel"
  5396. version = "0.1.23"
  5397. source = "registry+https://github.com/rust-lang/crates.io-index"
  5398. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  5399. dependencies = [
  5400. "windows-sys 0.52.0",
  5401. ]
  5402. [[package]]
  5403. name = "scopeguard"
  5404. version = "1.2.0"
  5405. source = "registry+https://github.com/rust-lang/crates.io-index"
  5406. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  5407. [[package]]
  5408. name = "seahash"
  5409. version = "4.1.0"
  5410. source = "registry+https://github.com/rust-lang/crates.io-index"
  5411. checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
  5412. [[package]]
  5413. name = "sealed"
  5414. version = "0.5.0"
  5415. source = "registry+https://github.com/rust-lang/crates.io-index"
  5416. checksum = "f4a8caec23b7800fb97971a1c6ae365b6239aaeddfb934d6265f8505e795699d"
  5417. dependencies = [
  5418. "heck 0.4.1",
  5419. "proc-macro2",
  5420. "quote",
  5421. "syn 2.0.53",
  5422. ]
  5423. [[package]]
  5424. name = "sec1"
  5425. version = "0.7.3"
  5426. source = "registry+https://github.com/rust-lang/crates.io-index"
  5427. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  5428. dependencies = [
  5429. "base16ct",
  5430. "der",
  5431. "generic-array",
  5432. "pkcs8",
  5433. "subtle",
  5434. "zeroize",
  5435. ]
  5436. [[package]]
  5437. name = "self_cell"
  5438. version = "1.0.3"
  5439. source = "registry+https://github.com/rust-lang/crates.io-index"
  5440. checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba"
  5441. [[package]]
  5442. name = "semver"
  5443. version = "0.9.0"
  5444. source = "registry+https://github.com/rust-lang/crates.io-index"
  5445. checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
  5446. dependencies = [
  5447. "semver-parser",
  5448. ]
  5449. [[package]]
  5450. name = "semver"
  5451. version = "1.0.22"
  5452. source = "registry+https://github.com/rust-lang/crates.io-index"
  5453. checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
  5454. dependencies = [
  5455. "serde",
  5456. ]
  5457. [[package]]
  5458. name = "semver-parser"
  5459. version = "0.7.0"
  5460. source = "registry+https://github.com/rust-lang/crates.io-index"
  5461. checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
  5462. [[package]]
  5463. name = "serde"
  5464. version = "1.0.197"
  5465. source = "registry+https://github.com/rust-lang/crates.io-index"
  5466. checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
  5467. dependencies = [
  5468. "serde_derive",
  5469. ]
  5470. [[package]]
  5471. name = "serde-value"
  5472. version = "0.7.0"
  5473. source = "registry+https://github.com/rust-lang/crates.io-index"
  5474. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  5475. dependencies = [
  5476. "ordered-float",
  5477. "serde",
  5478. ]
  5479. [[package]]
  5480. name = "serde-wasm-bindgen"
  5481. version = "0.4.5"
  5482. source = "registry+https://github.com/rust-lang/crates.io-index"
  5483. checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf"
  5484. dependencies = [
  5485. "js-sys",
  5486. "serde",
  5487. "wasm-bindgen",
  5488. ]
  5489. [[package]]
  5490. name = "serde_bytes"
  5491. version = "0.11.14"
  5492. source = "registry+https://github.com/rust-lang/crates.io-index"
  5493. checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
  5494. dependencies = [
  5495. "serde",
  5496. ]
  5497. [[package]]
  5498. name = "serde_derive"
  5499. version = "1.0.197"
  5500. source = "registry+https://github.com/rust-lang/crates.io-index"
  5501. checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
  5502. dependencies = [
  5503. "proc-macro2",
  5504. "quote",
  5505. "syn 2.0.53",
  5506. ]
  5507. [[package]]
  5508. name = "serde_fmt"
  5509. version = "1.0.3"
  5510. source = "registry+https://github.com/rust-lang/crates.io-index"
  5511. checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
  5512. dependencies = [
  5513. "serde",
  5514. ]
  5515. [[package]]
  5516. name = "serde_ignored"
  5517. version = "0.1.10"
  5518. source = "registry+https://github.com/rust-lang/crates.io-index"
  5519. checksum = "a8e319a36d1b52126a0d608f24e93b2d81297091818cd70625fcf50a15d84ddf"
  5520. dependencies = [
  5521. "serde",
  5522. ]
  5523. [[package]]
  5524. name = "serde_json"
  5525. version = "1.0.114"
  5526. source = "registry+https://github.com/rust-lang/crates.io-index"
  5527. checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
  5528. dependencies = [
  5529. "itoa",
  5530. "ryu",
  5531. "serde",
  5532. ]
  5533. [[package]]
  5534. name = "serde_qs"
  5535. version = "0.8.5"
  5536. source = "registry+https://github.com/rust-lang/crates.io-index"
  5537. checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
  5538. dependencies = [
  5539. "percent-encoding",
  5540. "serde",
  5541. "thiserror",
  5542. ]
  5543. [[package]]
  5544. name = "serde_spanned"
  5545. version = "0.6.5"
  5546. source = "registry+https://github.com/rust-lang/crates.io-index"
  5547. checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
  5548. dependencies = [
  5549. "serde",
  5550. ]
  5551. [[package]]
  5552. name = "serde_urlencoded"
  5553. version = "0.7.1"
  5554. source = "registry+https://github.com/rust-lang/crates.io-index"
  5555. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  5556. dependencies = [
  5557. "form_urlencoded",
  5558. "itoa",
  5559. "ryu",
  5560. "serde",
  5561. ]
  5562. [[package]]
  5563. name = "serde_with"
  5564. version = "3.7.0"
  5565. source = "registry+https://github.com/rust-lang/crates.io-index"
  5566. checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
  5567. dependencies = [
  5568. "base64 0.21.7",
  5569. "chrono",
  5570. "hex",
  5571. "indexmap 1.9.3",
  5572. "indexmap 2.2.5",
  5573. "serde",
  5574. "serde_derive",
  5575. "serde_json",
  5576. "serde_with_macros",
  5577. "time 0.3.34",
  5578. ]
  5579. [[package]]
  5580. name = "serde_with_macros"
  5581. version = "3.7.0"
  5582. source = "registry+https://github.com/rust-lang/crates.io-index"
  5583. checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
  5584. dependencies = [
  5585. "darling 0.20.8",
  5586. "proc-macro2",
  5587. "quote",
  5588. "syn 2.0.53",
  5589. ]
  5590. [[package]]
  5591. name = "sha1"
  5592. version = "0.6.1"
  5593. source = "registry+https://github.com/rust-lang/crates.io-index"
  5594. checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
  5595. dependencies = [
  5596. "sha1_smol",
  5597. ]
  5598. [[package]]
  5599. name = "sha1"
  5600. version = "0.10.6"
  5601. source = "registry+https://github.com/rust-lang/crates.io-index"
  5602. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  5603. dependencies = [
  5604. "cfg-if 1.0.0",
  5605. "cpufeatures",
  5606. "digest 0.10.7",
  5607. "sha1-asm",
  5608. ]
  5609. [[package]]
  5610. name = "sha1-asm"
  5611. version = "0.5.2"
  5612. source = "registry+https://github.com/rust-lang/crates.io-index"
  5613. checksum = "2ba6947745e7f86be3b8af00b7355857085dbdf8901393c89514510eb61f4e21"
  5614. dependencies = [
  5615. "cc",
  5616. ]
  5617. [[package]]
  5618. name = "sha1_smol"
  5619. version = "1.0.0"
  5620. source = "registry+https://github.com/rust-lang/crates.io-index"
  5621. checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
  5622. [[package]]
  5623. name = "sha2"
  5624. version = "0.9.9"
  5625. source = "registry+https://github.com/rust-lang/crates.io-index"
  5626. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  5627. dependencies = [
  5628. "block-buffer 0.9.0",
  5629. "cfg-if 1.0.0",
  5630. "cpufeatures",
  5631. "digest 0.9.0",
  5632. "opaque-debug",
  5633. ]
  5634. [[package]]
  5635. name = "sha2"
  5636. version = "0.10.8"
  5637. source = "registry+https://github.com/rust-lang/crates.io-index"
  5638. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  5639. dependencies = [
  5640. "cfg-if 1.0.0",
  5641. "cpufeatures",
  5642. "digest 0.10.7",
  5643. ]
  5644. [[package]]
  5645. name = "sha3"
  5646. version = "0.10.8"
  5647. source = "registry+https://github.com/rust-lang/crates.io-index"
  5648. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  5649. dependencies = [
  5650. "digest 0.10.7",
  5651. "keccak",
  5652. ]
  5653. [[package]]
  5654. name = "sharded-slab"
  5655. version = "0.1.7"
  5656. source = "registry+https://github.com/rust-lang/crates.io-index"
  5657. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  5658. dependencies = [
  5659. "lazy_static",
  5660. ]
  5661. [[package]]
  5662. name = "shared-buffer"
  5663. version = "0.1.4"
  5664. source = "registry+https://github.com/rust-lang/crates.io-index"
  5665. checksum = "f6c99835bad52957e7aa241d3975ed17c1e5f8c92026377d117a606f36b84b16"
  5666. dependencies = [
  5667. "bytes 1.5.0",
  5668. "memmap2 0.6.2",
  5669. ]
  5670. [[package]]
  5671. name = "shellexpand"
  5672. version = "3.1.0"
  5673. source = "registry+https://github.com/rust-lang/crates.io-index"
  5674. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  5675. dependencies = [
  5676. "dirs",
  5677. ]
  5678. [[package]]
  5679. name = "shlex"
  5680. version = "1.3.0"
  5681. source = "registry+https://github.com/rust-lang/crates.io-index"
  5682. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  5683. [[package]]
  5684. name = "signal-hook"
  5685. version = "0.3.17"
  5686. source = "registry+https://github.com/rust-lang/crates.io-index"
  5687. checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
  5688. dependencies = [
  5689. "libc",
  5690. "signal-hook-registry",
  5691. ]
  5692. [[package]]
  5693. name = "signal-hook-async-std"
  5694. version = "0.2.2"
  5695. source = "registry+https://github.com/rust-lang/crates.io-index"
  5696. checksum = "0c4aa94397e2023af5b7cff5b8d4785e935cfb77f0e4aab0cae3b26258ace556"
  5697. dependencies = [
  5698. "async-io 1.13.0",
  5699. "futures-lite 1.13.0",
  5700. "libc",
  5701. "signal-hook",
  5702. ]
  5703. [[package]]
  5704. name = "signal-hook-registry"
  5705. version = "1.4.1"
  5706. source = "registry+https://github.com/rust-lang/crates.io-index"
  5707. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  5708. dependencies = [
  5709. "libc",
  5710. ]
  5711. [[package]]
  5712. name = "signature"
  5713. version = "2.2.0"
  5714. source = "registry+https://github.com/rust-lang/crates.io-index"
  5715. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  5716. dependencies = [
  5717. "digest 0.10.7",
  5718. "rand_core 0.6.4",
  5719. ]
  5720. [[package]]
  5721. name = "simd-adler32"
  5722. version = "0.3.7"
  5723. source = "registry+https://github.com/rust-lang/crates.io-index"
  5724. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  5725. [[package]]
  5726. name = "simdutf8"
  5727. version = "0.1.4"
  5728. source = "registry+https://github.com/rust-lang/crates.io-index"
  5729. checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
  5730. [[package]]
  5731. name = "simple_asn1"
  5732. version = "0.6.2"
  5733. source = "registry+https://github.com/rust-lang/crates.io-index"
  5734. checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
  5735. dependencies = [
  5736. "num-bigint",
  5737. "num-traits",
  5738. "thiserror",
  5739. "time 0.3.34",
  5740. ]
  5741. [[package]]
  5742. name = "simplelog"
  5743. version = "0.12.2"
  5744. source = "registry+https://github.com/rust-lang/crates.io-index"
  5745. checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
  5746. dependencies = [
  5747. "log",
  5748. "termcolor",
  5749. "time 0.3.34",
  5750. ]
  5751. [[package]]
  5752. name = "siphasher"
  5753. version = "0.3.11"
  5754. source = "registry+https://github.com/rust-lang/crates.io-index"
  5755. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  5756. [[package]]
  5757. name = "skeptic"
  5758. version = "0.13.7"
  5759. source = "registry+https://github.com/rust-lang/crates.io-index"
  5760. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  5761. dependencies = [
  5762. "bytecount",
  5763. "cargo_metadata",
  5764. "error-chain",
  5765. "glob",
  5766. "pulldown-cmark",
  5767. "tempfile",
  5768. "walkdir",
  5769. ]
  5770. [[package]]
  5771. name = "slab"
  5772. version = "0.4.9"
  5773. source = "registry+https://github.com/rust-lang/crates.io-index"
  5774. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  5775. dependencies = [
  5776. "autocfg",
  5777. ]
  5778. [[package]]
  5779. name = "sled"
  5780. version = "0.34.7"
  5781. source = "registry+https://github.com/rust-lang/crates.io-index"
  5782. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  5783. dependencies = [
  5784. "crc32fast",
  5785. "crossbeam-epoch",
  5786. "crossbeam-utils",
  5787. "fs2",
  5788. "fxhash",
  5789. "libc",
  5790. "log",
  5791. "parking_lot 0.11.2",
  5792. ]
  5793. [[package]]
  5794. name = "sled-overlay"
  5795. version = "0.1.1"
  5796. source = "registry+https://github.com/rust-lang/crates.io-index"
  5797. checksum = "add8d336179fb379f1e4a1afac52b2fc4e0e594df3ee257d52bdb3febc3cf4c7"
  5798. dependencies = [
  5799. "sled",
  5800. ]
  5801. [[package]]
  5802. name = "slice-group-by"
  5803. version = "0.3.1"
  5804. source = "registry+https://github.com/rust-lang/crates.io-index"
  5805. checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
  5806. [[package]]
  5807. name = "slice-ring-buffer"
  5808. version = "0.3.3"
  5809. source = "registry+https://github.com/rust-lang/crates.io-index"
  5810. checksum = "7081c7e452cb62f5f0c32edd4e265391bdbb23e90905df8bb88a23d3b5166b77"
  5811. dependencies = [
  5812. "libc",
  5813. "mach2",
  5814. "winapi",
  5815. ]
  5816. [[package]]
  5817. name = "slotmap"
  5818. version = "1.0.7"
  5819. source = "registry+https://github.com/rust-lang/crates.io-index"
  5820. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  5821. dependencies = [
  5822. "version_check",
  5823. ]
  5824. [[package]]
  5825. name = "sluice"
  5826. version = "0.5.5"
  5827. source = "registry+https://github.com/rust-lang/crates.io-index"
  5828. checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
  5829. dependencies = [
  5830. "async-channel 1.9.0",
  5831. "futures-core",
  5832. "futures-io",
  5833. ]
  5834. [[package]]
  5835. name = "smallvec"
  5836. version = "1.13.2"
  5837. source = "registry+https://github.com/rust-lang/crates.io-index"
  5838. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  5839. [[package]]
  5840. name = "smartcow"
  5841. version = "0.1.0"
  5842. source = "registry+https://github.com/rust-lang/crates.io-index"
  5843. checksum = "05e3ed3ccf93c7425507e5e2261a3fc90d14267d491f360b9b679ae0a4ce693e"
  5844. dependencies = [
  5845. "smartstring",
  5846. ]
  5847. [[package]]
  5848. name = "smartstring"
  5849. version = "0.2.10"
  5850. source = "registry+https://github.com/rust-lang/crates.io-index"
  5851. checksum = "e714dff2b33f2321fdcd475b71cec79781a692d846f37f415fb395a1d2bcd48e"
  5852. dependencies = [
  5853. "static_assertions",
  5854. ]
  5855. [[package]]
  5856. name = "smol"
  5857. version = "1.3.0"
  5858. source = "registry+https://github.com/rust-lang/crates.io-index"
  5859. checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
  5860. dependencies = [
  5861. "async-channel 1.9.0",
  5862. "async-executor",
  5863. "async-fs",
  5864. "async-io 1.13.0",
  5865. "async-lock 2.8.0",
  5866. "async-net",
  5867. "async-process",
  5868. "blocking",
  5869. "futures-lite 1.13.0",
  5870. ]
  5871. [[package]]
  5872. name = "socket2"
  5873. version = "0.4.10"
  5874. source = "registry+https://github.com/rust-lang/crates.io-index"
  5875. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  5876. dependencies = [
  5877. "libc",
  5878. "winapi",
  5879. ]
  5880. [[package]]
  5881. name = "socket2"
  5882. version = "0.5.6"
  5883. source = "registry+https://github.com/rust-lang/crates.io-index"
  5884. checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
  5885. dependencies = [
  5886. "libc",
  5887. "windows-sys 0.52.0",
  5888. ]
  5889. [[package]]
  5890. name = "spin"
  5891. version = "0.5.2"
  5892. source = "registry+https://github.com/rust-lang/crates.io-index"
  5893. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5894. [[package]]
  5895. name = "spin"
  5896. version = "0.9.8"
  5897. source = "registry+https://github.com/rust-lang/crates.io-index"
  5898. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  5899. [[package]]
  5900. name = "spinning_top"
  5901. version = "0.2.5"
  5902. source = "registry+https://github.com/rust-lang/crates.io-index"
  5903. checksum = "5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0"
  5904. dependencies = [
  5905. "lock_api",
  5906. ]
  5907. [[package]]
  5908. name = "spki"
  5909. version = "0.7.3"
  5910. source = "registry+https://github.com/rust-lang/crates.io-index"
  5911. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  5912. dependencies = [
  5913. "base64ct",
  5914. "der",
  5915. ]
  5916. [[package]]
  5917. name = "ssh-cipher"
  5918. version = "0.2.0"
  5919. source = "registry+https://github.com/rust-lang/crates.io-index"
  5920. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  5921. dependencies = [
  5922. "cipher 0.4.4",
  5923. "ssh-encoding",
  5924. ]
  5925. [[package]]
  5926. name = "ssh-encoding"
  5927. version = "0.2.0"
  5928. source = "registry+https://github.com/rust-lang/crates.io-index"
  5929. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  5930. dependencies = [
  5931. "base64ct",
  5932. "pem-rfc7468",
  5933. "sha2 0.10.8",
  5934. ]
  5935. [[package]]
  5936. name = "ssh-key"
  5937. version = "0.6.5"
  5938. source = "registry+https://github.com/rust-lang/crates.io-index"
  5939. checksum = "3b71299a724c8d84956caaf8fc3b3ea57c3587fe2d0b800cd0dc1f3599905d7e"
  5940. dependencies = [
  5941. "p256",
  5942. "p384",
  5943. "p521",
  5944. "rand_core 0.6.4",
  5945. "rsa",
  5946. "sec1",
  5947. "sha2 0.10.8",
  5948. "signature",
  5949. "ssh-cipher",
  5950. "ssh-encoding",
  5951. "subtle",
  5952. "zeroize",
  5953. ]
  5954. [[package]]
  5955. name = "stable_deref_trait"
  5956. version = "1.2.0"
  5957. source = "registry+https://github.com/rust-lang/crates.io-index"
  5958. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5959. [[package]]
  5960. name = "standback"
  5961. version = "0.2.17"
  5962. source = "registry+https://github.com/rust-lang/crates.io-index"
  5963. checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
  5964. dependencies = [
  5965. "version_check",
  5966. ]
  5967. [[package]]
  5968. name = "static_assertions"
  5969. version = "1.1.0"
  5970. source = "registry+https://github.com/rust-lang/crates.io-index"
  5971. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5972. [[package]]
  5973. name = "stdweb"
  5974. version = "0.4.20"
  5975. source = "registry+https://github.com/rust-lang/crates.io-index"
  5976. checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
  5977. dependencies = [
  5978. "discard",
  5979. "rustc_version 0.2.3",
  5980. "stdweb-derive",
  5981. "stdweb-internal-macros",
  5982. "stdweb-internal-runtime",
  5983. "wasm-bindgen",
  5984. ]
  5985. [[package]]
  5986. name = "stdweb-derive"
  5987. version = "0.5.3"
  5988. source = "registry+https://github.com/rust-lang/crates.io-index"
  5989. checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
  5990. dependencies = [
  5991. "proc-macro2",
  5992. "quote",
  5993. "serde",
  5994. "serde_derive",
  5995. "syn 1.0.109",
  5996. ]
  5997. [[package]]
  5998. name = "stdweb-internal-macros"
  5999. version = "0.2.9"
  6000. source = "registry+https://github.com/rust-lang/crates.io-index"
  6001. checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
  6002. dependencies = [
  6003. "base-x",
  6004. "proc-macro2",
  6005. "quote",
  6006. "serde",
  6007. "serde_derive",
  6008. "serde_json",
  6009. "sha1 0.6.1",
  6010. "syn 1.0.109",
  6011. ]
  6012. [[package]]
  6013. name = "stdweb-internal-runtime"
  6014. version = "0.1.5"
  6015. source = "registry+https://github.com/rust-lang/crates.io-index"
  6016. checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
  6017. [[package]]
  6018. name = "strsim"
  6019. version = "0.8.0"
  6020. source = "registry+https://github.com/rust-lang/crates.io-index"
  6021. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  6022. [[package]]
  6023. name = "strsim"
  6024. version = "0.9.3"
  6025. source = "registry+https://github.com/rust-lang/crates.io-index"
  6026. checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
  6027. [[package]]
  6028. name = "strsim"
  6029. version = "0.10.0"
  6030. source = "registry+https://github.com/rust-lang/crates.io-index"
  6031. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  6032. [[package]]
  6033. name = "strsim"
  6034. version = "0.11.0"
  6035. source = "registry+https://github.com/rust-lang/crates.io-index"
  6036. checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01"
  6037. [[package]]
  6038. name = "structopt"
  6039. version = "0.3.26"
  6040. source = "registry+https://github.com/rust-lang/crates.io-index"
  6041. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  6042. dependencies = [
  6043. "clap 2.34.0",
  6044. "lazy_static",
  6045. "structopt-derive",
  6046. ]
  6047. [[package]]
  6048. name = "structopt-derive"
  6049. version = "0.4.18"
  6050. source = "registry+https://github.com/rust-lang/crates.io-index"
  6051. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  6052. dependencies = [
  6053. "heck 0.3.3",
  6054. "proc-macro-error",
  6055. "proc-macro2",
  6056. "quote",
  6057. "syn 1.0.109",
  6058. ]
  6059. [[package]]
  6060. name = "structopt-toml"
  6061. version = "0.5.1"
  6062. source = "registry+https://github.com/rust-lang/crates.io-index"
  6063. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  6064. dependencies = [
  6065. "anyhow",
  6066. "clap 2.34.0",
  6067. "serde",
  6068. "serde_derive",
  6069. "skeptic",
  6070. "structopt",
  6071. "structopt-toml-derive",
  6072. "toml 0.5.11",
  6073. ]
  6074. [[package]]
  6075. name = "structopt-toml-derive"
  6076. version = "0.5.1"
  6077. source = "registry+https://github.com/rust-lang/crates.io-index"
  6078. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  6079. dependencies = [
  6080. "heck 0.4.1",
  6081. "proc-macro2",
  6082. "quote",
  6083. "syn 1.0.109",
  6084. ]
  6085. [[package]]
  6086. name = "strum"
  6087. version = "0.25.0"
  6088. source = "registry+https://github.com/rust-lang/crates.io-index"
  6089. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  6090. dependencies = [
  6091. "strum_macros 0.25.3",
  6092. ]
  6093. [[package]]
  6094. name = "strum"
  6095. version = "0.26.2"
  6096. source = "registry+https://github.com/rust-lang/crates.io-index"
  6097. checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
  6098. dependencies = [
  6099. "strum_macros 0.26.2",
  6100. ]
  6101. [[package]]
  6102. name = "strum_macros"
  6103. version = "0.25.3"
  6104. source = "registry+https://github.com/rust-lang/crates.io-index"
  6105. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  6106. dependencies = [
  6107. "heck 0.4.1",
  6108. "proc-macro2",
  6109. "quote",
  6110. "rustversion",
  6111. "syn 2.0.53",
  6112. ]
  6113. [[package]]
  6114. name = "strum_macros"
  6115. version = "0.26.2"
  6116. source = "registry+https://github.com/rust-lang/crates.io-index"
  6117. checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
  6118. dependencies = [
  6119. "heck 0.4.1",
  6120. "proc-macro2",
  6121. "quote",
  6122. "rustversion",
  6123. "syn 2.0.53",
  6124. ]
  6125. [[package]]
  6126. name = "subtle"
  6127. version = "2.5.0"
  6128. source = "registry+https://github.com/rust-lang/crates.io-index"
  6129. checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
  6130. [[package]]
  6131. name = "surf"
  6132. version = "2.3.2"
  6133. source = "registry+https://github.com/rust-lang/crates.io-index"
  6134. checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7"
  6135. dependencies = [
  6136. "async-std",
  6137. "async-trait",
  6138. "cfg-if 1.0.0",
  6139. "encoding_rs",
  6140. "futures-util",
  6141. "getrandom 0.2.12",
  6142. "http-client",
  6143. "http-types",
  6144. "log",
  6145. "mime_guess",
  6146. "once_cell",
  6147. "pin-project-lite 0.2.13",
  6148. "serde",
  6149. "serde_json",
  6150. "web-sys",
  6151. ]
  6152. [[package]]
  6153. name = "sval"
  6154. version = "2.11.1"
  6155. source = "registry+https://github.com/rust-lang/crates.io-index"
  6156. checksum = "82a2386bea23a121e4e72450306b1dd01078b6399af11b93897bf84640a28a59"
  6157. [[package]]
  6158. name = "sval_buffer"
  6159. version = "2.11.1"
  6160. source = "registry+https://github.com/rust-lang/crates.io-index"
  6161. checksum = "b16c047898a0e19002005512243bc9ef1c1037aad7d03d6c594e234efec80795"
  6162. dependencies = [
  6163. "sval",
  6164. "sval_ref",
  6165. ]
  6166. [[package]]
  6167. name = "sval_dynamic"
  6168. version = "2.11.1"
  6169. source = "registry+https://github.com/rust-lang/crates.io-index"
  6170. checksum = "a74fb116e2ecdcb280b0108aa2ee4434df50606c3208c47ac95432730eaac20c"
  6171. dependencies = [
  6172. "sval",
  6173. ]
  6174. [[package]]
  6175. name = "sval_fmt"
  6176. version = "2.11.1"
  6177. source = "registry+https://github.com/rust-lang/crates.io-index"
  6178. checksum = "10837b4f0feccef271b2b1c03784e08f6d0bb6d23272ec9e8c777bfadbb8f1b8"
  6179. dependencies = [
  6180. "itoa",
  6181. "ryu",
  6182. "sval",
  6183. ]
  6184. [[package]]
  6185. name = "sval_json"
  6186. version = "2.11.1"
  6187. source = "registry+https://github.com/rust-lang/crates.io-index"
  6188. checksum = "891f5ecdf34ce61a8ab2d10f9cfdc303347b0afec4dad6702757419d2d8312a9"
  6189. dependencies = [
  6190. "itoa",
  6191. "ryu",
  6192. "sval",
  6193. ]
  6194. [[package]]
  6195. name = "sval_nested"
  6196. version = "2.11.1"
  6197. source = "registry+https://github.com/rust-lang/crates.io-index"
  6198. checksum = "63fcffb4b79c531f38e3090788b64f3f4d54a180aacf02d69c42fa4e4bf284c3"
  6199. dependencies = [
  6200. "sval",
  6201. "sval_buffer",
  6202. "sval_ref",
  6203. ]
  6204. [[package]]
  6205. name = "sval_ref"
  6206. version = "2.11.1"
  6207. source = "registry+https://github.com/rust-lang/crates.io-index"
  6208. checksum = "af725f9c2aa7cec4ca9c47da2cc90920c4c82d3fa537094c66c77a5459f5809d"
  6209. dependencies = [
  6210. "sval",
  6211. ]
  6212. [[package]]
  6213. name = "sval_serde"
  6214. version = "2.11.1"
  6215. source = "registry+https://github.com/rust-lang/crates.io-index"
  6216. checksum = "3d7589c649a03d21df40b9a926787d2c64937fa1dccec8d87c6cd82989a2e0a4"
  6217. dependencies = [
  6218. "serde",
  6219. "sval",
  6220. "sval_nested",
  6221. ]
  6222. [[package]]
  6223. name = "syn"
  6224. version = "1.0.109"
  6225. source = "registry+https://github.com/rust-lang/crates.io-index"
  6226. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  6227. dependencies = [
  6228. "proc-macro2",
  6229. "quote",
  6230. "unicode-ident",
  6231. ]
  6232. [[package]]
  6233. name = "syn"
  6234. version = "2.0.53"
  6235. source = "registry+https://github.com/rust-lang/crates.io-index"
  6236. checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
  6237. dependencies = [
  6238. "proc-macro2",
  6239. "quote",
  6240. "unicode-ident",
  6241. ]
  6242. [[package]]
  6243. name = "synstructure"
  6244. version = "0.13.1"
  6245. source = "registry+https://github.com/rust-lang/crates.io-index"
  6246. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  6247. dependencies = [
  6248. "proc-macro2",
  6249. "quote",
  6250. "syn 2.0.53",
  6251. ]
  6252. [[package]]
  6253. name = "tabbycat"
  6254. version = "0.1.2"
  6255. source = "registry+https://github.com/rust-lang/crates.io-index"
  6256. checksum = "c45590f0f859197b4545be1b17b2bc3cc7bb075f7d1cc0ea1dc6521c0bf256a3"
  6257. dependencies = [
  6258. "anyhow",
  6259. "derive_builder",
  6260. "regex",
  6261. ]
  6262. [[package]]
  6263. name = "tap"
  6264. version = "1.0.1"
  6265. source = "registry+https://github.com/rust-lang/crates.io-index"
  6266. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  6267. [[package]]
  6268. name = "target-lexicon"
  6269. version = "0.12.14"
  6270. source = "registry+https://github.com/rust-lang/crates.io-index"
  6271. checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
  6272. [[package]]
  6273. name = "taud"
  6274. version = "0.4.1"
  6275. dependencies = [
  6276. "async-trait",
  6277. "blake3 1.5.1",
  6278. "bs58",
  6279. "chrono",
  6280. "crypto_box",
  6281. "darkfi",
  6282. "darkfi-serial",
  6283. "easy-parallel",
  6284. "futures",
  6285. "hex",
  6286. "libc",
  6287. "log",
  6288. "rand 0.8.5",
  6289. "serde",
  6290. "signal-hook",
  6291. "signal-hook-async-std",
  6292. "simplelog",
  6293. "sled",
  6294. "smol",
  6295. "structopt",
  6296. "structopt-toml",
  6297. "thiserror",
  6298. "tinyjson",
  6299. "toml 0.8.12",
  6300. "url",
  6301. ]
  6302. [[package]]
  6303. name = "tempfile"
  6304. version = "3.10.1"
  6305. source = "registry+https://github.com/rust-lang/crates.io-index"
  6306. checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
  6307. dependencies = [
  6308. "cfg-if 1.0.0",
  6309. "fastrand 2.0.1",
  6310. "rustix 0.38.32",
  6311. "windows-sys 0.52.0",
  6312. ]
  6313. [[package]]
  6314. name = "term"
  6315. version = "0.7.0"
  6316. source = "registry+https://github.com/rust-lang/crates.io-index"
  6317. checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
  6318. dependencies = [
  6319. "dirs-next",
  6320. "rustversion",
  6321. "winapi",
  6322. ]
  6323. [[package]]
  6324. name = "termcolor"
  6325. version = "1.4.1"
  6326. source = "registry+https://github.com/rust-lang/crates.io-index"
  6327. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  6328. dependencies = [
  6329. "winapi-util",
  6330. ]
  6331. [[package]]
  6332. name = "textwrap"
  6333. version = "0.11.0"
  6334. source = "registry+https://github.com/rust-lang/crates.io-index"
  6335. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  6336. dependencies = [
  6337. "unicode-width",
  6338. ]
  6339. [[package]]
  6340. name = "textwrap"
  6341. version = "0.16.1"
  6342. source = "registry+https://github.com/rust-lang/crates.io-index"
  6343. checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
  6344. [[package]]
  6345. name = "thiserror"
  6346. version = "1.0.58"
  6347. source = "registry+https://github.com/rust-lang/crates.io-index"
  6348. checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
  6349. dependencies = [
  6350. "thiserror-impl",
  6351. ]
  6352. [[package]]
  6353. name = "thiserror-impl"
  6354. version = "1.0.58"
  6355. source = "registry+https://github.com/rust-lang/crates.io-index"
  6356. checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
  6357. dependencies = [
  6358. "proc-macro2",
  6359. "quote",
  6360. "syn 2.0.53",
  6361. ]
  6362. [[package]]
  6363. name = "thread_local"
  6364. version = "1.1.8"
  6365. source = "registry+https://github.com/rust-lang/crates.io-index"
  6366. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  6367. dependencies = [
  6368. "cfg-if 1.0.0",
  6369. "once_cell",
  6370. ]
  6371. [[package]]
  6372. name = "tide"
  6373. version = "0.17.0-beta.1"
  6374. source = "registry+https://github.com/rust-lang/crates.io-index"
  6375. checksum = "c5a885fbeb66af9d607a731ce167e3fdfe65e49a68f37f4bbd8618b5efc6ad51"
  6376. dependencies = [
  6377. "async-h1",
  6378. "async-session",
  6379. "async-sse",
  6380. "async-std",
  6381. "async-trait",
  6382. "femme",
  6383. "futures-util",
  6384. "http-client",
  6385. "http-types",
  6386. "kv-log-macro",
  6387. "log",
  6388. "pin-project-lite 0.2.13",
  6389. "routefinder",
  6390. "serde",
  6391. "serde_json",
  6392. ]
  6393. [[package]]
  6394. name = "time"
  6395. version = "0.2.27"
  6396. source = "registry+https://github.com/rust-lang/crates.io-index"
  6397. checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
  6398. dependencies = [
  6399. "const_fn",
  6400. "libc",
  6401. "standback",
  6402. "stdweb",
  6403. "time-macros 0.1.1",
  6404. "version_check",
  6405. "winapi",
  6406. ]
  6407. [[package]]
  6408. name = "time"
  6409. version = "0.3.34"
  6410. source = "registry+https://github.com/rust-lang/crates.io-index"
  6411. checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
  6412. dependencies = [
  6413. "deranged",
  6414. "itoa",
  6415. "libc",
  6416. "num-conv",
  6417. "num_threads",
  6418. "powerfmt",
  6419. "serde",
  6420. "time-core",
  6421. "time-macros 0.2.17",
  6422. ]
  6423. [[package]]
  6424. name = "time-core"
  6425. version = "0.1.2"
  6426. source = "registry+https://github.com/rust-lang/crates.io-index"
  6427. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  6428. [[package]]
  6429. name = "time-macros"
  6430. version = "0.1.1"
  6431. source = "registry+https://github.com/rust-lang/crates.io-index"
  6432. checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
  6433. dependencies = [
  6434. "proc-macro-hack",
  6435. "time-macros-impl",
  6436. ]
  6437. [[package]]
  6438. name = "time-macros"
  6439. version = "0.2.17"
  6440. source = "registry+https://github.com/rust-lang/crates.io-index"
  6441. checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
  6442. dependencies = [
  6443. "num-conv",
  6444. "time-core",
  6445. ]
  6446. [[package]]
  6447. name = "time-macros-impl"
  6448. version = "0.1.2"
  6449. source = "registry+https://github.com/rust-lang/crates.io-index"
  6450. checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
  6451. dependencies = [
  6452. "proc-macro-hack",
  6453. "proc-macro2",
  6454. "quote",
  6455. "standback",
  6456. "syn 1.0.109",
  6457. ]
  6458. [[package]]
  6459. name = "tiny-keccak"
  6460. version = "2.0.2"
  6461. source = "registry+https://github.com/rust-lang/crates.io-index"
  6462. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  6463. dependencies = [
  6464. "crunchy",
  6465. ]
  6466. [[package]]
  6467. name = "tinyjson"
  6468. version = "2.5.1"
  6469. source = "registry+https://github.com/rust-lang/crates.io-index"
  6470. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  6471. [[package]]
  6472. name = "tinystr"
  6473. version = "0.7.5"
  6474. source = "registry+https://github.com/rust-lang/crates.io-index"
  6475. checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece"
  6476. dependencies = [
  6477. "displaydoc",
  6478. ]
  6479. [[package]]
  6480. name = "tinytemplate"
  6481. version = "1.2.1"
  6482. source = "registry+https://github.com/rust-lang/crates.io-index"
  6483. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  6484. dependencies = [
  6485. "serde",
  6486. "serde_json",
  6487. ]
  6488. [[package]]
  6489. name = "tinyvec"
  6490. version = "1.6.0"
  6491. source = "registry+https://github.com/rust-lang/crates.io-index"
  6492. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  6493. dependencies = [
  6494. "tinyvec_macros",
  6495. ]
  6496. [[package]]
  6497. name = "tinyvec_macros"
  6498. version = "0.1.1"
  6499. source = "registry+https://github.com/rust-lang/crates.io-index"
  6500. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  6501. [[package]]
  6502. name = "toml"
  6503. version = "0.5.11"
  6504. source = "registry+https://github.com/rust-lang/crates.io-index"
  6505. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  6506. dependencies = [
  6507. "serde",
  6508. ]
  6509. [[package]]
  6510. name = "toml"
  6511. version = "0.8.12"
  6512. source = "registry+https://github.com/rust-lang/crates.io-index"
  6513. checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
  6514. dependencies = [
  6515. "serde",
  6516. "serde_spanned",
  6517. "toml_datetime",
  6518. "toml_edit 0.22.9",
  6519. ]
  6520. [[package]]
  6521. name = "toml_datetime"
  6522. version = "0.6.5"
  6523. source = "registry+https://github.com/rust-lang/crates.io-index"
  6524. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  6525. dependencies = [
  6526. "serde",
  6527. ]
  6528. [[package]]
  6529. name = "toml_edit"
  6530. version = "0.19.15"
  6531. source = "registry+https://github.com/rust-lang/crates.io-index"
  6532. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  6533. dependencies = [
  6534. "indexmap 2.2.5",
  6535. "toml_datetime",
  6536. "winnow 0.5.40",
  6537. ]
  6538. [[package]]
  6539. name = "toml_edit"
  6540. version = "0.20.7"
  6541. source = "registry+https://github.com/rust-lang/crates.io-index"
  6542. checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
  6543. dependencies = [
  6544. "indexmap 2.2.5",
  6545. "toml_datetime",
  6546. "winnow 0.5.40",
  6547. ]
  6548. [[package]]
  6549. name = "toml_edit"
  6550. version = "0.21.1"
  6551. source = "registry+https://github.com/rust-lang/crates.io-index"
  6552. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  6553. dependencies = [
  6554. "indexmap 2.2.5",
  6555. "toml_datetime",
  6556. "winnow 0.5.40",
  6557. ]
  6558. [[package]]
  6559. name = "toml_edit"
  6560. version = "0.22.9"
  6561. source = "registry+https://github.com/rust-lang/crates.io-index"
  6562. checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
  6563. dependencies = [
  6564. "indexmap 2.2.5",
  6565. "serde",
  6566. "serde_spanned",
  6567. "toml_datetime",
  6568. "winnow 0.6.5",
  6569. ]
  6570. [[package]]
  6571. name = "tor-async-utils"
  6572. version = "0.1.5"
  6573. source = "registry+https://github.com/rust-lang/crates.io-index"
  6574. checksum = "154dff0d035ea51ee67b491aca0d90875fae090cfea430527fcc343a0c59c0a3"
  6575. dependencies = [
  6576. "futures",
  6577. "pin-project",
  6578. "postage",
  6579. "thiserror",
  6580. "void",
  6581. ]
  6582. [[package]]
  6583. name = "tor-basic-utils"
  6584. version = "0.8.0"
  6585. source = "registry+https://github.com/rust-lang/crates.io-index"
  6586. checksum = "11e82b6e151be1ba47f9aad40e02bb1dc8b2b174bc493b4a1d942ba8e405e3d3"
  6587. dependencies = [
  6588. "hex",
  6589. "libc",
  6590. "paste",
  6591. "rand 0.8.5",
  6592. "rand_chacha 0.3.1",
  6593. "slab",
  6594. "thiserror",
  6595. ]
  6596. [[package]]
  6597. name = "tor-bytes"
  6598. version = "0.10.0"
  6599. source = "registry+https://github.com/rust-lang/crates.io-index"
  6600. checksum = "ade285e052d37dd606d0f5179d73e2db3cc03b88ef35d82f3f136f1f310e3ba6"
  6601. dependencies = [
  6602. "bytes 1.5.0",
  6603. "digest 0.10.7",
  6604. "educe",
  6605. "getrandom 0.2.12",
  6606. "signature",
  6607. "thiserror",
  6608. "tor-error",
  6609. "tor-llcrypto",
  6610. "zeroize",
  6611. ]
  6612. [[package]]
  6613. name = "tor-cell"
  6614. version = "0.16.1"
  6615. source = "registry+https://github.com/rust-lang/crates.io-index"
  6616. checksum = "f45c5af2f3ce5597a1ad90a8978fab6d43dcfe098b3f246c5ed573fe97f6beb9"
  6617. dependencies = [
  6618. "bitflags 2.5.0",
  6619. "bytes 1.5.0",
  6620. "caret",
  6621. "derive_more",
  6622. "educe",
  6623. "paste",
  6624. "rand 0.8.5",
  6625. "thiserror",
  6626. "tor-basic-utils",
  6627. "tor-bytes",
  6628. "tor-cert",
  6629. "tor-error",
  6630. "tor-hscrypto",
  6631. "tor-linkspec",
  6632. "tor-llcrypto",
  6633. "tor-units",
  6634. ]
  6635. [[package]]
  6636. name = "tor-cert"
  6637. version = "0.11.0"
  6638. source = "registry+https://github.com/rust-lang/crates.io-index"
  6639. checksum = "b059aa8271220dc38c39e0aab52366f83b86adac71d687a91a56fc99ff7b0640"
  6640. dependencies = [
  6641. "caret",
  6642. "derive_builder_fork_arti",
  6643. "derive_more",
  6644. "digest 0.10.7",
  6645. "thiserror",
  6646. "tor-bytes",
  6647. "tor-checkable",
  6648. "tor-llcrypto",
  6649. ]
  6650. [[package]]
  6651. name = "tor-chanmgr"
  6652. version = "0.14.1"
  6653. source = "registry+https://github.com/rust-lang/crates.io-index"
  6654. checksum = "d99f76f14b3134b44b37a35ff9073f81fe8955f747d3d1effc3ab1bd1e0aaf5b"
  6655. dependencies = [
  6656. "async-trait",
  6657. "derive_builder_fork_arti",
  6658. "derive_more",
  6659. "educe",
  6660. "futures",
  6661. "postage",
  6662. "rand 0.8.5",
  6663. "safelog",
  6664. "serde",
  6665. "thiserror",
  6666. "tor-async-utils",
  6667. "tor-basic-utils",
  6668. "tor-cell",
  6669. "tor-config",
  6670. "tor-error",
  6671. "tor-linkspec",
  6672. "tor-llcrypto",
  6673. "tor-netdir",
  6674. "tor-proto",
  6675. "tor-rtcompat",
  6676. "tor-socksproto",
  6677. "tor-units",
  6678. "tracing",
  6679. "void",
  6680. ]
  6681. [[package]]
  6682. name = "tor-checkable"
  6683. version = "0.8.0"
  6684. source = "registry+https://github.com/rust-lang/crates.io-index"
  6685. checksum = "96ac8ef9db89e16af3e674c8bb915b6e780d72e1c7f408388d610441f8a5578b"
  6686. dependencies = [
  6687. "humantime",
  6688. "signature",
  6689. "thiserror",
  6690. "tor-llcrypto",
  6691. ]
  6692. [[package]]
  6693. name = "tor-circmgr"
  6694. version = "0.16.0"
  6695. source = "registry+https://github.com/rust-lang/crates.io-index"
  6696. checksum = "b19089ab29f56b5b40cecb01ceb297593472885c0d2b0f9a0cb0a5a5635600b5"
  6697. dependencies = [
  6698. "amplify",
  6699. "async-trait",
  6700. "bounded-vec-deque",
  6701. "derive_builder_fork_arti",
  6702. "derive_more",
  6703. "downcast-rs",
  6704. "dyn-clone",
  6705. "educe",
  6706. "futures",
  6707. "humantime-serde",
  6708. "itertools 0.12.1",
  6709. "once_cell",
  6710. "pin-project",
  6711. "rand 0.8.5",
  6712. "retry-error",
  6713. "safelog",
  6714. "serde",
  6715. "static_assertions",
  6716. "thiserror",
  6717. "tor-async-utils",
  6718. "tor-basic-utils",
  6719. "tor-chanmgr",
  6720. "tor-config",
  6721. "tor-error",
  6722. "tor-guardmgr",
  6723. "tor-hscrypto",
  6724. "tor-linkspec",
  6725. "tor-netdir",
  6726. "tor-netdoc",
  6727. "tor-persist",
  6728. "tor-proto",
  6729. "tor-protover",
  6730. "tor-rtcompat",
  6731. "tracing",
  6732. "void",
  6733. "weak-table",
  6734. ]
  6735. [[package]]
  6736. name = "tor-config"
  6737. version = "0.11.0"
  6738. source = "registry+https://github.com/rust-lang/crates.io-index"
  6739. checksum = "0c579e92f3b9e419e68cd317d33f567491365b81f943b063d30f32e4a2f072c5"
  6740. dependencies = [
  6741. "config",
  6742. "derive-adhoc 0.8.2",
  6743. "derive_builder_fork_arti",
  6744. "directories",
  6745. "educe",
  6746. "either",
  6747. "fs-mistrust",
  6748. "itertools 0.12.1",
  6749. "once_cell",
  6750. "paste",
  6751. "regex",
  6752. "serde",
  6753. "serde-value",
  6754. "serde_ignored",
  6755. "shellexpand",
  6756. "strum 0.26.2",
  6757. "thiserror",
  6758. "toml 0.8.12",
  6759. "tor-basic-utils",
  6760. "tor-error",
  6761. "tracing",
  6762. "void",
  6763. ]
  6764. [[package]]
  6765. name = "tor-consdiff"
  6766. version = "0.7.0"
  6767. source = "registry+https://github.com/rust-lang/crates.io-index"
  6768. checksum = "0d75a7789f2911d164ae3c80640fb1c687cc91846647417183a49deaeada94d5"
  6769. dependencies = [
  6770. "digest 0.10.7",
  6771. "hex",
  6772. "thiserror",
  6773. "tor-llcrypto",
  6774. ]
  6775. [[package]]
  6776. name = "tor-dirclient"
  6777. version = "0.14.0"
  6778. source = "registry+https://github.com/rust-lang/crates.io-index"
  6779. checksum = "31fff143aba287f7a209a65a69a7e573f45aeb826737e3f43944054b8d743968"
  6780. dependencies = [
  6781. "async-compression",
  6782. "base64ct",
  6783. "derive_more",
  6784. "futures",
  6785. "hex",
  6786. "http 1.1.0",
  6787. "httparse",
  6788. "httpdate",
  6789. "itertools 0.12.1",
  6790. "memchr",
  6791. "thiserror",
  6792. "tor-circmgr",
  6793. "tor-error",
  6794. "tor-hscrypto",
  6795. "tor-linkspec",
  6796. "tor-llcrypto",
  6797. "tor-netdoc",
  6798. "tor-proto",
  6799. "tor-rtcompat",
  6800. "tracing",
  6801. ]
  6802. [[package]]
  6803. name = "tor-dirmgr"
  6804. version = "0.16.0"
  6805. source = "registry+https://github.com/rust-lang/crates.io-index"
  6806. checksum = "44bdc21d916be66bbe7afeff45303a751196daa1211df645abfe03f2cf3186ed"
  6807. dependencies = [
  6808. "async-trait",
  6809. "base64ct",
  6810. "derive_builder_fork_arti",
  6811. "derive_more",
  6812. "digest 0.10.7",
  6813. "educe",
  6814. "event-listener 5.2.0",
  6815. "fs-mistrust",
  6816. "fslock",
  6817. "futures",
  6818. "hex",
  6819. "humantime",
  6820. "humantime-serde",
  6821. "itertools 0.12.1",
  6822. "memmap2 0.9.4",
  6823. "once_cell",
  6824. "paste",
  6825. "postage",
  6826. "rand 0.8.5",
  6827. "retry-error",
  6828. "rusqlite",
  6829. "safelog",
  6830. "scopeguard",
  6831. "serde",
  6832. "signature",
  6833. "strum 0.26.2",
  6834. "thiserror",
  6835. "time 0.3.34",
  6836. "tor-async-utils",
  6837. "tor-basic-utils",
  6838. "tor-checkable",
  6839. "tor-circmgr",
  6840. "tor-config",
  6841. "tor-consdiff",
  6842. "tor-dirclient",
  6843. "tor-error",
  6844. "tor-guardmgr",
  6845. "tor-llcrypto",
  6846. "tor-netdir",
  6847. "tor-netdoc",
  6848. "tor-persist",
  6849. "tor-proto",
  6850. "tor-rtcompat",
  6851. "tracing",
  6852. ]
  6853. [[package]]
  6854. name = "tor-error"
  6855. version = "0.6.1"
  6856. source = "registry+https://github.com/rust-lang/crates.io-index"
  6857. checksum = "a2195a255af92eddc6422f83e176094394ec856501536e3d3246d1c6c3879dd3"
  6858. dependencies = [
  6859. "backtrace",
  6860. "derive_more",
  6861. "futures",
  6862. "once_cell",
  6863. "paste",
  6864. "retry-error",
  6865. "static_assertions",
  6866. "strum 0.26.2",
  6867. "thiserror",
  6868. "tracing",
  6869. ]
  6870. [[package]]
  6871. name = "tor-guardmgr"
  6872. version = "0.14.1"
  6873. source = "registry+https://github.com/rust-lang/crates.io-index"
  6874. checksum = "08065540dc88a8fd7117627d6e94a3f0d63c45d135ac7fdac7bd3b9f702dc1ee"
  6875. dependencies = [
  6876. "base64ct",
  6877. "derive_builder_fork_arti",
  6878. "derive_more",
  6879. "dyn-clone",
  6880. "educe",
  6881. "futures",
  6882. "humantime",
  6883. "humantime-serde",
  6884. "itertools 0.12.1",
  6885. "num_enum",
  6886. "pin-project",
  6887. "postage",
  6888. "rand 0.8.5",
  6889. "safelog",
  6890. "serde",
  6891. "strum 0.26.2",
  6892. "thiserror",
  6893. "tor-async-utils",
  6894. "tor-basic-utils",
  6895. "tor-config",
  6896. "tor-error",
  6897. "tor-linkspec",
  6898. "tor-llcrypto",
  6899. "tor-netdir",
  6900. "tor-netdoc",
  6901. "tor-persist",
  6902. "tor-proto",
  6903. "tor-rtcompat",
  6904. "tor-units",
  6905. "tracing",
  6906. ]
  6907. [[package]]
  6908. name = "tor-hsclient"
  6909. version = "0.10.0"
  6910. source = "registry+https://github.com/rust-lang/crates.io-index"
  6911. checksum = "b4613dfe9d946db3b5769b860a16598a9c4a0f85df21653d0765b1238106d297"
  6912. dependencies = [
  6913. "async-trait",
  6914. "derive-adhoc 0.8.2",
  6915. "derive_more",
  6916. "educe",
  6917. "either",
  6918. "futures",
  6919. "itertools 0.12.1",
  6920. "postage",
  6921. "rand 0.8.5",
  6922. "rand_core 0.6.4",
  6923. "retry-error",
  6924. "safelog",
  6925. "slotmap",
  6926. "strum 0.26.2",
  6927. "thiserror",
  6928. "tor-async-utils",
  6929. "tor-basic-utils",
  6930. "tor-bytes",
  6931. "tor-cell",
  6932. "tor-checkable",
  6933. "tor-circmgr",
  6934. "tor-config",
  6935. "tor-dirclient",
  6936. "tor-error",
  6937. "tor-hscrypto",
  6938. "tor-keymgr",
  6939. "tor-linkspec",
  6940. "tor-llcrypto",
  6941. "tor-netdir",
  6942. "tor-netdoc",
  6943. "tor-persist",
  6944. "tor-proto",
  6945. "tor-rtcompat",
  6946. "tracing",
  6947. ]
  6948. [[package]]
  6949. name = "tor-hscrypto"
  6950. version = "0.6.1"
  6951. source = "registry+https://github.com/rust-lang/crates.io-index"
  6952. checksum = "fb26c4926710d9c18f32707a709cfe4e7930e2f9a7da4e3e101aa9623e2f40d0"
  6953. dependencies = [
  6954. "cipher 0.4.4",
  6955. "data-encoding",
  6956. "derive_more",
  6957. "digest 0.10.7",
  6958. "itertools 0.12.1",
  6959. "paste",
  6960. "rand 0.8.5",
  6961. "rand_core 0.6.4",
  6962. "safelog",
  6963. "serde",
  6964. "signature",
  6965. "subtle",
  6966. "thiserror",
  6967. "tor-basic-utils",
  6968. "tor-bytes",
  6969. "tor-error",
  6970. "tor-llcrypto",
  6971. "tor-units",
  6972. "zeroize",
  6973. ]
  6974. [[package]]
  6975. name = "tor-hsservice"
  6976. version = "0.8.0"
  6977. source = "registry+https://github.com/rust-lang/crates.io-index"
  6978. checksum = "c5e0d5219b7920490ee5d7af3a697d083236aef1f29badbe1b7d9742838110a5"
  6979. dependencies = [
  6980. "amplify",
  6981. "async-trait",
  6982. "base64ct",
  6983. "derive-adhoc 0.8.2",
  6984. "derive_builder_fork_arti",
  6985. "derive_more",
  6986. "digest 0.10.7",
  6987. "educe",
  6988. "fs-mistrust",
  6989. "futures",
  6990. "growable-bloom-filter",
  6991. "hex",
  6992. "humantime",
  6993. "itertools 0.12.1",
  6994. "k12",
  6995. "once_cell",
  6996. "postage",
  6997. "rand 0.8.5",
  6998. "rand_core 0.6.4",
  6999. "retry-error",
  7000. "safelog",
  7001. "serde",
  7002. "serde_with",
  7003. "strum 0.26.2",
  7004. "thiserror",
  7005. "tor-async-utils",
  7006. "tor-basic-utils",
  7007. "tor-bytes",
  7008. "tor-cell",
  7009. "tor-cert",
  7010. "tor-circmgr",
  7011. "tor-config",
  7012. "tor-dirclient",
  7013. "tor-error",
  7014. "tor-hscrypto",
  7015. "tor-keymgr",
  7016. "tor-linkspec",
  7017. "tor-llcrypto",
  7018. "tor-log-ratelim",
  7019. "tor-netdir",
  7020. "tor-netdoc",
  7021. "tor-persist",
  7022. "tor-proto",
  7023. "tor-protover",
  7024. "tor-rtcompat",
  7025. "tor-units",
  7026. "tracing",
  7027. "void",
  7028. ]
  7029. [[package]]
  7030. name = "tor-keymgr"
  7031. version = "0.8.0"
  7032. source = "registry+https://github.com/rust-lang/crates.io-index"
  7033. checksum = "365c02c66f2f0159078714dd44947fb06c76956a3621fc102783119e5093be96"
  7034. dependencies = [
  7035. "amplify",
  7036. "arrayvec 0.7.4",
  7037. "derive-adhoc 0.8.2",
  7038. "derive_builder_fork_arti",
  7039. "derive_more",
  7040. "downcast-rs",
  7041. "dyn-clone",
  7042. "fs-mistrust",
  7043. "glob-match",
  7044. "humantime",
  7045. "inventory",
  7046. "itertools 0.12.1",
  7047. "paste",
  7048. "rand 0.8.5",
  7049. "serde",
  7050. "ssh-key",
  7051. "thiserror",
  7052. "tor-config",
  7053. "tor-error",
  7054. "tor-hscrypto",
  7055. "tor-llcrypto",
  7056. "tor-persist",
  7057. "walkdir",
  7058. "zeroize",
  7059. ]
  7060. [[package]]
  7061. name = "tor-linkspec"
  7062. version = "0.11.1"
  7063. source = "registry+https://github.com/rust-lang/crates.io-index"
  7064. checksum = "87539d8be3b8f86e240ae1cece77fb5ee669eb0c1434f7e3f5d369b6c2aa1b91"
  7065. dependencies = [
  7066. "base64ct",
  7067. "by_address",
  7068. "caret",
  7069. "cfg-if 1.0.0",
  7070. "derive_builder_fork_arti",
  7071. "derive_more",
  7072. "educe",
  7073. "hex",
  7074. "itertools 0.12.1",
  7075. "safelog",
  7076. "serde",
  7077. "serde_with",
  7078. "strum 0.26.2",
  7079. "thiserror",
  7080. "tor-basic-utils",
  7081. "tor-bytes",
  7082. "tor-config",
  7083. "tor-llcrypto",
  7084. "tor-protover",
  7085. ]
  7086. [[package]]
  7087. name = "tor-llcrypto"
  7088. version = "0.7.0"
  7089. source = "registry+https://github.com/rust-lang/crates.io-index"
  7090. checksum = "982feadd8fc89aa703dda1d3aeda626f13bde731d61eefbf0844e4771e98d496"
  7091. dependencies = [
  7092. "aes 0.8.4",
  7093. "base64ct",
  7094. "cipher 0.4.4",
  7095. "ctr 0.9.2",
  7096. "curve25519-dalek",
  7097. "derive_more",
  7098. "digest 0.10.7",
  7099. "ed25519-dalek",
  7100. "educe",
  7101. "getrandom 0.2.12",
  7102. "hex",
  7103. "openssl",
  7104. "rand_core 0.6.4",
  7105. "rsa",
  7106. "safelog",
  7107. "serde",
  7108. "sha1 0.10.6",
  7109. "sha2 0.10.8",
  7110. "sha3",
  7111. "signature",
  7112. "simple_asn1",
  7113. "subtle",
  7114. "thiserror",
  7115. "typenum",
  7116. "x25519-dalek",
  7117. "zeroize",
  7118. ]
  7119. [[package]]
  7120. name = "tor-log-ratelim"
  7121. version = "0.3.0"
  7122. source = "registry+https://github.com/rust-lang/crates.io-index"
  7123. checksum = "c7a8e134f97890c980120b6ec4de2c43383357e84685e2ef2ae833b086d2fcdc"
  7124. dependencies = [
  7125. "futures",
  7126. "humantime",
  7127. "once_cell",
  7128. "thiserror",
  7129. "tor-error",
  7130. "tor-rtcompat",
  7131. "tracing",
  7132. "weak-table",
  7133. ]
  7134. [[package]]
  7135. name = "tor-netdir"
  7136. version = "0.12.1"
  7137. source = "registry+https://github.com/rust-lang/crates.io-index"
  7138. checksum = "88d507e621e12c5e958d81d3feee176a0b810874921d68b013a33fff6fc44f9f"
  7139. dependencies = [
  7140. "bitflags 2.5.0",
  7141. "derive_builder_fork_arti",
  7142. "derive_more",
  7143. "digest 0.10.7",
  7144. "futures",
  7145. "hex",
  7146. "humantime",
  7147. "itertools 0.12.1",
  7148. "num_enum",
  7149. "rand 0.8.5",
  7150. "serde",
  7151. "static_assertions",
  7152. "strum 0.26.2",
  7153. "thiserror",
  7154. "time 0.3.34",
  7155. "tor-basic-utils",
  7156. "tor-checkable",
  7157. "tor-config",
  7158. "tor-error",
  7159. "tor-hscrypto",
  7160. "tor-linkspec",
  7161. "tor-llcrypto",
  7162. "tor-netdoc",
  7163. "tor-protover",
  7164. "tor-units",
  7165. "tracing",
  7166. "typed-index-collections",
  7167. ]
  7168. [[package]]
  7169. name = "tor-netdoc"
  7170. version = "0.12.1"
  7171. source = "registry+https://github.com/rust-lang/crates.io-index"
  7172. checksum = "5146c812701abc039ff41349e7cf25c63949f9a2528fe0a0f6b3976ccf5cb5ab"
  7173. dependencies = [
  7174. "amplify",
  7175. "base64ct",
  7176. "bitflags 2.5.0",
  7177. "cipher 0.4.4",
  7178. "derive_builder_fork_arti",
  7179. "derive_more",
  7180. "digest 0.10.7",
  7181. "educe",
  7182. "hex",
  7183. "humantime",
  7184. "itertools 0.12.1",
  7185. "once_cell",
  7186. "phf",
  7187. "rand 0.8.5",
  7188. "serde",
  7189. "serde_with",
  7190. "signature",
  7191. "smallvec",
  7192. "subtle",
  7193. "thiserror",
  7194. "time 0.3.34",
  7195. "tinystr",
  7196. "tor-basic-utils",
  7197. "tor-bytes",
  7198. "tor-cell",
  7199. "tor-cert",
  7200. "tor-checkable",
  7201. "tor-error",
  7202. "tor-hscrypto",
  7203. "tor-linkspec",
  7204. "tor-llcrypto",
  7205. "tor-protover",
  7206. "tor-units",
  7207. "weak-table",
  7208. "zeroize",
  7209. ]
  7210. [[package]]
  7211. name = "tor-persist"
  7212. version = "0.10.1"
  7213. source = "registry+https://github.com/rust-lang/crates.io-index"
  7214. checksum = "e4bbf6c0a786daab669a75ec7380ae57f9aba91f2c4ea05a12e596d9bc6b49a0"
  7215. dependencies = [
  7216. "amplify",
  7217. "derive-adhoc 0.8.2",
  7218. "derive_more",
  7219. "filetime",
  7220. "fs-mistrust",
  7221. "fslock",
  7222. "fslock-guard",
  7223. "itertools 0.12.1",
  7224. "paste",
  7225. "sanitize-filename",
  7226. "serde",
  7227. "serde_json",
  7228. "thiserror",
  7229. "tor-error",
  7230. "tracing",
  7231. ]
  7232. [[package]]
  7233. name = "tor-proto"
  7234. version = "0.16.1"
  7235. source = "registry+https://github.com/rust-lang/crates.io-index"
  7236. checksum = "dbe3037f1f08ac19a59f2ebe5acdcb0c79fd6f2286773051cb730146596359e6"
  7237. dependencies = [
  7238. "asynchronous-codec",
  7239. "bitvec",
  7240. "bytes 1.5.0",
  7241. "cipher 0.4.4",
  7242. "coarsetime",
  7243. "derive_builder_fork_arti",
  7244. "derive_more",
  7245. "digest 0.10.7",
  7246. "educe",
  7247. "futures",
  7248. "hkdf 0.12.4",
  7249. "hmac 0.12.1",
  7250. "pin-project",
  7251. "rand 0.8.5",
  7252. "rand_core 0.6.4",
  7253. "safelog",
  7254. "subtle",
  7255. "thiserror",
  7256. "tor-async-utils",
  7257. "tor-basic-utils",
  7258. "tor-bytes",
  7259. "tor-cell",
  7260. "tor-cert",
  7261. "tor-checkable",
  7262. "tor-config",
  7263. "tor-error",
  7264. "tor-hscrypto",
  7265. "tor-linkspec",
  7266. "tor-llcrypto",
  7267. "tor-log-ratelim",
  7268. "tor-protover",
  7269. "tor-rtcompat",
  7270. "tor-rtmock",
  7271. "tor-units",
  7272. "tracing",
  7273. "typenum",
  7274. "visibility",
  7275. "void",
  7276. "zeroize",
  7277. ]
  7278. [[package]]
  7279. name = "tor-protover"
  7280. version = "0.6.0"
  7281. source = "registry+https://github.com/rust-lang/crates.io-index"
  7282. checksum = "f7ae613656401ef25efbb8d60767e399e719422d3408975190e4a9fc9faab0eb"
  7283. dependencies = [
  7284. "caret",
  7285. "thiserror",
  7286. ]
  7287. [[package]]
  7288. name = "tor-rtcompat"
  7289. version = "0.10.0"
  7290. source = "registry+https://github.com/rust-lang/crates.io-index"
  7291. checksum = "aa56047926b8da823720654bbdccd7afaa68d635e4341193701d29005818c348"
  7292. dependencies = [
  7293. "async-io 2.3.2",
  7294. "async-std",
  7295. "async-trait",
  7296. "async_executors",
  7297. "educe",
  7298. "futures",
  7299. "futures-rustls",
  7300. "pin-project",
  7301. "rustls-pki-types",
  7302. "thiserror",
  7303. "x509-signature",
  7304. ]
  7305. [[package]]
  7306. name = "tor-rtmock"
  7307. version = "0.13.0"
  7308. source = "registry+https://github.com/rust-lang/crates.io-index"
  7309. checksum = "c9c687cac55bab83de1ed7b57c578c9974be2df024ac06707c0032f6b5203a19"
  7310. dependencies = [
  7311. "amplify",
  7312. "async-trait",
  7313. "backtrace",
  7314. "derive-adhoc 0.8.2",
  7315. "derive_more",
  7316. "educe",
  7317. "futures",
  7318. "humantime",
  7319. "itertools 0.12.1",
  7320. "pin-project",
  7321. "priority-queue",
  7322. "slotmap",
  7323. "strum 0.26.2",
  7324. "thiserror",
  7325. "tor-async-utils",
  7326. "tor-error",
  7327. "tor-rtcompat",
  7328. "tracing",
  7329. "tracing-test",
  7330. "void",
  7331. ]
  7332. [[package]]
  7333. name = "tor-socksproto"
  7334. version = "0.10.0"
  7335. source = "registry+https://github.com/rust-lang/crates.io-index"
  7336. checksum = "065f34c2e292c495afc73cede5d801f38606a3d21528ec5679152edd8c83fa5e"
  7337. dependencies = [
  7338. "caret",
  7339. "subtle",
  7340. "thiserror",
  7341. "tor-bytes",
  7342. "tor-error",
  7343. ]
  7344. [[package]]
  7345. name = "tor-units"
  7346. version = "0.6.5"
  7347. source = "registry+https://github.com/rust-lang/crates.io-index"
  7348. checksum = "0d59226676dc7633b813f92c781f7b637c5258234de27be4196740de2b4c946a"
  7349. dependencies = [
  7350. "derive_more",
  7351. "thiserror",
  7352. ]
  7353. [[package]]
  7354. name = "tracing"
  7355. version = "0.1.40"
  7356. source = "registry+https://github.com/rust-lang/crates.io-index"
  7357. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  7358. dependencies = [
  7359. "log",
  7360. "pin-project-lite 0.2.13",
  7361. "tracing-attributes",
  7362. "tracing-core",
  7363. ]
  7364. [[package]]
  7365. name = "tracing-attributes"
  7366. version = "0.1.27"
  7367. source = "registry+https://github.com/rust-lang/crates.io-index"
  7368. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  7369. dependencies = [
  7370. "proc-macro2",
  7371. "quote",
  7372. "syn 2.0.53",
  7373. ]
  7374. [[package]]
  7375. name = "tracing-core"
  7376. version = "0.1.32"
  7377. source = "registry+https://github.com/rust-lang/crates.io-index"
  7378. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  7379. dependencies = [
  7380. "once_cell",
  7381. "valuable",
  7382. ]
  7383. [[package]]
  7384. name = "tracing-futures"
  7385. version = "0.2.5"
  7386. source = "registry+https://github.com/rust-lang/crates.io-index"
  7387. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  7388. dependencies = [
  7389. "pin-project",
  7390. "tracing",
  7391. ]
  7392. [[package]]
  7393. name = "tracing-log"
  7394. version = "0.2.0"
  7395. source = "registry+https://github.com/rust-lang/crates.io-index"
  7396. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  7397. dependencies = [
  7398. "log",
  7399. "once_cell",
  7400. "tracing-core",
  7401. ]
  7402. [[package]]
  7403. name = "tracing-subscriber"
  7404. version = "0.3.18"
  7405. source = "registry+https://github.com/rust-lang/crates.io-index"
  7406. checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
  7407. dependencies = [
  7408. "matchers",
  7409. "nu-ansi-term",
  7410. "once_cell",
  7411. "regex",
  7412. "sharded-slab",
  7413. "smallvec",
  7414. "thread_local",
  7415. "tracing",
  7416. "tracing-core",
  7417. "tracing-log",
  7418. ]
  7419. [[package]]
  7420. name = "tracing-test"
  7421. version = "0.2.4"
  7422. source = "registry+https://github.com/rust-lang/crates.io-index"
  7423. checksum = "3a2c0ff408fe918a94c428a3f2ad04e4afd5c95bbc08fcf868eff750c15728a4"
  7424. dependencies = [
  7425. "lazy_static",
  7426. "tracing-core",
  7427. "tracing-subscriber",
  7428. "tracing-test-macro",
  7429. ]
  7430. [[package]]
  7431. name = "tracing-test-macro"
  7432. version = "0.2.4"
  7433. source = "registry+https://github.com/rust-lang/crates.io-index"
  7434. checksum = "258bc1c4f8e2e73a977812ab339d503e6feeb92700f6d07a6de4d321522d5c08"
  7435. dependencies = [
  7436. "lazy_static",
  7437. "quote",
  7438. "syn 1.0.109",
  7439. ]
  7440. [[package]]
  7441. name = "ttf-parser"
  7442. version = "0.17.1"
  7443. source = "registry+https://github.com/rust-lang/crates.io-index"
  7444. checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff"
  7445. [[package]]
  7446. name = "typed-index-collections"
  7447. version = "3.1.0"
  7448. source = "registry+https://github.com/rust-lang/crates.io-index"
  7449. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  7450. [[package]]
  7451. name = "typenum"
  7452. version = "1.17.0"
  7453. source = "registry+https://github.com/rust-lang/crates.io-index"
  7454. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  7455. [[package]]
  7456. name = "uint"
  7457. version = "0.9.5"
  7458. source = "registry+https://github.com/rust-lang/crates.io-index"
  7459. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  7460. dependencies = [
  7461. "byteorder",
  7462. "crunchy",
  7463. "hex",
  7464. "static_assertions",
  7465. ]
  7466. [[package]]
  7467. name = "unarray"
  7468. version = "0.1.4"
  7469. source = "registry+https://github.com/rust-lang/crates.io-index"
  7470. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  7471. [[package]]
  7472. name = "unicase"
  7473. version = "2.7.0"
  7474. source = "registry+https://github.com/rust-lang/crates.io-index"
  7475. checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
  7476. dependencies = [
  7477. "version_check",
  7478. ]
  7479. [[package]]
  7480. name = "unicode-bidi"
  7481. version = "0.3.15"
  7482. source = "registry+https://github.com/rust-lang/crates.io-index"
  7483. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  7484. [[package]]
  7485. name = "unicode-ident"
  7486. version = "1.0.12"
  7487. source = "registry+https://github.com/rust-lang/crates.io-index"
  7488. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  7489. [[package]]
  7490. name = "unicode-normalization"
  7491. version = "0.1.23"
  7492. source = "registry+https://github.com/rust-lang/crates.io-index"
  7493. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  7494. dependencies = [
  7495. "tinyvec",
  7496. ]
  7497. [[package]]
  7498. name = "unicode-segmentation"
  7499. version = "1.11.0"
  7500. source = "registry+https://github.com/rust-lang/crates.io-index"
  7501. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  7502. [[package]]
  7503. name = "unicode-width"
  7504. version = "0.1.11"
  7505. source = "registry+https://github.com/rust-lang/crates.io-index"
  7506. checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
  7507. [[package]]
  7508. name = "unindent"
  7509. version = "0.2.3"
  7510. source = "registry+https://github.com/rust-lang/crates.io-index"
  7511. checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
  7512. [[package]]
  7513. name = "universal-hash"
  7514. version = "0.4.0"
  7515. source = "registry+https://github.com/rust-lang/crates.io-index"
  7516. checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
  7517. dependencies = [
  7518. "generic-array",
  7519. "subtle",
  7520. ]
  7521. [[package]]
  7522. name = "universal-hash"
  7523. version = "0.5.1"
  7524. source = "registry+https://github.com/rust-lang/crates.io-index"
  7525. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  7526. dependencies = [
  7527. "crypto-common",
  7528. "subtle",
  7529. ]
  7530. [[package]]
  7531. name = "untrusted"
  7532. version = "0.7.1"
  7533. source = "registry+https://github.com/rust-lang/crates.io-index"
  7534. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  7535. [[package]]
  7536. name = "untrusted"
  7537. version = "0.9.0"
  7538. source = "registry+https://github.com/rust-lang/crates.io-index"
  7539. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  7540. [[package]]
  7541. name = "url"
  7542. version = "2.5.0"
  7543. source = "registry+https://github.com/rust-lang/crates.io-index"
  7544. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  7545. dependencies = [
  7546. "form_urlencoded",
  7547. "idna",
  7548. "percent-encoding",
  7549. "serde",
  7550. ]
  7551. [[package]]
  7552. name = "utf8parse"
  7553. version = "0.2.1"
  7554. source = "registry+https://github.com/rust-lang/crates.io-index"
  7555. checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
  7556. [[package]]
  7557. name = "uuid"
  7558. version = "1.8.0"
  7559. source = "registry+https://github.com/rust-lang/crates.io-index"
  7560. checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
  7561. [[package]]
  7562. name = "valuable"
  7563. version = "0.1.0"
  7564. source = "registry+https://github.com/rust-lang/crates.io-index"
  7565. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  7566. [[package]]
  7567. name = "value-bag"
  7568. version = "1.8.1"
  7569. source = "registry+https://github.com/rust-lang/crates.io-index"
  7570. checksum = "74797339c3b98616c009c7c3eb53a0ce41e85c8ec66bd3db96ed132d20cfdee8"
  7571. dependencies = [
  7572. "value-bag-serde1",
  7573. "value-bag-sval2",
  7574. ]
  7575. [[package]]
  7576. name = "value-bag-serde1"
  7577. version = "1.8.1"
  7578. source = "registry+https://github.com/rust-lang/crates.io-index"
  7579. checksum = "cc35703541cbccb5278ef7b589d79439fc808ff0b5867195a3230f9a47421d39"
  7580. dependencies = [
  7581. "erased-serde",
  7582. "serde",
  7583. "serde_fmt",
  7584. ]
  7585. [[package]]
  7586. name = "value-bag-sval2"
  7587. version = "1.8.1"
  7588. source = "registry+https://github.com/rust-lang/crates.io-index"
  7589. checksum = "285b43c29d0b4c0e65aad24561baee67a1b69dc9be9375d4a85138cbf556f7f8"
  7590. dependencies = [
  7591. "sval",
  7592. "sval_buffer",
  7593. "sval_dynamic",
  7594. "sval_fmt",
  7595. "sval_json",
  7596. "sval_ref",
  7597. "sval_serde",
  7598. ]
  7599. [[package]]
  7600. name = "vanityaddr"
  7601. version = "0.4.1"
  7602. dependencies = [
  7603. "arg",
  7604. "bs58",
  7605. "ctrlc",
  7606. "darkfi",
  7607. "darkfi-sdk",
  7608. "darkfi_money_contract",
  7609. "rand 0.8.5",
  7610. "rayon",
  7611. ]
  7612. [[package]]
  7613. name = "vcpkg"
  7614. version = "0.2.15"
  7615. source = "registry+https://github.com/rust-lang/crates.io-index"
  7616. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  7617. [[package]]
  7618. name = "vec_map"
  7619. version = "0.8.2"
  7620. source = "registry+https://github.com/rust-lang/crates.io-index"
  7621. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  7622. [[package]]
  7623. name = "version_check"
  7624. version = "0.9.4"
  7625. source = "registry+https://github.com/rust-lang/crates.io-index"
  7626. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  7627. [[package]]
  7628. name = "visibility"
  7629. version = "0.1.0"
  7630. source = "registry+https://github.com/rust-lang/crates.io-index"
  7631. checksum = "b3fd98999db9227cf28e59d83e1f120f42bc233d4b152e8fab9bc87d5bb1e0f8"
  7632. dependencies = [
  7633. "proc-macro2",
  7634. "quote",
  7635. "syn 2.0.53",
  7636. ]
  7637. [[package]]
  7638. name = "void"
  7639. version = "1.0.2"
  7640. source = "registry+https://github.com/rust-lang/crates.io-index"
  7641. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  7642. [[package]]
  7643. name = "wait-timeout"
  7644. version = "0.2.0"
  7645. source = "registry+https://github.com/rust-lang/crates.io-index"
  7646. checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  7647. dependencies = [
  7648. "libc",
  7649. ]
  7650. [[package]]
  7651. name = "waker-fn"
  7652. version = "1.1.1"
  7653. source = "registry+https://github.com/rust-lang/crates.io-index"
  7654. checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
  7655. [[package]]
  7656. name = "walkdir"
  7657. version = "2.5.0"
  7658. source = "registry+https://github.com/rust-lang/crates.io-index"
  7659. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  7660. dependencies = [
  7661. "same-file",
  7662. "winapi-util",
  7663. ]
  7664. [[package]]
  7665. name = "wasi"
  7666. version = "0.9.0+wasi-snapshot-preview1"
  7667. source = "registry+https://github.com/rust-lang/crates.io-index"
  7668. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  7669. [[package]]
  7670. name = "wasi"
  7671. version = "0.11.0+wasi-snapshot-preview1"
  7672. source = "registry+https://github.com/rust-lang/crates.io-index"
  7673. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  7674. [[package]]
  7675. name = "wasix"
  7676. version = "0.12.21"
  7677. source = "registry+https://github.com/rust-lang/crates.io-index"
  7678. checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
  7679. dependencies = [
  7680. "wasi 0.11.0+wasi-snapshot-preview1",
  7681. ]
  7682. [[package]]
  7683. name = "wasm-bindgen"
  7684. version = "0.2.92"
  7685. source = "registry+https://github.com/rust-lang/crates.io-index"
  7686. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  7687. dependencies = [
  7688. "cfg-if 1.0.0",
  7689. "serde",
  7690. "serde_json",
  7691. "wasm-bindgen-macro",
  7692. ]
  7693. [[package]]
  7694. name = "wasm-bindgen-backend"
  7695. version = "0.2.92"
  7696. source = "registry+https://github.com/rust-lang/crates.io-index"
  7697. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  7698. dependencies = [
  7699. "bumpalo",
  7700. "log",
  7701. "once_cell",
  7702. "proc-macro2",
  7703. "quote",
  7704. "syn 2.0.53",
  7705. "wasm-bindgen-shared",
  7706. ]
  7707. [[package]]
  7708. name = "wasm-bindgen-futures"
  7709. version = "0.4.42"
  7710. source = "registry+https://github.com/rust-lang/crates.io-index"
  7711. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  7712. dependencies = [
  7713. "cfg-if 1.0.0",
  7714. "js-sys",
  7715. "wasm-bindgen",
  7716. "web-sys",
  7717. ]
  7718. [[package]]
  7719. name = "wasm-bindgen-macro"
  7720. version = "0.2.92"
  7721. source = "registry+https://github.com/rust-lang/crates.io-index"
  7722. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  7723. dependencies = [
  7724. "quote",
  7725. "wasm-bindgen-macro-support",
  7726. ]
  7727. [[package]]
  7728. name = "wasm-bindgen-macro-support"
  7729. version = "0.2.92"
  7730. source = "registry+https://github.com/rust-lang/crates.io-index"
  7731. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  7732. dependencies = [
  7733. "proc-macro2",
  7734. "quote",
  7735. "syn 2.0.53",
  7736. "wasm-bindgen-backend",
  7737. "wasm-bindgen-shared",
  7738. ]
  7739. [[package]]
  7740. name = "wasm-bindgen-shared"
  7741. version = "0.2.92"
  7742. source = "registry+https://github.com/rust-lang/crates.io-index"
  7743. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  7744. [[package]]
  7745. name = "wasm-encoder"
  7746. version = "0.32.0"
  7747. source = "registry+https://github.com/rust-lang/crates.io-index"
  7748. checksum = "1ba64e81215916eaeb48fee292f29401d69235d62d8b8fd92a7b2844ec5ae5f7"
  7749. dependencies = [
  7750. "leb128",
  7751. ]
  7752. [[package]]
  7753. name = "wasmer"
  7754. version = "4.2.6"
  7755. source = "registry+https://github.com/rust-lang/crates.io-index"
  7756. checksum = "5c15724dc25d1ee57962334aea8e41ade2675e5ea2ac6b8d42da6051b0face66"
  7757. dependencies = [
  7758. "bytes 1.5.0",
  7759. "cfg-if 1.0.0",
  7760. "derivative",
  7761. "indexmap 1.9.3",
  7762. "js-sys",
  7763. "more-asserts",
  7764. "rustc-demangle",
  7765. "serde",
  7766. "serde-wasm-bindgen",
  7767. "shared-buffer",
  7768. "target-lexicon",
  7769. "thiserror",
  7770. "tracing",
  7771. "wasm-bindgen",
  7772. "wasmer-compiler",
  7773. "wasmer-compiler-cranelift",
  7774. "wasmer-derive",
  7775. "wasmer-types",
  7776. "wasmer-vm",
  7777. "wat",
  7778. "winapi",
  7779. ]
  7780. [[package]]
  7781. name = "wasmer-compiler"
  7782. version = "4.2.6"
  7783. source = "registry+https://github.com/rust-lang/crates.io-index"
  7784. checksum = "55a7f3b3a96f8d844c25e2c032af9572306dd63fa93dc17bcca4c5458ac569bd"
  7785. dependencies = [
  7786. "backtrace",
  7787. "bytes 1.5.0",
  7788. "cfg-if 1.0.0",
  7789. "enum-iterator",
  7790. "enumset",
  7791. "lazy_static",
  7792. "leb128",
  7793. "memmap2 0.5.10",
  7794. "more-asserts",
  7795. "region",
  7796. "rkyv",
  7797. "self_cell",
  7798. "shared-buffer",
  7799. "smallvec",
  7800. "thiserror",
  7801. "wasmer-types",
  7802. "wasmer-vm",
  7803. "wasmparser 0.121.2",
  7804. "winapi",
  7805. ]
  7806. [[package]]
  7807. name = "wasmer-compiler-cranelift"
  7808. version = "4.2.6"
  7809. source = "registry+https://github.com/rust-lang/crates.io-index"
  7810. checksum = "102e2c5bacac69495c4025767e2fa26797ffb27f242dccb7cf57d9cefd944386"
  7811. dependencies = [
  7812. "cranelift-codegen",
  7813. "cranelift-entity",
  7814. "cranelift-frontend",
  7815. "gimli 0.26.2",
  7816. "more-asserts",
  7817. "rayon",
  7818. "smallvec",
  7819. "target-lexicon",
  7820. "tracing",
  7821. "wasmer-compiler",
  7822. "wasmer-types",
  7823. ]
  7824. [[package]]
  7825. name = "wasmer-compiler-singlepass"
  7826. version = "4.2.6"
  7827. source = "registry+https://github.com/rust-lang/crates.io-index"
  7828. checksum = "2071db9b993508dac72d12f7a9372e0c095fbdc173e0009c4b75886bed4a855e"
  7829. dependencies = [
  7830. "byteorder",
  7831. "dynasm",
  7832. "dynasmrt",
  7833. "enumset",
  7834. "gimli 0.26.2",
  7835. "lazy_static",
  7836. "more-asserts",
  7837. "rayon",
  7838. "smallvec",
  7839. "wasmer-compiler",
  7840. "wasmer-types",
  7841. ]
  7842. [[package]]
  7843. name = "wasmer-derive"
  7844. version = "4.2.6"
  7845. source = "registry+https://github.com/rust-lang/crates.io-index"
  7846. checksum = "0ea737fa08f95d6abc4459f42a70a9833e8974b814e74971d77ef473814f4d4c"
  7847. dependencies = [
  7848. "proc-macro-error",
  7849. "proc-macro2",
  7850. "quote",
  7851. "syn 1.0.109",
  7852. ]
  7853. [[package]]
  7854. name = "wasmer-middlewares"
  7855. version = "4.2.6"
  7856. source = "registry+https://github.com/rust-lang/crates.io-index"
  7857. checksum = "0346ed39c185c1c5c1094e6c0271d798276a34f80e1e5576bcb2e32fa2e7f05a"
  7858. dependencies = [
  7859. "wasmer",
  7860. "wasmer-types",
  7861. "wasmer-vm",
  7862. ]
  7863. [[package]]
  7864. name = "wasmer-types"
  7865. version = "4.2.6"
  7866. source = "registry+https://github.com/rust-lang/crates.io-index"
  7867. checksum = "b0689110e291b0f07fc665f2824e5ff81df120848e8a9acfbf1a9bf7990773f9"
  7868. dependencies = [
  7869. "bytecheck",
  7870. "enum-iterator",
  7871. "enumset",
  7872. "indexmap 1.9.3",
  7873. "more-asserts",
  7874. "rkyv",
  7875. "target-lexicon",
  7876. "thiserror",
  7877. ]
  7878. [[package]]
  7879. name = "wasmer-vm"
  7880. version = "4.2.6"
  7881. source = "registry+https://github.com/rust-lang/crates.io-index"
  7882. checksum = "4cd41f822a1ac4242d478754e8ceba2806a00ea5072803622e1fe91e8e28b2a1"
  7883. dependencies = [
  7884. "backtrace",
  7885. "cc",
  7886. "cfg-if 1.0.0",
  7887. "corosensei",
  7888. "crossbeam-queue",
  7889. "dashmap",
  7890. "derivative",
  7891. "enum-iterator",
  7892. "fnv",
  7893. "indexmap 1.9.3",
  7894. "lazy_static",
  7895. "libc",
  7896. "mach",
  7897. "memoffset",
  7898. "more-asserts",
  7899. "region",
  7900. "scopeguard",
  7901. "thiserror",
  7902. "wasmer-types",
  7903. "winapi",
  7904. ]
  7905. [[package]]
  7906. name = "wasmparser"
  7907. version = "0.121.2"
  7908. source = "registry+https://github.com/rust-lang/crates.io-index"
  7909. checksum = "9dbe55c8f9d0dbd25d9447a5a889ff90c0cc3feaa7395310d3d826b2c703eaab"
  7910. dependencies = [
  7911. "bitflags 2.5.0",
  7912. "indexmap 2.2.5",
  7913. "semver 1.0.22",
  7914. ]
  7915. [[package]]
  7916. name = "wasmparser"
  7917. version = "0.201.0"
  7918. source = "registry+https://github.com/rust-lang/crates.io-index"
  7919. checksum = "84e5df6dba6c0d7fafc63a450f1738451ed7a0b52295d83e868218fa286bf708"
  7920. dependencies = [
  7921. "bitflags 2.5.0",
  7922. "indexmap 2.2.5",
  7923. "semver 1.0.22",
  7924. ]
  7925. [[package]]
  7926. name = "wast"
  7927. version = "64.0.0"
  7928. source = "registry+https://github.com/rust-lang/crates.io-index"
  7929. checksum = "a259b226fd6910225aa7baeba82f9d9933b6d00f2ce1b49b80fa4214328237cc"
  7930. dependencies = [
  7931. "leb128",
  7932. "memchr",
  7933. "unicode-width",
  7934. "wasm-encoder",
  7935. ]
  7936. [[package]]
  7937. name = "wat"
  7938. version = "1.0.71"
  7939. source = "registry+https://github.com/rust-lang/crates.io-index"
  7940. checksum = "53253d920ab413fca1c7dc2161d601c79b4fdf631d0ba51dd4343bf9b556c3f6"
  7941. dependencies = [
  7942. "wast",
  7943. ]
  7944. [[package]]
  7945. name = "weak-table"
  7946. version = "0.3.2"
  7947. source = "registry+https://github.com/rust-lang/crates.io-index"
  7948. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  7949. [[package]]
  7950. name = "web-sys"
  7951. version = "0.3.69"
  7952. source = "registry+https://github.com/rust-lang/crates.io-index"
  7953. checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
  7954. dependencies = [
  7955. "js-sys",
  7956. "wasm-bindgen",
  7957. ]
  7958. [[package]]
  7959. name = "weezl"
  7960. version = "0.1.8"
  7961. source = "registry+https://github.com/rust-lang/crates.io-index"
  7962. checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
  7963. [[package]]
  7964. name = "which"
  7965. version = "4.4.2"
  7966. source = "registry+https://github.com/rust-lang/crates.io-index"
  7967. checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
  7968. dependencies = [
  7969. "either",
  7970. "home",
  7971. "once_cell",
  7972. "rustix 0.38.32",
  7973. ]
  7974. [[package]]
  7975. name = "winapi"
  7976. version = "0.3.9"
  7977. source = "registry+https://github.com/rust-lang/crates.io-index"
  7978. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  7979. dependencies = [
  7980. "winapi-i686-pc-windows-gnu",
  7981. "winapi-x86_64-pc-windows-gnu",
  7982. ]
  7983. [[package]]
  7984. name = "winapi-i686-pc-windows-gnu"
  7985. version = "0.4.0"
  7986. source = "registry+https://github.com/rust-lang/crates.io-index"
  7987. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  7988. [[package]]
  7989. name = "winapi-util"
  7990. version = "0.1.6"
  7991. source = "registry+https://github.com/rust-lang/crates.io-index"
  7992. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  7993. dependencies = [
  7994. "winapi",
  7995. ]
  7996. [[package]]
  7997. name = "winapi-x86_64-pc-windows-gnu"
  7998. version = "0.4.0"
  7999. source = "registry+https://github.com/rust-lang/crates.io-index"
  8000. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  8001. [[package]]
  8002. name = "windows"
  8003. version = "0.54.0"
  8004. source = "registry+https://github.com/rust-lang/crates.io-index"
  8005. checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
  8006. dependencies = [
  8007. "windows-core 0.54.0",
  8008. "windows-targets 0.52.4",
  8009. ]
  8010. [[package]]
  8011. name = "windows-core"
  8012. version = "0.52.0"
  8013. source = "registry+https://github.com/rust-lang/crates.io-index"
  8014. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  8015. dependencies = [
  8016. "windows-targets 0.52.4",
  8017. ]
  8018. [[package]]
  8019. name = "windows-core"
  8020. version = "0.54.0"
  8021. source = "registry+https://github.com/rust-lang/crates.io-index"
  8022. checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
  8023. dependencies = [
  8024. "windows-result",
  8025. "windows-targets 0.52.4",
  8026. ]
  8027. [[package]]
  8028. name = "windows-result"
  8029. version = "0.1.0"
  8030. source = "registry+https://github.com/rust-lang/crates.io-index"
  8031. checksum = "cd19df78e5168dfb0aedc343d1d1b8d422ab2db6756d2dc3fef75035402a3f64"
  8032. dependencies = [
  8033. "windows-targets 0.52.4",
  8034. ]
  8035. [[package]]
  8036. name = "windows-sys"
  8037. version = "0.33.0"
  8038. source = "registry+https://github.com/rust-lang/crates.io-index"
  8039. checksum = "43dbb096663629518eb1dfa72d80243ca5a6aca764cae62a2df70af760a9be75"
  8040. dependencies = [
  8041. "windows_aarch64_msvc 0.33.0",
  8042. "windows_i686_gnu 0.33.0",
  8043. "windows_i686_msvc 0.33.0",
  8044. "windows_x86_64_gnu 0.33.0",
  8045. "windows_x86_64_msvc 0.33.0",
  8046. ]
  8047. [[package]]
  8048. name = "windows-sys"
  8049. version = "0.45.0"
  8050. source = "registry+https://github.com/rust-lang/crates.io-index"
  8051. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  8052. dependencies = [
  8053. "windows-targets 0.42.2",
  8054. ]
  8055. [[package]]
  8056. name = "windows-sys"
  8057. version = "0.48.0"
  8058. source = "registry+https://github.com/rust-lang/crates.io-index"
  8059. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  8060. dependencies = [
  8061. "windows-targets 0.48.5",
  8062. ]
  8063. [[package]]
  8064. name = "windows-sys"
  8065. version = "0.52.0"
  8066. source = "registry+https://github.com/rust-lang/crates.io-index"
  8067. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  8068. dependencies = [
  8069. "windows-targets 0.52.4",
  8070. ]
  8071. [[package]]
  8072. name = "windows-targets"
  8073. version = "0.42.2"
  8074. source = "registry+https://github.com/rust-lang/crates.io-index"
  8075. checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
  8076. dependencies = [
  8077. "windows_aarch64_gnullvm 0.42.2",
  8078. "windows_aarch64_msvc 0.42.2",
  8079. "windows_i686_gnu 0.42.2",
  8080. "windows_i686_msvc 0.42.2",
  8081. "windows_x86_64_gnu 0.42.2",
  8082. "windows_x86_64_gnullvm 0.42.2",
  8083. "windows_x86_64_msvc 0.42.2",
  8084. ]
  8085. [[package]]
  8086. name = "windows-targets"
  8087. version = "0.48.5"
  8088. source = "registry+https://github.com/rust-lang/crates.io-index"
  8089. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  8090. dependencies = [
  8091. "windows_aarch64_gnullvm 0.48.5",
  8092. "windows_aarch64_msvc 0.48.5",
  8093. "windows_i686_gnu 0.48.5",
  8094. "windows_i686_msvc 0.48.5",
  8095. "windows_x86_64_gnu 0.48.5",
  8096. "windows_x86_64_gnullvm 0.48.5",
  8097. "windows_x86_64_msvc 0.48.5",
  8098. ]
  8099. [[package]]
  8100. name = "windows-targets"
  8101. version = "0.52.4"
  8102. source = "registry+https://github.com/rust-lang/crates.io-index"
  8103. checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
  8104. dependencies = [
  8105. "windows_aarch64_gnullvm 0.52.4",
  8106. "windows_aarch64_msvc 0.52.4",
  8107. "windows_i686_gnu 0.52.4",
  8108. "windows_i686_msvc 0.52.4",
  8109. "windows_x86_64_gnu 0.52.4",
  8110. "windows_x86_64_gnullvm 0.52.4",
  8111. "windows_x86_64_msvc 0.52.4",
  8112. ]
  8113. [[package]]
  8114. name = "windows_aarch64_gnullvm"
  8115. version = "0.42.2"
  8116. source = "registry+https://github.com/rust-lang/crates.io-index"
  8117. checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
  8118. [[package]]
  8119. name = "windows_aarch64_gnullvm"
  8120. version = "0.48.5"
  8121. source = "registry+https://github.com/rust-lang/crates.io-index"
  8122. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  8123. [[package]]
  8124. name = "windows_aarch64_gnullvm"
  8125. version = "0.52.4"
  8126. source = "registry+https://github.com/rust-lang/crates.io-index"
  8127. checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
  8128. [[package]]
  8129. name = "windows_aarch64_msvc"
  8130. version = "0.33.0"
  8131. source = "registry+https://github.com/rust-lang/crates.io-index"
  8132. checksum = "cd761fd3eb9ab8cc1ed81e56e567f02dd82c4c837e48ac3b2181b9ffc5060807"
  8133. [[package]]
  8134. name = "windows_aarch64_msvc"
  8135. version = "0.42.2"
  8136. source = "registry+https://github.com/rust-lang/crates.io-index"
  8137. checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
  8138. [[package]]
  8139. name = "windows_aarch64_msvc"
  8140. version = "0.48.5"
  8141. source = "registry+https://github.com/rust-lang/crates.io-index"
  8142. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  8143. [[package]]
  8144. name = "windows_aarch64_msvc"
  8145. version = "0.52.4"
  8146. source = "registry+https://github.com/rust-lang/crates.io-index"
  8147. checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
  8148. [[package]]
  8149. name = "windows_i686_gnu"
  8150. version = "0.33.0"
  8151. source = "registry+https://github.com/rust-lang/crates.io-index"
  8152. checksum = "cab0cf703a96bab2dc0c02c0fa748491294bf9b7feb27e1f4f96340f208ada0e"
  8153. [[package]]
  8154. name = "windows_i686_gnu"
  8155. version = "0.42.2"
  8156. source = "registry+https://github.com/rust-lang/crates.io-index"
  8157. checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
  8158. [[package]]
  8159. name = "windows_i686_gnu"
  8160. version = "0.48.5"
  8161. source = "registry+https://github.com/rust-lang/crates.io-index"
  8162. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  8163. [[package]]
  8164. name = "windows_i686_gnu"
  8165. version = "0.52.4"
  8166. source = "registry+https://github.com/rust-lang/crates.io-index"
  8167. checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
  8168. [[package]]
  8169. name = "windows_i686_msvc"
  8170. version = "0.33.0"
  8171. source = "registry+https://github.com/rust-lang/crates.io-index"
  8172. checksum = "8cfdbe89cc9ad7ce618ba34abc34bbb6c36d99e96cae2245b7943cd75ee773d0"
  8173. [[package]]
  8174. name = "windows_i686_msvc"
  8175. version = "0.42.2"
  8176. source = "registry+https://github.com/rust-lang/crates.io-index"
  8177. checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
  8178. [[package]]
  8179. name = "windows_i686_msvc"
  8180. version = "0.48.5"
  8181. source = "registry+https://github.com/rust-lang/crates.io-index"
  8182. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  8183. [[package]]
  8184. name = "windows_i686_msvc"
  8185. version = "0.52.4"
  8186. source = "registry+https://github.com/rust-lang/crates.io-index"
  8187. checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
  8188. [[package]]
  8189. name = "windows_x86_64_gnu"
  8190. version = "0.33.0"
  8191. source = "registry+https://github.com/rust-lang/crates.io-index"
  8192. checksum = "b4dd9b0c0e9ece7bb22e84d70d01b71c6d6248b81a3c60d11869451b4cb24784"
  8193. [[package]]
  8194. name = "windows_x86_64_gnu"
  8195. version = "0.42.2"
  8196. source = "registry+https://github.com/rust-lang/crates.io-index"
  8197. checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
  8198. [[package]]
  8199. name = "windows_x86_64_gnu"
  8200. version = "0.48.5"
  8201. source = "registry+https://github.com/rust-lang/crates.io-index"
  8202. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  8203. [[package]]
  8204. name = "windows_x86_64_gnu"
  8205. version = "0.52.4"
  8206. source = "registry+https://github.com/rust-lang/crates.io-index"
  8207. checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
  8208. [[package]]
  8209. name = "windows_x86_64_gnullvm"
  8210. version = "0.42.2"
  8211. source = "registry+https://github.com/rust-lang/crates.io-index"
  8212. checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
  8213. [[package]]
  8214. name = "windows_x86_64_gnullvm"
  8215. version = "0.48.5"
  8216. source = "registry+https://github.com/rust-lang/crates.io-index"
  8217. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  8218. [[package]]
  8219. name = "windows_x86_64_gnullvm"
  8220. version = "0.52.4"
  8221. source = "registry+https://github.com/rust-lang/crates.io-index"
  8222. checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
  8223. [[package]]
  8224. name = "windows_x86_64_msvc"
  8225. version = "0.33.0"
  8226. source = "registry+https://github.com/rust-lang/crates.io-index"
  8227. checksum = "ff1e4aa646495048ec7f3ffddc411e1d829c026a2ec62b39da15c1055e406eaa"
  8228. [[package]]
  8229. name = "windows_x86_64_msvc"
  8230. version = "0.42.2"
  8231. source = "registry+https://github.com/rust-lang/crates.io-index"
  8232. checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
  8233. [[package]]
  8234. name = "windows_x86_64_msvc"
  8235. version = "0.48.5"
  8236. source = "registry+https://github.com/rust-lang/crates.io-index"
  8237. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  8238. [[package]]
  8239. name = "windows_x86_64_msvc"
  8240. version = "0.52.4"
  8241. source = "registry+https://github.com/rust-lang/crates.io-index"
  8242. checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
  8243. [[package]]
  8244. name = "winnow"
  8245. version = "0.5.40"
  8246. source = "registry+https://github.com/rust-lang/crates.io-index"
  8247. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  8248. dependencies = [
  8249. "memchr",
  8250. ]
  8251. [[package]]
  8252. name = "winnow"
  8253. version = "0.6.5"
  8254. source = "registry+https://github.com/rust-lang/crates.io-index"
  8255. checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
  8256. dependencies = [
  8257. "memchr",
  8258. ]
  8259. [[package]]
  8260. name = "wio"
  8261. version = "0.2.2"
  8262. source = "registry+https://github.com/rust-lang/crates.io-index"
  8263. checksum = "5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5"
  8264. dependencies = [
  8265. "winapi",
  8266. ]
  8267. [[package]]
  8268. name = "wyz"
  8269. version = "0.5.1"
  8270. source = "registry+https://github.com/rust-lang/crates.io-index"
  8271. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  8272. dependencies = [
  8273. "tap",
  8274. ]
  8275. [[package]]
  8276. name = "x25519-dalek"
  8277. version = "2.0.1"
  8278. source = "registry+https://github.com/rust-lang/crates.io-index"
  8279. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  8280. dependencies = [
  8281. "curve25519-dalek",
  8282. "rand_core 0.6.4",
  8283. "serde",
  8284. "zeroize",
  8285. ]
  8286. [[package]]
  8287. name = "x509-parser"
  8288. version = "0.16.0"
  8289. source = "registry+https://github.com/rust-lang/crates.io-index"
  8290. checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
  8291. dependencies = [
  8292. "asn1-rs",
  8293. "data-encoding",
  8294. "der-parser",
  8295. "lazy_static",
  8296. "nom",
  8297. "oid-registry",
  8298. "ring 0.17.8",
  8299. "rusticata-macros",
  8300. "thiserror",
  8301. "time 0.3.34",
  8302. ]
  8303. [[package]]
  8304. name = "x509-signature"
  8305. version = "0.5.0"
  8306. source = "registry+https://github.com/rust-lang/crates.io-index"
  8307. checksum = "9fb2bc2a902d992cd5f471ee3ab0ffd6603047a4207384562755b9d6de977518"
  8308. dependencies = [
  8309. "ring 0.16.20",
  8310. "untrusted 0.7.1",
  8311. ]
  8312. [[package]]
  8313. name = "xxhash-rust"
  8314. version = "0.8.10"
  8315. source = "registry+https://github.com/rust-lang/crates.io-index"
  8316. checksum = "927da81e25be1e1a2901d59b81b37dd2efd1fc9c9345a55007f09bf5a2d3ee03"
  8317. [[package]]
  8318. name = "xz2"
  8319. version = "0.1.7"
  8320. source = "registry+https://github.com/rust-lang/crates.io-index"
  8321. checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
  8322. dependencies = [
  8323. "lzma-sys",
  8324. ]
  8325. [[package]]
  8326. name = "yasna"
  8327. version = "0.5.2"
  8328. source = "registry+https://github.com/rust-lang/crates.io-index"
  8329. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  8330. dependencies = [
  8331. "time 0.3.34",
  8332. ]
  8333. [[package]]
  8334. name = "yeslogic-fontconfig-sys"
  8335. version = "3.2.0"
  8336. source = "registry+https://github.com/rust-lang/crates.io-index"
  8337. checksum = "f2bbd69036d397ebbff671b1b8e4d918610c181c5a16073b96f984a38d08c386"
  8338. dependencies = [
  8339. "const-cstr",
  8340. "dlib",
  8341. "once_cell",
  8342. "pkg-config",
  8343. ]
  8344. [[package]]
  8345. name = "zerocopy"
  8346. version = "0.7.32"
  8347. source = "registry+https://github.com/rust-lang/crates.io-index"
  8348. checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
  8349. dependencies = [
  8350. "zerocopy-derive",
  8351. ]
  8352. [[package]]
  8353. name = "zerocopy-derive"
  8354. version = "0.7.32"
  8355. source = "registry+https://github.com/rust-lang/crates.io-index"
  8356. checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
  8357. dependencies = [
  8358. "proc-macro2",
  8359. "quote",
  8360. "syn 2.0.53",
  8361. ]
  8362. [[package]]
  8363. name = "zeroize"
  8364. version = "1.7.0"
  8365. source = "registry+https://github.com/rust-lang/crates.io-index"
  8366. checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
  8367. dependencies = [
  8368. "zeroize_derive",
  8369. ]
  8370. [[package]]
  8371. name = "zeroize_derive"
  8372. version = "1.4.2"
  8373. source = "registry+https://github.com/rust-lang/crates.io-index"
  8374. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  8375. dependencies = [
  8376. "proc-macro2",
  8377. "quote",
  8378. "syn 2.0.53",
  8379. ]
  8380. [[package]]
  8381. name = "zkas"
  8382. version = "0.4.1"
  8383. dependencies = [
  8384. "arg",
  8385. "darkfi",
  8386. ]
  8387. [[package]]
  8388. name = "zstd"
  8389. version = "0.13.0"
  8390. source = "registry+https://github.com/rust-lang/crates.io-index"
  8391. checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
  8392. dependencies = [
  8393. "zstd-safe",
  8394. ]
  8395. [[package]]
  8396. name = "zstd-safe"
  8397. version = "7.0.0"
  8398. source = "registry+https://github.com/rust-lang/crates.io-index"
  8399. checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
  8400. dependencies = [
  8401. "zstd-sys",
  8402. ]
  8403. [[package]]
  8404. name = "zstd-sys"
  8405. version = "2.0.9+zstd.1.5.5"
  8406. source = "registry+https://github.com/rust-lang/crates.io-index"
  8407. checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
  8408. dependencies = [
  8409. "cc",
  8410. "pkg-config",
  8411. ]