Cargo.lock 212 KB

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