Cargo.lock 173 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "adler2"
  6. version = "2.0.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
  9. [[package]]
  10. name = "aead"
  11. version = "0.5.2"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  14. dependencies = [
  15. "crypto-common",
  16. "generic-array",
  17. ]
  18. [[package]]
  19. name = "aes"
  20. version = "0.8.4"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  23. dependencies = [
  24. "cfg-if",
  25. "cipher",
  26. "cpufeatures",
  27. "zeroize",
  28. ]
  29. [[package]]
  30. name = "ahash"
  31. version = "0.8.11"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  34. dependencies = [
  35. "cfg-if",
  36. "once_cell",
  37. "version_check",
  38. "zerocopy 0.7.35",
  39. ]
  40. [[package]]
  41. name = "aho-corasick"
  42. version = "1.1.3"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  45. dependencies = [
  46. "memchr",
  47. ]
  48. [[package]]
  49. name = "aligned-vec"
  50. version = "0.5.0"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
  53. [[package]]
  54. name = "allocator-api2"
  55. version = "0.2.21"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  58. [[package]]
  59. name = "amplify"
  60. version = "4.8.1"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "3a9d7cb29f1d4c6ec8650abbee35948b8bdefb7f0750a26445ff593eb9bf7fcf"
  63. dependencies = [
  64. "amplify_derive",
  65. "amplify_num",
  66. "ascii",
  67. "wasm-bindgen",
  68. ]
  69. [[package]]
  70. name = "amplify_derive"
  71. version = "4.0.1"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "2a6309e6b8d89b36b9f959b7a8fa093583b94922a0f6438a24fb08936de4d428"
  74. dependencies = [
  75. "amplify_syn",
  76. "proc-macro2",
  77. "quote",
  78. "syn 1.0.109",
  79. ]
  80. [[package]]
  81. name = "amplify_num"
  82. version = "0.5.3"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "99bcb75a2982047f733547042fc3968c0f460dfcf7d90b90dea3b2744580e9ad"
  85. dependencies = [
  86. "wasm-bindgen",
  87. ]
  88. [[package]]
  89. name = "amplify_syn"
  90. version = "2.0.1"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  93. dependencies = [
  94. "proc-macro2",
  95. "quote",
  96. "syn 1.0.109",
  97. ]
  98. [[package]]
  99. name = "android-tzdata"
  100. version = "0.1.1"
  101. source = "registry+https://github.com/rust-lang/crates.io-index"
  102. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  103. [[package]]
  104. name = "android_log-sys"
  105. version = "0.3.2"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
  108. [[package]]
  109. name = "android_logger"
  110. version = "0.13.3"
  111. source = "registry+https://github.com/rust-lang/crates.io-index"
  112. checksum = "c494134f746c14dc653a35a4ea5aca24ac368529da5370ecf41fe0341c35772f"
  113. dependencies = [
  114. "android_log-sys",
  115. "env_logger",
  116. "log",
  117. "once_cell",
  118. ]
  119. [[package]]
  120. name = "android_system_properties"
  121. version = "0.1.5"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  124. dependencies = [
  125. "libc",
  126. ]
  127. [[package]]
  128. name = "ansi_term"
  129. version = "0.12.1"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  132. dependencies = [
  133. "winapi",
  134. ]
  135. [[package]]
  136. name = "anyhow"
  137. version = "1.0.98"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
  140. [[package]]
  141. name = "arbitrary"
  142. version = "1.4.1"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
  145. [[package]]
  146. name = "arg_enum_proc_macro"
  147. version = "0.3.4"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
  150. dependencies = [
  151. "proc-macro2",
  152. "quote",
  153. "syn 2.0.101",
  154. ]
  155. [[package]]
  156. name = "arrayref"
  157. version = "0.3.9"
  158. source = "registry+https://github.com/rust-lang/crates.io-index"
  159. checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
  160. [[package]]
  161. name = "arrayvec"
  162. version = "0.7.6"
  163. source = "registry+https://github.com/rust-lang/crates.io-index"
  164. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  165. [[package]]
  166. name = "arti-client"
  167. version = "0.29.0"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "32ef6ce4ca6686d6a8561872d01791f0b9f23ea4455a7f1340850d0fac049817"
  170. dependencies = [
  171. "async-trait",
  172. "cfg-if",
  173. "derive-deftly 1.0.1",
  174. "derive_builder_fork_arti",
  175. "derive_more",
  176. "educe",
  177. "fs-mistrust",
  178. "futures",
  179. "hostname-validator",
  180. "humantime",
  181. "humantime-serde",
  182. "libc",
  183. "once_cell",
  184. "postage",
  185. "rand 0.9.1",
  186. "safelog",
  187. "serde",
  188. "thiserror 2.0.12",
  189. "tor-async-utils",
  190. "tor-basic-utils",
  191. "tor-chanmgr",
  192. "tor-circmgr",
  193. "tor-config",
  194. "tor-config-path",
  195. "tor-dirmgr",
  196. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  197. "tor-guardmgr",
  198. "tor-hsclient",
  199. "tor-hscrypto",
  200. "tor-hsservice",
  201. "tor-keymgr",
  202. "tor-linkspec",
  203. "tor-llcrypto",
  204. "tor-memquota",
  205. "tor-netdir",
  206. "tor-netdoc",
  207. "tor-persist",
  208. "tor-proto",
  209. "tor-rtcompat",
  210. "tracing",
  211. "void",
  212. ]
  213. [[package]]
  214. name = "ascii"
  215. version = "1.1.0"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  218. [[package]]
  219. name = "asn1-rs"
  220. version = "0.7.1"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
  223. dependencies = [
  224. "asn1-rs-derive",
  225. "asn1-rs-impl",
  226. "displaydoc",
  227. "nom",
  228. "num-traits",
  229. "rusticata-macros",
  230. "thiserror 2.0.12",
  231. "time",
  232. ]
  233. [[package]]
  234. name = "asn1-rs-derive"
  235. version = "0.6.0"
  236. source = "registry+https://github.com/rust-lang/crates.io-index"
  237. checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
  238. dependencies = [
  239. "proc-macro2",
  240. "quote",
  241. "syn 2.0.101",
  242. "synstructure",
  243. ]
  244. [[package]]
  245. name = "asn1-rs-impl"
  246. version = "0.2.0"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  249. dependencies = [
  250. "proc-macro2",
  251. "quote",
  252. "syn 2.0.101",
  253. ]
  254. [[package]]
  255. name = "assert_matches"
  256. version = "1.5.0"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
  259. [[package]]
  260. name = "async-attributes"
  261. version = "1.1.2"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
  264. dependencies = [
  265. "quote",
  266. "syn 1.0.109",
  267. ]
  268. [[package]]
  269. name = "async-channel"
  270. version = "1.9.0"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
  273. dependencies = [
  274. "concurrent-queue",
  275. "event-listener 2.5.3",
  276. "futures-core",
  277. ]
  278. [[package]]
  279. name = "async-channel"
  280. version = "2.3.1"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
  283. dependencies = [
  284. "concurrent-queue",
  285. "event-listener-strategy",
  286. "futures-core",
  287. "pin-project-lite",
  288. ]
  289. [[package]]
  290. name = "async-compression"
  291. version = "0.4.23"
  292. source = "registry+https://github.com/rust-lang/crates.io-index"
  293. checksum = "b37fc50485c4f3f736a4fb14199f6d5f5ba008d7f28fe710306c92780f004c07"
  294. dependencies = [
  295. "flate2",
  296. "futures-core",
  297. "futures-io",
  298. "liblzma",
  299. "memchr",
  300. "pin-project-lite",
  301. "zstd",
  302. "zstd-safe",
  303. ]
  304. [[package]]
  305. name = "async-executor"
  306. version = "1.13.2"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa"
  309. dependencies = [
  310. "async-task",
  311. "concurrent-queue",
  312. "fastrand",
  313. "futures-lite",
  314. "pin-project-lite",
  315. "slab",
  316. ]
  317. [[package]]
  318. name = "async-fs"
  319. version = "2.1.2"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
  322. dependencies = [
  323. "async-lock",
  324. "blocking",
  325. "futures-lite",
  326. ]
  327. [[package]]
  328. name = "async-gen"
  329. version = "0.2.3"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "2f872d9d498f6cc7a18aff10f2658f17fc5d729928625d68169aaa29febdf813"
  332. dependencies = [
  333. "async-gen-macros",
  334. "futures-core",
  335. "pin-project-lite",
  336. ]
  337. [[package]]
  338. name = "async-gen-macros"
  339. version = "0.3.0"
  340. source = "registry+https://github.com/rust-lang/crates.io-index"
  341. checksum = "017a711dbce72e9467fea4f6e55afc8cf8e4306a53c80593bad684e8eccef122"
  342. [[package]]
  343. name = "async-global-executor"
  344. version = "2.4.1"
  345. source = "registry+https://github.com/rust-lang/crates.io-index"
  346. checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
  347. dependencies = [
  348. "async-channel 2.3.1",
  349. "async-executor",
  350. "async-io",
  351. "async-lock",
  352. "blocking",
  353. "futures-lite",
  354. "once_cell",
  355. ]
  356. [[package]]
  357. name = "async-io"
  358. version = "2.4.0"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
  361. dependencies = [
  362. "async-lock",
  363. "cfg-if",
  364. "concurrent-queue",
  365. "futures-io",
  366. "futures-lite",
  367. "parking",
  368. "polling",
  369. "rustix 0.38.44",
  370. "slab",
  371. "tracing",
  372. "windows-sys 0.59.0",
  373. ]
  374. [[package]]
  375. name = "async-lock"
  376. version = "3.4.0"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
  379. dependencies = [
  380. "event-listener 5.4.0",
  381. "event-listener-strategy",
  382. "pin-project-lite",
  383. ]
  384. [[package]]
  385. name = "async-net"
  386. version = "2.0.0"
  387. source = "registry+https://github.com/rust-lang/crates.io-index"
  388. checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
  389. dependencies = [
  390. "async-io",
  391. "blocking",
  392. "futures-lite",
  393. ]
  394. [[package]]
  395. name = "async-process"
  396. version = "2.3.0"
  397. source = "registry+https://github.com/rust-lang/crates.io-index"
  398. checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
  399. dependencies = [
  400. "async-channel 2.3.1",
  401. "async-io",
  402. "async-lock",
  403. "async-signal",
  404. "async-task",
  405. "blocking",
  406. "cfg-if",
  407. "event-listener 5.4.0",
  408. "futures-lite",
  409. "rustix 0.38.44",
  410. "tracing",
  411. ]
  412. [[package]]
  413. name = "async-recursion"
  414. version = "1.1.1"
  415. source = "registry+https://github.com/rust-lang/crates.io-index"
  416. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  417. dependencies = [
  418. "proc-macro2",
  419. "quote",
  420. "syn 2.0.101",
  421. ]
  422. [[package]]
  423. name = "async-signal"
  424. version = "0.2.10"
  425. source = "registry+https://github.com/rust-lang/crates.io-index"
  426. checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
  427. dependencies = [
  428. "async-io",
  429. "async-lock",
  430. "atomic-waker",
  431. "cfg-if",
  432. "futures-core",
  433. "futures-io",
  434. "rustix 0.38.44",
  435. "signal-hook-registry",
  436. "slab",
  437. "windows-sys 0.59.0",
  438. ]
  439. [[package]]
  440. name = "async-std"
  441. version = "1.13.1"
  442. source = "registry+https://github.com/rust-lang/crates.io-index"
  443. checksum = "730294c1c08c2e0f85759590518f6333f0d5a0a766a27d519c1b244c3dfd8a24"
  444. dependencies = [
  445. "async-attributes",
  446. "async-channel 1.9.0",
  447. "async-global-executor",
  448. "async-io",
  449. "async-lock",
  450. "async-process",
  451. "crossbeam-utils",
  452. "futures-channel",
  453. "futures-core",
  454. "futures-io",
  455. "futures-lite",
  456. "gloo-timers",
  457. "kv-log-macro",
  458. "log",
  459. "memchr",
  460. "once_cell",
  461. "pin-project-lite",
  462. "pin-utils",
  463. "slab",
  464. "wasm-bindgen-futures",
  465. ]
  466. [[package]]
  467. name = "async-task"
  468. version = "4.7.1"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
  471. [[package]]
  472. name = "async-trait"
  473. version = "0.1.88"
  474. source = "registry+https://github.com/rust-lang/crates.io-index"
  475. checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
  476. dependencies = [
  477. "proc-macro2",
  478. "quote",
  479. "syn 2.0.101",
  480. ]
  481. [[package]]
  482. name = "async_executors"
  483. version = "0.7.0"
  484. source = "registry+https://github.com/rust-lang/crates.io-index"
  485. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  486. dependencies = [
  487. "async-std",
  488. "blanket",
  489. "futures-core",
  490. "futures-task",
  491. "futures-util",
  492. "pin-project",
  493. "rustc_version",
  494. ]
  495. [[package]]
  496. name = "asynchronous-codec"
  497. version = "0.7.0"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  500. dependencies = [
  501. "bytes",
  502. "futures-sink",
  503. "futures-util",
  504. "memchr",
  505. "pin-project-lite",
  506. ]
  507. [[package]]
  508. name = "atomic"
  509. version = "0.5.3"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  512. [[package]]
  513. name = "atomic"
  514. version = "0.6.0"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
  517. dependencies = [
  518. "bytemuck",
  519. ]
  520. [[package]]
  521. name = "atomic-waker"
  522. version = "1.1.2"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  525. [[package]]
  526. name = "atomic_float"
  527. version = "1.1.0"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "628d228f918ac3b82fe590352cc719d30664a0c13ca3a60266fe02c7132d480a"
  530. [[package]]
  531. name = "atty"
  532. version = "0.2.14"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  535. dependencies = [
  536. "hermit-abi 0.1.19",
  537. "libc",
  538. "winapi",
  539. ]
  540. [[package]]
  541. name = "autocfg"
  542. version = "1.4.0"
  543. source = "registry+https://github.com/rust-lang/crates.io-index"
  544. checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
  545. [[package]]
  546. name = "av1-grain"
  547. version = "0.2.3"
  548. source = "registry+https://github.com/rust-lang/crates.io-index"
  549. checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf"
  550. dependencies = [
  551. "anyhow",
  552. "arrayvec",
  553. "log",
  554. "nom",
  555. "num-rational",
  556. "v_frame",
  557. ]
  558. [[package]]
  559. name = "avif-serialize"
  560. version = "0.8.3"
  561. source = "registry+https://github.com/rust-lang/crates.io-index"
  562. checksum = "98922d6a4cfbcb08820c69d8eeccc05bb1f29bfa06b4f5b1dbfe9a868bd7608e"
  563. dependencies = [
  564. "arrayvec",
  565. ]
  566. [[package]]
  567. name = "base16ct"
  568. version = "0.2.0"
  569. source = "registry+https://github.com/rust-lang/crates.io-index"
  570. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  571. [[package]]
  572. name = "base64"
  573. version = "0.22.1"
  574. source = "registry+https://github.com/rust-lang/crates.io-index"
  575. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  576. [[package]]
  577. name = "base64ct"
  578. version = "1.7.3"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
  581. [[package]]
  582. name = "bit_field"
  583. version = "0.10.2"
  584. source = "registry+https://github.com/rust-lang/crates.io-index"
  585. checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
  586. [[package]]
  587. name = "bitflags"
  588. version = "1.3.2"
  589. source = "registry+https://github.com/rust-lang/crates.io-index"
  590. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  591. [[package]]
  592. name = "bitflags"
  593. version = "2.9.0"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
  596. [[package]]
  597. name = "bitstream-io"
  598. version = "2.6.0"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
  601. [[package]]
  602. name = "bitvec"
  603. version = "1.0.1"
  604. source = "registry+https://github.com/rust-lang/crates.io-index"
  605. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  606. dependencies = [
  607. "funty",
  608. "radium",
  609. "tap",
  610. "wyz",
  611. ]
  612. [[package]]
  613. name = "blake2b_simd"
  614. version = "1.0.3"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99"
  617. dependencies = [
  618. "arrayref",
  619. "arrayvec",
  620. "constant_time_eq",
  621. ]
  622. [[package]]
  623. name = "blake3"
  624. version = "1.8.2"
  625. source = "registry+https://github.com/rust-lang/crates.io-index"
  626. checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
  627. dependencies = [
  628. "arrayref",
  629. "arrayvec",
  630. "cc",
  631. "cfg-if",
  632. "constant_time_eq",
  633. "rayon-core",
  634. ]
  635. [[package]]
  636. name = "blanket"
  637. version = "0.3.0"
  638. source = "registry+https://github.com/rust-lang/crates.io-index"
  639. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  640. dependencies = [
  641. "proc-macro2",
  642. "quote",
  643. "syn 2.0.101",
  644. ]
  645. [[package]]
  646. name = "block-buffer"
  647. version = "0.10.4"
  648. source = "registry+https://github.com/rust-lang/crates.io-index"
  649. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  650. dependencies = [
  651. "generic-array",
  652. ]
  653. [[package]]
  654. name = "blocking"
  655. version = "1.6.1"
  656. source = "registry+https://github.com/rust-lang/crates.io-index"
  657. checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
  658. dependencies = [
  659. "async-channel 2.3.1",
  660. "async-task",
  661. "futures-io",
  662. "futures-lite",
  663. "piper",
  664. ]
  665. [[package]]
  666. name = "bounded-vec-deque"
  667. version = "0.1.1"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  670. [[package]]
  671. name = "bridgetree"
  672. version = "0.6.0"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "cef977c7f8e75aa81fc589064c121ab8d32448b7939d34d58df479aa93e65ea5"
  675. dependencies = [
  676. "incrementalmerkletree",
  677. ]
  678. [[package]]
  679. name = "bs58"
  680. version = "0.5.1"
  681. source = "registry+https://github.com/rust-lang/crates.io-index"
  682. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  683. dependencies = [
  684. "tinyvec",
  685. ]
  686. [[package]]
  687. name = "bstr"
  688. version = "1.12.0"
  689. source = "registry+https://github.com/rust-lang/crates.io-index"
  690. checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
  691. dependencies = [
  692. "memchr",
  693. "regex-automata 0.4.9",
  694. "serde",
  695. ]
  696. [[package]]
  697. name = "built"
  698. version = "0.7.7"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
  701. [[package]]
  702. name = "bumpalo"
  703. version = "3.17.0"
  704. source = "registry+https://github.com/rust-lang/crates.io-index"
  705. checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
  706. [[package]]
  707. name = "by_address"
  708. version = "1.2.1"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
  711. [[package]]
  712. name = "bytecount"
  713. version = "0.6.8"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
  716. [[package]]
  717. name = "bytemuck"
  718. version = "1.23.0"
  719. source = "registry+https://github.com/rust-lang/crates.io-index"
  720. checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c"
  721. dependencies = [
  722. "bytemuck_derive",
  723. ]
  724. [[package]]
  725. name = "bytemuck_derive"
  726. version = "1.9.3"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
  729. dependencies = [
  730. "proc-macro2",
  731. "quote",
  732. "syn 2.0.101",
  733. ]
  734. [[package]]
  735. name = "byteorder"
  736. version = "1.5.0"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  739. [[package]]
  740. name = "byteorder-lite"
  741. version = "0.1.0"
  742. source = "registry+https://github.com/rust-lang/crates.io-index"
  743. checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
  744. [[package]]
  745. name = "bytes"
  746. version = "1.10.1"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
  749. [[package]]
  750. name = "camino"
  751. version = "1.1.9"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
  754. dependencies = [
  755. "serde",
  756. ]
  757. [[package]]
  758. name = "caret"
  759. version = "0.5.1"
  760. source = "registry+https://github.com/rust-lang/crates.io-index"
  761. checksum = "f5440e59387a6f8291f2696a875656873e9d51e9fb7b38af81a25772a5f81b33"
  762. [[package]]
  763. name = "cargo-platform"
  764. version = "0.1.9"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  767. dependencies = [
  768. "serde",
  769. ]
  770. [[package]]
  771. name = "cargo_metadata"
  772. version = "0.14.2"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  775. dependencies = [
  776. "camino",
  777. "cargo-platform",
  778. "semver",
  779. "serde",
  780. "serde_json",
  781. ]
  782. [[package]]
  783. name = "cc"
  784. version = "1.2.21"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0"
  787. dependencies = [
  788. "jobserver",
  789. "libc",
  790. "shlex",
  791. ]
  792. [[package]]
  793. name = "cfg-expr"
  794. version = "0.15.8"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
  797. dependencies = [
  798. "smallvec",
  799. "target-lexicon",
  800. ]
  801. [[package]]
  802. name = "cfg-if"
  803. version = "1.0.0"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  806. [[package]]
  807. name = "chacha20"
  808. version = "0.9.1"
  809. source = "registry+https://github.com/rust-lang/crates.io-index"
  810. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  811. dependencies = [
  812. "cfg-if",
  813. "cipher",
  814. "cpufeatures",
  815. ]
  816. [[package]]
  817. name = "chacha20poly1305"
  818. version = "0.10.1"
  819. source = "registry+https://github.com/rust-lang/crates.io-index"
  820. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  821. dependencies = [
  822. "aead",
  823. "chacha20",
  824. "cipher",
  825. "poly1305",
  826. "zeroize",
  827. ]
  828. [[package]]
  829. name = "chrono"
  830. version = "0.4.41"
  831. source = "registry+https://github.com/rust-lang/crates.io-index"
  832. checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
  833. dependencies = [
  834. "android-tzdata",
  835. "iana-time-zone",
  836. "js-sys",
  837. "num-traits",
  838. "serde",
  839. "wasm-bindgen",
  840. "windows-link",
  841. ]
  842. [[package]]
  843. name = "cipher"
  844. version = "0.4.4"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  847. dependencies = [
  848. "crypto-common",
  849. "inout",
  850. "zeroize",
  851. ]
  852. [[package]]
  853. name = "clap"
  854. version = "2.34.0"
  855. source = "registry+https://github.com/rust-lang/crates.io-index"
  856. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  857. dependencies = [
  858. "ansi_term",
  859. "atty",
  860. "bitflags 1.3.2",
  861. "strsim 0.8.0",
  862. "textwrap",
  863. "unicode-width",
  864. "vec_map",
  865. ]
  866. [[package]]
  867. name = "coarsetime"
  868. version = "0.1.36"
  869. source = "registry+https://github.com/rust-lang/crates.io-index"
  870. checksum = "91849686042de1b41cd81490edc83afbcb0abe5a9b6f2c4114f23ce8cca1bcf4"
  871. dependencies = [
  872. "libc",
  873. "wasix",
  874. "wasm-bindgen",
  875. ]
  876. [[package]]
  877. name = "color"
  878. version = "0.2.3"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "61c387f6cef110ee8eaf12fca5586d3d303c07c594f4a5f02c768b6470b70dbd"
  881. [[package]]
  882. name = "color"
  883. version = "0.3.0"
  884. source = "registry+https://github.com/rust-lang/crates.io-index"
  885. checksum = "010263546cea9f9f8385a5b7aad534b9e6448e62a0d3bf9da29d583308dd11bb"
  886. [[package]]
  887. name = "color_quant"
  888. version = "1.1.0"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
  891. [[package]]
  892. name = "colored"
  893. version = "3.0.0"
  894. source = "registry+https://github.com/rust-lang/crates.io-index"
  895. checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
  896. dependencies = [
  897. "windows-sys 0.59.0",
  898. ]
  899. [[package]]
  900. name = "concurrent-queue"
  901. version = "2.5.0"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  904. dependencies = [
  905. "crossbeam-utils",
  906. ]
  907. [[package]]
  908. name = "const-oid"
  909. version = "0.9.6"
  910. source = "registry+https://github.com/rust-lang/crates.io-index"
  911. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  912. [[package]]
  913. name = "constant_time_eq"
  914. version = "0.3.1"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
  917. [[package]]
  918. name = "convert_case"
  919. version = "0.7.1"
  920. source = "registry+https://github.com/rust-lang/crates.io-index"
  921. checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
  922. dependencies = [
  923. "unicode-segmentation",
  924. ]
  925. [[package]]
  926. name = "cookie-factory"
  927. version = "0.3.3"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
  930. dependencies = [
  931. "futures",
  932. ]
  933. [[package]]
  934. name = "core-foundation"
  935. version = "0.9.4"
  936. source = "registry+https://github.com/rust-lang/crates.io-index"
  937. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  938. dependencies = [
  939. "core-foundation-sys",
  940. "libc",
  941. ]
  942. [[package]]
  943. name = "core-foundation-sys"
  944. version = "0.8.7"
  945. source = "registry+https://github.com/rust-lang/crates.io-index"
  946. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  947. [[package]]
  948. name = "core-graphics"
  949. version = "0.23.2"
  950. source = "registry+https://github.com/rust-lang/crates.io-index"
  951. checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
  952. dependencies = [
  953. "bitflags 1.3.2",
  954. "core-foundation",
  955. "core-graphics-types",
  956. "foreign-types",
  957. "libc",
  958. ]
  959. [[package]]
  960. name = "core-graphics-types"
  961. version = "0.1.3"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
  964. dependencies = [
  965. "bitflags 1.3.2",
  966. "core-foundation",
  967. "libc",
  968. ]
  969. [[package]]
  970. name = "core-text"
  971. version = "20.1.0"
  972. source = "registry+https://github.com/rust-lang/crates.io-index"
  973. checksum = "c9d2790b5c08465d49f8dc05c8bcae9fea467855947db39b0f8145c091aaced5"
  974. dependencies = [
  975. "core-foundation",
  976. "core-graphics",
  977. "foreign-types",
  978. "libc",
  979. ]
  980. [[package]]
  981. name = "cpufeatures"
  982. version = "0.2.17"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  985. dependencies = [
  986. "libc",
  987. ]
  988. [[package]]
  989. name = "crc32fast"
  990. version = "1.4.2"
  991. source = "registry+https://github.com/rust-lang/crates.io-index"
  992. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  993. dependencies = [
  994. "cfg-if",
  995. ]
  996. [[package]]
  997. name = "crossbeam-deque"
  998. version = "0.8.6"
  999. source = "registry+https://github.com/rust-lang/crates.io-index"
  1000. checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
  1001. dependencies = [
  1002. "crossbeam-epoch",
  1003. "crossbeam-utils",
  1004. ]
  1005. [[package]]
  1006. name = "crossbeam-epoch"
  1007. version = "0.9.18"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1010. dependencies = [
  1011. "crossbeam-utils",
  1012. ]
  1013. [[package]]
  1014. name = "crossbeam-queue"
  1015. version = "0.3.12"
  1016. source = "registry+https://github.com/rust-lang/crates.io-index"
  1017. checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
  1018. dependencies = [
  1019. "crossbeam-utils",
  1020. ]
  1021. [[package]]
  1022. name = "crossbeam-utils"
  1023. version = "0.8.21"
  1024. source = "registry+https://github.com/rust-lang/crates.io-index"
  1025. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  1026. [[package]]
  1027. name = "crunchy"
  1028. version = "0.2.3"
  1029. source = "registry+https://github.com/rust-lang/crates.io-index"
  1030. checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
  1031. [[package]]
  1032. name = "crypto-bigint"
  1033. version = "0.5.5"
  1034. source = "registry+https://github.com/rust-lang/crates.io-index"
  1035. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1036. dependencies = [
  1037. "generic-array",
  1038. "rand_core 0.6.4",
  1039. "subtle",
  1040. "zeroize",
  1041. ]
  1042. [[package]]
  1043. name = "crypto-common"
  1044. version = "0.1.6"
  1045. source = "registry+https://github.com/rust-lang/crates.io-index"
  1046. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1047. dependencies = [
  1048. "generic-array",
  1049. "rand_core 0.6.4",
  1050. "typenum",
  1051. ]
  1052. [[package]]
  1053. name = "ct-codecs"
  1054. version = "1.1.4"
  1055. source = "registry+https://github.com/rust-lang/crates.io-index"
  1056. checksum = "e994091bae428316ad612b1d563e7bd917141ba942963f65251bb07c0f31cc55"
  1057. [[package]]
  1058. name = "ctr"
  1059. version = "0.9.2"
  1060. source = "registry+https://github.com/rust-lang/crates.io-index"
  1061. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1062. dependencies = [
  1063. "cipher",
  1064. ]
  1065. [[package]]
  1066. name = "curve25519-dalek"
  1067. version = "4.1.3"
  1068. source = "registry+https://github.com/rust-lang/crates.io-index"
  1069. checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
  1070. dependencies = [
  1071. "cfg-if",
  1072. "cpufeatures",
  1073. "curve25519-dalek-derive",
  1074. "digest",
  1075. "fiat-crypto",
  1076. "rustc_version",
  1077. "subtle",
  1078. "zeroize",
  1079. ]
  1080. [[package]]
  1081. name = "curve25519-dalek-derive"
  1082. version = "0.1.1"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1085. dependencies = [
  1086. "proc-macro2",
  1087. "quote",
  1088. "syn 2.0.101",
  1089. ]
  1090. [[package]]
  1091. name = "darkfi"
  1092. version = "0.4.1"
  1093. dependencies = [
  1094. "arti-client",
  1095. "async-trait",
  1096. "blake3",
  1097. "bs58",
  1098. "darkfi-sdk",
  1099. "darkfi-serial",
  1100. "ed25519-compact",
  1101. "futures",
  1102. "futures-rustls",
  1103. "halo2_gadgets",
  1104. "halo2_proofs",
  1105. "httparse",
  1106. "libc",
  1107. "log",
  1108. "num-bigint",
  1109. "pin-project-lite",
  1110. "rand 0.8.5",
  1111. "rcgen",
  1112. "regex",
  1113. "rustls-pemfile",
  1114. "semver",
  1115. "serde",
  1116. "simplelog",
  1117. "sled-overlay",
  1118. "smol",
  1119. "socket2",
  1120. "structopt",
  1121. "structopt-toml",
  1122. "thiserror 2.0.12",
  1123. "tinyjson",
  1124. "tor-cell",
  1125. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  1126. "tor-hscrypto",
  1127. "tor-hsservice",
  1128. "tor-proto",
  1129. "tor-rtcompat",
  1130. "url",
  1131. "x509-parser",
  1132. ]
  1133. [[package]]
  1134. name = "darkfi-app"
  1135. version = "0.1.0"
  1136. dependencies = [
  1137. "android_logger",
  1138. "async-channel 2.3.1",
  1139. "async-gen",
  1140. "async-lock",
  1141. "async-recursion",
  1142. "async-trait",
  1143. "atomic_float",
  1144. "blake3",
  1145. "chrono",
  1146. "colored",
  1147. "darkfi",
  1148. "darkfi-serial",
  1149. "dirs 5.0.1",
  1150. "easy-parallel",
  1151. "file-rotate",
  1152. "freetype-rs",
  1153. "futures",
  1154. "glam",
  1155. "harfbuzz-sys",
  1156. "image",
  1157. "log",
  1158. "miniquad",
  1159. "parking_lot 0.12.3",
  1160. "parley",
  1161. "peniko 0.4.0",
  1162. "rand 0.8.5",
  1163. "regex",
  1164. "semver",
  1165. "simplelog",
  1166. "sled-overlay",
  1167. "smol",
  1168. "swash",
  1169. "thiserror 2.0.12",
  1170. "tor-dirmgr",
  1171. "url",
  1172. "zeno",
  1173. "zeromq",
  1174. ]
  1175. [[package]]
  1176. name = "darkfi-derive"
  1177. version = "0.4.2"
  1178. source = "registry+https://github.com/rust-lang/crates.io-index"
  1179. checksum = "2419f39be147184d34144c0cbed3ac3bf7572f0c8703d7a605db5e0f85c66269"
  1180. dependencies = [
  1181. "darkfi-derive-internal",
  1182. "proc-macro-crate",
  1183. "proc-macro2",
  1184. "quote",
  1185. "syn 2.0.101",
  1186. ]
  1187. [[package]]
  1188. name = "darkfi-derive-internal"
  1189. version = "0.4.2"
  1190. source = "registry+https://github.com/rust-lang/crates.io-index"
  1191. checksum = "a7000d1d42b2af380c7367b5cde93cc8cc3b44898d2c467f6d9de3011df9f6e8"
  1192. dependencies = [
  1193. "proc-macro2",
  1194. "quote",
  1195. "syn 2.0.101",
  1196. ]
  1197. [[package]]
  1198. name = "darkfi-sdk"
  1199. version = "0.4.1"
  1200. dependencies = [
  1201. "blake2b_simd",
  1202. "blake3",
  1203. "bridgetree",
  1204. "bs58",
  1205. "chacha20poly1305",
  1206. "darkfi-serial",
  1207. "halo2_gadgets",
  1208. "hashbrown 0.15.3",
  1209. "lazy_static",
  1210. "num",
  1211. "num-bigint",
  1212. "num-traits",
  1213. "pasta_curves",
  1214. "rand 0.8.5",
  1215. "rand_core 0.6.4",
  1216. "sha2",
  1217. "subtle",
  1218. "thiserror 2.0.12",
  1219. ]
  1220. [[package]]
  1221. name = "darkfi-serial"
  1222. version = "0.4.2"
  1223. source = "registry+https://github.com/rust-lang/crates.io-index"
  1224. checksum = "b2a240620a7858db545156a1de5b215c9b10344c7ad527eed0fc67efd5cea08a"
  1225. dependencies = [
  1226. "async-trait",
  1227. "blake3",
  1228. "bridgetree",
  1229. "darkfi-derive",
  1230. "futures-lite",
  1231. "pasta_curves",
  1232. "semver",
  1233. "url",
  1234. ]
  1235. [[package]]
  1236. name = "darling"
  1237. version = "0.14.4"
  1238. source = "registry+https://github.com/rust-lang/crates.io-index"
  1239. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  1240. dependencies = [
  1241. "darling_core 0.14.4",
  1242. "darling_macro 0.14.4",
  1243. ]
  1244. [[package]]
  1245. name = "darling"
  1246. version = "0.20.11"
  1247. source = "registry+https://github.com/rust-lang/crates.io-index"
  1248. checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
  1249. dependencies = [
  1250. "darling_core 0.20.11",
  1251. "darling_macro 0.20.11",
  1252. ]
  1253. [[package]]
  1254. name = "darling_core"
  1255. version = "0.14.4"
  1256. source = "registry+https://github.com/rust-lang/crates.io-index"
  1257. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  1258. dependencies = [
  1259. "fnv",
  1260. "ident_case",
  1261. "proc-macro2",
  1262. "quote",
  1263. "strsim 0.10.0",
  1264. "syn 1.0.109",
  1265. ]
  1266. [[package]]
  1267. name = "darling_core"
  1268. version = "0.20.11"
  1269. source = "registry+https://github.com/rust-lang/crates.io-index"
  1270. checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
  1271. dependencies = [
  1272. "fnv",
  1273. "ident_case",
  1274. "proc-macro2",
  1275. "quote",
  1276. "strsim 0.11.1",
  1277. "syn 2.0.101",
  1278. ]
  1279. [[package]]
  1280. name = "darling_macro"
  1281. version = "0.14.4"
  1282. source = "registry+https://github.com/rust-lang/crates.io-index"
  1283. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  1284. dependencies = [
  1285. "darling_core 0.14.4",
  1286. "quote",
  1287. "syn 1.0.109",
  1288. ]
  1289. [[package]]
  1290. name = "darling_macro"
  1291. version = "0.20.11"
  1292. source = "registry+https://github.com/rust-lang/crates.io-index"
  1293. checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
  1294. dependencies = [
  1295. "darling_core 0.20.11",
  1296. "quote",
  1297. "syn 2.0.101",
  1298. ]
  1299. [[package]]
  1300. name = "dashmap"
  1301. version = "5.5.3"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  1304. dependencies = [
  1305. "cfg-if",
  1306. "hashbrown 0.14.5",
  1307. "lock_api",
  1308. "once_cell",
  1309. "parking_lot_core 0.9.10",
  1310. ]
  1311. [[package]]
  1312. name = "data-encoding"
  1313. version = "2.9.0"
  1314. source = "registry+https://github.com/rust-lang/crates.io-index"
  1315. checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
  1316. [[package]]
  1317. name = "der"
  1318. version = "0.7.10"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
  1321. dependencies = [
  1322. "const-oid",
  1323. "pem-rfc7468",
  1324. "zeroize",
  1325. ]
  1326. [[package]]
  1327. name = "der-parser"
  1328. version = "10.0.0"
  1329. source = "registry+https://github.com/rust-lang/crates.io-index"
  1330. checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
  1331. dependencies = [
  1332. "asn1-rs",
  1333. "cookie-factory",
  1334. "displaydoc",
  1335. "nom",
  1336. "num-bigint",
  1337. "num-traits",
  1338. "rusticata-macros",
  1339. ]
  1340. [[package]]
  1341. name = "deranged"
  1342. version = "0.4.0"
  1343. source = "registry+https://github.com/rust-lang/crates.io-index"
  1344. checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
  1345. dependencies = [
  1346. "powerfmt",
  1347. "serde",
  1348. ]
  1349. [[package]]
  1350. name = "derive-deftly"
  1351. version = "0.14.6"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "e8ea84d0109517cc2253d4a679bdda1e8989e9bd86987e9e4f75ffdda0095fd1"
  1354. dependencies = [
  1355. "derive-deftly-macros 0.14.6",
  1356. "heck 0.5.0",
  1357. ]
  1358. [[package]]
  1359. name = "derive-deftly"
  1360. version = "1.0.1"
  1361. source = "registry+https://github.com/rust-lang/crates.io-index"
  1362. checksum = "0015cb20a284ec944852820598af3aef6309ea8dc317a0304441272ed620f196"
  1363. dependencies = [
  1364. "derive-deftly-macros 1.0.1",
  1365. "heck 0.5.0",
  1366. ]
  1367. [[package]]
  1368. name = "derive-deftly-macros"
  1369. version = "0.14.6"
  1370. source = "registry+https://github.com/rust-lang/crates.io-index"
  1371. checksum = "357422a457ccb850dc8f1c1680e0670079560feaad6c2e247e3f345c4fab8a3f"
  1372. dependencies = [
  1373. "heck 0.5.0",
  1374. "indexmap 2.9.0",
  1375. "itertools 0.14.0",
  1376. "proc-macro-crate",
  1377. "proc-macro2",
  1378. "quote",
  1379. "sha3",
  1380. "strum",
  1381. "syn 2.0.101",
  1382. "void",
  1383. ]
  1384. [[package]]
  1385. name = "derive-deftly-macros"
  1386. version = "1.0.1"
  1387. source = "registry+https://github.com/rust-lang/crates.io-index"
  1388. checksum = "b48e8e38a4aa565da767322b5ca55fb0f8347983c5bc7f7647db069405420479"
  1389. dependencies = [
  1390. "heck 0.5.0",
  1391. "indexmap 2.9.0",
  1392. "itertools 0.14.0",
  1393. "proc-macro-crate",
  1394. "proc-macro2",
  1395. "quote",
  1396. "sha3",
  1397. "strum",
  1398. "syn 2.0.101",
  1399. "void",
  1400. ]
  1401. [[package]]
  1402. name = "derive_builder_core_fork_arti"
  1403. version = "0.11.2"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  1406. dependencies = [
  1407. "darling 0.14.4",
  1408. "proc-macro2",
  1409. "quote",
  1410. "syn 1.0.109",
  1411. ]
  1412. [[package]]
  1413. name = "derive_builder_fork_arti"
  1414. version = "0.11.2"
  1415. source = "registry+https://github.com/rust-lang/crates.io-index"
  1416. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  1417. dependencies = [
  1418. "derive_builder_macro_fork_arti",
  1419. ]
  1420. [[package]]
  1421. name = "derive_builder_macro_fork_arti"
  1422. version = "0.11.2"
  1423. source = "registry+https://github.com/rust-lang/crates.io-index"
  1424. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  1425. dependencies = [
  1426. "derive_builder_core_fork_arti",
  1427. "syn 1.0.109",
  1428. ]
  1429. [[package]]
  1430. name = "derive_more"
  1431. version = "2.0.1"
  1432. source = "registry+https://github.com/rust-lang/crates.io-index"
  1433. checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
  1434. dependencies = [
  1435. "derive_more-impl",
  1436. ]
  1437. [[package]]
  1438. name = "derive_more-impl"
  1439. version = "2.0.1"
  1440. source = "registry+https://github.com/rust-lang/crates.io-index"
  1441. checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
  1442. dependencies = [
  1443. "convert_case",
  1444. "proc-macro2",
  1445. "quote",
  1446. "syn 2.0.101",
  1447. "unicode-xid",
  1448. ]
  1449. [[package]]
  1450. name = "digest"
  1451. version = "0.10.7"
  1452. source = "registry+https://github.com/rust-lang/crates.io-index"
  1453. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1454. dependencies = [
  1455. "block-buffer",
  1456. "const-oid",
  1457. "crypto-common",
  1458. "subtle",
  1459. ]
  1460. [[package]]
  1461. name = "directories"
  1462. version = "6.0.0"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
  1465. dependencies = [
  1466. "dirs-sys 0.5.0",
  1467. ]
  1468. [[package]]
  1469. name = "dirs"
  1470. version = "5.0.1"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1473. dependencies = [
  1474. "dirs-sys 0.4.1",
  1475. ]
  1476. [[package]]
  1477. name = "dirs"
  1478. version = "6.0.0"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  1481. dependencies = [
  1482. "dirs-sys 0.5.0",
  1483. ]
  1484. [[package]]
  1485. name = "dirs-sys"
  1486. version = "0.4.1"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1489. dependencies = [
  1490. "libc",
  1491. "option-ext",
  1492. "redox_users 0.4.6",
  1493. "windows-sys 0.48.0",
  1494. ]
  1495. [[package]]
  1496. name = "dirs-sys"
  1497. version = "0.5.0"
  1498. source = "registry+https://github.com/rust-lang/crates.io-index"
  1499. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  1500. dependencies = [
  1501. "libc",
  1502. "option-ext",
  1503. "redox_users 0.5.0",
  1504. "windows-sys 0.59.0",
  1505. ]
  1506. [[package]]
  1507. name = "displaydoc"
  1508. version = "0.2.5"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1511. dependencies = [
  1512. "proc-macro2",
  1513. "quote",
  1514. "syn 2.0.101",
  1515. ]
  1516. [[package]]
  1517. name = "downcast-rs"
  1518. version = "2.0.1"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
  1521. [[package]]
  1522. name = "dyn-clone"
  1523. version = "1.0.19"
  1524. source = "registry+https://github.com/rust-lang/crates.io-index"
  1525. checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
  1526. [[package]]
  1527. name = "easy-parallel"
  1528. version = "3.3.1"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  1531. [[package]]
  1532. name = "ecdsa"
  1533. version = "0.16.9"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1536. dependencies = [
  1537. "der",
  1538. "digest",
  1539. "elliptic-curve",
  1540. "rfc6979",
  1541. "signature",
  1542. "spki",
  1543. ]
  1544. [[package]]
  1545. name = "ed25519"
  1546. version = "2.2.3"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1549. dependencies = [
  1550. "pkcs8",
  1551. "signature",
  1552. ]
  1553. [[package]]
  1554. name = "ed25519-compact"
  1555. version = "2.1.1"
  1556. source = "registry+https://github.com/rust-lang/crates.io-index"
  1557. checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190"
  1558. dependencies = [
  1559. "ct-codecs",
  1560. "getrandom 0.2.16",
  1561. ]
  1562. [[package]]
  1563. name = "ed25519-dalek"
  1564. version = "2.1.1"
  1565. source = "registry+https://github.com/rust-lang/crates.io-index"
  1566. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1567. dependencies = [
  1568. "curve25519-dalek",
  1569. "ed25519",
  1570. "merlin",
  1571. "rand_core 0.6.4",
  1572. "serde",
  1573. "sha2",
  1574. "subtle",
  1575. "zeroize",
  1576. ]
  1577. [[package]]
  1578. name = "educe"
  1579. version = "0.4.23"
  1580. source = "registry+https://github.com/rust-lang/crates.io-index"
  1581. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  1582. dependencies = [
  1583. "enum-ordinalize",
  1584. "proc-macro2",
  1585. "quote",
  1586. "syn 1.0.109",
  1587. ]
  1588. [[package]]
  1589. name = "either"
  1590. version = "1.15.0"
  1591. source = "registry+https://github.com/rust-lang/crates.io-index"
  1592. checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
  1593. [[package]]
  1594. name = "elliptic-curve"
  1595. version = "0.13.8"
  1596. source = "registry+https://github.com/rust-lang/crates.io-index"
  1597. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1598. dependencies = [
  1599. "base16ct",
  1600. "crypto-bigint",
  1601. "digest",
  1602. "ff",
  1603. "generic-array",
  1604. "group",
  1605. "pkcs8",
  1606. "rand_core 0.6.4",
  1607. "sec1",
  1608. "subtle",
  1609. "zeroize",
  1610. ]
  1611. [[package]]
  1612. name = "enum-ordinalize"
  1613. version = "3.1.15"
  1614. source = "registry+https://github.com/rust-lang/crates.io-index"
  1615. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  1616. dependencies = [
  1617. "num-bigint",
  1618. "num-traits",
  1619. "proc-macro2",
  1620. "quote",
  1621. "syn 2.0.101",
  1622. ]
  1623. [[package]]
  1624. name = "env_logger"
  1625. version = "0.10.2"
  1626. source = "registry+https://github.com/rust-lang/crates.io-index"
  1627. checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
  1628. dependencies = [
  1629. "log",
  1630. "regex",
  1631. ]
  1632. [[package]]
  1633. name = "equivalent"
  1634. version = "1.0.2"
  1635. source = "registry+https://github.com/rust-lang/crates.io-index"
  1636. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  1637. [[package]]
  1638. name = "errno"
  1639. version = "0.3.11"
  1640. source = "registry+https://github.com/rust-lang/crates.io-index"
  1641. checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
  1642. dependencies = [
  1643. "libc",
  1644. "windows-sys 0.59.0",
  1645. ]
  1646. [[package]]
  1647. name = "error-chain"
  1648. version = "0.12.4"
  1649. source = "registry+https://github.com/rust-lang/crates.io-index"
  1650. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1651. dependencies = [
  1652. "version_check",
  1653. ]
  1654. [[package]]
  1655. name = "event-listener"
  1656. version = "2.5.3"
  1657. source = "registry+https://github.com/rust-lang/crates.io-index"
  1658. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1659. [[package]]
  1660. name = "event-listener"
  1661. version = "5.4.0"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
  1664. dependencies = [
  1665. "concurrent-queue",
  1666. "parking",
  1667. "pin-project-lite",
  1668. ]
  1669. [[package]]
  1670. name = "event-listener-strategy"
  1671. version = "0.5.4"
  1672. source = "registry+https://github.com/rust-lang/crates.io-index"
  1673. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  1674. dependencies = [
  1675. "event-listener 5.4.0",
  1676. "pin-project-lite",
  1677. ]
  1678. [[package]]
  1679. name = "exr"
  1680. version = "1.73.0"
  1681. source = "registry+https://github.com/rust-lang/crates.io-index"
  1682. checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
  1683. dependencies = [
  1684. "bit_field",
  1685. "half",
  1686. "lebe",
  1687. "miniz_oxide",
  1688. "rayon-core",
  1689. "smallvec",
  1690. "zune-inflate",
  1691. ]
  1692. [[package]]
  1693. name = "fallible-iterator"
  1694. version = "0.3.0"
  1695. source = "registry+https://github.com/rust-lang/crates.io-index"
  1696. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  1697. [[package]]
  1698. name = "fallible-streaming-iterator"
  1699. version = "0.1.9"
  1700. source = "registry+https://github.com/rust-lang/crates.io-index"
  1701. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  1702. [[package]]
  1703. name = "fastrand"
  1704. version = "2.3.0"
  1705. source = "registry+https://github.com/rust-lang/crates.io-index"
  1706. checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
  1707. [[package]]
  1708. name = "fdeflate"
  1709. version = "0.3.7"
  1710. source = "registry+https://github.com/rust-lang/crates.io-index"
  1711. checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
  1712. dependencies = [
  1713. "simd-adler32",
  1714. ]
  1715. [[package]]
  1716. name = "ff"
  1717. version = "0.13.1"
  1718. source = "registry+https://github.com/rust-lang/crates.io-index"
  1719. checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
  1720. dependencies = [
  1721. "bitvec",
  1722. "rand_core 0.6.4",
  1723. "subtle",
  1724. ]
  1725. [[package]]
  1726. name = "fiat-crypto"
  1727. version = "0.2.9"
  1728. source = "registry+https://github.com/rust-lang/crates.io-index"
  1729. checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
  1730. [[package]]
  1731. name = "figment"
  1732. version = "0.10.19"
  1733. source = "registry+https://github.com/rust-lang/crates.io-index"
  1734. checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
  1735. dependencies = [
  1736. "atomic 0.6.0",
  1737. "serde",
  1738. "toml 0.8.22",
  1739. "uncased",
  1740. "version_check",
  1741. ]
  1742. [[package]]
  1743. name = "file-rotate"
  1744. version = "0.7.6"
  1745. source = "registry+https://github.com/rust-lang/crates.io-index"
  1746. checksum = "7a3ed82142801f5b1363f7d463963d114db80f467e860b1cd82228eaebc627a0"
  1747. dependencies = [
  1748. "chrono",
  1749. "flate2",
  1750. ]
  1751. [[package]]
  1752. name = "filetime"
  1753. version = "0.2.25"
  1754. source = "registry+https://github.com/rust-lang/crates.io-index"
  1755. checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
  1756. dependencies = [
  1757. "cfg-if",
  1758. "libc",
  1759. "libredox",
  1760. "windows-sys 0.59.0",
  1761. ]
  1762. [[package]]
  1763. name = "flate2"
  1764. version = "1.1.1"
  1765. source = "registry+https://github.com/rust-lang/crates.io-index"
  1766. checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
  1767. dependencies = [
  1768. "crc32fast",
  1769. "miniz_oxide",
  1770. ]
  1771. [[package]]
  1772. name = "fluid-let"
  1773. version = "1.0.0"
  1774. source = "registry+https://github.com/rust-lang/crates.io-index"
  1775. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  1776. [[package]]
  1777. name = "fnv"
  1778. version = "1.0.7"
  1779. source = "registry+https://github.com/rust-lang/crates.io-index"
  1780. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1781. [[package]]
  1782. name = "foldhash"
  1783. version = "0.1.5"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  1786. [[package]]
  1787. name = "font-types"
  1788. version = "0.8.4"
  1789. source = "registry+https://github.com/rust-lang/crates.io-index"
  1790. checksum = "1fa6a5e5a77b5f3f7f9e32879f484aa5b3632ddfbe568a16266c904a6f32cdaf"
  1791. dependencies = [
  1792. "bytemuck",
  1793. ]
  1794. [[package]]
  1795. name = "fontconfig-cache-parser"
  1796. version = "0.2.0"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "a7f8afb20c8069fd676d27b214559a337cc619a605d25a87baa90b49a06f3b18"
  1799. dependencies = [
  1800. "bytemuck",
  1801. "thiserror 1.0.69",
  1802. ]
  1803. [[package]]
  1804. name = "fontique"
  1805. version = "0.3.0"
  1806. source = "git+https://github.com/linebender/parley.git#1390840a8c2973779f7eab09e3b0007de9dfc4e9"
  1807. dependencies = [
  1808. "bytemuck",
  1809. "fontconfig-cache-parser",
  1810. "hashbrown 0.15.3",
  1811. "icu_locid",
  1812. "memmap2",
  1813. "objc2",
  1814. "objc2-core-foundation",
  1815. "objc2-core-text",
  1816. "objc2-foundation",
  1817. "peniko 0.3.2",
  1818. "read-fonts",
  1819. "roxmltree",
  1820. "smallvec",
  1821. "windows",
  1822. "windows-core 0.58.0",
  1823. ]
  1824. [[package]]
  1825. name = "foreign-types"
  1826. version = "0.5.0"
  1827. source = "registry+https://github.com/rust-lang/crates.io-index"
  1828. checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
  1829. dependencies = [
  1830. "foreign-types-macros",
  1831. "foreign-types-shared",
  1832. ]
  1833. [[package]]
  1834. name = "foreign-types-macros"
  1835. version = "0.2.3"
  1836. source = "registry+https://github.com/rust-lang/crates.io-index"
  1837. checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
  1838. dependencies = [
  1839. "proc-macro2",
  1840. "quote",
  1841. "syn 2.0.101",
  1842. ]
  1843. [[package]]
  1844. name = "foreign-types-shared"
  1845. version = "0.3.1"
  1846. source = "registry+https://github.com/rust-lang/crates.io-index"
  1847. checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
  1848. [[package]]
  1849. name = "form_urlencoded"
  1850. version = "1.2.1"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1853. dependencies = [
  1854. "percent-encoding",
  1855. ]
  1856. [[package]]
  1857. name = "freetype-rs"
  1858. version = "0.37.0"
  1859. source = "git+https://github.com/narodnik/freetype-rs#bad2e69dc20d35f33eaee8cd26a2dbf588026ea8"
  1860. dependencies = [
  1861. "bitflags 2.9.0",
  1862. "freetype-sys",
  1863. "libc",
  1864. ]
  1865. [[package]]
  1866. name = "freetype-sys"
  1867. version = "0.22.1"
  1868. source = "git+https://github.com/narodnik/freetype-sys2#ed8af21a697670e06fc5f072c5b2276ebe7f76ec"
  1869. dependencies = [
  1870. "cc",
  1871. "libz-sys",
  1872. "pkg-config",
  1873. ]
  1874. [[package]]
  1875. name = "fs-mistrust"
  1876. version = "0.9.2"
  1877. source = "registry+https://github.com/rust-lang/crates.io-index"
  1878. checksum = "28515c41c52a8a46080eaea6270371028a588ccf910c60f0f34edecfd4a891bc"
  1879. dependencies = [
  1880. "derive_builder_fork_arti",
  1881. "dirs 6.0.0",
  1882. "libc",
  1883. "once_cell",
  1884. "pwd-grp",
  1885. "serde",
  1886. "thiserror 2.0.12",
  1887. "walkdir",
  1888. ]
  1889. [[package]]
  1890. name = "fs2"
  1891. version = "0.4.3"
  1892. source = "registry+https://github.com/rust-lang/crates.io-index"
  1893. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  1894. dependencies = [
  1895. "libc",
  1896. "winapi",
  1897. ]
  1898. [[package]]
  1899. name = "fslock"
  1900. version = "0.2.1"
  1901. source = "registry+https://github.com/rust-lang/crates.io-index"
  1902. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  1903. dependencies = [
  1904. "libc",
  1905. "winapi",
  1906. ]
  1907. [[package]]
  1908. name = "fslock-arti-fork"
  1909. version = "0.2.0"
  1910. source = "registry+https://github.com/rust-lang/crates.io-index"
  1911. checksum = "8b21bd626aaab7b904b20bef6d9e06298914a0c8d9fb8b010483766b2e532791"
  1912. dependencies = [
  1913. "libc",
  1914. "winapi",
  1915. ]
  1916. [[package]]
  1917. name = "fslock-guard"
  1918. version = "0.2.2"
  1919. source = "registry+https://github.com/rust-lang/crates.io-index"
  1920. checksum = "4dd65ae40b736ed57be8f11668c12ef6689e2f8609b36da22ff8f4a863a954d3"
  1921. dependencies = [
  1922. "fslock-arti-fork",
  1923. "thiserror 2.0.12",
  1924. "winapi",
  1925. ]
  1926. [[package]]
  1927. name = "funty"
  1928. version = "2.0.0"
  1929. source = "registry+https://github.com/rust-lang/crates.io-index"
  1930. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  1931. [[package]]
  1932. name = "futures"
  1933. version = "0.3.31"
  1934. source = "registry+https://github.com/rust-lang/crates.io-index"
  1935. checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
  1936. dependencies = [
  1937. "futures-channel",
  1938. "futures-core",
  1939. "futures-executor",
  1940. "futures-io",
  1941. "futures-sink",
  1942. "futures-task",
  1943. "futures-util",
  1944. ]
  1945. [[package]]
  1946. name = "futures-channel"
  1947. version = "0.3.31"
  1948. source = "registry+https://github.com/rust-lang/crates.io-index"
  1949. checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
  1950. dependencies = [
  1951. "futures-core",
  1952. "futures-sink",
  1953. ]
  1954. [[package]]
  1955. name = "futures-core"
  1956. version = "0.3.31"
  1957. source = "registry+https://github.com/rust-lang/crates.io-index"
  1958. checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
  1959. [[package]]
  1960. name = "futures-executor"
  1961. version = "0.3.31"
  1962. source = "registry+https://github.com/rust-lang/crates.io-index"
  1963. checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
  1964. dependencies = [
  1965. "futures-core",
  1966. "futures-task",
  1967. "futures-util",
  1968. ]
  1969. [[package]]
  1970. name = "futures-io"
  1971. version = "0.3.31"
  1972. source = "registry+https://github.com/rust-lang/crates.io-index"
  1973. checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
  1974. [[package]]
  1975. name = "futures-lite"
  1976. version = "2.6.0"
  1977. source = "registry+https://github.com/rust-lang/crates.io-index"
  1978. checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
  1979. dependencies = [
  1980. "fastrand",
  1981. "futures-core",
  1982. "futures-io",
  1983. "parking",
  1984. "pin-project-lite",
  1985. ]
  1986. [[package]]
  1987. name = "futures-macro"
  1988. version = "0.3.31"
  1989. source = "registry+https://github.com/rust-lang/crates.io-index"
  1990. checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
  1991. dependencies = [
  1992. "proc-macro2",
  1993. "quote",
  1994. "syn 2.0.101",
  1995. ]
  1996. [[package]]
  1997. name = "futures-rustls"
  1998. version = "0.26.0"
  1999. source = "registry+https://github.com/rust-lang/crates.io-index"
  2000. checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb"
  2001. dependencies = [
  2002. "futures-io",
  2003. "rustls",
  2004. "rustls-pki-types",
  2005. ]
  2006. [[package]]
  2007. name = "futures-sink"
  2008. version = "0.3.31"
  2009. source = "registry+https://github.com/rust-lang/crates.io-index"
  2010. checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
  2011. [[package]]
  2012. name = "futures-task"
  2013. version = "0.3.31"
  2014. source = "registry+https://github.com/rust-lang/crates.io-index"
  2015. checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
  2016. [[package]]
  2017. name = "futures-util"
  2018. version = "0.3.31"
  2019. source = "registry+https://github.com/rust-lang/crates.io-index"
  2020. checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
  2021. dependencies = [
  2022. "futures-channel",
  2023. "futures-core",
  2024. "futures-io",
  2025. "futures-macro",
  2026. "futures-sink",
  2027. "futures-task",
  2028. "memchr",
  2029. "pin-project-lite",
  2030. "pin-utils",
  2031. "slab",
  2032. ]
  2033. [[package]]
  2034. name = "fxhash"
  2035. version = "0.2.1"
  2036. source = "registry+https://github.com/rust-lang/crates.io-index"
  2037. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2038. dependencies = [
  2039. "byteorder",
  2040. ]
  2041. [[package]]
  2042. name = "generic-array"
  2043. version = "0.14.7"
  2044. source = "registry+https://github.com/rust-lang/crates.io-index"
  2045. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2046. dependencies = [
  2047. "typenum",
  2048. "version_check",
  2049. "zeroize",
  2050. ]
  2051. [[package]]
  2052. name = "getrandom"
  2053. version = "0.2.16"
  2054. source = "registry+https://github.com/rust-lang/crates.io-index"
  2055. checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
  2056. dependencies = [
  2057. "cfg-if",
  2058. "js-sys",
  2059. "libc",
  2060. "wasi 0.11.0+wasi-snapshot-preview1",
  2061. "wasm-bindgen",
  2062. ]
  2063. [[package]]
  2064. name = "getrandom"
  2065. version = "0.3.2"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
  2068. dependencies = [
  2069. "cfg-if",
  2070. "libc",
  2071. "r-efi",
  2072. "wasi 0.14.2+wasi-0.2.4",
  2073. ]
  2074. [[package]]
  2075. name = "gif"
  2076. version = "0.13.1"
  2077. source = "registry+https://github.com/rust-lang/crates.io-index"
  2078. checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
  2079. dependencies = [
  2080. "color_quant",
  2081. "weezl",
  2082. ]
  2083. [[package]]
  2084. name = "glam"
  2085. version = "0.29.3"
  2086. source = "registry+https://github.com/rust-lang/crates.io-index"
  2087. checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
  2088. [[package]]
  2089. name = "glob"
  2090. version = "0.3.2"
  2091. source = "registry+https://github.com/rust-lang/crates.io-index"
  2092. checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
  2093. [[package]]
  2094. name = "glob-match"
  2095. version = "0.2.1"
  2096. source = "registry+https://github.com/rust-lang/crates.io-index"
  2097. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  2098. [[package]]
  2099. name = "gloo-timers"
  2100. version = "0.3.0"
  2101. source = "registry+https://github.com/rust-lang/crates.io-index"
  2102. checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
  2103. dependencies = [
  2104. "futures-channel",
  2105. "futures-core",
  2106. "js-sys",
  2107. "wasm-bindgen",
  2108. ]
  2109. [[package]]
  2110. name = "group"
  2111. version = "0.13.0"
  2112. source = "registry+https://github.com/rust-lang/crates.io-index"
  2113. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2114. dependencies = [
  2115. "ff",
  2116. "rand_core 0.6.4",
  2117. "subtle",
  2118. ]
  2119. [[package]]
  2120. name = "growable-bloom-filter"
  2121. version = "2.1.1"
  2122. source = "registry+https://github.com/rust-lang/crates.io-index"
  2123. checksum = "d174ccb4ba660d431329e7f0797870d0a4281e36353ec4b4a3c5eab6c2cfb6f1"
  2124. dependencies = [
  2125. "serde",
  2126. "serde_bytes",
  2127. "serde_derive",
  2128. "xxhash-rust",
  2129. ]
  2130. [[package]]
  2131. name = "half"
  2132. version = "2.6.0"
  2133. source = "registry+https://github.com/rust-lang/crates.io-index"
  2134. checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
  2135. dependencies = [
  2136. "cfg-if",
  2137. "crunchy",
  2138. ]
  2139. [[package]]
  2140. name = "halo2_gadgets"
  2141. version = "0.3.1"
  2142. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2143. dependencies = [
  2144. "arrayvec",
  2145. "bitvec",
  2146. "ff",
  2147. "group",
  2148. "halo2_poseidon",
  2149. "halo2_proofs",
  2150. "lazy_static",
  2151. "pasta_curves",
  2152. "rand 0.8.5",
  2153. "sinsemilla",
  2154. "subtle",
  2155. "uint",
  2156. ]
  2157. [[package]]
  2158. name = "halo2_poseidon"
  2159. version = "0.1.0"
  2160. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2161. dependencies = [
  2162. "bitvec",
  2163. "ff",
  2164. "group",
  2165. "pasta_curves",
  2166. ]
  2167. [[package]]
  2168. name = "halo2_proofs"
  2169. version = "0.3.0"
  2170. source = "git+https://github.com/parazyd/halo2?branch=v4#25ddd27c3c60e99aaa1bf0870bc4d024a5e08edc"
  2171. dependencies = [
  2172. "blake2b_simd",
  2173. "ff",
  2174. "group",
  2175. "maybe-rayon",
  2176. "pasta_curves",
  2177. "rand_core 0.6.4",
  2178. "tracing",
  2179. ]
  2180. [[package]]
  2181. name = "harfbuzz-sys"
  2182. version = "0.6.1"
  2183. source = "git+https://github.com/narodnik/rust-harfbuzz2#450d37dad132906335ec760cd51463a1ede359ee"
  2184. dependencies = [
  2185. "cc",
  2186. "core-graphics",
  2187. "core-text",
  2188. "foreign-types",
  2189. "freetype-sys",
  2190. "pkg-config",
  2191. "windows",
  2192. ]
  2193. [[package]]
  2194. name = "hashbrown"
  2195. version = "0.12.3"
  2196. source = "registry+https://github.com/rust-lang/crates.io-index"
  2197. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2198. [[package]]
  2199. name = "hashbrown"
  2200. version = "0.14.5"
  2201. source = "registry+https://github.com/rust-lang/crates.io-index"
  2202. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2203. dependencies = [
  2204. "ahash",
  2205. ]
  2206. [[package]]
  2207. name = "hashbrown"
  2208. version = "0.15.3"
  2209. source = "registry+https://github.com/rust-lang/crates.io-index"
  2210. checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
  2211. dependencies = [
  2212. "allocator-api2",
  2213. "equivalent",
  2214. "foldhash",
  2215. ]
  2216. [[package]]
  2217. name = "hashlink"
  2218. version = "0.9.1"
  2219. source = "registry+https://github.com/rust-lang/crates.io-index"
  2220. checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
  2221. dependencies = [
  2222. "hashbrown 0.14.5",
  2223. ]
  2224. [[package]]
  2225. name = "heck"
  2226. version = "0.3.3"
  2227. source = "registry+https://github.com/rust-lang/crates.io-index"
  2228. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2229. dependencies = [
  2230. "unicode-segmentation",
  2231. ]
  2232. [[package]]
  2233. name = "heck"
  2234. version = "0.4.1"
  2235. source = "registry+https://github.com/rust-lang/crates.io-index"
  2236. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2237. [[package]]
  2238. name = "heck"
  2239. version = "0.5.0"
  2240. source = "registry+https://github.com/rust-lang/crates.io-index"
  2241. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2242. [[package]]
  2243. name = "hermit-abi"
  2244. version = "0.1.19"
  2245. source = "registry+https://github.com/rust-lang/crates.io-index"
  2246. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  2247. dependencies = [
  2248. "libc",
  2249. ]
  2250. [[package]]
  2251. name = "hermit-abi"
  2252. version = "0.4.0"
  2253. source = "registry+https://github.com/rust-lang/crates.io-index"
  2254. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  2255. [[package]]
  2256. name = "hex"
  2257. version = "0.4.3"
  2258. source = "registry+https://github.com/rust-lang/crates.io-index"
  2259. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2260. [[package]]
  2261. name = "hkdf"
  2262. version = "0.12.4"
  2263. source = "registry+https://github.com/rust-lang/crates.io-index"
  2264. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2265. dependencies = [
  2266. "hmac",
  2267. ]
  2268. [[package]]
  2269. name = "hmac"
  2270. version = "0.12.1"
  2271. source = "registry+https://github.com/rust-lang/crates.io-index"
  2272. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2273. dependencies = [
  2274. "digest",
  2275. ]
  2276. [[package]]
  2277. name = "hostname-validator"
  2278. version = "1.1.1"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  2281. [[package]]
  2282. name = "http"
  2283. version = "1.3.1"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
  2286. dependencies = [
  2287. "bytes",
  2288. "fnv",
  2289. "itoa",
  2290. ]
  2291. [[package]]
  2292. name = "httparse"
  2293. version = "1.10.1"
  2294. source = "registry+https://github.com/rust-lang/crates.io-index"
  2295. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  2296. [[package]]
  2297. name = "httpdate"
  2298. version = "1.0.3"
  2299. source = "registry+https://github.com/rust-lang/crates.io-index"
  2300. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  2301. [[package]]
  2302. name = "humantime"
  2303. version = "2.2.0"
  2304. source = "registry+https://github.com/rust-lang/crates.io-index"
  2305. checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
  2306. [[package]]
  2307. name = "humantime-serde"
  2308. version = "1.1.1"
  2309. source = "registry+https://github.com/rust-lang/crates.io-index"
  2310. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  2311. dependencies = [
  2312. "humantime",
  2313. "serde",
  2314. ]
  2315. [[package]]
  2316. name = "iana-time-zone"
  2317. version = "0.1.63"
  2318. source = "registry+https://github.com/rust-lang/crates.io-index"
  2319. checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
  2320. dependencies = [
  2321. "android_system_properties",
  2322. "core-foundation-sys",
  2323. "iana-time-zone-haiku",
  2324. "js-sys",
  2325. "log",
  2326. "wasm-bindgen",
  2327. "windows-core 0.61.0",
  2328. ]
  2329. [[package]]
  2330. name = "iana-time-zone-haiku"
  2331. version = "0.1.2"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2334. dependencies = [
  2335. "cc",
  2336. ]
  2337. [[package]]
  2338. name = "icu_collections"
  2339. version = "1.5.0"
  2340. source = "registry+https://github.com/rust-lang/crates.io-index"
  2341. checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
  2342. dependencies = [
  2343. "displaydoc",
  2344. "yoke",
  2345. "zerofrom",
  2346. "zerovec 0.10.4",
  2347. ]
  2348. [[package]]
  2349. name = "icu_locid"
  2350. version = "1.5.0"
  2351. source = "registry+https://github.com/rust-lang/crates.io-index"
  2352. checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
  2353. dependencies = [
  2354. "displaydoc",
  2355. "litemap",
  2356. "tinystr 0.7.6",
  2357. "writeable",
  2358. "zerovec 0.10.4",
  2359. ]
  2360. [[package]]
  2361. name = "icu_locid_transform"
  2362. version = "1.5.0"
  2363. source = "registry+https://github.com/rust-lang/crates.io-index"
  2364. checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
  2365. dependencies = [
  2366. "displaydoc",
  2367. "icu_locid",
  2368. "icu_locid_transform_data",
  2369. "icu_provider",
  2370. "tinystr 0.7.6",
  2371. "zerovec 0.10.4",
  2372. ]
  2373. [[package]]
  2374. name = "icu_locid_transform_data"
  2375. version = "1.5.1"
  2376. source = "registry+https://github.com/rust-lang/crates.io-index"
  2377. checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
  2378. [[package]]
  2379. name = "icu_normalizer"
  2380. version = "1.5.0"
  2381. source = "registry+https://github.com/rust-lang/crates.io-index"
  2382. checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
  2383. dependencies = [
  2384. "displaydoc",
  2385. "icu_collections",
  2386. "icu_normalizer_data",
  2387. "icu_properties",
  2388. "icu_provider",
  2389. "smallvec",
  2390. "utf16_iter",
  2391. "utf8_iter",
  2392. "write16",
  2393. "zerovec 0.10.4",
  2394. ]
  2395. [[package]]
  2396. name = "icu_normalizer_data"
  2397. version = "1.5.1"
  2398. source = "registry+https://github.com/rust-lang/crates.io-index"
  2399. checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
  2400. [[package]]
  2401. name = "icu_properties"
  2402. version = "1.5.1"
  2403. source = "registry+https://github.com/rust-lang/crates.io-index"
  2404. checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
  2405. dependencies = [
  2406. "displaydoc",
  2407. "icu_collections",
  2408. "icu_locid_transform",
  2409. "icu_properties_data",
  2410. "icu_provider",
  2411. "tinystr 0.7.6",
  2412. "zerovec 0.10.4",
  2413. ]
  2414. [[package]]
  2415. name = "icu_properties_data"
  2416. version = "1.5.1"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
  2419. [[package]]
  2420. name = "icu_provider"
  2421. version = "1.5.0"
  2422. source = "registry+https://github.com/rust-lang/crates.io-index"
  2423. checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
  2424. dependencies = [
  2425. "displaydoc",
  2426. "icu_locid",
  2427. "icu_provider_macros",
  2428. "stable_deref_trait",
  2429. "tinystr 0.7.6",
  2430. "writeable",
  2431. "yoke",
  2432. "zerofrom",
  2433. "zerovec 0.10.4",
  2434. ]
  2435. [[package]]
  2436. name = "icu_provider_macros"
  2437. version = "1.5.0"
  2438. source = "registry+https://github.com/rust-lang/crates.io-index"
  2439. checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
  2440. dependencies = [
  2441. "proc-macro2",
  2442. "quote",
  2443. "syn 2.0.101",
  2444. ]
  2445. [[package]]
  2446. name = "ident_case"
  2447. version = "1.0.1"
  2448. source = "registry+https://github.com/rust-lang/crates.io-index"
  2449. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2450. [[package]]
  2451. name = "idna"
  2452. version = "1.0.3"
  2453. source = "registry+https://github.com/rust-lang/crates.io-index"
  2454. checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
  2455. dependencies = [
  2456. "idna_adapter",
  2457. "smallvec",
  2458. "utf8_iter",
  2459. ]
  2460. [[package]]
  2461. name = "idna_adapter"
  2462. version = "1.2.0"
  2463. source = "registry+https://github.com/rust-lang/crates.io-index"
  2464. checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
  2465. dependencies = [
  2466. "icu_normalizer",
  2467. "icu_properties",
  2468. ]
  2469. [[package]]
  2470. name = "image"
  2471. version = "0.25.6"
  2472. source = "registry+https://github.com/rust-lang/crates.io-index"
  2473. checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
  2474. dependencies = [
  2475. "bytemuck",
  2476. "byteorder-lite",
  2477. "color_quant",
  2478. "exr",
  2479. "gif",
  2480. "image-webp",
  2481. "num-traits",
  2482. "png",
  2483. "qoi",
  2484. "ravif",
  2485. "rayon",
  2486. "rgb",
  2487. "tiff",
  2488. "zune-core",
  2489. "zune-jpeg",
  2490. ]
  2491. [[package]]
  2492. name = "image-webp"
  2493. version = "0.2.1"
  2494. source = "registry+https://github.com/rust-lang/crates.io-index"
  2495. checksum = "b77d01e822461baa8409e156015a1d91735549f0f2c17691bd2d996bef238f7f"
  2496. dependencies = [
  2497. "byteorder-lite",
  2498. "quick-error",
  2499. ]
  2500. [[package]]
  2501. name = "imgref"
  2502. version = "1.11.0"
  2503. source = "registry+https://github.com/rust-lang/crates.io-index"
  2504. checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
  2505. [[package]]
  2506. name = "incrementalmerkletree"
  2507. version = "0.7.1"
  2508. source = "registry+https://github.com/rust-lang/crates.io-index"
  2509. checksum = "216c71634ac6f6ed13c2102d64354c0a04dcbdc30e31692c5972d3974d8b6d97"
  2510. dependencies = [
  2511. "either",
  2512. ]
  2513. [[package]]
  2514. name = "indexmap"
  2515. version = "1.9.3"
  2516. source = "registry+https://github.com/rust-lang/crates.io-index"
  2517. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2518. dependencies = [
  2519. "autocfg",
  2520. "hashbrown 0.12.3",
  2521. "serde",
  2522. ]
  2523. [[package]]
  2524. name = "indexmap"
  2525. version = "2.9.0"
  2526. source = "registry+https://github.com/rust-lang/crates.io-index"
  2527. checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
  2528. dependencies = [
  2529. "equivalent",
  2530. "hashbrown 0.15.3",
  2531. "serde",
  2532. ]
  2533. [[package]]
  2534. name = "inotify"
  2535. version = "0.11.0"
  2536. source = "registry+https://github.com/rust-lang/crates.io-index"
  2537. checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
  2538. dependencies = [
  2539. "bitflags 2.9.0",
  2540. "inotify-sys",
  2541. "libc",
  2542. ]
  2543. [[package]]
  2544. name = "inotify-sys"
  2545. version = "0.1.5"
  2546. source = "registry+https://github.com/rust-lang/crates.io-index"
  2547. checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
  2548. dependencies = [
  2549. "libc",
  2550. ]
  2551. [[package]]
  2552. name = "inout"
  2553. version = "0.1.4"
  2554. source = "registry+https://github.com/rust-lang/crates.io-index"
  2555. checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
  2556. dependencies = [
  2557. "generic-array",
  2558. ]
  2559. [[package]]
  2560. name = "instant"
  2561. version = "0.1.13"
  2562. source = "registry+https://github.com/rust-lang/crates.io-index"
  2563. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2564. dependencies = [
  2565. "cfg-if",
  2566. ]
  2567. [[package]]
  2568. name = "interpolate_name"
  2569. version = "0.2.4"
  2570. source = "registry+https://github.com/rust-lang/crates.io-index"
  2571. checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
  2572. dependencies = [
  2573. "proc-macro2",
  2574. "quote",
  2575. "syn 2.0.101",
  2576. ]
  2577. [[package]]
  2578. name = "inventory"
  2579. version = "0.3.20"
  2580. source = "registry+https://github.com/rust-lang/crates.io-index"
  2581. checksum = "ab08d7cd2c5897f2c949e5383ea7c7db03fb19130ffcfbf7eda795137ae3cb83"
  2582. dependencies = [
  2583. "rustversion",
  2584. ]
  2585. [[package]]
  2586. name = "itertools"
  2587. version = "0.12.1"
  2588. source = "registry+https://github.com/rust-lang/crates.io-index"
  2589. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2590. dependencies = [
  2591. "either",
  2592. ]
  2593. [[package]]
  2594. name = "itertools"
  2595. version = "0.14.0"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
  2598. dependencies = [
  2599. "either",
  2600. ]
  2601. [[package]]
  2602. name = "itoa"
  2603. version = "1.0.15"
  2604. source = "registry+https://github.com/rust-lang/crates.io-index"
  2605. checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
  2606. [[package]]
  2607. name = "jobserver"
  2608. version = "0.1.33"
  2609. source = "registry+https://github.com/rust-lang/crates.io-index"
  2610. checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
  2611. dependencies = [
  2612. "getrandom 0.3.2",
  2613. "libc",
  2614. ]
  2615. [[package]]
  2616. name = "jpeg-decoder"
  2617. version = "0.3.1"
  2618. source = "registry+https://github.com/rust-lang/crates.io-index"
  2619. checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
  2620. [[package]]
  2621. name = "js-sys"
  2622. version = "0.3.77"
  2623. source = "registry+https://github.com/rust-lang/crates.io-index"
  2624. checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
  2625. dependencies = [
  2626. "once_cell",
  2627. "wasm-bindgen",
  2628. ]
  2629. [[package]]
  2630. name = "k12"
  2631. version = "0.3.0"
  2632. source = "registry+https://github.com/rust-lang/crates.io-index"
  2633. checksum = "f4dc5fdb62af2f520116927304f15d25b3c2667b4817b90efdc045194c912c54"
  2634. dependencies = [
  2635. "digest",
  2636. "sha3",
  2637. ]
  2638. [[package]]
  2639. name = "keccak"
  2640. version = "0.1.5"
  2641. source = "registry+https://github.com/rust-lang/crates.io-index"
  2642. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  2643. dependencies = [
  2644. "cpufeatures",
  2645. ]
  2646. [[package]]
  2647. name = "kqueue"
  2648. version = "1.0.8"
  2649. source = "registry+https://github.com/rust-lang/crates.io-index"
  2650. checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
  2651. dependencies = [
  2652. "kqueue-sys",
  2653. "libc",
  2654. ]
  2655. [[package]]
  2656. name = "kqueue-sys"
  2657. version = "1.0.4"
  2658. source = "registry+https://github.com/rust-lang/crates.io-index"
  2659. checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
  2660. dependencies = [
  2661. "bitflags 1.3.2",
  2662. "libc",
  2663. ]
  2664. [[package]]
  2665. name = "kurbo"
  2666. version = "0.11.2"
  2667. source = "registry+https://github.com/rust-lang/crates.io-index"
  2668. checksum = "1077d333efea6170d9ccb96d3c3026f300ca0773da4938cc4c811daa6df68b0c"
  2669. dependencies = [
  2670. "arrayvec",
  2671. "smallvec",
  2672. ]
  2673. [[package]]
  2674. name = "kv-log-macro"
  2675. version = "1.0.7"
  2676. source = "registry+https://github.com/rust-lang/crates.io-index"
  2677. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2678. dependencies = [
  2679. "log",
  2680. ]
  2681. [[package]]
  2682. name = "lazy_static"
  2683. version = "1.5.0"
  2684. source = "registry+https://github.com/rust-lang/crates.io-index"
  2685. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  2686. dependencies = [
  2687. "spin",
  2688. ]
  2689. [[package]]
  2690. name = "lebe"
  2691. version = "0.5.2"
  2692. source = "registry+https://github.com/rust-lang/crates.io-index"
  2693. checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
  2694. [[package]]
  2695. name = "libc"
  2696. version = "0.2.172"
  2697. source = "registry+https://github.com/rust-lang/crates.io-index"
  2698. checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
  2699. [[package]]
  2700. name = "libfuzzer-sys"
  2701. version = "0.4.9"
  2702. source = "registry+https://github.com/rust-lang/crates.io-index"
  2703. checksum = "cf78f52d400cf2d84a3a973a78a592b4adc535739e0a5597a0da6f0c357adc75"
  2704. dependencies = [
  2705. "arbitrary",
  2706. "cc",
  2707. ]
  2708. [[package]]
  2709. name = "liblzma"
  2710. version = "0.4.1"
  2711. source = "registry+https://github.com/rust-lang/crates.io-index"
  2712. checksum = "66352d7a8ac12d4877b6e6ea5a9b7650ee094257dc40889955bea5bc5b08c1d0"
  2713. dependencies = [
  2714. "liblzma-sys",
  2715. ]
  2716. [[package]]
  2717. name = "liblzma-sys"
  2718. version = "0.4.3"
  2719. source = "registry+https://github.com/rust-lang/crates.io-index"
  2720. checksum = "5839bad90c3cc2e0b8c4ed8296b80e86040240f81d46b9c0e9bc8dd51ddd3af1"
  2721. dependencies = [
  2722. "cc",
  2723. "libc",
  2724. "pkg-config",
  2725. ]
  2726. [[package]]
  2727. name = "libm"
  2728. version = "0.2.13"
  2729. source = "registry+https://github.com/rust-lang/crates.io-index"
  2730. checksum = "c9627da5196e5d8ed0b0495e61e518847578da83483c37288316d9b2e03a7f72"
  2731. [[package]]
  2732. name = "libredox"
  2733. version = "0.1.3"
  2734. source = "registry+https://github.com/rust-lang/crates.io-index"
  2735. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2736. dependencies = [
  2737. "bitflags 2.9.0",
  2738. "libc",
  2739. "redox_syscall 0.5.11",
  2740. ]
  2741. [[package]]
  2742. name = "libsqlite3-sys"
  2743. version = "0.30.1"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
  2746. dependencies = [
  2747. "cc",
  2748. "pkg-config",
  2749. "vcpkg",
  2750. ]
  2751. [[package]]
  2752. name = "libz-sys"
  2753. version = "1.1.22"
  2754. source = "registry+https://github.com/rust-lang/crates.io-index"
  2755. checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
  2756. dependencies = [
  2757. "cc",
  2758. "libc",
  2759. "pkg-config",
  2760. "vcpkg",
  2761. ]
  2762. [[package]]
  2763. name = "linux-raw-sys"
  2764. version = "0.4.15"
  2765. source = "registry+https://github.com/rust-lang/crates.io-index"
  2766. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  2767. [[package]]
  2768. name = "linux-raw-sys"
  2769. version = "0.9.4"
  2770. source = "registry+https://github.com/rust-lang/crates.io-index"
  2771. checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
  2772. [[package]]
  2773. name = "litemap"
  2774. version = "0.7.5"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
  2777. [[package]]
  2778. name = "lock_api"
  2779. version = "0.4.12"
  2780. source = "registry+https://github.com/rust-lang/crates.io-index"
  2781. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2782. dependencies = [
  2783. "autocfg",
  2784. "scopeguard",
  2785. ]
  2786. [[package]]
  2787. name = "log"
  2788. version = "0.4.27"
  2789. source = "registry+https://github.com/rust-lang/crates.io-index"
  2790. checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
  2791. dependencies = [
  2792. "value-bag",
  2793. ]
  2794. [[package]]
  2795. name = "loop9"
  2796. version = "0.1.5"
  2797. source = "registry+https://github.com/rust-lang/crates.io-index"
  2798. checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
  2799. dependencies = [
  2800. "imgref",
  2801. ]
  2802. [[package]]
  2803. name = "malloc_buf"
  2804. version = "0.0.6"
  2805. source = "registry+https://github.com/rust-lang/crates.io-index"
  2806. checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
  2807. dependencies = [
  2808. "libc",
  2809. ]
  2810. [[package]]
  2811. name = "matchers"
  2812. version = "0.1.0"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2815. dependencies = [
  2816. "regex-automata 0.1.10",
  2817. ]
  2818. [[package]]
  2819. name = "maybe-rayon"
  2820. version = "0.1.1"
  2821. source = "registry+https://github.com/rust-lang/crates.io-index"
  2822. checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
  2823. dependencies = [
  2824. "cfg-if",
  2825. "rayon",
  2826. ]
  2827. [[package]]
  2828. name = "memchr"
  2829. version = "2.7.4"
  2830. source = "registry+https://github.com/rust-lang/crates.io-index"
  2831. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2832. [[package]]
  2833. name = "memmap2"
  2834. version = "0.9.5"
  2835. source = "registry+https://github.com/rust-lang/crates.io-index"
  2836. checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
  2837. dependencies = [
  2838. "libc",
  2839. ]
  2840. [[package]]
  2841. name = "merlin"
  2842. version = "3.0.0"
  2843. source = "registry+https://github.com/rust-lang/crates.io-index"
  2844. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  2845. dependencies = [
  2846. "byteorder",
  2847. "keccak",
  2848. "rand_core 0.6.4",
  2849. "zeroize",
  2850. ]
  2851. [[package]]
  2852. name = "minimal-lexical"
  2853. version = "0.2.1"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2856. [[package]]
  2857. name = "miniquad"
  2858. version = "0.4.8"
  2859. source = "git+https://github.com/not-fl3/miniquad#2a3a5178e0efc6e9a8ea8c569e4bd037de599bfb"
  2860. dependencies = [
  2861. "libc",
  2862. "ndk-sys",
  2863. "objc-rs",
  2864. "winapi",
  2865. ]
  2866. [[package]]
  2867. name = "miniz_oxide"
  2868. version = "0.8.8"
  2869. source = "registry+https://github.com/rust-lang/crates.io-index"
  2870. checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
  2871. dependencies = [
  2872. "adler2",
  2873. "simd-adler32",
  2874. ]
  2875. [[package]]
  2876. name = "mio"
  2877. version = "1.0.3"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
  2880. dependencies = [
  2881. "libc",
  2882. "log",
  2883. "wasi 0.11.0+wasi-snapshot-preview1",
  2884. "windows-sys 0.52.0",
  2885. ]
  2886. [[package]]
  2887. name = "ndk-sys"
  2888. version = "0.2.2"
  2889. source = "registry+https://github.com/rust-lang/crates.io-index"
  2890. checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121"
  2891. [[package]]
  2892. name = "new_debug_unreachable"
  2893. version = "1.0.6"
  2894. source = "registry+https://github.com/rust-lang/crates.io-index"
  2895. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  2896. [[package]]
  2897. name = "nom"
  2898. version = "7.1.3"
  2899. source = "registry+https://github.com/rust-lang/crates.io-index"
  2900. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2901. dependencies = [
  2902. "memchr",
  2903. "minimal-lexical",
  2904. ]
  2905. [[package]]
  2906. name = "noop_proc_macro"
  2907. version = "0.3.0"
  2908. source = "registry+https://github.com/rust-lang/crates.io-index"
  2909. checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
  2910. [[package]]
  2911. name = "notify"
  2912. version = "8.0.0"
  2913. source = "registry+https://github.com/rust-lang/crates.io-index"
  2914. checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
  2915. dependencies = [
  2916. "bitflags 2.9.0",
  2917. "filetime",
  2918. "inotify",
  2919. "kqueue",
  2920. "libc",
  2921. "log",
  2922. "mio",
  2923. "notify-types",
  2924. "walkdir",
  2925. "windows-sys 0.59.0",
  2926. ]
  2927. [[package]]
  2928. name = "notify-types"
  2929. version = "2.0.0"
  2930. source = "registry+https://github.com/rust-lang/crates.io-index"
  2931. checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
  2932. [[package]]
  2933. name = "nu-ansi-term"
  2934. version = "0.46.0"
  2935. source = "registry+https://github.com/rust-lang/crates.io-index"
  2936. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2937. dependencies = [
  2938. "overload",
  2939. "winapi",
  2940. ]
  2941. [[package]]
  2942. name = "num"
  2943. version = "0.4.3"
  2944. source = "registry+https://github.com/rust-lang/crates.io-index"
  2945. checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
  2946. dependencies = [
  2947. "num-bigint",
  2948. "num-complex",
  2949. "num-integer",
  2950. "num-iter",
  2951. "num-rational",
  2952. "num-traits",
  2953. ]
  2954. [[package]]
  2955. name = "num-bigint"
  2956. version = "0.4.6"
  2957. source = "registry+https://github.com/rust-lang/crates.io-index"
  2958. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  2959. dependencies = [
  2960. "num-integer",
  2961. "num-traits",
  2962. ]
  2963. [[package]]
  2964. name = "num-bigint-dig"
  2965. version = "0.8.4"
  2966. source = "registry+https://github.com/rust-lang/crates.io-index"
  2967. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  2968. dependencies = [
  2969. "byteorder",
  2970. "lazy_static",
  2971. "libm",
  2972. "num-integer",
  2973. "num-iter",
  2974. "num-traits",
  2975. "rand 0.8.5",
  2976. "smallvec",
  2977. "zeroize",
  2978. ]
  2979. [[package]]
  2980. name = "num-complex"
  2981. version = "0.4.6"
  2982. source = "registry+https://github.com/rust-lang/crates.io-index"
  2983. checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
  2984. dependencies = [
  2985. "num-traits",
  2986. ]
  2987. [[package]]
  2988. name = "num-conv"
  2989. version = "0.1.0"
  2990. source = "registry+https://github.com/rust-lang/crates.io-index"
  2991. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  2992. [[package]]
  2993. name = "num-derive"
  2994. version = "0.4.2"
  2995. source = "registry+https://github.com/rust-lang/crates.io-index"
  2996. checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
  2997. dependencies = [
  2998. "proc-macro2",
  2999. "quote",
  3000. "syn 2.0.101",
  3001. ]
  3002. [[package]]
  3003. name = "num-integer"
  3004. version = "0.1.46"
  3005. source = "registry+https://github.com/rust-lang/crates.io-index"
  3006. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  3007. dependencies = [
  3008. "num-traits",
  3009. ]
  3010. [[package]]
  3011. name = "num-iter"
  3012. version = "0.1.45"
  3013. source = "registry+https://github.com/rust-lang/crates.io-index"
  3014. checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
  3015. dependencies = [
  3016. "autocfg",
  3017. "num-integer",
  3018. "num-traits",
  3019. ]
  3020. [[package]]
  3021. name = "num-rational"
  3022. version = "0.4.2"
  3023. source = "registry+https://github.com/rust-lang/crates.io-index"
  3024. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  3025. dependencies = [
  3026. "num-bigint",
  3027. "num-integer",
  3028. "num-traits",
  3029. ]
  3030. [[package]]
  3031. name = "num-traits"
  3032. version = "0.2.19"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  3035. dependencies = [
  3036. "autocfg",
  3037. "libm",
  3038. ]
  3039. [[package]]
  3040. name = "num_enum"
  3041. version = "0.7.3"
  3042. source = "registry+https://github.com/rust-lang/crates.io-index"
  3043. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  3044. dependencies = [
  3045. "num_enum_derive",
  3046. ]
  3047. [[package]]
  3048. name = "num_enum_derive"
  3049. version = "0.7.3"
  3050. source = "registry+https://github.com/rust-lang/crates.io-index"
  3051. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  3052. dependencies = [
  3053. "proc-macro-crate",
  3054. "proc-macro2",
  3055. "quote",
  3056. "syn 2.0.101",
  3057. ]
  3058. [[package]]
  3059. name = "num_threads"
  3060. version = "0.1.7"
  3061. source = "registry+https://github.com/rust-lang/crates.io-index"
  3062. checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
  3063. dependencies = [
  3064. "libc",
  3065. ]
  3066. [[package]]
  3067. name = "objc-rs"
  3068. version = "0.2.8"
  3069. source = "registry+https://github.com/rust-lang/crates.io-index"
  3070. checksum = "64a1e7069a2525126bf12a9f1f7916835fafade384fb27cabf698e745e2a1eb8"
  3071. dependencies = [
  3072. "malloc_buf",
  3073. ]
  3074. [[package]]
  3075. name = "objc2"
  3076. version = "0.6.1"
  3077. source = "registry+https://github.com/rust-lang/crates.io-index"
  3078. checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
  3079. dependencies = [
  3080. "objc2-encode",
  3081. ]
  3082. [[package]]
  3083. name = "objc2-core-foundation"
  3084. version = "0.3.1"
  3085. source = "registry+https://github.com/rust-lang/crates.io-index"
  3086. checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
  3087. dependencies = [
  3088. "bitflags 2.9.0",
  3089. ]
  3090. [[package]]
  3091. name = "objc2-core-text"
  3092. version = "0.3.1"
  3093. source = "registry+https://github.com/rust-lang/crates.io-index"
  3094. checksum = "3ba833d4a1cb1aac330f8c973fd92b6ff1858e4aef5cdd00a255eefb28022fb5"
  3095. dependencies = [
  3096. "bitflags 2.9.0",
  3097. "objc2-core-foundation",
  3098. ]
  3099. [[package]]
  3100. name = "objc2-encode"
  3101. version = "4.1.0"
  3102. source = "registry+https://github.com/rust-lang/crates.io-index"
  3103. checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
  3104. [[package]]
  3105. name = "objc2-foundation"
  3106. version = "0.3.1"
  3107. source = "registry+https://github.com/rust-lang/crates.io-index"
  3108. checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
  3109. dependencies = [
  3110. "bitflags 2.9.0",
  3111. "objc2",
  3112. ]
  3113. [[package]]
  3114. name = "oid-registry"
  3115. version = "0.8.1"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
  3118. dependencies = [
  3119. "asn1-rs",
  3120. ]
  3121. [[package]]
  3122. name = "once_cell"
  3123. version = "1.21.3"
  3124. source = "registry+https://github.com/rust-lang/crates.io-index"
  3125. checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
  3126. [[package]]
  3127. name = "oneshot-fused-workaround"
  3128. version = "0.2.1"
  3129. source = "registry+https://github.com/rust-lang/crates.io-index"
  3130. checksum = "8e2f833c92b3bb159ddee62e27d611e056cd89373b4ba7ba6df8bcd00acdf1b5"
  3131. dependencies = [
  3132. "futures",
  3133. ]
  3134. [[package]]
  3135. name = "oneshot-fused-workaround"
  3136. version = "0.2.1"
  3137. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  3138. dependencies = [
  3139. "futures",
  3140. ]
  3141. [[package]]
  3142. name = "opaque-debug"
  3143. version = "0.3.1"
  3144. source = "registry+https://github.com/rust-lang/crates.io-index"
  3145. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  3146. [[package]]
  3147. name = "option-ext"
  3148. version = "0.2.0"
  3149. source = "registry+https://github.com/rust-lang/crates.io-index"
  3150. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  3151. [[package]]
  3152. name = "ordered-float"
  3153. version = "2.10.1"
  3154. source = "registry+https://github.com/rust-lang/crates.io-index"
  3155. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  3156. dependencies = [
  3157. "num-traits",
  3158. ]
  3159. [[package]]
  3160. name = "os_str_bytes"
  3161. version = "6.6.1"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
  3164. dependencies = [
  3165. "memchr",
  3166. ]
  3167. [[package]]
  3168. name = "overload"
  3169. version = "0.1.1"
  3170. source = "registry+https://github.com/rust-lang/crates.io-index"
  3171. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3172. [[package]]
  3173. name = "p256"
  3174. version = "0.13.2"
  3175. source = "registry+https://github.com/rust-lang/crates.io-index"
  3176. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  3177. dependencies = [
  3178. "ecdsa",
  3179. "elliptic-curve",
  3180. "primeorder",
  3181. "sha2",
  3182. ]
  3183. [[package]]
  3184. name = "p384"
  3185. version = "0.13.1"
  3186. source = "registry+https://github.com/rust-lang/crates.io-index"
  3187. checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
  3188. dependencies = [
  3189. "ecdsa",
  3190. "elliptic-curve",
  3191. "primeorder",
  3192. "sha2",
  3193. ]
  3194. [[package]]
  3195. name = "p521"
  3196. version = "0.13.3"
  3197. source = "registry+https://github.com/rust-lang/crates.io-index"
  3198. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  3199. dependencies = [
  3200. "base16ct",
  3201. "ecdsa",
  3202. "elliptic-curve",
  3203. "primeorder",
  3204. "rand_core 0.6.4",
  3205. "sha2",
  3206. ]
  3207. [[package]]
  3208. name = "parking"
  3209. version = "2.2.1"
  3210. source = "registry+https://github.com/rust-lang/crates.io-index"
  3211. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  3212. [[package]]
  3213. name = "parking_lot"
  3214. version = "0.11.2"
  3215. source = "registry+https://github.com/rust-lang/crates.io-index"
  3216. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3217. dependencies = [
  3218. "instant",
  3219. "lock_api",
  3220. "parking_lot_core 0.8.6",
  3221. ]
  3222. [[package]]
  3223. name = "parking_lot"
  3224. version = "0.12.3"
  3225. source = "registry+https://github.com/rust-lang/crates.io-index"
  3226. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  3227. dependencies = [
  3228. "lock_api",
  3229. "parking_lot_core 0.9.10",
  3230. ]
  3231. [[package]]
  3232. name = "parking_lot_core"
  3233. version = "0.8.6"
  3234. source = "registry+https://github.com/rust-lang/crates.io-index"
  3235. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3236. dependencies = [
  3237. "cfg-if",
  3238. "instant",
  3239. "libc",
  3240. "redox_syscall 0.2.16",
  3241. "smallvec",
  3242. "winapi",
  3243. ]
  3244. [[package]]
  3245. name = "parking_lot_core"
  3246. version = "0.9.10"
  3247. source = "registry+https://github.com/rust-lang/crates.io-index"
  3248. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  3249. dependencies = [
  3250. "cfg-if",
  3251. "libc",
  3252. "redox_syscall 0.5.11",
  3253. "smallvec",
  3254. "windows-targets 0.52.6",
  3255. ]
  3256. [[package]]
  3257. name = "parley"
  3258. version = "0.3.0"
  3259. source = "git+https://github.com/linebender/parley.git#1390840a8c2973779f7eab09e3b0007de9dfc4e9"
  3260. dependencies = [
  3261. "fontique",
  3262. "hashbrown 0.15.3",
  3263. "peniko 0.3.2",
  3264. "skrifa",
  3265. "swash",
  3266. ]
  3267. [[package]]
  3268. name = "pasta_curves"
  3269. version = "0.5.1"
  3270. source = "registry+https://github.com/rust-lang/crates.io-index"
  3271. checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095"
  3272. dependencies = [
  3273. "blake2b_simd",
  3274. "ff",
  3275. "group",
  3276. "lazy_static",
  3277. "rand 0.8.5",
  3278. "static_assertions",
  3279. "subtle",
  3280. ]
  3281. [[package]]
  3282. name = "paste"
  3283. version = "1.0.15"
  3284. source = "registry+https://github.com/rust-lang/crates.io-index"
  3285. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  3286. [[package]]
  3287. name = "pem"
  3288. version = "3.0.5"
  3289. source = "registry+https://github.com/rust-lang/crates.io-index"
  3290. checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
  3291. dependencies = [
  3292. "base64",
  3293. "serde",
  3294. ]
  3295. [[package]]
  3296. name = "pem-rfc7468"
  3297. version = "0.7.0"
  3298. source = "registry+https://github.com/rust-lang/crates.io-index"
  3299. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  3300. dependencies = [
  3301. "base64ct",
  3302. ]
  3303. [[package]]
  3304. name = "peniko"
  3305. version = "0.3.2"
  3306. source = "registry+https://github.com/rust-lang/crates.io-index"
  3307. checksum = "5c1f594c54ccdc9bd177a726885f066bf28d20e17169e31a8a1456217b1316b4"
  3308. dependencies = [
  3309. "color 0.2.3",
  3310. "kurbo",
  3311. "peniko 0.4.0",
  3312. "smallvec",
  3313. ]
  3314. [[package]]
  3315. name = "peniko"
  3316. version = "0.4.0"
  3317. source = "registry+https://github.com/rust-lang/crates.io-index"
  3318. checksum = "1f9529efd019889b2a205193c14ffb6e2839b54ed9d2720674f10f4b04d87ac9"
  3319. dependencies = [
  3320. "color 0.3.0",
  3321. "kurbo",
  3322. "smallvec",
  3323. ]
  3324. [[package]]
  3325. name = "percent-encoding"
  3326. version = "2.3.1"
  3327. source = "registry+https://github.com/rust-lang/crates.io-index"
  3328. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  3329. [[package]]
  3330. name = "phf"
  3331. version = "0.11.3"
  3332. source = "registry+https://github.com/rust-lang/crates.io-index"
  3333. checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
  3334. dependencies = [
  3335. "phf_macros",
  3336. "phf_shared",
  3337. ]
  3338. [[package]]
  3339. name = "phf_generator"
  3340. version = "0.11.3"
  3341. source = "registry+https://github.com/rust-lang/crates.io-index"
  3342. checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
  3343. dependencies = [
  3344. "phf_shared",
  3345. "rand 0.8.5",
  3346. ]
  3347. [[package]]
  3348. name = "phf_macros"
  3349. version = "0.11.3"
  3350. source = "registry+https://github.com/rust-lang/crates.io-index"
  3351. checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
  3352. dependencies = [
  3353. "phf_generator",
  3354. "phf_shared",
  3355. "proc-macro2",
  3356. "quote",
  3357. "syn 2.0.101",
  3358. ]
  3359. [[package]]
  3360. name = "phf_shared"
  3361. version = "0.11.3"
  3362. source = "registry+https://github.com/rust-lang/crates.io-index"
  3363. checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
  3364. dependencies = [
  3365. "siphasher",
  3366. ]
  3367. [[package]]
  3368. name = "pin-project"
  3369. version = "1.1.10"
  3370. source = "registry+https://github.com/rust-lang/crates.io-index"
  3371. checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
  3372. dependencies = [
  3373. "pin-project-internal",
  3374. ]
  3375. [[package]]
  3376. name = "pin-project-internal"
  3377. version = "1.1.10"
  3378. source = "registry+https://github.com/rust-lang/crates.io-index"
  3379. checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
  3380. dependencies = [
  3381. "proc-macro2",
  3382. "quote",
  3383. "syn 2.0.101",
  3384. ]
  3385. [[package]]
  3386. name = "pin-project-lite"
  3387. version = "0.2.16"
  3388. source = "registry+https://github.com/rust-lang/crates.io-index"
  3389. checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
  3390. [[package]]
  3391. name = "pin-utils"
  3392. version = "0.1.0"
  3393. source = "registry+https://github.com/rust-lang/crates.io-index"
  3394. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3395. [[package]]
  3396. name = "piper"
  3397. version = "0.2.4"
  3398. source = "registry+https://github.com/rust-lang/crates.io-index"
  3399. checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
  3400. dependencies = [
  3401. "atomic-waker",
  3402. "fastrand",
  3403. "futures-io",
  3404. ]
  3405. [[package]]
  3406. name = "pkcs1"
  3407. version = "0.7.5"
  3408. source = "registry+https://github.com/rust-lang/crates.io-index"
  3409. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  3410. dependencies = [
  3411. "der",
  3412. "pkcs8",
  3413. "spki",
  3414. ]
  3415. [[package]]
  3416. name = "pkcs8"
  3417. version = "0.10.2"
  3418. source = "registry+https://github.com/rust-lang/crates.io-index"
  3419. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  3420. dependencies = [
  3421. "der",
  3422. "spki",
  3423. ]
  3424. [[package]]
  3425. name = "pkg-config"
  3426. version = "0.3.32"
  3427. source = "registry+https://github.com/rust-lang/crates.io-index"
  3428. checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
  3429. [[package]]
  3430. name = "png"
  3431. version = "0.17.16"
  3432. source = "registry+https://github.com/rust-lang/crates.io-index"
  3433. checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
  3434. dependencies = [
  3435. "bitflags 1.3.2",
  3436. "crc32fast",
  3437. "fdeflate",
  3438. "flate2",
  3439. "miniz_oxide",
  3440. ]
  3441. [[package]]
  3442. name = "polling"
  3443. version = "3.7.4"
  3444. source = "registry+https://github.com/rust-lang/crates.io-index"
  3445. checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
  3446. dependencies = [
  3447. "cfg-if",
  3448. "concurrent-queue",
  3449. "hermit-abi 0.4.0",
  3450. "pin-project-lite",
  3451. "rustix 0.38.44",
  3452. "tracing",
  3453. "windows-sys 0.59.0",
  3454. ]
  3455. [[package]]
  3456. name = "poly1305"
  3457. version = "0.8.0"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  3460. dependencies = [
  3461. "cpufeatures",
  3462. "opaque-debug",
  3463. "universal-hash",
  3464. ]
  3465. [[package]]
  3466. name = "postage"
  3467. version = "0.5.0"
  3468. source = "registry+https://github.com/rust-lang/crates.io-index"
  3469. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  3470. dependencies = [
  3471. "atomic 0.5.3",
  3472. "crossbeam-queue",
  3473. "futures",
  3474. "parking_lot 0.12.3",
  3475. "pin-project",
  3476. "static_assertions",
  3477. "thiserror 1.0.69",
  3478. ]
  3479. [[package]]
  3480. name = "powerfmt"
  3481. version = "0.2.0"
  3482. source = "registry+https://github.com/rust-lang/crates.io-index"
  3483. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  3484. [[package]]
  3485. name = "ppv-lite86"
  3486. version = "0.2.21"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  3489. dependencies = [
  3490. "zerocopy 0.8.25",
  3491. ]
  3492. [[package]]
  3493. name = "primeorder"
  3494. version = "0.13.6"
  3495. source = "registry+https://github.com/rust-lang/crates.io-index"
  3496. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  3497. dependencies = [
  3498. "elliptic-curve",
  3499. ]
  3500. [[package]]
  3501. name = "priority-queue"
  3502. version = "2.3.1"
  3503. source = "registry+https://github.com/rust-lang/crates.io-index"
  3504. checksum = "ef08705fa1589a1a59aa924ad77d14722cb0cd97b67dd5004ed5f4a4873fce8d"
  3505. dependencies = [
  3506. "autocfg",
  3507. "equivalent",
  3508. "indexmap 2.9.0",
  3509. ]
  3510. [[package]]
  3511. name = "proc-macro-crate"
  3512. version = "3.3.0"
  3513. source = "registry+https://github.com/rust-lang/crates.io-index"
  3514. checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
  3515. dependencies = [
  3516. "toml_edit",
  3517. ]
  3518. [[package]]
  3519. name = "proc-macro-error"
  3520. version = "1.0.4"
  3521. source = "registry+https://github.com/rust-lang/crates.io-index"
  3522. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3523. dependencies = [
  3524. "proc-macro-error-attr",
  3525. "proc-macro2",
  3526. "quote",
  3527. "syn 1.0.109",
  3528. "version_check",
  3529. ]
  3530. [[package]]
  3531. name = "proc-macro-error-attr"
  3532. version = "1.0.4"
  3533. source = "registry+https://github.com/rust-lang/crates.io-index"
  3534. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3535. dependencies = [
  3536. "proc-macro2",
  3537. "quote",
  3538. "version_check",
  3539. ]
  3540. [[package]]
  3541. name = "proc-macro2"
  3542. version = "1.0.95"
  3543. source = "registry+https://github.com/rust-lang/crates.io-index"
  3544. checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
  3545. dependencies = [
  3546. "unicode-ident",
  3547. ]
  3548. [[package]]
  3549. name = "profiling"
  3550. version = "1.0.16"
  3551. source = "registry+https://github.com/rust-lang/crates.io-index"
  3552. checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d"
  3553. dependencies = [
  3554. "profiling-procmacros",
  3555. ]
  3556. [[package]]
  3557. name = "profiling-procmacros"
  3558. version = "1.0.16"
  3559. source = "registry+https://github.com/rust-lang/crates.io-index"
  3560. checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30"
  3561. dependencies = [
  3562. "quote",
  3563. "syn 2.0.101",
  3564. ]
  3565. [[package]]
  3566. name = "pulldown-cmark"
  3567. version = "0.9.6"
  3568. source = "registry+https://github.com/rust-lang/crates.io-index"
  3569. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  3570. dependencies = [
  3571. "bitflags 2.9.0",
  3572. "memchr",
  3573. "unicase",
  3574. ]
  3575. [[package]]
  3576. name = "pwd-grp"
  3577. version = "1.0.0"
  3578. source = "registry+https://github.com/rust-lang/crates.io-index"
  3579. checksum = "b94fdf3867b7f2889a736f0022ea9386766280d2cca4bdbe41629ada9e4f3b8f"
  3580. dependencies = [
  3581. "derive-deftly 0.14.6",
  3582. "libc",
  3583. "paste",
  3584. "thiserror 1.0.69",
  3585. ]
  3586. [[package]]
  3587. name = "qoi"
  3588. version = "0.4.1"
  3589. source = "registry+https://github.com/rust-lang/crates.io-index"
  3590. checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
  3591. dependencies = [
  3592. "bytemuck",
  3593. ]
  3594. [[package]]
  3595. name = "quick-error"
  3596. version = "2.0.1"
  3597. source = "registry+https://github.com/rust-lang/crates.io-index"
  3598. checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
  3599. [[package]]
  3600. name = "quote"
  3601. version = "1.0.40"
  3602. source = "registry+https://github.com/rust-lang/crates.io-index"
  3603. checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
  3604. dependencies = [
  3605. "proc-macro2",
  3606. ]
  3607. [[package]]
  3608. name = "r-efi"
  3609. version = "5.2.0"
  3610. source = "registry+https://github.com/rust-lang/crates.io-index"
  3611. checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
  3612. [[package]]
  3613. name = "radium"
  3614. version = "0.7.0"
  3615. source = "registry+https://github.com/rust-lang/crates.io-index"
  3616. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  3617. [[package]]
  3618. name = "rand"
  3619. version = "0.8.5"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3622. dependencies = [
  3623. "libc",
  3624. "rand_chacha 0.3.1",
  3625. "rand_core 0.6.4",
  3626. ]
  3627. [[package]]
  3628. name = "rand"
  3629. version = "0.9.1"
  3630. source = "registry+https://github.com/rust-lang/crates.io-index"
  3631. checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
  3632. dependencies = [
  3633. "rand_chacha 0.9.0",
  3634. "rand_core 0.9.3",
  3635. ]
  3636. [[package]]
  3637. name = "rand_chacha"
  3638. version = "0.3.1"
  3639. source = "registry+https://github.com/rust-lang/crates.io-index"
  3640. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3641. dependencies = [
  3642. "ppv-lite86",
  3643. "rand_core 0.6.4",
  3644. ]
  3645. [[package]]
  3646. name = "rand_chacha"
  3647. version = "0.9.0"
  3648. source = "registry+https://github.com/rust-lang/crates.io-index"
  3649. checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  3650. dependencies = [
  3651. "ppv-lite86",
  3652. "rand_core 0.9.3",
  3653. ]
  3654. [[package]]
  3655. name = "rand_core"
  3656. version = "0.6.4"
  3657. source = "registry+https://github.com/rust-lang/crates.io-index"
  3658. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3659. dependencies = [
  3660. "getrandom 0.2.16",
  3661. ]
  3662. [[package]]
  3663. name = "rand_core"
  3664. version = "0.9.3"
  3665. source = "registry+https://github.com/rust-lang/crates.io-index"
  3666. checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
  3667. dependencies = [
  3668. "getrandom 0.3.2",
  3669. ]
  3670. [[package]]
  3671. name = "rand_jitter"
  3672. version = "0.5.0"
  3673. source = "registry+https://github.com/rust-lang/crates.io-index"
  3674. checksum = "b16df48f071248e67b8fc5e866d9448d45c08ad8b672baaaf796e2f15e606ff0"
  3675. dependencies = [
  3676. "libc",
  3677. "rand_core 0.9.3",
  3678. "winapi",
  3679. ]
  3680. [[package]]
  3681. name = "rav1e"
  3682. version = "0.7.1"
  3683. source = "registry+https://github.com/rust-lang/crates.io-index"
  3684. checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
  3685. dependencies = [
  3686. "arbitrary",
  3687. "arg_enum_proc_macro",
  3688. "arrayvec",
  3689. "av1-grain",
  3690. "bitstream-io",
  3691. "built",
  3692. "cfg-if",
  3693. "interpolate_name",
  3694. "itertools 0.12.1",
  3695. "libc",
  3696. "libfuzzer-sys",
  3697. "log",
  3698. "maybe-rayon",
  3699. "new_debug_unreachable",
  3700. "noop_proc_macro",
  3701. "num-derive",
  3702. "num-traits",
  3703. "once_cell",
  3704. "paste",
  3705. "profiling",
  3706. "rand 0.8.5",
  3707. "rand_chacha 0.3.1",
  3708. "simd_helpers",
  3709. "system-deps",
  3710. "thiserror 1.0.69",
  3711. "v_frame",
  3712. "wasm-bindgen",
  3713. ]
  3714. [[package]]
  3715. name = "ravif"
  3716. version = "0.11.12"
  3717. source = "registry+https://github.com/rust-lang/crates.io-index"
  3718. checksum = "d6a5f31fcf7500f9401fea858ea4ab5525c99f2322cfcee732c0e6c74208c0c6"
  3719. dependencies = [
  3720. "avif-serialize",
  3721. "imgref",
  3722. "loop9",
  3723. "quick-error",
  3724. "rav1e",
  3725. "rayon",
  3726. "rgb",
  3727. ]
  3728. [[package]]
  3729. name = "rayon"
  3730. version = "1.10.0"
  3731. source = "registry+https://github.com/rust-lang/crates.io-index"
  3732. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  3733. dependencies = [
  3734. "either",
  3735. "rayon-core",
  3736. ]
  3737. [[package]]
  3738. name = "rayon-core"
  3739. version = "1.12.1"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3742. dependencies = [
  3743. "crossbeam-deque",
  3744. "crossbeam-utils",
  3745. ]
  3746. [[package]]
  3747. name = "rcgen"
  3748. version = "0.12.1"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
  3751. dependencies = [
  3752. "pem",
  3753. "ring",
  3754. "time",
  3755. "yasna",
  3756. ]
  3757. [[package]]
  3758. name = "rdrand"
  3759. version = "0.8.3"
  3760. source = "registry+https://github.com/rust-lang/crates.io-index"
  3761. checksum = "d92195228612ac8eed47adbc2ed0f04e513a4ccb98175b6f2bd04d963b533655"
  3762. dependencies = [
  3763. "rand_core 0.6.4",
  3764. ]
  3765. [[package]]
  3766. name = "read-fonts"
  3767. version = "0.25.3"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "f6f9e8a4f503e5c8750e4cd3b32a4e090035c46374b305a15c70bad833dca05f"
  3770. dependencies = [
  3771. "bytemuck",
  3772. "font-types",
  3773. ]
  3774. [[package]]
  3775. name = "redox_syscall"
  3776. version = "0.2.16"
  3777. source = "registry+https://github.com/rust-lang/crates.io-index"
  3778. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3779. dependencies = [
  3780. "bitflags 1.3.2",
  3781. ]
  3782. [[package]]
  3783. name = "redox_syscall"
  3784. version = "0.5.11"
  3785. source = "registry+https://github.com/rust-lang/crates.io-index"
  3786. checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
  3787. dependencies = [
  3788. "bitflags 2.9.0",
  3789. ]
  3790. [[package]]
  3791. name = "redox_users"
  3792. version = "0.4.6"
  3793. source = "registry+https://github.com/rust-lang/crates.io-index"
  3794. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  3795. dependencies = [
  3796. "getrandom 0.2.16",
  3797. "libredox",
  3798. "thiserror 1.0.69",
  3799. ]
  3800. [[package]]
  3801. name = "redox_users"
  3802. version = "0.5.0"
  3803. source = "registry+https://github.com/rust-lang/crates.io-index"
  3804. checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
  3805. dependencies = [
  3806. "getrandom 0.2.16",
  3807. "libredox",
  3808. "thiserror 2.0.12",
  3809. ]
  3810. [[package]]
  3811. name = "regex"
  3812. version = "1.11.1"
  3813. source = "registry+https://github.com/rust-lang/crates.io-index"
  3814. checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
  3815. dependencies = [
  3816. "aho-corasick",
  3817. "memchr",
  3818. "regex-automata 0.4.9",
  3819. "regex-syntax 0.8.5",
  3820. ]
  3821. [[package]]
  3822. name = "regex-automata"
  3823. version = "0.1.10"
  3824. source = "registry+https://github.com/rust-lang/crates.io-index"
  3825. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3826. dependencies = [
  3827. "regex-syntax 0.6.29",
  3828. ]
  3829. [[package]]
  3830. name = "regex-automata"
  3831. version = "0.4.9"
  3832. source = "registry+https://github.com/rust-lang/crates.io-index"
  3833. checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
  3834. dependencies = [
  3835. "aho-corasick",
  3836. "memchr",
  3837. "regex-syntax 0.8.5",
  3838. ]
  3839. [[package]]
  3840. name = "regex-syntax"
  3841. version = "0.6.29"
  3842. source = "registry+https://github.com/rust-lang/crates.io-index"
  3843. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3844. [[package]]
  3845. name = "regex-syntax"
  3846. version = "0.8.5"
  3847. source = "registry+https://github.com/rust-lang/crates.io-index"
  3848. checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
  3849. [[package]]
  3850. name = "retry-error"
  3851. version = "0.6.3"
  3852. source = "registry+https://github.com/rust-lang/crates.io-index"
  3853. checksum = "9cd5db9deeb62617010191df02a0887c96cc15d91514d32c208d6b8f76b9f20e"
  3854. [[package]]
  3855. name = "retry-error"
  3856. version = "0.6.3"
  3857. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  3858. [[package]]
  3859. name = "rfc6979"
  3860. version = "0.4.0"
  3861. source = "registry+https://github.com/rust-lang/crates.io-index"
  3862. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  3863. dependencies = [
  3864. "hmac",
  3865. "subtle",
  3866. ]
  3867. [[package]]
  3868. name = "rgb"
  3869. version = "0.8.50"
  3870. source = "registry+https://github.com/rust-lang/crates.io-index"
  3871. checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
  3872. [[package]]
  3873. name = "ring"
  3874. version = "0.17.14"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  3877. dependencies = [
  3878. "cc",
  3879. "cfg-if",
  3880. "getrandom 0.2.16",
  3881. "libc",
  3882. "untrusted",
  3883. "windows-sys 0.52.0",
  3884. ]
  3885. [[package]]
  3886. name = "roxmltree"
  3887. version = "0.20.0"
  3888. source = "registry+https://github.com/rust-lang/crates.io-index"
  3889. checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
  3890. [[package]]
  3891. name = "rsa"
  3892. version = "0.9.8"
  3893. source = "registry+https://github.com/rust-lang/crates.io-index"
  3894. checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
  3895. dependencies = [
  3896. "const-oid",
  3897. "digest",
  3898. "num-bigint-dig",
  3899. "num-integer",
  3900. "num-traits",
  3901. "pkcs1",
  3902. "pkcs8",
  3903. "rand_core 0.6.4",
  3904. "sha2",
  3905. "signature",
  3906. "spki",
  3907. "subtle",
  3908. "zeroize",
  3909. ]
  3910. [[package]]
  3911. name = "rusqlite"
  3912. version = "0.32.1"
  3913. source = "registry+https://github.com/rust-lang/crates.io-index"
  3914. checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
  3915. dependencies = [
  3916. "bitflags 2.9.0",
  3917. "fallible-iterator",
  3918. "fallible-streaming-iterator",
  3919. "hashlink",
  3920. "libsqlite3-sys",
  3921. "smallvec",
  3922. "time",
  3923. ]
  3924. [[package]]
  3925. name = "rustc_version"
  3926. version = "0.4.1"
  3927. source = "registry+https://github.com/rust-lang/crates.io-index"
  3928. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  3929. dependencies = [
  3930. "semver",
  3931. ]
  3932. [[package]]
  3933. name = "rusticata-macros"
  3934. version = "4.1.0"
  3935. source = "registry+https://github.com/rust-lang/crates.io-index"
  3936. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  3937. dependencies = [
  3938. "nom",
  3939. ]
  3940. [[package]]
  3941. name = "rustix"
  3942. version = "0.38.44"
  3943. source = "registry+https://github.com/rust-lang/crates.io-index"
  3944. checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
  3945. dependencies = [
  3946. "bitflags 2.9.0",
  3947. "errno",
  3948. "libc",
  3949. "linux-raw-sys 0.4.15",
  3950. "windows-sys 0.59.0",
  3951. ]
  3952. [[package]]
  3953. name = "rustix"
  3954. version = "1.0.7"
  3955. source = "registry+https://github.com/rust-lang/crates.io-index"
  3956. checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
  3957. dependencies = [
  3958. "bitflags 2.9.0",
  3959. "errno",
  3960. "libc",
  3961. "linux-raw-sys 0.9.4",
  3962. "windows-sys 0.59.0",
  3963. ]
  3964. [[package]]
  3965. name = "rustls"
  3966. version = "0.23.26"
  3967. source = "registry+https://github.com/rust-lang/crates.io-index"
  3968. checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
  3969. dependencies = [
  3970. "log",
  3971. "once_cell",
  3972. "ring",
  3973. "rustls-pki-types",
  3974. "rustls-webpki",
  3975. "subtle",
  3976. "zeroize",
  3977. ]
  3978. [[package]]
  3979. name = "rustls-pemfile"
  3980. version = "2.2.0"
  3981. source = "registry+https://github.com/rust-lang/crates.io-index"
  3982. checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
  3983. dependencies = [
  3984. "rustls-pki-types",
  3985. ]
  3986. [[package]]
  3987. name = "rustls-pki-types"
  3988. version = "1.11.0"
  3989. source = "registry+https://github.com/rust-lang/crates.io-index"
  3990. checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
  3991. [[package]]
  3992. name = "rustls-webpki"
  3993. version = "0.103.1"
  3994. source = "registry+https://github.com/rust-lang/crates.io-index"
  3995. checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
  3996. dependencies = [
  3997. "ring",
  3998. "rustls-pki-types",
  3999. "untrusted",
  4000. ]
  4001. [[package]]
  4002. name = "rustversion"
  4003. version = "1.0.20"
  4004. source = "registry+https://github.com/rust-lang/crates.io-index"
  4005. checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
  4006. [[package]]
  4007. name = "ryu"
  4008. version = "1.0.20"
  4009. source = "registry+https://github.com/rust-lang/crates.io-index"
  4010. checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
  4011. [[package]]
  4012. name = "safelog"
  4013. version = "0.4.5"
  4014. source = "registry+https://github.com/rust-lang/crates.io-index"
  4015. checksum = "fba05ad561772e139a16a49088b2d332f659ef49953d56e09cf0f726784e5fdd"
  4016. dependencies = [
  4017. "derive_more",
  4018. "educe",
  4019. "either",
  4020. "fluid-let",
  4021. "thiserror 2.0.12",
  4022. ]
  4023. [[package]]
  4024. name = "same-file"
  4025. version = "1.0.6"
  4026. source = "registry+https://github.com/rust-lang/crates.io-index"
  4027. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  4028. dependencies = [
  4029. "winapi-util",
  4030. ]
  4031. [[package]]
  4032. name = "sanitize-filename"
  4033. version = "0.6.0"
  4034. source = "registry+https://github.com/rust-lang/crates.io-index"
  4035. checksum = "bc984f4f9ceb736a7bb755c3e3bd17dc56370af2600c9780dcc48c66453da34d"
  4036. dependencies = [
  4037. "regex",
  4038. ]
  4039. [[package]]
  4040. name = "scopeguard"
  4041. version = "1.2.0"
  4042. source = "registry+https://github.com/rust-lang/crates.io-index"
  4043. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4044. [[package]]
  4045. name = "sec1"
  4046. version = "0.7.3"
  4047. source = "registry+https://github.com/rust-lang/crates.io-index"
  4048. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  4049. dependencies = [
  4050. "base16ct",
  4051. "der",
  4052. "generic-array",
  4053. "pkcs8",
  4054. "subtle",
  4055. "zeroize",
  4056. ]
  4057. [[package]]
  4058. name = "semver"
  4059. version = "1.0.26"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
  4062. dependencies = [
  4063. "serde",
  4064. ]
  4065. [[package]]
  4066. name = "serde"
  4067. version = "1.0.219"
  4068. source = "registry+https://github.com/rust-lang/crates.io-index"
  4069. checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
  4070. dependencies = [
  4071. "serde_derive",
  4072. ]
  4073. [[package]]
  4074. name = "serde-value"
  4075. version = "0.7.0"
  4076. source = "registry+https://github.com/rust-lang/crates.io-index"
  4077. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  4078. dependencies = [
  4079. "ordered-float",
  4080. "serde",
  4081. ]
  4082. [[package]]
  4083. name = "serde_bytes"
  4084. version = "0.11.17"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96"
  4087. dependencies = [
  4088. "serde",
  4089. ]
  4090. [[package]]
  4091. name = "serde_derive"
  4092. version = "1.0.219"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
  4095. dependencies = [
  4096. "proc-macro2",
  4097. "quote",
  4098. "syn 2.0.101",
  4099. ]
  4100. [[package]]
  4101. name = "serde_ignored"
  4102. version = "0.1.11"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "566da67d80e92e009728b3731ff0e5360cb181432b8ca73ea30bb1d170700d76"
  4105. dependencies = [
  4106. "serde",
  4107. ]
  4108. [[package]]
  4109. name = "serde_json"
  4110. version = "1.0.140"
  4111. source = "registry+https://github.com/rust-lang/crates.io-index"
  4112. checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
  4113. dependencies = [
  4114. "itoa",
  4115. "memchr",
  4116. "ryu",
  4117. "serde",
  4118. ]
  4119. [[package]]
  4120. name = "serde_spanned"
  4121. version = "0.6.8"
  4122. source = "registry+https://github.com/rust-lang/crates.io-index"
  4123. checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
  4124. dependencies = [
  4125. "serde",
  4126. ]
  4127. [[package]]
  4128. name = "serde_with"
  4129. version = "3.12.0"
  4130. source = "registry+https://github.com/rust-lang/crates.io-index"
  4131. checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
  4132. dependencies = [
  4133. "base64",
  4134. "chrono",
  4135. "hex",
  4136. "indexmap 1.9.3",
  4137. "indexmap 2.9.0",
  4138. "serde",
  4139. "serde_derive",
  4140. "serde_json",
  4141. "serde_with_macros",
  4142. "time",
  4143. ]
  4144. [[package]]
  4145. name = "serde_with_macros"
  4146. version = "3.12.0"
  4147. source = "registry+https://github.com/rust-lang/crates.io-index"
  4148. checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
  4149. dependencies = [
  4150. "darling 0.20.11",
  4151. "proc-macro2",
  4152. "quote",
  4153. "syn 2.0.101",
  4154. ]
  4155. [[package]]
  4156. name = "sha1"
  4157. version = "0.10.6"
  4158. source = "registry+https://github.com/rust-lang/crates.io-index"
  4159. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  4160. dependencies = [
  4161. "cfg-if",
  4162. "cpufeatures",
  4163. "digest",
  4164. ]
  4165. [[package]]
  4166. name = "sha2"
  4167. version = "0.10.9"
  4168. source = "registry+https://github.com/rust-lang/crates.io-index"
  4169. checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
  4170. dependencies = [
  4171. "cfg-if",
  4172. "cpufeatures",
  4173. "digest",
  4174. ]
  4175. [[package]]
  4176. name = "sha3"
  4177. version = "0.10.8"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  4180. dependencies = [
  4181. "digest",
  4182. "keccak",
  4183. ]
  4184. [[package]]
  4185. name = "sharded-slab"
  4186. version = "0.1.7"
  4187. source = "registry+https://github.com/rust-lang/crates.io-index"
  4188. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  4189. dependencies = [
  4190. "lazy_static",
  4191. ]
  4192. [[package]]
  4193. name = "shellexpand"
  4194. version = "3.1.1"
  4195. source = "registry+https://github.com/rust-lang/crates.io-index"
  4196. checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
  4197. dependencies = [
  4198. "bstr",
  4199. "dirs 6.0.0",
  4200. "os_str_bytes",
  4201. ]
  4202. [[package]]
  4203. name = "shlex"
  4204. version = "1.3.0"
  4205. source = "registry+https://github.com/rust-lang/crates.io-index"
  4206. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  4207. [[package]]
  4208. name = "signal-hook-registry"
  4209. version = "1.4.5"
  4210. source = "registry+https://github.com/rust-lang/crates.io-index"
  4211. checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
  4212. dependencies = [
  4213. "libc",
  4214. ]
  4215. [[package]]
  4216. name = "signature"
  4217. version = "2.2.0"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  4220. dependencies = [
  4221. "digest",
  4222. "rand_core 0.6.4",
  4223. ]
  4224. [[package]]
  4225. name = "simd-adler32"
  4226. version = "0.3.7"
  4227. source = "registry+https://github.com/rust-lang/crates.io-index"
  4228. checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
  4229. [[package]]
  4230. name = "simd_helpers"
  4231. version = "0.1.0"
  4232. source = "registry+https://github.com/rust-lang/crates.io-index"
  4233. checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
  4234. dependencies = [
  4235. "quote",
  4236. ]
  4237. [[package]]
  4238. name = "simplelog"
  4239. version = "0.12.2"
  4240. source = "registry+https://github.com/rust-lang/crates.io-index"
  4241. checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
  4242. dependencies = [
  4243. "log",
  4244. "termcolor",
  4245. "time",
  4246. ]
  4247. [[package]]
  4248. name = "sinsemilla"
  4249. version = "0.1.0"
  4250. source = "registry+https://github.com/rust-lang/crates.io-index"
  4251. checksum = "3d268ae0ea06faafe1662e9967cd4f9022014f5eeb798e0c302c876df8b7af9c"
  4252. dependencies = [
  4253. "group",
  4254. "pasta_curves",
  4255. "subtle",
  4256. ]
  4257. [[package]]
  4258. name = "siphasher"
  4259. version = "1.0.1"
  4260. source = "registry+https://github.com/rust-lang/crates.io-index"
  4261. checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
  4262. [[package]]
  4263. name = "skeptic"
  4264. version = "0.13.7"
  4265. source = "registry+https://github.com/rust-lang/crates.io-index"
  4266. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  4267. dependencies = [
  4268. "bytecount",
  4269. "cargo_metadata",
  4270. "error-chain",
  4271. "glob",
  4272. "pulldown-cmark",
  4273. "tempfile",
  4274. "walkdir",
  4275. ]
  4276. [[package]]
  4277. name = "skrifa"
  4278. version = "0.26.6"
  4279. source = "registry+https://github.com/rust-lang/crates.io-index"
  4280. checksum = "8cc1aa86c26dbb1b63875a7180aa0819709b33348eb5b1491e4321fae388179d"
  4281. dependencies = [
  4282. "bytemuck",
  4283. "read-fonts",
  4284. ]
  4285. [[package]]
  4286. name = "slab"
  4287. version = "0.4.9"
  4288. source = "registry+https://github.com/rust-lang/crates.io-index"
  4289. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  4290. dependencies = [
  4291. "autocfg",
  4292. ]
  4293. [[package]]
  4294. name = "sled"
  4295. version = "0.34.7"
  4296. source = "registry+https://github.com/rust-lang/crates.io-index"
  4297. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4298. dependencies = [
  4299. "crc32fast",
  4300. "crossbeam-epoch",
  4301. "crossbeam-utils",
  4302. "fs2",
  4303. "fxhash",
  4304. "libc",
  4305. "log",
  4306. "parking_lot 0.11.2",
  4307. ]
  4308. [[package]]
  4309. name = "sled-overlay"
  4310. version = "0.1.7"
  4311. source = "registry+https://github.com/rust-lang/crates.io-index"
  4312. checksum = "8d1717bcb125ddaf5bc24609afa738639c5e0e1ac0004258e5b7506db5f51c94"
  4313. dependencies = [
  4314. "sled",
  4315. ]
  4316. [[package]]
  4317. name = "slotmap"
  4318. version = "1.0.7"
  4319. source = "registry+https://github.com/rust-lang/crates.io-index"
  4320. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  4321. dependencies = [
  4322. "serde",
  4323. "version_check",
  4324. ]
  4325. [[package]]
  4326. name = "slotmap-careful"
  4327. version = "0.2.3"
  4328. source = "registry+https://github.com/rust-lang/crates.io-index"
  4329. checksum = "186e34c0f5a636bb33bf53ca356933c525a7758ddddb8d93f98eff866db966d5"
  4330. dependencies = [
  4331. "paste",
  4332. "serde",
  4333. "slotmap",
  4334. "thiserror 2.0.12",
  4335. "void",
  4336. ]
  4337. [[package]]
  4338. name = "slotmap-careful"
  4339. version = "0.2.3"
  4340. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  4341. dependencies = [
  4342. "paste",
  4343. "serde",
  4344. "slotmap",
  4345. "thiserror 2.0.12",
  4346. "void",
  4347. ]
  4348. [[package]]
  4349. name = "smallvec"
  4350. version = "1.15.0"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
  4353. [[package]]
  4354. name = "smol"
  4355. version = "2.0.2"
  4356. source = "registry+https://github.com/rust-lang/crates.io-index"
  4357. checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f"
  4358. dependencies = [
  4359. "async-channel 2.3.1",
  4360. "async-executor",
  4361. "async-fs",
  4362. "async-io",
  4363. "async-lock",
  4364. "async-net",
  4365. "async-process",
  4366. "blocking",
  4367. "futures-lite",
  4368. ]
  4369. [[package]]
  4370. name = "socket2"
  4371. version = "0.5.9"
  4372. source = "registry+https://github.com/rust-lang/crates.io-index"
  4373. checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
  4374. dependencies = [
  4375. "libc",
  4376. "windows-sys 0.52.0",
  4377. ]
  4378. [[package]]
  4379. name = "spin"
  4380. version = "0.9.8"
  4381. source = "registry+https://github.com/rust-lang/crates.io-index"
  4382. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  4383. [[package]]
  4384. name = "spki"
  4385. version = "0.7.3"
  4386. source = "registry+https://github.com/rust-lang/crates.io-index"
  4387. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  4388. dependencies = [
  4389. "base64ct",
  4390. "der",
  4391. ]
  4392. [[package]]
  4393. name = "ssh-cipher"
  4394. version = "0.2.0"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  4397. dependencies = [
  4398. "cipher",
  4399. "ssh-encoding",
  4400. ]
  4401. [[package]]
  4402. name = "ssh-encoding"
  4403. version = "0.2.0"
  4404. source = "registry+https://github.com/rust-lang/crates.io-index"
  4405. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  4406. dependencies = [
  4407. "base64ct",
  4408. "pem-rfc7468",
  4409. "sha2",
  4410. ]
  4411. [[package]]
  4412. name = "ssh-key"
  4413. version = "0.6.7"
  4414. source = "registry+https://github.com/rust-lang/crates.io-index"
  4415. checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
  4416. dependencies = [
  4417. "p256",
  4418. "p384",
  4419. "p521",
  4420. "rand_core 0.6.4",
  4421. "rsa",
  4422. "sec1",
  4423. "sha2",
  4424. "signature",
  4425. "ssh-cipher",
  4426. "ssh-encoding",
  4427. "subtle",
  4428. "zeroize",
  4429. ]
  4430. [[package]]
  4431. name = "stable_deref_trait"
  4432. version = "1.2.0"
  4433. source = "registry+https://github.com/rust-lang/crates.io-index"
  4434. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  4435. [[package]]
  4436. name = "static_assertions"
  4437. version = "1.1.0"
  4438. source = "registry+https://github.com/rust-lang/crates.io-index"
  4439. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4440. [[package]]
  4441. name = "strsim"
  4442. version = "0.8.0"
  4443. source = "registry+https://github.com/rust-lang/crates.io-index"
  4444. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  4445. [[package]]
  4446. name = "strsim"
  4447. version = "0.10.0"
  4448. source = "registry+https://github.com/rust-lang/crates.io-index"
  4449. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  4450. [[package]]
  4451. name = "strsim"
  4452. version = "0.11.1"
  4453. source = "registry+https://github.com/rust-lang/crates.io-index"
  4454. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  4455. [[package]]
  4456. name = "structopt"
  4457. version = "0.3.26"
  4458. source = "registry+https://github.com/rust-lang/crates.io-index"
  4459. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  4460. dependencies = [
  4461. "clap",
  4462. "lazy_static",
  4463. "structopt-derive",
  4464. ]
  4465. [[package]]
  4466. name = "structopt-derive"
  4467. version = "0.4.18"
  4468. source = "registry+https://github.com/rust-lang/crates.io-index"
  4469. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  4470. dependencies = [
  4471. "heck 0.3.3",
  4472. "proc-macro-error",
  4473. "proc-macro2",
  4474. "quote",
  4475. "syn 1.0.109",
  4476. ]
  4477. [[package]]
  4478. name = "structopt-toml"
  4479. version = "0.5.1"
  4480. source = "registry+https://github.com/rust-lang/crates.io-index"
  4481. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  4482. dependencies = [
  4483. "anyhow",
  4484. "clap",
  4485. "serde",
  4486. "serde_derive",
  4487. "skeptic",
  4488. "structopt",
  4489. "structopt-toml-derive",
  4490. "toml 0.5.11",
  4491. ]
  4492. [[package]]
  4493. name = "structopt-toml-derive"
  4494. version = "0.5.1"
  4495. source = "registry+https://github.com/rust-lang/crates.io-index"
  4496. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  4497. dependencies = [
  4498. "heck 0.4.1",
  4499. "proc-macro2",
  4500. "quote",
  4501. "syn 1.0.109",
  4502. ]
  4503. [[package]]
  4504. name = "strum"
  4505. version = "0.27.1"
  4506. source = "registry+https://github.com/rust-lang/crates.io-index"
  4507. checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
  4508. dependencies = [
  4509. "strum_macros",
  4510. ]
  4511. [[package]]
  4512. name = "strum_macros"
  4513. version = "0.27.1"
  4514. source = "registry+https://github.com/rust-lang/crates.io-index"
  4515. checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
  4516. dependencies = [
  4517. "heck 0.5.0",
  4518. "proc-macro2",
  4519. "quote",
  4520. "rustversion",
  4521. "syn 2.0.101",
  4522. ]
  4523. [[package]]
  4524. name = "subtle"
  4525. version = "2.6.1"
  4526. source = "registry+https://github.com/rust-lang/crates.io-index"
  4527. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  4528. [[package]]
  4529. name = "swash"
  4530. version = "0.2.2"
  4531. source = "git+https://github.com/valadaptive/swash?branch=tight-bounds#2884db1436e05256246047dc4a41b970afb7a74a"
  4532. dependencies = [
  4533. "skrifa",
  4534. "yazi",
  4535. "zeno",
  4536. ]
  4537. [[package]]
  4538. name = "syn"
  4539. version = "1.0.109"
  4540. source = "registry+https://github.com/rust-lang/crates.io-index"
  4541. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4542. dependencies = [
  4543. "proc-macro2",
  4544. "quote",
  4545. "unicode-ident",
  4546. ]
  4547. [[package]]
  4548. name = "syn"
  4549. version = "2.0.101"
  4550. source = "registry+https://github.com/rust-lang/crates.io-index"
  4551. checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
  4552. dependencies = [
  4553. "proc-macro2",
  4554. "quote",
  4555. "unicode-ident",
  4556. ]
  4557. [[package]]
  4558. name = "synstructure"
  4559. version = "0.13.2"
  4560. source = "registry+https://github.com/rust-lang/crates.io-index"
  4561. checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  4562. dependencies = [
  4563. "proc-macro2",
  4564. "quote",
  4565. "syn 2.0.101",
  4566. ]
  4567. [[package]]
  4568. name = "system-deps"
  4569. version = "6.2.2"
  4570. source = "registry+https://github.com/rust-lang/crates.io-index"
  4571. checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
  4572. dependencies = [
  4573. "cfg-expr",
  4574. "heck 0.5.0",
  4575. "pkg-config",
  4576. "toml 0.8.22",
  4577. "version-compare",
  4578. ]
  4579. [[package]]
  4580. name = "tap"
  4581. version = "1.0.1"
  4582. source = "registry+https://github.com/rust-lang/crates.io-index"
  4583. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  4584. [[package]]
  4585. name = "target-lexicon"
  4586. version = "0.12.16"
  4587. source = "registry+https://github.com/rust-lang/crates.io-index"
  4588. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  4589. [[package]]
  4590. name = "tempfile"
  4591. version = "3.19.1"
  4592. source = "registry+https://github.com/rust-lang/crates.io-index"
  4593. checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
  4594. dependencies = [
  4595. "fastrand",
  4596. "getrandom 0.3.2",
  4597. "once_cell",
  4598. "rustix 1.0.7",
  4599. "windows-sys 0.59.0",
  4600. ]
  4601. [[package]]
  4602. name = "termcolor"
  4603. version = "1.4.1"
  4604. source = "registry+https://github.com/rust-lang/crates.io-index"
  4605. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  4606. dependencies = [
  4607. "winapi-util",
  4608. ]
  4609. [[package]]
  4610. name = "textwrap"
  4611. version = "0.11.0"
  4612. source = "registry+https://github.com/rust-lang/crates.io-index"
  4613. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  4614. dependencies = [
  4615. "unicode-width",
  4616. ]
  4617. [[package]]
  4618. name = "thiserror"
  4619. version = "1.0.69"
  4620. source = "registry+https://github.com/rust-lang/crates.io-index"
  4621. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  4622. dependencies = [
  4623. "thiserror-impl 1.0.69",
  4624. ]
  4625. [[package]]
  4626. name = "thiserror"
  4627. version = "2.0.12"
  4628. source = "registry+https://github.com/rust-lang/crates.io-index"
  4629. checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
  4630. dependencies = [
  4631. "thiserror-impl 2.0.12",
  4632. ]
  4633. [[package]]
  4634. name = "thiserror-impl"
  4635. version = "1.0.69"
  4636. source = "registry+https://github.com/rust-lang/crates.io-index"
  4637. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  4638. dependencies = [
  4639. "proc-macro2",
  4640. "quote",
  4641. "syn 2.0.101",
  4642. ]
  4643. [[package]]
  4644. name = "thiserror-impl"
  4645. version = "2.0.12"
  4646. source = "registry+https://github.com/rust-lang/crates.io-index"
  4647. checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
  4648. dependencies = [
  4649. "proc-macro2",
  4650. "quote",
  4651. "syn 2.0.101",
  4652. ]
  4653. [[package]]
  4654. name = "thread_local"
  4655. version = "1.1.8"
  4656. source = "registry+https://github.com/rust-lang/crates.io-index"
  4657. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  4658. dependencies = [
  4659. "cfg-if",
  4660. "once_cell",
  4661. ]
  4662. [[package]]
  4663. name = "tiff"
  4664. version = "0.9.1"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
  4667. dependencies = [
  4668. "flate2",
  4669. "jpeg-decoder",
  4670. "weezl",
  4671. ]
  4672. [[package]]
  4673. name = "time"
  4674. version = "0.3.41"
  4675. source = "registry+https://github.com/rust-lang/crates.io-index"
  4676. checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
  4677. dependencies = [
  4678. "deranged",
  4679. "itoa",
  4680. "libc",
  4681. "num-conv",
  4682. "num_threads",
  4683. "powerfmt",
  4684. "serde",
  4685. "time-core",
  4686. "time-macros",
  4687. ]
  4688. [[package]]
  4689. name = "time-core"
  4690. version = "0.1.4"
  4691. source = "registry+https://github.com/rust-lang/crates.io-index"
  4692. checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
  4693. [[package]]
  4694. name = "time-macros"
  4695. version = "0.2.22"
  4696. source = "registry+https://github.com/rust-lang/crates.io-index"
  4697. checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
  4698. dependencies = [
  4699. "num-conv",
  4700. "time-core",
  4701. ]
  4702. [[package]]
  4703. name = "tinyjson"
  4704. version = "2.5.1"
  4705. source = "registry+https://github.com/rust-lang/crates.io-index"
  4706. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  4707. [[package]]
  4708. name = "tinystr"
  4709. version = "0.7.6"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
  4712. dependencies = [
  4713. "displaydoc",
  4714. "zerovec 0.10.4",
  4715. ]
  4716. [[package]]
  4717. name = "tinystr"
  4718. version = "0.8.1"
  4719. source = "registry+https://github.com/rust-lang/crates.io-index"
  4720. checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
  4721. dependencies = [
  4722. "displaydoc",
  4723. "zerovec 0.11.1",
  4724. ]
  4725. [[package]]
  4726. name = "tinyvec"
  4727. version = "1.9.0"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
  4730. dependencies = [
  4731. "tinyvec_macros",
  4732. ]
  4733. [[package]]
  4734. name = "tinyvec_macros"
  4735. version = "0.1.1"
  4736. source = "registry+https://github.com/rust-lang/crates.io-index"
  4737. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4738. [[package]]
  4739. name = "toml"
  4740. version = "0.5.11"
  4741. source = "registry+https://github.com/rust-lang/crates.io-index"
  4742. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4743. dependencies = [
  4744. "serde",
  4745. ]
  4746. [[package]]
  4747. name = "toml"
  4748. version = "0.8.22"
  4749. source = "registry+https://github.com/rust-lang/crates.io-index"
  4750. checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
  4751. dependencies = [
  4752. "serde",
  4753. "serde_spanned",
  4754. "toml_datetime",
  4755. "toml_edit",
  4756. ]
  4757. [[package]]
  4758. name = "toml_datetime"
  4759. version = "0.6.9"
  4760. source = "registry+https://github.com/rust-lang/crates.io-index"
  4761. checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
  4762. dependencies = [
  4763. "serde",
  4764. ]
  4765. [[package]]
  4766. name = "toml_edit"
  4767. version = "0.22.26"
  4768. source = "registry+https://github.com/rust-lang/crates.io-index"
  4769. checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
  4770. dependencies = [
  4771. "indexmap 2.9.0",
  4772. "serde",
  4773. "serde_spanned",
  4774. "toml_datetime",
  4775. "toml_write",
  4776. "winnow",
  4777. ]
  4778. [[package]]
  4779. name = "toml_write"
  4780. version = "0.1.1"
  4781. source = "registry+https://github.com/rust-lang/crates.io-index"
  4782. checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
  4783. [[package]]
  4784. name = "tor-async-utils"
  4785. version = "0.29.0"
  4786. source = "registry+https://github.com/rust-lang/crates.io-index"
  4787. checksum = "d8af0bcb05f22eea7c8d4015082019963c592e300de1c692af6c3c418c080eb0"
  4788. dependencies = [
  4789. "derive-deftly 1.0.1",
  4790. "educe",
  4791. "futures",
  4792. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4793. "pin-project",
  4794. "postage",
  4795. "thiserror 2.0.12",
  4796. "void",
  4797. ]
  4798. [[package]]
  4799. name = "tor-basic-utils"
  4800. version = "0.29.0"
  4801. source = "registry+https://github.com/rust-lang/crates.io-index"
  4802. checksum = "182be53685e694cf90ce7e696e116cc0b01434522f17f12ce374b51f7a40bfc9"
  4803. dependencies = [
  4804. "derive_more",
  4805. "hex",
  4806. "itertools 0.14.0",
  4807. "libc",
  4808. "paste",
  4809. "rand 0.9.1",
  4810. "rand_chacha 0.9.0",
  4811. "serde",
  4812. "slab",
  4813. "smallvec",
  4814. "thiserror 2.0.12",
  4815. ]
  4816. [[package]]
  4817. name = "tor-bytes"
  4818. version = "0.29.0"
  4819. source = "registry+https://github.com/rust-lang/crates.io-index"
  4820. checksum = "ea40884e6a999280e985e758a230366c9e976da70df899574751151631b4c864"
  4821. dependencies = [
  4822. "bytes",
  4823. "derive-deftly 1.0.1",
  4824. "digest",
  4825. "educe",
  4826. "getrandom 0.3.2",
  4827. "safelog",
  4828. "thiserror 2.0.12",
  4829. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4830. "tor-llcrypto",
  4831. "zeroize",
  4832. ]
  4833. [[package]]
  4834. name = "tor-cell"
  4835. version = "0.29.0"
  4836. source = "registry+https://github.com/rust-lang/crates.io-index"
  4837. checksum = "fcda4d1dcfdd9a8954a3ff569f3ab3217bb3686c90d3acf5fb3f9576cae47431"
  4838. dependencies = [
  4839. "amplify",
  4840. "bitflags 2.9.0",
  4841. "bytes",
  4842. "caret",
  4843. "derive-deftly 1.0.1",
  4844. "derive_more",
  4845. "educe",
  4846. "paste",
  4847. "rand 0.9.1",
  4848. "smallvec",
  4849. "thiserror 2.0.12",
  4850. "tor-basic-utils",
  4851. "tor-bytes",
  4852. "tor-cert",
  4853. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4854. "tor-hscrypto",
  4855. "tor-linkspec",
  4856. "tor-llcrypto",
  4857. "tor-memquota",
  4858. "tor-units",
  4859. "void",
  4860. ]
  4861. [[package]]
  4862. name = "tor-cert"
  4863. version = "0.29.0"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "7042c22afc733f256947042bcaaffc28c6ec51d53cb6ecef6d5b1ad6fd3989bd"
  4866. dependencies = [
  4867. "caret",
  4868. "derive_builder_fork_arti",
  4869. "derive_more",
  4870. "digest",
  4871. "thiserror 2.0.12",
  4872. "tor-bytes",
  4873. "tor-checkable",
  4874. "tor-llcrypto",
  4875. ]
  4876. [[package]]
  4877. name = "tor-chanmgr"
  4878. version = "0.29.0"
  4879. source = "registry+https://github.com/rust-lang/crates.io-index"
  4880. checksum = "cf904041fcecc51eb6b4d2b18f6b7265b474b7fe8a3a6f5e9189daa357dbb7b0"
  4881. dependencies = [
  4882. "async-trait",
  4883. "caret",
  4884. "derive_builder_fork_arti",
  4885. "derive_more",
  4886. "educe",
  4887. "futures",
  4888. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4889. "postage",
  4890. "rand 0.9.1",
  4891. "safelog",
  4892. "serde",
  4893. "thiserror 2.0.12",
  4894. "tor-async-utils",
  4895. "tor-basic-utils",
  4896. "tor-cell",
  4897. "tor-config",
  4898. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4899. "tor-linkspec",
  4900. "tor-llcrypto",
  4901. "tor-memquota",
  4902. "tor-netdir",
  4903. "tor-proto",
  4904. "tor-rtcompat",
  4905. "tor-socksproto",
  4906. "tor-units",
  4907. "tracing",
  4908. "void",
  4909. ]
  4910. [[package]]
  4911. name = "tor-checkable"
  4912. version = "0.29.0"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "b3f44a30f1c7c924bfdc9e358ed197ed3bd0a6fa9b7a3271d6dc367a5e08f3fd"
  4915. dependencies = [
  4916. "humantime",
  4917. "signature",
  4918. "thiserror 2.0.12",
  4919. "tor-llcrypto",
  4920. ]
  4921. [[package]]
  4922. name = "tor-circmgr"
  4923. version = "0.29.0"
  4924. source = "registry+https://github.com/rust-lang/crates.io-index"
  4925. checksum = "e36a9a7d2c457482ce17ba086c623ddc7109fb9f2143170d65cbefc0ee3474ef"
  4926. dependencies = [
  4927. "amplify",
  4928. "async-trait",
  4929. "bounded-vec-deque",
  4930. "cfg-if",
  4931. "derive_builder_fork_arti",
  4932. "derive_more",
  4933. "downcast-rs",
  4934. "dyn-clone",
  4935. "educe",
  4936. "futures",
  4937. "humantime-serde",
  4938. "itertools 0.14.0",
  4939. "once_cell",
  4940. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  4941. "pin-project",
  4942. "rand 0.9.1",
  4943. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  4944. "safelog",
  4945. "serde",
  4946. "static_assertions",
  4947. "thiserror 2.0.12",
  4948. "tor-async-utils",
  4949. "tor-basic-utils",
  4950. "tor-chanmgr",
  4951. "tor-config",
  4952. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4953. "tor-guardmgr",
  4954. "tor-linkspec",
  4955. "tor-memquota",
  4956. "tor-netdir",
  4957. "tor-netdoc",
  4958. "tor-persist",
  4959. "tor-proto",
  4960. "tor-protover",
  4961. "tor-relay-selection",
  4962. "tor-rtcompat",
  4963. "tor-units",
  4964. "tracing",
  4965. "void",
  4966. "weak-table",
  4967. ]
  4968. [[package]]
  4969. name = "tor-config"
  4970. version = "0.29.0"
  4971. source = "registry+https://github.com/rust-lang/crates.io-index"
  4972. checksum = "74c04314fef18dd6ea027c4dbe64e34bd9b5f2c900fa6b8fe331b68ced55591d"
  4973. dependencies = [
  4974. "amplify",
  4975. "cfg-if",
  4976. "derive-deftly 1.0.1",
  4977. "derive_builder_fork_arti",
  4978. "educe",
  4979. "either",
  4980. "figment",
  4981. "fs-mistrust",
  4982. "futures",
  4983. "itertools 0.14.0",
  4984. "notify",
  4985. "once_cell",
  4986. "paste",
  4987. "postage",
  4988. "regex",
  4989. "serde",
  4990. "serde-value",
  4991. "serde_ignored",
  4992. "strum",
  4993. "thiserror 2.0.12",
  4994. "toml 0.8.22",
  4995. "tor-basic-utils",
  4996. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  4997. "tor-rtcompat",
  4998. "tracing",
  4999. "void",
  5000. ]
  5001. [[package]]
  5002. name = "tor-config-path"
  5003. version = "0.29.0"
  5004. source = "registry+https://github.com/rust-lang/crates.io-index"
  5005. checksum = "6162c71d9cdab7a8cd249be2c0c922f6a4ac926fc32d03b320696f426260d9cc"
  5006. dependencies = [
  5007. "directories",
  5008. "once_cell",
  5009. "serde",
  5010. "shellexpand",
  5011. "thiserror 2.0.12",
  5012. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5013. "tor-general-addr 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5014. ]
  5015. [[package]]
  5016. name = "tor-consdiff"
  5017. version = "0.29.0"
  5018. source = "registry+https://github.com/rust-lang/crates.io-index"
  5019. checksum = "a4a0b9697be65ba2e9dae30f536e5dff4d3489d30ea1f5df862afacb91dfdca9"
  5020. dependencies = [
  5021. "digest",
  5022. "hex",
  5023. "thiserror 2.0.12",
  5024. "tor-llcrypto",
  5025. ]
  5026. [[package]]
  5027. name = "tor-dirclient"
  5028. version = "0.29.0"
  5029. source = "registry+https://github.com/rust-lang/crates.io-index"
  5030. checksum = "b4416c5031e75625b620c2a56e1051993076b3e8574f79ec0251e2b736da2f1e"
  5031. dependencies = [
  5032. "async-compression",
  5033. "base64ct",
  5034. "derive_more",
  5035. "futures",
  5036. "hex",
  5037. "http",
  5038. "httparse",
  5039. "httpdate",
  5040. "itertools 0.14.0",
  5041. "memchr",
  5042. "thiserror 2.0.12",
  5043. "tor-circmgr",
  5044. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5045. "tor-hscrypto",
  5046. "tor-linkspec",
  5047. "tor-llcrypto",
  5048. "tor-netdoc",
  5049. "tor-proto",
  5050. "tor-rtcompat",
  5051. "tracing",
  5052. ]
  5053. [[package]]
  5054. name = "tor-dirmgr"
  5055. version = "0.29.0"
  5056. source = "registry+https://github.com/rust-lang/crates.io-index"
  5057. checksum = "97978e4080932866d8a8cae042fd20a72f3fa91095834dced74bd4f6ceaa4180"
  5058. dependencies = [
  5059. "async-trait",
  5060. "base64ct",
  5061. "derive_builder_fork_arti",
  5062. "derive_more",
  5063. "digest",
  5064. "educe",
  5065. "event-listener 5.4.0",
  5066. "fs-mistrust",
  5067. "fslock",
  5068. "futures",
  5069. "hex",
  5070. "humantime",
  5071. "humantime-serde",
  5072. "itertools 0.14.0",
  5073. "memmap2",
  5074. "once_cell",
  5075. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5076. "paste",
  5077. "postage",
  5078. "rand 0.9.1",
  5079. "rusqlite",
  5080. "safelog",
  5081. "scopeguard",
  5082. "serde",
  5083. "signature",
  5084. "static_assertions",
  5085. "strum",
  5086. "thiserror 2.0.12",
  5087. "time",
  5088. "tor-async-utils",
  5089. "tor-basic-utils",
  5090. "tor-checkable",
  5091. "tor-circmgr",
  5092. "tor-config",
  5093. "tor-consdiff",
  5094. "tor-dirclient",
  5095. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5096. "tor-guardmgr",
  5097. "tor-llcrypto",
  5098. "tor-netdir",
  5099. "tor-netdoc",
  5100. "tor-persist",
  5101. "tor-proto",
  5102. "tor-rtcompat",
  5103. "tracing",
  5104. ]
  5105. [[package]]
  5106. name = "tor-error"
  5107. version = "0.29.0"
  5108. source = "registry+https://github.com/rust-lang/crates.io-index"
  5109. checksum = "e6488b3bf0c82b1880505ea060bfa8dc24d380e16efe354e3449a283f4212b73"
  5110. dependencies = [
  5111. "derive_more",
  5112. "futures",
  5113. "once_cell",
  5114. "paste",
  5115. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5116. "static_assertions",
  5117. "strum",
  5118. "thiserror 2.0.12",
  5119. "tracing",
  5120. "void",
  5121. ]
  5122. [[package]]
  5123. name = "tor-error"
  5124. version = "0.29.0"
  5125. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5126. dependencies = [
  5127. "derive_more",
  5128. "futures",
  5129. "once_cell",
  5130. "paste",
  5131. "retry-error 0.6.3 (git+https://github.com/narodnik/arti)",
  5132. "static_assertions",
  5133. "strum",
  5134. "thiserror 2.0.12",
  5135. "tracing",
  5136. "void",
  5137. ]
  5138. [[package]]
  5139. name = "tor-general-addr"
  5140. version = "0.29.0"
  5141. source = "registry+https://github.com/rust-lang/crates.io-index"
  5142. checksum = "7551ba9b4449958e5f072d85501e9f2c32ae8002f438c5383465c2369e642813"
  5143. dependencies = [
  5144. "derive_more",
  5145. "thiserror 2.0.12",
  5146. "void",
  5147. ]
  5148. [[package]]
  5149. name = "tor-general-addr"
  5150. version = "0.29.0"
  5151. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5152. dependencies = [
  5153. "derive_more",
  5154. "thiserror 2.0.12",
  5155. "void",
  5156. ]
  5157. [[package]]
  5158. name = "tor-guardmgr"
  5159. version = "0.29.0"
  5160. source = "registry+https://github.com/rust-lang/crates.io-index"
  5161. checksum = "c1d0877a98542eaa2b9f669336c9132fe35cb8ee530af94ad50bce407af23088"
  5162. dependencies = [
  5163. "amplify",
  5164. "base64ct",
  5165. "derive-deftly 1.0.1",
  5166. "derive_builder_fork_arti",
  5167. "derive_more",
  5168. "dyn-clone",
  5169. "educe",
  5170. "futures",
  5171. "humantime",
  5172. "humantime-serde",
  5173. "itertools 0.14.0",
  5174. "num_enum",
  5175. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5176. "pin-project",
  5177. "postage",
  5178. "rand 0.9.1",
  5179. "safelog",
  5180. "serde",
  5181. "strum",
  5182. "thiserror 2.0.12",
  5183. "tor-async-utils",
  5184. "tor-basic-utils",
  5185. "tor-config",
  5186. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5187. "tor-linkspec",
  5188. "tor-llcrypto",
  5189. "tor-netdir",
  5190. "tor-netdoc",
  5191. "tor-persist",
  5192. "tor-proto",
  5193. "tor-relay-selection",
  5194. "tor-rtcompat",
  5195. "tor-units",
  5196. "tracing",
  5197. ]
  5198. [[package]]
  5199. name = "tor-hsclient"
  5200. version = "0.29.0"
  5201. source = "registry+https://github.com/rust-lang/crates.io-index"
  5202. checksum = "a6fc936ee17c88f83bab968c21e6f631904fc441cd01e1d0b219b12668134dbe"
  5203. dependencies = [
  5204. "async-trait",
  5205. "derive-deftly 1.0.1",
  5206. "derive_more",
  5207. "educe",
  5208. "either",
  5209. "futures",
  5210. "itertools 0.14.0",
  5211. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5212. "postage",
  5213. "rand 0.9.1",
  5214. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5215. "safelog",
  5216. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5217. "strum",
  5218. "thiserror 2.0.12",
  5219. "tor-async-utils",
  5220. "tor-basic-utils",
  5221. "tor-bytes",
  5222. "tor-cell",
  5223. "tor-checkable",
  5224. "tor-circmgr",
  5225. "tor-config",
  5226. "tor-dirclient",
  5227. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5228. "tor-hscrypto",
  5229. "tor-keymgr",
  5230. "tor-linkspec",
  5231. "tor-llcrypto",
  5232. "tor-memquota",
  5233. "tor-netdir",
  5234. "tor-netdoc",
  5235. "tor-persist",
  5236. "tor-proto",
  5237. "tor-rtcompat",
  5238. "tracing",
  5239. ]
  5240. [[package]]
  5241. name = "tor-hscrypto"
  5242. version = "0.29.0"
  5243. source = "registry+https://github.com/rust-lang/crates.io-index"
  5244. checksum = "2e2ddacd739dd691bb3623e045ef07d8660d157f5a882e9b996b79f5e3803fa0"
  5245. dependencies = [
  5246. "cipher",
  5247. "data-encoding",
  5248. "derive-deftly 1.0.1",
  5249. "derive_more",
  5250. "digest",
  5251. "humantime",
  5252. "itertools 0.14.0",
  5253. "paste",
  5254. "rand 0.9.1",
  5255. "safelog",
  5256. "signature",
  5257. "subtle",
  5258. "thiserror 2.0.12",
  5259. "tor-basic-utils",
  5260. "tor-bytes",
  5261. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5262. "tor-key-forge",
  5263. "tor-llcrypto",
  5264. "tor-memquota",
  5265. "tor-units",
  5266. "void",
  5267. "zeroize",
  5268. ]
  5269. [[package]]
  5270. name = "tor-hsservice"
  5271. version = "0.29.0"
  5272. source = "registry+https://github.com/rust-lang/crates.io-index"
  5273. checksum = "52e6609424df5d0830d0182ee4f77df5f8246767b0433993e2d7a0816914ac48"
  5274. dependencies = [
  5275. "amplify",
  5276. "async-trait",
  5277. "base64ct",
  5278. "cfg-if",
  5279. "derive-deftly 1.0.1",
  5280. "derive_builder_fork_arti",
  5281. "derive_more",
  5282. "digest",
  5283. "educe",
  5284. "fs-mistrust",
  5285. "futures",
  5286. "growable-bloom-filter",
  5287. "hex",
  5288. "humantime",
  5289. "itertools 0.14.0",
  5290. "k12",
  5291. "once_cell",
  5292. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5293. "postage",
  5294. "rand 0.9.1",
  5295. "rand_core 0.9.3",
  5296. "retry-error 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5297. "safelog",
  5298. "serde",
  5299. "serde_with",
  5300. "strum",
  5301. "thiserror 2.0.12",
  5302. "tor-async-utils",
  5303. "tor-basic-utils",
  5304. "tor-bytes",
  5305. "tor-cell",
  5306. "tor-circmgr",
  5307. "tor-config",
  5308. "tor-config-path",
  5309. "tor-dirclient",
  5310. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5311. "tor-hscrypto",
  5312. "tor-keymgr",
  5313. "tor-linkspec",
  5314. "tor-llcrypto",
  5315. "tor-log-ratelim",
  5316. "tor-netdir",
  5317. "tor-netdoc",
  5318. "tor-persist",
  5319. "tor-proto",
  5320. "tor-protover",
  5321. "tor-relay-selection",
  5322. "tor-rtcompat",
  5323. "tracing",
  5324. "void",
  5325. ]
  5326. [[package]]
  5327. name = "tor-key-forge"
  5328. version = "0.29.0"
  5329. source = "registry+https://github.com/rust-lang/crates.io-index"
  5330. checksum = "ac47ab4aff8c0af8cf92b5dd3984e830c4da564bb48f06630aa7f951c688f0ba"
  5331. dependencies = [
  5332. "derive-deftly 1.0.1",
  5333. "derive_more",
  5334. "downcast-rs",
  5335. "paste",
  5336. "rand 0.9.1",
  5337. "signature",
  5338. "ssh-key",
  5339. "thiserror 2.0.12",
  5340. "tor-bytes",
  5341. "tor-cert",
  5342. "tor-checkable",
  5343. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5344. "tor-llcrypto",
  5345. ]
  5346. [[package]]
  5347. name = "tor-keymgr"
  5348. version = "0.29.0"
  5349. source = "registry+https://github.com/rust-lang/crates.io-index"
  5350. checksum = "e0a0bc40b735b3d1e04d8ac550bce66d40ea84ef5fc47a76fc8f64713b4abe3f"
  5351. dependencies = [
  5352. "amplify",
  5353. "arrayvec",
  5354. "cfg-if",
  5355. "derive-deftly 1.0.1",
  5356. "derive_builder_fork_arti",
  5357. "derive_more",
  5358. "downcast-rs",
  5359. "dyn-clone",
  5360. "fs-mistrust",
  5361. "glob-match",
  5362. "humantime",
  5363. "inventory",
  5364. "itertools 0.14.0",
  5365. "rand 0.9.1",
  5366. "serde",
  5367. "signature",
  5368. "ssh-key",
  5369. "thiserror 2.0.12",
  5370. "tor-basic-utils",
  5371. "tor-bytes",
  5372. "tor-config",
  5373. "tor-config-path",
  5374. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5375. "tor-hscrypto",
  5376. "tor-key-forge",
  5377. "tor-llcrypto",
  5378. "tor-persist",
  5379. "tracing",
  5380. "walkdir",
  5381. "zeroize",
  5382. ]
  5383. [[package]]
  5384. name = "tor-linkspec"
  5385. version = "0.29.0"
  5386. source = "registry+https://github.com/rust-lang/crates.io-index"
  5387. checksum = "b12f5be8e6077b66ec04e64b7e1a779e77af44893b5454cd0928289c45767780"
  5388. dependencies = [
  5389. "base64ct",
  5390. "by_address",
  5391. "caret",
  5392. "derive-deftly 1.0.1",
  5393. "derive_builder_fork_arti",
  5394. "derive_more",
  5395. "hex",
  5396. "itertools 0.14.0",
  5397. "safelog",
  5398. "serde",
  5399. "serde_with",
  5400. "strum",
  5401. "thiserror 2.0.12",
  5402. "tor-basic-utils",
  5403. "tor-bytes",
  5404. "tor-config",
  5405. "tor-llcrypto",
  5406. "tor-memquota",
  5407. "tor-protover",
  5408. ]
  5409. [[package]]
  5410. name = "tor-llcrypto"
  5411. version = "0.29.0"
  5412. source = "registry+https://github.com/rust-lang/crates.io-index"
  5413. checksum = "057afeb075f0689c40465646a1b7671baffebd3c8dd40e62ed5013a5ab157e76"
  5414. dependencies = [
  5415. "aes",
  5416. "base64ct",
  5417. "ctr",
  5418. "curve25519-dalek",
  5419. "der-parser",
  5420. "derive-deftly 1.0.1",
  5421. "derive_more",
  5422. "digest",
  5423. "ed25519-dalek",
  5424. "educe",
  5425. "getrandom 0.3.2",
  5426. "hex",
  5427. "once_cell",
  5428. "rand 0.9.1",
  5429. "rand_chacha 0.9.0",
  5430. "rand_core 0.6.4",
  5431. "rand_core 0.9.3",
  5432. "rand_jitter",
  5433. "rdrand",
  5434. "rsa",
  5435. "safelog",
  5436. "serde",
  5437. "sha1",
  5438. "sha2",
  5439. "sha3",
  5440. "signature",
  5441. "subtle",
  5442. "thiserror 2.0.12",
  5443. "tor-memquota",
  5444. "visibility",
  5445. "x25519-dalek",
  5446. "zeroize",
  5447. ]
  5448. [[package]]
  5449. name = "tor-log-ratelim"
  5450. version = "0.29.0"
  5451. source = "registry+https://github.com/rust-lang/crates.io-index"
  5452. checksum = "68b4f7d6adb39d73c414e891b37abd380a1e1eb1545735da422581128b1a9274"
  5453. dependencies = [
  5454. "futures",
  5455. "humantime",
  5456. "once_cell",
  5457. "thiserror 2.0.12",
  5458. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5459. "tor-rtcompat",
  5460. "tracing",
  5461. "weak-table",
  5462. ]
  5463. [[package]]
  5464. name = "tor-memquota"
  5465. version = "0.29.0"
  5466. source = "registry+https://github.com/rust-lang/crates.io-index"
  5467. checksum = "c86c061032e8d1b2922016fbe40b48a967dc7a3c09cd5bb0e3a33a00dad210ef"
  5468. dependencies = [
  5469. "derive-deftly 1.0.1",
  5470. "derive_more",
  5471. "dyn-clone",
  5472. "educe",
  5473. "futures",
  5474. "itertools 0.14.0",
  5475. "paste",
  5476. "pin-project",
  5477. "serde",
  5478. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5479. "static_assertions",
  5480. "thiserror 2.0.12",
  5481. "tor-async-utils",
  5482. "tor-basic-utils",
  5483. "tor-config",
  5484. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5485. "tor-log-ratelim",
  5486. "tor-rtcompat",
  5487. "tracing",
  5488. "void",
  5489. ]
  5490. [[package]]
  5491. name = "tor-netdir"
  5492. version = "0.29.0"
  5493. source = "registry+https://github.com/rust-lang/crates.io-index"
  5494. checksum = "d8a7a1ff78d5bc186836ffe50012dfdd7e9a137a692201d5e8dd204df2c1f608"
  5495. dependencies = [
  5496. "async-trait",
  5497. "bitflags 2.9.0",
  5498. "derive_more",
  5499. "digest",
  5500. "futures",
  5501. "hex",
  5502. "humantime",
  5503. "itertools 0.14.0",
  5504. "num_enum",
  5505. "rand 0.9.1",
  5506. "serde",
  5507. "static_assertions",
  5508. "strum",
  5509. "thiserror 2.0.12",
  5510. "time",
  5511. "tor-basic-utils",
  5512. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5513. "tor-hscrypto",
  5514. "tor-linkspec",
  5515. "tor-llcrypto",
  5516. "tor-netdoc",
  5517. "tor-protover",
  5518. "tor-units",
  5519. "tracing",
  5520. "typed-index-collections",
  5521. ]
  5522. [[package]]
  5523. name = "tor-netdoc"
  5524. version = "0.29.0"
  5525. source = "registry+https://github.com/rust-lang/crates.io-index"
  5526. checksum = "3bafcb9dc0ac3ef8ab6e2006ab892699797cb8381e18a0248e138027a6817c8b"
  5527. dependencies = [
  5528. "amplify",
  5529. "base64ct",
  5530. "bitflags 2.9.0",
  5531. "cipher",
  5532. "derive_builder_fork_arti",
  5533. "derive_more",
  5534. "digest",
  5535. "educe",
  5536. "hex",
  5537. "humantime",
  5538. "itertools 0.14.0",
  5539. "memchr",
  5540. "once_cell",
  5541. "phf",
  5542. "rand 0.9.1",
  5543. "serde",
  5544. "serde_with",
  5545. "signature",
  5546. "smallvec",
  5547. "subtle",
  5548. "thiserror 2.0.12",
  5549. "time",
  5550. "tinystr 0.8.1",
  5551. "tor-basic-utils",
  5552. "tor-bytes",
  5553. "tor-cell",
  5554. "tor-cert",
  5555. "tor-checkable",
  5556. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5557. "tor-hscrypto",
  5558. "tor-linkspec",
  5559. "tor-llcrypto",
  5560. "tor-protover",
  5561. "tor-units",
  5562. "void",
  5563. "weak-table",
  5564. "zeroize",
  5565. ]
  5566. [[package]]
  5567. name = "tor-persist"
  5568. version = "0.29.0"
  5569. source = "registry+https://github.com/rust-lang/crates.io-index"
  5570. checksum = "a245023c2109228264d03ef7c1c549e41052b9a2a8b193acb8f98d82ad5982bf"
  5571. dependencies = [
  5572. "amplify",
  5573. "derive-deftly 1.0.1",
  5574. "derive_more",
  5575. "filetime",
  5576. "fs-mistrust",
  5577. "fslock",
  5578. "fslock-guard",
  5579. "futures",
  5580. "itertools 0.14.0",
  5581. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5582. "paste",
  5583. "sanitize-filename",
  5584. "serde",
  5585. "serde_json",
  5586. "thiserror 2.0.12",
  5587. "time",
  5588. "tor-async-utils",
  5589. "tor-basic-utils",
  5590. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5591. "tracing",
  5592. "void",
  5593. ]
  5594. [[package]]
  5595. name = "tor-proto"
  5596. version = "0.29.0"
  5597. source = "registry+https://github.com/rust-lang/crates.io-index"
  5598. checksum = "1ea421e41f1e2cc5ac8b990610d0a69a330532a863b344c44812a815af25811a"
  5599. dependencies = [
  5600. "amplify",
  5601. "asynchronous-codec",
  5602. "bitvec",
  5603. "bytes",
  5604. "caret",
  5605. "cipher",
  5606. "coarsetime",
  5607. "derive-deftly 1.0.1",
  5608. "derive_builder_fork_arti",
  5609. "derive_more",
  5610. "digest",
  5611. "educe",
  5612. "futures",
  5613. "futures-util",
  5614. "hkdf",
  5615. "hmac",
  5616. "oneshot-fused-workaround 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
  5617. "pin-project",
  5618. "rand 0.9.1",
  5619. "rand_core 0.9.3",
  5620. "safelog",
  5621. "slotmap-careful 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
  5622. "static_assertions",
  5623. "subtle",
  5624. "thiserror 2.0.12",
  5625. "tor-async-utils",
  5626. "tor-basic-utils",
  5627. "tor-bytes",
  5628. "tor-cell",
  5629. "tor-cert",
  5630. "tor-checkable",
  5631. "tor-config",
  5632. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5633. "tor-hscrypto",
  5634. "tor-linkspec",
  5635. "tor-llcrypto",
  5636. "tor-log-ratelim",
  5637. "tor-memquota",
  5638. "tor-rtcompat",
  5639. "tor-rtmock",
  5640. "tor-units",
  5641. "tracing",
  5642. "typenum",
  5643. "visibility",
  5644. "void",
  5645. "zeroize",
  5646. ]
  5647. [[package]]
  5648. name = "tor-protover"
  5649. version = "0.29.0"
  5650. source = "registry+https://github.com/rust-lang/crates.io-index"
  5651. checksum = "a887114e6ed2f2e2b291c16cfcf751e26298fb2be4599b0a44cae47a588dc4ae"
  5652. dependencies = [
  5653. "caret",
  5654. "paste",
  5655. "thiserror 2.0.12",
  5656. ]
  5657. [[package]]
  5658. name = "tor-relay-selection"
  5659. version = "0.29.0"
  5660. source = "registry+https://github.com/rust-lang/crates.io-index"
  5661. checksum = "ba0d8a53a12c0fbdb1b842f0705629bacf11ab2c99531a58952c53fa619f830f"
  5662. dependencies = [
  5663. "rand 0.9.1",
  5664. "serde",
  5665. "tor-basic-utils",
  5666. "tor-linkspec",
  5667. "tor-netdir",
  5668. "tor-netdoc",
  5669. ]
  5670. [[package]]
  5671. name = "tor-rtcompat"
  5672. version = "0.29.0"
  5673. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5674. dependencies = [
  5675. "async-io",
  5676. "async-std",
  5677. "async-trait",
  5678. "async_executors",
  5679. "asynchronous-codec",
  5680. "coarsetime",
  5681. "derive_more",
  5682. "dyn-clone",
  5683. "educe",
  5684. "futures",
  5685. "futures-rustls",
  5686. "hex",
  5687. "libc",
  5688. "paste",
  5689. "pin-project",
  5690. "rustls",
  5691. "rustls-pki-types",
  5692. "rustls-webpki",
  5693. "thiserror 2.0.12",
  5694. "tor-error 0.29.0 (git+https://github.com/narodnik/arti)",
  5695. "tor-general-addr 0.29.0 (git+https://github.com/narodnik/arti)",
  5696. "tracing",
  5697. "void",
  5698. ]
  5699. [[package]]
  5700. name = "tor-rtmock"
  5701. version = "0.29.0"
  5702. source = "git+https://github.com/narodnik/arti#989546335043fa3220c59f905de120c3d88af9cb"
  5703. dependencies = [
  5704. "amplify",
  5705. "assert_matches",
  5706. "async-trait",
  5707. "derive-deftly 1.0.1",
  5708. "derive_more",
  5709. "educe",
  5710. "futures",
  5711. "humantime",
  5712. "itertools 0.14.0",
  5713. "oneshot-fused-workaround 0.2.1 (git+https://github.com/narodnik/arti)",
  5714. "pin-project",
  5715. "priority-queue",
  5716. "slotmap-careful 0.2.3 (git+https://github.com/narodnik/arti)",
  5717. "strum",
  5718. "thiserror 2.0.12",
  5719. "tor-error 0.29.0 (git+https://github.com/narodnik/arti)",
  5720. "tor-general-addr 0.29.0 (git+https://github.com/narodnik/arti)",
  5721. "tor-rtcompat",
  5722. "tracing",
  5723. "tracing-test",
  5724. "void",
  5725. ]
  5726. [[package]]
  5727. name = "tor-socksproto"
  5728. version = "0.29.0"
  5729. source = "registry+https://github.com/rust-lang/crates.io-index"
  5730. checksum = "cf9ca35781e3eea82b6b2c1a68c8be87a53157bb6ce6c12401f825745d4fac9b"
  5731. dependencies = [
  5732. "amplify",
  5733. "caret",
  5734. "derive-deftly 1.0.1",
  5735. "educe",
  5736. "safelog",
  5737. "subtle",
  5738. "thiserror 2.0.12",
  5739. "tor-bytes",
  5740. "tor-error 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
  5741. ]
  5742. [[package]]
  5743. name = "tor-units"
  5744. version = "0.29.0"
  5745. source = "registry+https://github.com/rust-lang/crates.io-index"
  5746. checksum = "1ddc10f6c42aa268a8b680e68063f7f26da10fd71200d973659c55328b42845b"
  5747. dependencies = [
  5748. "derive-deftly 1.0.1",
  5749. "derive_more",
  5750. "thiserror 2.0.12",
  5751. "tor-memquota",
  5752. ]
  5753. [[package]]
  5754. name = "tracing"
  5755. version = "0.1.41"
  5756. source = "registry+https://github.com/rust-lang/crates.io-index"
  5757. checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
  5758. dependencies = [
  5759. "pin-project-lite",
  5760. "tracing-attributes",
  5761. "tracing-core",
  5762. ]
  5763. [[package]]
  5764. name = "tracing-attributes"
  5765. version = "0.1.28"
  5766. source = "registry+https://github.com/rust-lang/crates.io-index"
  5767. checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
  5768. dependencies = [
  5769. "proc-macro2",
  5770. "quote",
  5771. "syn 2.0.101",
  5772. ]
  5773. [[package]]
  5774. name = "tracing-core"
  5775. version = "0.1.33"
  5776. source = "registry+https://github.com/rust-lang/crates.io-index"
  5777. checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
  5778. dependencies = [
  5779. "once_cell",
  5780. "valuable",
  5781. ]
  5782. [[package]]
  5783. name = "tracing-log"
  5784. version = "0.2.0"
  5785. source = "registry+https://github.com/rust-lang/crates.io-index"
  5786. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  5787. dependencies = [
  5788. "log",
  5789. "once_cell",
  5790. "tracing-core",
  5791. ]
  5792. [[package]]
  5793. name = "tracing-subscriber"
  5794. version = "0.3.19"
  5795. source = "registry+https://github.com/rust-lang/crates.io-index"
  5796. checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
  5797. dependencies = [
  5798. "matchers",
  5799. "nu-ansi-term",
  5800. "once_cell",
  5801. "regex",
  5802. "sharded-slab",
  5803. "smallvec",
  5804. "thread_local",
  5805. "tracing",
  5806. "tracing-core",
  5807. "tracing-log",
  5808. ]
  5809. [[package]]
  5810. name = "tracing-test"
  5811. version = "0.2.5"
  5812. source = "registry+https://github.com/rust-lang/crates.io-index"
  5813. checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
  5814. dependencies = [
  5815. "tracing-core",
  5816. "tracing-subscriber",
  5817. "tracing-test-macro",
  5818. ]
  5819. [[package]]
  5820. name = "tracing-test-macro"
  5821. version = "0.2.5"
  5822. source = "registry+https://github.com/rust-lang/crates.io-index"
  5823. checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
  5824. dependencies = [
  5825. "quote",
  5826. "syn 2.0.101",
  5827. ]
  5828. [[package]]
  5829. name = "typed-index-collections"
  5830. version = "3.1.0"
  5831. source = "registry+https://github.com/rust-lang/crates.io-index"
  5832. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  5833. [[package]]
  5834. name = "typenum"
  5835. version = "1.18.0"
  5836. source = "registry+https://github.com/rust-lang/crates.io-index"
  5837. checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
  5838. [[package]]
  5839. name = "uint"
  5840. version = "0.9.5"
  5841. source = "registry+https://github.com/rust-lang/crates.io-index"
  5842. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5843. dependencies = [
  5844. "byteorder",
  5845. "crunchy",
  5846. "hex",
  5847. "static_assertions",
  5848. ]
  5849. [[package]]
  5850. name = "uncased"
  5851. version = "0.9.10"
  5852. source = "registry+https://github.com/rust-lang/crates.io-index"
  5853. checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
  5854. dependencies = [
  5855. "version_check",
  5856. ]
  5857. [[package]]
  5858. name = "unicase"
  5859. version = "2.8.1"
  5860. source = "registry+https://github.com/rust-lang/crates.io-index"
  5861. checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
  5862. [[package]]
  5863. name = "unicode-ident"
  5864. version = "1.0.18"
  5865. source = "registry+https://github.com/rust-lang/crates.io-index"
  5866. checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
  5867. [[package]]
  5868. name = "unicode-segmentation"
  5869. version = "1.12.0"
  5870. source = "registry+https://github.com/rust-lang/crates.io-index"
  5871. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  5872. [[package]]
  5873. name = "unicode-width"
  5874. version = "0.1.14"
  5875. source = "registry+https://github.com/rust-lang/crates.io-index"
  5876. checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
  5877. [[package]]
  5878. name = "unicode-xid"
  5879. version = "0.2.6"
  5880. source = "registry+https://github.com/rust-lang/crates.io-index"
  5881. checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
  5882. [[package]]
  5883. name = "universal-hash"
  5884. version = "0.5.1"
  5885. source = "registry+https://github.com/rust-lang/crates.io-index"
  5886. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  5887. dependencies = [
  5888. "crypto-common",
  5889. "subtle",
  5890. ]
  5891. [[package]]
  5892. name = "untrusted"
  5893. version = "0.9.0"
  5894. source = "registry+https://github.com/rust-lang/crates.io-index"
  5895. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5896. [[package]]
  5897. name = "url"
  5898. version = "2.5.4"
  5899. source = "registry+https://github.com/rust-lang/crates.io-index"
  5900. checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
  5901. dependencies = [
  5902. "form_urlencoded",
  5903. "idna",
  5904. "percent-encoding",
  5905. "serde",
  5906. ]
  5907. [[package]]
  5908. name = "utf16_iter"
  5909. version = "1.0.5"
  5910. source = "registry+https://github.com/rust-lang/crates.io-index"
  5911. checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
  5912. [[package]]
  5913. name = "utf8_iter"
  5914. version = "1.0.4"
  5915. source = "registry+https://github.com/rust-lang/crates.io-index"
  5916. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  5917. [[package]]
  5918. name = "uuid"
  5919. version = "1.16.0"
  5920. source = "registry+https://github.com/rust-lang/crates.io-index"
  5921. checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
  5922. dependencies = [
  5923. "getrandom 0.3.2",
  5924. ]
  5925. [[package]]
  5926. name = "v_frame"
  5927. version = "0.3.8"
  5928. source = "registry+https://github.com/rust-lang/crates.io-index"
  5929. checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
  5930. dependencies = [
  5931. "aligned-vec",
  5932. "num-traits",
  5933. "wasm-bindgen",
  5934. ]
  5935. [[package]]
  5936. name = "valuable"
  5937. version = "0.1.1"
  5938. source = "registry+https://github.com/rust-lang/crates.io-index"
  5939. checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
  5940. [[package]]
  5941. name = "value-bag"
  5942. version = "1.11.1"
  5943. source = "registry+https://github.com/rust-lang/crates.io-index"
  5944. checksum = "943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5"
  5945. [[package]]
  5946. name = "vcpkg"
  5947. version = "0.2.15"
  5948. source = "registry+https://github.com/rust-lang/crates.io-index"
  5949. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5950. [[package]]
  5951. name = "vec_map"
  5952. version = "0.8.2"
  5953. source = "registry+https://github.com/rust-lang/crates.io-index"
  5954. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  5955. [[package]]
  5956. name = "version-compare"
  5957. version = "0.2.0"
  5958. source = "registry+https://github.com/rust-lang/crates.io-index"
  5959. checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
  5960. [[package]]
  5961. name = "version_check"
  5962. version = "0.9.5"
  5963. source = "registry+https://github.com/rust-lang/crates.io-index"
  5964. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  5965. [[package]]
  5966. name = "visibility"
  5967. version = "0.1.1"
  5968. source = "registry+https://github.com/rust-lang/crates.io-index"
  5969. checksum = "d674d135b4a8c1d7e813e2f8d1c9a58308aee4a680323066025e53132218bd91"
  5970. dependencies = [
  5971. "proc-macro2",
  5972. "quote",
  5973. "syn 2.0.101",
  5974. ]
  5975. [[package]]
  5976. name = "void"
  5977. version = "1.0.2"
  5978. source = "registry+https://github.com/rust-lang/crates.io-index"
  5979. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5980. [[package]]
  5981. name = "walkdir"
  5982. version = "2.5.0"
  5983. source = "registry+https://github.com/rust-lang/crates.io-index"
  5984. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  5985. dependencies = [
  5986. "same-file",
  5987. "winapi-util",
  5988. ]
  5989. [[package]]
  5990. name = "wasi"
  5991. version = "0.11.0+wasi-snapshot-preview1"
  5992. source = "registry+https://github.com/rust-lang/crates.io-index"
  5993. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5994. [[package]]
  5995. name = "wasi"
  5996. version = "0.14.2+wasi-0.2.4"
  5997. source = "registry+https://github.com/rust-lang/crates.io-index"
  5998. checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
  5999. dependencies = [
  6000. "wit-bindgen-rt",
  6001. ]
  6002. [[package]]
  6003. name = "wasix"
  6004. version = "0.12.21"
  6005. source = "registry+https://github.com/rust-lang/crates.io-index"
  6006. checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
  6007. dependencies = [
  6008. "wasi 0.11.0+wasi-snapshot-preview1",
  6009. ]
  6010. [[package]]
  6011. name = "wasm-bindgen"
  6012. version = "0.2.100"
  6013. source = "registry+https://github.com/rust-lang/crates.io-index"
  6014. checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
  6015. dependencies = [
  6016. "cfg-if",
  6017. "once_cell",
  6018. "rustversion",
  6019. "wasm-bindgen-macro",
  6020. ]
  6021. [[package]]
  6022. name = "wasm-bindgen-backend"
  6023. version = "0.2.100"
  6024. source = "registry+https://github.com/rust-lang/crates.io-index"
  6025. checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
  6026. dependencies = [
  6027. "bumpalo",
  6028. "log",
  6029. "proc-macro2",
  6030. "quote",
  6031. "syn 2.0.101",
  6032. "wasm-bindgen-shared",
  6033. ]
  6034. [[package]]
  6035. name = "wasm-bindgen-futures"
  6036. version = "0.4.50"
  6037. source = "registry+https://github.com/rust-lang/crates.io-index"
  6038. checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
  6039. dependencies = [
  6040. "cfg-if",
  6041. "js-sys",
  6042. "once_cell",
  6043. "wasm-bindgen",
  6044. "web-sys",
  6045. ]
  6046. [[package]]
  6047. name = "wasm-bindgen-macro"
  6048. version = "0.2.100"
  6049. source = "registry+https://github.com/rust-lang/crates.io-index"
  6050. checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
  6051. dependencies = [
  6052. "quote",
  6053. "wasm-bindgen-macro-support",
  6054. ]
  6055. [[package]]
  6056. name = "wasm-bindgen-macro-support"
  6057. version = "0.2.100"
  6058. source = "registry+https://github.com/rust-lang/crates.io-index"
  6059. checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
  6060. dependencies = [
  6061. "proc-macro2",
  6062. "quote",
  6063. "syn 2.0.101",
  6064. "wasm-bindgen-backend",
  6065. "wasm-bindgen-shared",
  6066. ]
  6067. [[package]]
  6068. name = "wasm-bindgen-shared"
  6069. version = "0.2.100"
  6070. source = "registry+https://github.com/rust-lang/crates.io-index"
  6071. checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
  6072. dependencies = [
  6073. "unicode-ident",
  6074. ]
  6075. [[package]]
  6076. name = "weak-table"
  6077. version = "0.3.2"
  6078. source = "registry+https://github.com/rust-lang/crates.io-index"
  6079. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  6080. [[package]]
  6081. name = "web-sys"
  6082. version = "0.3.77"
  6083. source = "registry+https://github.com/rust-lang/crates.io-index"
  6084. checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
  6085. dependencies = [
  6086. "js-sys",
  6087. "wasm-bindgen",
  6088. ]
  6089. [[package]]
  6090. name = "weezl"
  6091. version = "0.1.8"
  6092. source = "registry+https://github.com/rust-lang/crates.io-index"
  6093. checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
  6094. [[package]]
  6095. name = "winapi"
  6096. version = "0.3.9"
  6097. source = "registry+https://github.com/rust-lang/crates.io-index"
  6098. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6099. dependencies = [
  6100. "winapi-i686-pc-windows-gnu",
  6101. "winapi-x86_64-pc-windows-gnu",
  6102. ]
  6103. [[package]]
  6104. name = "winapi-i686-pc-windows-gnu"
  6105. version = "0.4.0"
  6106. source = "registry+https://github.com/rust-lang/crates.io-index"
  6107. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6108. [[package]]
  6109. name = "winapi-util"
  6110. version = "0.1.9"
  6111. source = "registry+https://github.com/rust-lang/crates.io-index"
  6112. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  6113. dependencies = [
  6114. "windows-sys 0.59.0",
  6115. ]
  6116. [[package]]
  6117. name = "winapi-x86_64-pc-windows-gnu"
  6118. version = "0.4.0"
  6119. source = "registry+https://github.com/rust-lang/crates.io-index"
  6120. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6121. [[package]]
  6122. name = "windows"
  6123. version = "0.58.0"
  6124. source = "registry+https://github.com/rust-lang/crates.io-index"
  6125. checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
  6126. dependencies = [
  6127. "windows-core 0.58.0",
  6128. "windows-targets 0.52.6",
  6129. ]
  6130. [[package]]
  6131. name = "windows-core"
  6132. version = "0.58.0"
  6133. source = "registry+https://github.com/rust-lang/crates.io-index"
  6134. checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
  6135. dependencies = [
  6136. "windows-implement 0.58.0",
  6137. "windows-interface 0.58.0",
  6138. "windows-result 0.2.0",
  6139. "windows-strings 0.1.0",
  6140. "windows-targets 0.52.6",
  6141. ]
  6142. [[package]]
  6143. name = "windows-core"
  6144. version = "0.61.0"
  6145. source = "registry+https://github.com/rust-lang/crates.io-index"
  6146. checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
  6147. dependencies = [
  6148. "windows-implement 0.60.0",
  6149. "windows-interface 0.59.1",
  6150. "windows-link",
  6151. "windows-result 0.3.2",
  6152. "windows-strings 0.4.0",
  6153. ]
  6154. [[package]]
  6155. name = "windows-implement"
  6156. version = "0.58.0"
  6157. source = "registry+https://github.com/rust-lang/crates.io-index"
  6158. checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
  6159. dependencies = [
  6160. "proc-macro2",
  6161. "quote",
  6162. "syn 2.0.101",
  6163. ]
  6164. [[package]]
  6165. name = "windows-implement"
  6166. version = "0.60.0"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
  6169. dependencies = [
  6170. "proc-macro2",
  6171. "quote",
  6172. "syn 2.0.101",
  6173. ]
  6174. [[package]]
  6175. name = "windows-interface"
  6176. version = "0.58.0"
  6177. source = "registry+https://github.com/rust-lang/crates.io-index"
  6178. checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
  6179. dependencies = [
  6180. "proc-macro2",
  6181. "quote",
  6182. "syn 2.0.101",
  6183. ]
  6184. [[package]]
  6185. name = "windows-interface"
  6186. version = "0.59.1"
  6187. source = "registry+https://github.com/rust-lang/crates.io-index"
  6188. checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
  6189. dependencies = [
  6190. "proc-macro2",
  6191. "quote",
  6192. "syn 2.0.101",
  6193. ]
  6194. [[package]]
  6195. name = "windows-link"
  6196. version = "0.1.1"
  6197. source = "registry+https://github.com/rust-lang/crates.io-index"
  6198. checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
  6199. [[package]]
  6200. name = "windows-result"
  6201. version = "0.2.0"
  6202. source = "registry+https://github.com/rust-lang/crates.io-index"
  6203. checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
  6204. dependencies = [
  6205. "windows-targets 0.52.6",
  6206. ]
  6207. [[package]]
  6208. name = "windows-result"
  6209. version = "0.3.2"
  6210. source = "registry+https://github.com/rust-lang/crates.io-index"
  6211. checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
  6212. dependencies = [
  6213. "windows-link",
  6214. ]
  6215. [[package]]
  6216. name = "windows-strings"
  6217. version = "0.1.0"
  6218. source = "registry+https://github.com/rust-lang/crates.io-index"
  6219. checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
  6220. dependencies = [
  6221. "windows-result 0.2.0",
  6222. "windows-targets 0.52.6",
  6223. ]
  6224. [[package]]
  6225. name = "windows-strings"
  6226. version = "0.4.0"
  6227. source = "registry+https://github.com/rust-lang/crates.io-index"
  6228. checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
  6229. dependencies = [
  6230. "windows-link",
  6231. ]
  6232. [[package]]
  6233. name = "windows-sys"
  6234. version = "0.48.0"
  6235. source = "registry+https://github.com/rust-lang/crates.io-index"
  6236. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6237. dependencies = [
  6238. "windows-targets 0.48.5",
  6239. ]
  6240. [[package]]
  6241. name = "windows-sys"
  6242. version = "0.52.0"
  6243. source = "registry+https://github.com/rust-lang/crates.io-index"
  6244. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  6245. dependencies = [
  6246. "windows-targets 0.52.6",
  6247. ]
  6248. [[package]]
  6249. name = "windows-sys"
  6250. version = "0.59.0"
  6251. source = "registry+https://github.com/rust-lang/crates.io-index"
  6252. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  6253. dependencies = [
  6254. "windows-targets 0.52.6",
  6255. ]
  6256. [[package]]
  6257. name = "windows-targets"
  6258. version = "0.48.5"
  6259. source = "registry+https://github.com/rust-lang/crates.io-index"
  6260. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  6261. dependencies = [
  6262. "windows_aarch64_gnullvm 0.48.5",
  6263. "windows_aarch64_msvc 0.48.5",
  6264. "windows_i686_gnu 0.48.5",
  6265. "windows_i686_msvc 0.48.5",
  6266. "windows_x86_64_gnu 0.48.5",
  6267. "windows_x86_64_gnullvm 0.48.5",
  6268. "windows_x86_64_msvc 0.48.5",
  6269. ]
  6270. [[package]]
  6271. name = "windows-targets"
  6272. version = "0.52.6"
  6273. source = "registry+https://github.com/rust-lang/crates.io-index"
  6274. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  6275. dependencies = [
  6276. "windows_aarch64_gnullvm 0.52.6",
  6277. "windows_aarch64_msvc 0.52.6",
  6278. "windows_i686_gnu 0.52.6",
  6279. "windows_i686_gnullvm",
  6280. "windows_i686_msvc 0.52.6",
  6281. "windows_x86_64_gnu 0.52.6",
  6282. "windows_x86_64_gnullvm 0.52.6",
  6283. "windows_x86_64_msvc 0.52.6",
  6284. ]
  6285. [[package]]
  6286. name = "windows_aarch64_gnullvm"
  6287. version = "0.48.5"
  6288. source = "registry+https://github.com/rust-lang/crates.io-index"
  6289. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  6290. [[package]]
  6291. name = "windows_aarch64_gnullvm"
  6292. version = "0.52.6"
  6293. source = "registry+https://github.com/rust-lang/crates.io-index"
  6294. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  6295. [[package]]
  6296. name = "windows_aarch64_msvc"
  6297. version = "0.48.5"
  6298. source = "registry+https://github.com/rust-lang/crates.io-index"
  6299. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  6300. [[package]]
  6301. name = "windows_aarch64_msvc"
  6302. version = "0.52.6"
  6303. source = "registry+https://github.com/rust-lang/crates.io-index"
  6304. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  6305. [[package]]
  6306. name = "windows_i686_gnu"
  6307. version = "0.48.5"
  6308. source = "registry+https://github.com/rust-lang/crates.io-index"
  6309. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  6310. [[package]]
  6311. name = "windows_i686_gnu"
  6312. version = "0.52.6"
  6313. source = "registry+https://github.com/rust-lang/crates.io-index"
  6314. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  6315. [[package]]
  6316. name = "windows_i686_gnullvm"
  6317. version = "0.52.6"
  6318. source = "registry+https://github.com/rust-lang/crates.io-index"
  6319. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  6320. [[package]]
  6321. name = "windows_i686_msvc"
  6322. version = "0.48.5"
  6323. source = "registry+https://github.com/rust-lang/crates.io-index"
  6324. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  6325. [[package]]
  6326. name = "windows_i686_msvc"
  6327. version = "0.52.6"
  6328. source = "registry+https://github.com/rust-lang/crates.io-index"
  6329. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  6330. [[package]]
  6331. name = "windows_x86_64_gnu"
  6332. version = "0.48.5"
  6333. source = "registry+https://github.com/rust-lang/crates.io-index"
  6334. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  6335. [[package]]
  6336. name = "windows_x86_64_gnu"
  6337. version = "0.52.6"
  6338. source = "registry+https://github.com/rust-lang/crates.io-index"
  6339. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  6340. [[package]]
  6341. name = "windows_x86_64_gnullvm"
  6342. version = "0.48.5"
  6343. source = "registry+https://github.com/rust-lang/crates.io-index"
  6344. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  6345. [[package]]
  6346. name = "windows_x86_64_gnullvm"
  6347. version = "0.52.6"
  6348. source = "registry+https://github.com/rust-lang/crates.io-index"
  6349. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  6350. [[package]]
  6351. name = "windows_x86_64_msvc"
  6352. version = "0.48.5"
  6353. source = "registry+https://github.com/rust-lang/crates.io-index"
  6354. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  6355. [[package]]
  6356. name = "windows_x86_64_msvc"
  6357. version = "0.52.6"
  6358. source = "registry+https://github.com/rust-lang/crates.io-index"
  6359. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  6360. [[package]]
  6361. name = "winnow"
  6362. version = "0.7.9"
  6363. source = "registry+https://github.com/rust-lang/crates.io-index"
  6364. checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3"
  6365. dependencies = [
  6366. "memchr",
  6367. ]
  6368. [[package]]
  6369. name = "wit-bindgen-rt"
  6370. version = "0.39.0"
  6371. source = "registry+https://github.com/rust-lang/crates.io-index"
  6372. checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
  6373. dependencies = [
  6374. "bitflags 2.9.0",
  6375. ]
  6376. [[package]]
  6377. name = "write16"
  6378. version = "1.0.0"
  6379. source = "registry+https://github.com/rust-lang/crates.io-index"
  6380. checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
  6381. [[package]]
  6382. name = "writeable"
  6383. version = "0.5.5"
  6384. source = "registry+https://github.com/rust-lang/crates.io-index"
  6385. checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
  6386. [[package]]
  6387. name = "wyz"
  6388. version = "0.5.1"
  6389. source = "registry+https://github.com/rust-lang/crates.io-index"
  6390. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6391. dependencies = [
  6392. "tap",
  6393. ]
  6394. [[package]]
  6395. name = "x25519-dalek"
  6396. version = "2.0.1"
  6397. source = "registry+https://github.com/rust-lang/crates.io-index"
  6398. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  6399. dependencies = [
  6400. "curve25519-dalek",
  6401. "rand_core 0.6.4",
  6402. "serde",
  6403. "zeroize",
  6404. ]
  6405. [[package]]
  6406. name = "x509-parser"
  6407. version = "0.17.0"
  6408. source = "registry+https://github.com/rust-lang/crates.io-index"
  6409. checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
  6410. dependencies = [
  6411. "asn1-rs",
  6412. "data-encoding",
  6413. "der-parser",
  6414. "lazy_static",
  6415. "nom",
  6416. "oid-registry",
  6417. "ring",
  6418. "rusticata-macros",
  6419. "thiserror 2.0.12",
  6420. "time",
  6421. ]
  6422. [[package]]
  6423. name = "xxhash-rust"
  6424. version = "0.8.15"
  6425. source = "registry+https://github.com/rust-lang/crates.io-index"
  6426. checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
  6427. [[package]]
  6428. name = "yasna"
  6429. version = "0.5.2"
  6430. source = "registry+https://github.com/rust-lang/crates.io-index"
  6431. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6432. dependencies = [
  6433. "time",
  6434. ]
  6435. [[package]]
  6436. name = "yazi"
  6437. version = "0.2.1"
  6438. source = "registry+https://github.com/rust-lang/crates.io-index"
  6439. checksum = "e01738255b5a16e78bbb83e7fbba0a1e7dd506905cfc53f4622d89015a03fbb5"
  6440. [[package]]
  6441. name = "yoke"
  6442. version = "0.7.5"
  6443. source = "registry+https://github.com/rust-lang/crates.io-index"
  6444. checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
  6445. dependencies = [
  6446. "serde",
  6447. "stable_deref_trait",
  6448. "yoke-derive",
  6449. "zerofrom",
  6450. ]
  6451. [[package]]
  6452. name = "yoke-derive"
  6453. version = "0.7.5"
  6454. source = "registry+https://github.com/rust-lang/crates.io-index"
  6455. checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
  6456. dependencies = [
  6457. "proc-macro2",
  6458. "quote",
  6459. "syn 2.0.101",
  6460. "synstructure",
  6461. ]
  6462. [[package]]
  6463. name = "zeno"
  6464. version = "0.3.2"
  6465. source = "git+https://github.com/valadaptive/zeno?branch=tight-bounds#696f94184a1af5c0411c282045549264236ff881"
  6466. [[package]]
  6467. name = "zerocopy"
  6468. version = "0.7.35"
  6469. source = "registry+https://github.com/rust-lang/crates.io-index"
  6470. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  6471. dependencies = [
  6472. "zerocopy-derive 0.7.35",
  6473. ]
  6474. [[package]]
  6475. name = "zerocopy"
  6476. version = "0.8.25"
  6477. source = "registry+https://github.com/rust-lang/crates.io-index"
  6478. checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
  6479. dependencies = [
  6480. "zerocopy-derive 0.8.25",
  6481. ]
  6482. [[package]]
  6483. name = "zerocopy-derive"
  6484. version = "0.7.35"
  6485. source = "registry+https://github.com/rust-lang/crates.io-index"
  6486. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  6487. dependencies = [
  6488. "proc-macro2",
  6489. "quote",
  6490. "syn 2.0.101",
  6491. ]
  6492. [[package]]
  6493. name = "zerocopy-derive"
  6494. version = "0.8.25"
  6495. source = "registry+https://github.com/rust-lang/crates.io-index"
  6496. checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
  6497. dependencies = [
  6498. "proc-macro2",
  6499. "quote",
  6500. "syn 2.0.101",
  6501. ]
  6502. [[package]]
  6503. name = "zerofrom"
  6504. version = "0.1.6"
  6505. source = "registry+https://github.com/rust-lang/crates.io-index"
  6506. checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
  6507. dependencies = [
  6508. "zerofrom-derive",
  6509. ]
  6510. [[package]]
  6511. name = "zerofrom-derive"
  6512. version = "0.1.6"
  6513. source = "registry+https://github.com/rust-lang/crates.io-index"
  6514. checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
  6515. dependencies = [
  6516. "proc-macro2",
  6517. "quote",
  6518. "syn 2.0.101",
  6519. "synstructure",
  6520. ]
  6521. [[package]]
  6522. name = "zeroize"
  6523. version = "1.8.1"
  6524. source = "registry+https://github.com/rust-lang/crates.io-index"
  6525. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  6526. dependencies = [
  6527. "zeroize_derive",
  6528. ]
  6529. [[package]]
  6530. name = "zeroize_derive"
  6531. version = "1.4.2"
  6532. source = "registry+https://github.com/rust-lang/crates.io-index"
  6533. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6534. dependencies = [
  6535. "proc-macro2",
  6536. "quote",
  6537. "syn 2.0.101",
  6538. ]
  6539. [[package]]
  6540. name = "zeromq"
  6541. version = "0.4.1"
  6542. source = "registry+https://github.com/rust-lang/crates.io-index"
  6543. checksum = "6a4528179201f6eecf211961a7d3276faa61554c82651ecc66387f68fc3004bd"
  6544. dependencies = [
  6545. "async-std",
  6546. "async-trait",
  6547. "asynchronous-codec",
  6548. "bytes",
  6549. "crossbeam-queue",
  6550. "dashmap",
  6551. "futures-channel",
  6552. "futures-io",
  6553. "futures-task",
  6554. "futures-util",
  6555. "log",
  6556. "num-traits",
  6557. "once_cell",
  6558. "parking_lot 0.12.3",
  6559. "rand 0.8.5",
  6560. "regex",
  6561. "thiserror 1.0.69",
  6562. "uuid",
  6563. ]
  6564. [[package]]
  6565. name = "zerovec"
  6566. version = "0.10.4"
  6567. source = "registry+https://github.com/rust-lang/crates.io-index"
  6568. checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
  6569. dependencies = [
  6570. "yoke",
  6571. "zerofrom",
  6572. "zerovec-derive",
  6573. ]
  6574. [[package]]
  6575. name = "zerovec"
  6576. version = "0.11.1"
  6577. source = "registry+https://github.com/rust-lang/crates.io-index"
  6578. checksum = "94e62113720e311984f461c56b00457ae9981c0bc7859d22306cc2ae2f95571c"
  6579. dependencies = [
  6580. "zerofrom",
  6581. ]
  6582. [[package]]
  6583. name = "zerovec-derive"
  6584. version = "0.10.3"
  6585. source = "registry+https://github.com/rust-lang/crates.io-index"
  6586. checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
  6587. dependencies = [
  6588. "proc-macro2",
  6589. "quote",
  6590. "syn 2.0.101",
  6591. ]
  6592. [[package]]
  6593. name = "zstd"
  6594. version = "0.13.3"
  6595. source = "registry+https://github.com/rust-lang/crates.io-index"
  6596. checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  6597. dependencies = [
  6598. "zstd-safe",
  6599. ]
  6600. [[package]]
  6601. name = "zstd-safe"
  6602. version = "7.2.4"
  6603. source = "registry+https://github.com/rust-lang/crates.io-index"
  6604. checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  6605. dependencies = [
  6606. "zstd-sys",
  6607. ]
  6608. [[package]]
  6609. name = "zstd-sys"
  6610. version = "2.0.15+zstd.1.5.7"
  6611. source = "registry+https://github.com/rust-lang/crates.io-index"
  6612. checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
  6613. dependencies = [
  6614. "cc",
  6615. "pkg-config",
  6616. ]
  6617. [[package]]
  6618. name = "zune-core"
  6619. version = "0.4.12"
  6620. source = "registry+https://github.com/rust-lang/crates.io-index"
  6621. checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
  6622. [[package]]
  6623. name = "zune-inflate"
  6624. version = "0.2.54"
  6625. source = "registry+https://github.com/rust-lang/crates.io-index"
  6626. checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
  6627. dependencies = [
  6628. "simd-adler32",
  6629. ]
  6630. [[package]]
  6631. name = "zune-jpeg"
  6632. version = "0.4.14"
  6633. source = "registry+https://github.com/rust-lang/crates.io-index"
  6634. checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028"
  6635. dependencies = [
  6636. "zune-core",
  6637. ]