Cargo.lock 202 KB

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