Cargo.lock 211 KB

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