Cargo.lock 194 KB

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