Cargo.lock 197 KB

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