Cargo.lock 202 KB

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