Cargo.lock 220 KB

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