Cargo.lock 197 KB

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