Cargo.lock 209 KB

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