Cargo.lock 215 KB

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