Cargo.lock 210 KB

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