Cargo.lock 232 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.25.1"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler2"
  14. version = "2.0.1"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
  17. [[package]]
  18. name = "aead"
  19. version = "0.5.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  22. dependencies = [
  23. "crypto-common",
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "aes"
  28. version = "0.8.4"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher",
  34. "cpufeatures",
  35. "zeroize",
  36. ]
  37. [[package]]
  38. name = "ahash"
  39. version = "0.8.12"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
  42. dependencies = [
  43. "cfg-if",
  44. "once_cell",
  45. "version_check",
  46. "zerocopy",
  47. ]
  48. [[package]]
  49. name = "aho-corasick"
  50. version = "1.1.4"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
  53. dependencies = [
  54. "memchr",
  55. ]
  56. [[package]]
  57. name = "alloc-no-stdlib"
  58. version = "2.0.4"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  61. [[package]]
  62. name = "alloc-stdlib"
  63. version = "0.2.2"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  66. dependencies = [
  67. "alloc-no-stdlib",
  68. ]
  69. [[package]]
  70. name = "amplify"
  71. version = "4.9.0"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "3f7fb4ac7c881e54a8e7015e399b6112a2a5bc958b6c89ac510840ff20273b31"
  74. dependencies = [
  75. "amplify_derive",
  76. "amplify_num",
  77. "ascii",
  78. "getrandom 0.2.17",
  79. "getrandom 0.3.4",
  80. "wasm-bindgen",
  81. ]
  82. [[package]]
  83. name = "amplify_derive"
  84. version = "4.0.1"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "2a6309e6b8d89b36b9f959b7a8fa093583b94922a0f6438a24fb08936de4d428"
  87. dependencies = [
  88. "amplify_syn",
  89. "proc-macro2",
  90. "quote",
  91. "syn 1.0.109",
  92. ]
  93. [[package]]
  94. name = "amplify_num"
  95. version = "0.5.3"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "99bcb75a2982047f733547042fc3968c0f460dfcf7d90b90dea3b2744580e9ad"
  98. dependencies = [
  99. "wasm-bindgen",
  100. ]
  101. [[package]]
  102. name = "amplify_syn"
  103. version = "2.0.1"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  106. dependencies = [
  107. "proc-macro2",
  108. "quote",
  109. "syn 1.0.109",
  110. ]
  111. [[package]]
  112. name = "android_log-sys"
  113. version = "0.3.2"
  114. source = "registry+https://github.com/rust-lang/crates.io-index"
  115. checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
  116. [[package]]
  117. name = "android_logger"
  118. version = "0.15.1"
  119. source = "registry+https://github.com/rust-lang/crates.io-index"
  120. checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3"
  121. dependencies = [
  122. "android_log-sys",
  123. "env_filter",
  124. "log",
  125. ]
  126. [[package]]
  127. name = "android_system_properties"
  128. version = "0.1.5"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  131. dependencies = [
  132. "libc",
  133. ]
  134. [[package]]
  135. name = "anes"
  136. version = "0.1.6"
  137. source = "registry+https://github.com/rust-lang/crates.io-index"
  138. checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
  139. [[package]]
  140. name = "anstream"
  141. version = "0.6.21"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
  144. dependencies = [
  145. "anstyle",
  146. "anstyle-parse",
  147. "anstyle-query",
  148. "anstyle-wincon",
  149. "colorchoice",
  150. "is_terminal_polyfill",
  151. "utf8parse",
  152. ]
  153. [[package]]
  154. name = "anstyle"
  155. version = "1.0.13"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
  158. [[package]]
  159. name = "anstyle-parse"
  160. version = "0.2.7"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
  163. dependencies = [
  164. "utf8parse",
  165. ]
  166. [[package]]
  167. name = "anstyle-query"
  168. version = "1.1.5"
  169. source = "registry+https://github.com/rust-lang/crates.io-index"
  170. checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
  171. dependencies = [
  172. "windows-sys 0.61.2",
  173. ]
  174. [[package]]
  175. name = "anstyle-wincon"
  176. version = "3.0.11"
  177. source = "registry+https://github.com/rust-lang/crates.io-index"
  178. checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
  179. dependencies = [
  180. "anstyle",
  181. "once_cell_polyfill",
  182. "windows-sys 0.61.2",
  183. ]
  184. [[package]]
  185. name = "anyhow"
  186. version = "1.0.101"
  187. source = "registry+https://github.com/rust-lang/crates.io-index"
  188. checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
  189. [[package]]
  190. name = "arbitrary"
  191. version = "1.4.2"
  192. source = "registry+https://github.com/rust-lang/crates.io-index"
  193. checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
  194. dependencies = [
  195. "derive_arbitrary",
  196. ]
  197. [[package]]
  198. name = "arc-swap"
  199. version = "1.8.2"
  200. source = "registry+https://github.com/rust-lang/crates.io-index"
  201. checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5"
  202. dependencies = [
  203. "rustversion",
  204. ]
  205. [[package]]
  206. name = "arraydeque"
  207. version = "0.5.1"
  208. source = "registry+https://github.com/rust-lang/crates.io-index"
  209. checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
  210. [[package]]
  211. name = "arrayvec"
  212. version = "0.7.6"
  213. source = "registry+https://github.com/rust-lang/crates.io-index"
  214. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  215. [[package]]
  216. name = "arti-client"
  217. version = "0.19.0"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "592446097447aac93b3747e366e508e707389a1233ae7674df37864acd065981"
  220. dependencies = [
  221. "async-trait",
  222. "cfg-if",
  223. "derive-deftly",
  224. "derive_builder_fork_arti",
  225. "derive_more",
  226. "educe",
  227. "fs-mistrust",
  228. "futures",
  229. "hostname-validator",
  230. "humantime-serde",
  231. "libc",
  232. "postage",
  233. "safelog",
  234. "serde",
  235. "thiserror 1.0.69",
  236. "tor-async-utils",
  237. "tor-basic-utils",
  238. "tor-chanmgr",
  239. "tor-circmgr",
  240. "tor-config",
  241. "tor-dirmgr",
  242. "tor-error",
  243. "tor-guardmgr",
  244. "tor-keymgr",
  245. "tor-linkspec",
  246. "tor-llcrypto",
  247. "tor-netdir",
  248. "tor-netdoc",
  249. "tor-persist",
  250. "tor-proto",
  251. "tor-rtcompat",
  252. "tracing",
  253. "void",
  254. ]
  255. [[package]]
  256. name = "arti-hyper"
  257. version = "0.19.0"
  258. source = "registry+https://github.com/rust-lang/crates.io-index"
  259. checksum = "a8fbfdcf58b72f0d80a1b1b6cca0869d267b8ebc46f946bff8fb5692c2cd8e2a"
  260. dependencies = [
  261. "anyhow",
  262. "arti-client",
  263. "educe",
  264. "hyper 0.14.32",
  265. "pin-project",
  266. "thiserror 1.0.69",
  267. "tls-api",
  268. "tls-api-native-tls",
  269. "tokio",
  270. "tor-error",
  271. "tor-rtcompat",
  272. ]
  273. [[package]]
  274. name = "ascii"
  275. version = "1.1.0"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  278. [[package]]
  279. name = "askama"
  280. version = "0.13.1"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "5d4744ed2eef2645831b441d8f5459689ade2ab27c854488fbab1fbe94fce1a7"
  283. dependencies = [
  284. "askama_derive",
  285. "itoa",
  286. "percent-encoding",
  287. "serde",
  288. "serde_json",
  289. ]
  290. [[package]]
  291. name = "askama_derive"
  292. version = "0.13.1"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "d661e0f57be36a5c14c48f78d09011e67e0cb618f269cca9f2fd8d15b68c46ac"
  295. dependencies = [
  296. "askama_parser",
  297. "basic-toml",
  298. "memchr",
  299. "proc-macro2",
  300. "quote",
  301. "rustc-hash",
  302. "serde",
  303. "serde_derive",
  304. "syn 2.0.116",
  305. ]
  306. [[package]]
  307. name = "askama_parser"
  308. version = "0.13.0"
  309. source = "registry+https://github.com/rust-lang/crates.io-index"
  310. checksum = "cf315ce6524c857bb129ff794935cf6d42c82a6cff60526fe2a63593de4d0d4f"
  311. dependencies = [
  312. "memchr",
  313. "serde",
  314. "serde_derive",
  315. "winnow 0.7.14",
  316. ]
  317. [[package]]
  318. name = "assert-json-diff"
  319. version = "2.0.2"
  320. source = "registry+https://github.com/rust-lang/crates.io-index"
  321. checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
  322. dependencies = [
  323. "serde",
  324. "serde_json",
  325. ]
  326. [[package]]
  327. name = "async-compat"
  328. version = "0.2.5"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "a1ba85bc55464dcbf728b56d97e119d673f4cf9062be330a9a26f3acf504a590"
  331. dependencies = [
  332. "futures-core",
  333. "futures-io",
  334. "once_cell",
  335. "pin-project-lite",
  336. "tokio",
  337. ]
  338. [[package]]
  339. name = "async-compression"
  340. version = "0.4.39"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "68650b7df54f0293fd061972a0fb05aaf4fc0879d3b3d21a638a182c5c543b9f"
  343. dependencies = [
  344. "compression-codecs",
  345. "compression-core",
  346. "futures-io",
  347. "pin-project-lite",
  348. "tokio",
  349. ]
  350. [[package]]
  351. name = "async-lock"
  352. version = "3.4.2"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
  355. dependencies = [
  356. "event-listener",
  357. "event-listener-strategy",
  358. "pin-project-lite",
  359. ]
  360. [[package]]
  361. name = "async-native-tls"
  362. version = "0.5.0"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "9343dc5acf07e79ff82d0c37899f079db3534d99f189a1837c8e549c99405bec"
  365. dependencies = [
  366. "futures-util",
  367. "native-tls",
  368. "thiserror 1.0.69",
  369. "url",
  370. ]
  371. [[package]]
  372. name = "async-stream"
  373. version = "0.3.6"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
  376. dependencies = [
  377. "async-stream-impl",
  378. "futures-core",
  379. "pin-project-lite",
  380. ]
  381. [[package]]
  382. name = "async-stream-impl"
  383. version = "0.3.6"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
  386. dependencies = [
  387. "proc-macro2",
  388. "quote",
  389. "syn 2.0.116",
  390. ]
  391. [[package]]
  392. name = "async-trait"
  393. version = "0.1.89"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
  396. dependencies = [
  397. "proc-macro2",
  398. "quote",
  399. "syn 2.0.116",
  400. ]
  401. [[package]]
  402. name = "async-utility"
  403. version = "0.3.1"
  404. source = "registry+https://github.com/rust-lang/crates.io-index"
  405. checksum = "a34a3b57207a7a1007832416c3e4862378c8451b4e8e093e436f48c2d3d2c151"
  406. dependencies = [
  407. "futures-util",
  408. "gloo-timers",
  409. "tokio",
  410. "wasm-bindgen-futures",
  411. ]
  412. [[package]]
  413. name = "async-wsocket"
  414. version = "0.13.1"
  415. source = "registry+https://github.com/rust-lang/crates.io-index"
  416. checksum = "9a7d8c7d34a225ba919dd9ba44d4b9106d20142da545e086be8ae21d1897e043"
  417. dependencies = [
  418. "async-utility",
  419. "futures",
  420. "futures-util",
  421. "js-sys",
  422. "tokio",
  423. "tokio-rustls 0.26.4",
  424. "tokio-socks",
  425. "tokio-tungstenite 0.26.2",
  426. "url",
  427. "wasm-bindgen",
  428. "web-sys",
  429. ]
  430. [[package]]
  431. name = "async_executors"
  432. version = "0.7.0"
  433. source = "registry+https://github.com/rust-lang/crates.io-index"
  434. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  435. dependencies = [
  436. "blanket",
  437. "futures-core",
  438. "futures-task",
  439. "futures-util",
  440. "pin-project",
  441. "rustc_version",
  442. "tokio",
  443. ]
  444. [[package]]
  445. name = "asynchronous-codec"
  446. version = "0.7.0"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  449. dependencies = [
  450. "bytes",
  451. "futures-sink",
  452. "futures-util",
  453. "memchr",
  454. "pin-project-lite",
  455. ]
  456. [[package]]
  457. name = "atomic"
  458. version = "0.5.3"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  461. [[package]]
  462. name = "atomic"
  463. version = "0.6.1"
  464. source = "registry+https://github.com/rust-lang/crates.io-index"
  465. checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
  466. dependencies = [
  467. "bytemuck",
  468. ]
  469. [[package]]
  470. name = "atomic-destructor"
  471. version = "0.3.0"
  472. source = "registry+https://github.com/rust-lang/crates.io-index"
  473. checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4"
  474. [[package]]
  475. name = "atomic-waker"
  476. version = "1.1.2"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  479. [[package]]
  480. name = "atty"
  481. version = "0.2.14"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  484. dependencies = [
  485. "hermit-abi",
  486. "libc",
  487. "winapi",
  488. ]
  489. [[package]]
  490. name = "autocfg"
  491. version = "1.5.0"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
  494. [[package]]
  495. name = "aws-lc-rs"
  496. version = "1.15.4"
  497. source = "registry+https://github.com/rust-lang/crates.io-index"
  498. checksum = "7b7b6141e96a8c160799cc2d5adecd5cbbe5054cb8c7c4af53da0f83bb7ad256"
  499. dependencies = [
  500. "aws-lc-sys",
  501. "zeroize",
  502. ]
  503. [[package]]
  504. name = "aws-lc-sys"
  505. version = "0.37.1"
  506. source = "registry+https://github.com/rust-lang/crates.io-index"
  507. checksum = "b092fe214090261288111db7a2b2c2118e5a7f30dc2569f1732c4069a6840549"
  508. dependencies = [
  509. "cc",
  510. "cmake",
  511. "dunce",
  512. "fs_extra",
  513. ]
  514. [[package]]
  515. name = "axum"
  516. version = "0.6.20"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
  519. dependencies = [
  520. "async-trait",
  521. "axum-core 0.3.4",
  522. "bitflags 1.3.2",
  523. "bytes",
  524. "futures-util",
  525. "http 0.2.12",
  526. "http-body 0.4.6",
  527. "hyper 0.14.32",
  528. "itoa",
  529. "matchit 0.7.3",
  530. "memchr",
  531. "mime",
  532. "percent-encoding",
  533. "pin-project-lite",
  534. "rustversion",
  535. "serde",
  536. "sync_wrapper 0.1.2",
  537. "tower 0.4.13",
  538. "tower-layer",
  539. "tower-service",
  540. ]
  541. [[package]]
  542. name = "axum"
  543. version = "0.8.8"
  544. source = "registry+https://github.com/rust-lang/crates.io-index"
  545. checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
  546. dependencies = [
  547. "axum-core 0.5.6",
  548. "base64 0.22.1",
  549. "bytes",
  550. "form_urlencoded",
  551. "futures-util",
  552. "http 1.4.0",
  553. "http-body 1.0.1",
  554. "http-body-util",
  555. "hyper 1.8.1",
  556. "hyper-util",
  557. "itoa",
  558. "matchit 0.8.4",
  559. "memchr",
  560. "mime",
  561. "percent-encoding",
  562. "pin-project-lite",
  563. "serde_core",
  564. "serde_json",
  565. "serde_path_to_error",
  566. "serde_urlencoded",
  567. "sha1",
  568. "sync_wrapper 1.0.2",
  569. "tokio",
  570. "tokio-tungstenite 0.28.0",
  571. "tower 0.5.3",
  572. "tower-layer",
  573. "tower-service",
  574. "tracing",
  575. ]
  576. [[package]]
  577. name = "axum-core"
  578. version = "0.3.4"
  579. source = "registry+https://github.com/rust-lang/crates.io-index"
  580. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  581. dependencies = [
  582. "async-trait",
  583. "bytes",
  584. "futures-util",
  585. "http 0.2.12",
  586. "http-body 0.4.6",
  587. "mime",
  588. "rustversion",
  589. "tower-layer",
  590. "tower-service",
  591. ]
  592. [[package]]
  593. name = "axum-core"
  594. version = "0.5.6"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
  597. dependencies = [
  598. "bytes",
  599. "futures-core",
  600. "http 1.4.0",
  601. "http-body 1.0.1",
  602. "http-body-util",
  603. "mime",
  604. "pin-project-lite",
  605. "sync_wrapper 1.0.2",
  606. "tower-layer",
  607. "tower-service",
  608. "tracing",
  609. ]
  610. [[package]]
  611. name = "backtrace"
  612. version = "0.3.76"
  613. source = "registry+https://github.com/rust-lang/crates.io-index"
  614. checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
  615. dependencies = [
  616. "addr2line",
  617. "cfg-if",
  618. "libc",
  619. "miniz_oxide",
  620. "object",
  621. "rustc-demangle",
  622. "windows-link",
  623. ]
  624. [[package]]
  625. name = "base16ct"
  626. version = "0.2.0"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  629. [[package]]
  630. name = "base58ck"
  631. version = "0.1.0"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f"
  634. dependencies = [
  635. "bitcoin-internals 0.3.0",
  636. "bitcoin_hashes 0.14.1",
  637. ]
  638. [[package]]
  639. name = "base64"
  640. version = "0.13.1"
  641. source = "registry+https://github.com/rust-lang/crates.io-index"
  642. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  643. [[package]]
  644. name = "base64"
  645. version = "0.21.7"
  646. source = "registry+https://github.com/rust-lang/crates.io-index"
  647. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  648. [[package]]
  649. name = "base64"
  650. version = "0.22.1"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  653. [[package]]
  654. name = "base64ct"
  655. version = "1.8.3"
  656. source = "registry+https://github.com/rust-lang/crates.io-index"
  657. checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
  658. [[package]]
  659. name = "basic-toml"
  660. version = "0.1.10"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
  663. dependencies = [
  664. "serde",
  665. ]
  666. [[package]]
  667. name = "bdk_chain"
  668. version = "0.23.2"
  669. source = "registry+https://github.com/rust-lang/crates.io-index"
  670. checksum = "5b5d691fd092aacec7e05046b7d04897d58d6d65ed3152cb6cf65dababcfabed"
  671. dependencies = [
  672. "bdk_core",
  673. "bitcoin 0.32.8",
  674. "miniscript",
  675. "serde",
  676. ]
  677. [[package]]
  678. name = "bdk_core"
  679. version = "0.6.2"
  680. source = "registry+https://github.com/rust-lang/crates.io-index"
  681. checksum = "0dbbe4aad0c898bfeb5253c222be3ea3dccfb380a07e72c87e3e4ed6664a6753"
  682. dependencies = [
  683. "bitcoin 0.32.8",
  684. "hashbrown 0.14.5",
  685. "serde",
  686. ]
  687. [[package]]
  688. name = "bdk_electrum"
  689. version = "0.23.2"
  690. source = "registry+https://github.com/rust-lang/crates.io-index"
  691. checksum = "b59a3f7fbe678874fa34354097644a171276e02a49934c13b3d61c54610ddf39"
  692. dependencies = [
  693. "bdk_core",
  694. "electrum-client",
  695. ]
  696. [[package]]
  697. name = "bdk_esplora"
  698. version = "0.22.1"
  699. source = "registry+https://github.com/rust-lang/crates.io-index"
  700. checksum = "0c9f5961444b5f51b9c3937e729a212363d0e4cde6390ded6e01e16292078df4"
  701. dependencies = [
  702. "async-trait",
  703. "bdk_core",
  704. "esplora-client",
  705. "futures",
  706. ]
  707. [[package]]
  708. name = "bdk_wallet"
  709. version = "2.3.0"
  710. source = "registry+https://github.com/rust-lang/crates.io-index"
  711. checksum = "b03f1e31ccc562f600981f747d2262b84428cbff52c9c9cdf14d15fb15bd2286"
  712. dependencies = [
  713. "bdk_chain",
  714. "bip39",
  715. "bitcoin 0.32.8",
  716. "miniscript",
  717. "rand_core 0.6.4",
  718. "serde",
  719. "serde_json",
  720. ]
  721. [[package]]
  722. name = "bech32"
  723. version = "0.10.0-beta"
  724. source = "registry+https://github.com/rust-lang/crates.io-index"
  725. checksum = "98f7eed2b2781a6f0b5c903471d48e15f56fb4e1165df8a9a2337fd1a59d45ea"
  726. [[package]]
  727. name = "bech32"
  728. version = "0.11.1"
  729. source = "registry+https://github.com/rust-lang/crates.io-index"
  730. checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f"
  731. [[package]]
  732. name = "bincode"
  733. version = "2.0.1"
  734. source = "registry+https://github.com/rust-lang/crates.io-index"
  735. checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
  736. dependencies = [
  737. "serde",
  738. "unty",
  739. ]
  740. [[package]]
  741. name = "bip21"
  742. version = "0.5.0"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "ebe7a7f5928d264879d5b65eb18a72ea1890c57f22d62ee2eba93f207a6a020b"
  745. dependencies = [
  746. "bitcoin 0.32.8",
  747. "percent-encoding-rfc3986",
  748. ]
  749. [[package]]
  750. name = "bip39"
  751. version = "2.2.2"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc"
  754. dependencies = [
  755. "bitcoin_hashes 0.14.1",
  756. "rand 0.8.5",
  757. "rand_core 0.6.4",
  758. "serde",
  759. "unicode-normalization",
  760. ]
  761. [[package]]
  762. name = "bitcoin"
  763. version = "0.31.2"
  764. source = "registry+https://github.com/rust-lang/crates.io-index"
  765. checksum = "6c85783c2fe40083ea54a33aa2f0ba58831d90fcd190f5bdc47e74e84d2a96ae"
  766. dependencies = [
  767. "bech32 0.10.0-beta",
  768. "bitcoin-internals 0.2.0",
  769. "bitcoin_hashes 0.13.0",
  770. "hex-conservative 0.1.2",
  771. "hex_lit",
  772. "secp256k1 0.28.2",
  773. "serde",
  774. ]
  775. [[package]]
  776. name = "bitcoin"
  777. version = "0.32.8"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "1e499f9fc0407f50fe98af744ab44fa67d409f76b6772e1689ec8485eb0c0f66"
  780. dependencies = [
  781. "base58ck",
  782. "base64 0.21.7",
  783. "bech32 0.11.1",
  784. "bitcoin-internals 0.3.0",
  785. "bitcoin-io",
  786. "bitcoin-units",
  787. "bitcoin_hashes 0.14.1",
  788. "hex-conservative 0.2.2",
  789. "hex_lit",
  790. "secp256k1 0.29.1",
  791. "serde",
  792. ]
  793. [[package]]
  794. name = "bitcoin-internals"
  795. version = "0.2.0"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
  798. dependencies = [
  799. "serde",
  800. ]
  801. [[package]]
  802. name = "bitcoin-internals"
  803. version = "0.3.0"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2"
  806. dependencies = [
  807. "serde",
  808. ]
  809. [[package]]
  810. name = "bitcoin-io"
  811. version = "0.1.4"
  812. source = "registry+https://github.com/rust-lang/crates.io-index"
  813. checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953"
  814. [[package]]
  815. name = "bitcoin-units"
  816. version = "0.1.2"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2"
  819. dependencies = [
  820. "bitcoin-internals 0.3.0",
  821. "serde",
  822. ]
  823. [[package]]
  824. name = "bitcoin_hashes"
  825. version = "0.13.0"
  826. source = "registry+https://github.com/rust-lang/crates.io-index"
  827. checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
  828. dependencies = [
  829. "bitcoin-internals 0.2.0",
  830. "hex-conservative 0.1.2",
  831. "serde",
  832. ]
  833. [[package]]
  834. name = "bitcoin_hashes"
  835. version = "0.14.1"
  836. source = "registry+https://github.com/rust-lang/crates.io-index"
  837. checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
  838. dependencies = [
  839. "bitcoin-io",
  840. "hex-conservative 0.2.2",
  841. "serde",
  842. ]
  843. [[package]]
  844. name = "bitcoincore-rpc"
  845. version = "0.19.0"
  846. source = "registry+https://github.com/rust-lang/crates.io-index"
  847. checksum = "aedd23ae0fd321affb4bbbc36126c6f49a32818dc6b979395d24da8c9d4e80ee"
  848. dependencies = [
  849. "bitcoincore-rpc-json",
  850. "jsonrpc",
  851. "log",
  852. "serde",
  853. "serde_json",
  854. ]
  855. [[package]]
  856. name = "bitcoincore-rpc-json"
  857. version = "0.19.0"
  858. source = "registry+https://github.com/rust-lang/crates.io-index"
  859. checksum = "d8909583c5fab98508e80ef73e5592a651c954993dc6b7739963257d19f0e71a"
  860. dependencies = [
  861. "bitcoin 0.32.8",
  862. "serde",
  863. "serde_json",
  864. ]
  865. [[package]]
  866. name = "bitflags"
  867. version = "1.3.2"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  870. [[package]]
  871. name = "bitflags"
  872. version = "2.11.0"
  873. source = "registry+https://github.com/rust-lang/crates.io-index"
  874. checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
  875. dependencies = [
  876. "serde_core",
  877. ]
  878. [[package]]
  879. name = "bitreq"
  880. version = "0.3.1"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "4bf88316bfce42d7db313826acfa4325857c085e26f163c3e8c1cfb38fef4007"
  883. dependencies = [
  884. "base64 0.22.1",
  885. "rustls 0.21.12",
  886. "rustls-webpki 0.101.7",
  887. "serde",
  888. "serde_json",
  889. "tokio",
  890. "tokio-rustls 0.24.1",
  891. "webpki-roots 0.25.4",
  892. ]
  893. [[package]]
  894. name = "bitvec"
  895. version = "1.0.1"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  898. dependencies = [
  899. "funty",
  900. "radium",
  901. "tap",
  902. "wyz",
  903. ]
  904. [[package]]
  905. name = "blanket"
  906. version = "0.3.0"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  909. dependencies = [
  910. "proc-macro2",
  911. "quote",
  912. "syn 2.0.116",
  913. ]
  914. [[package]]
  915. name = "block-buffer"
  916. version = "0.10.4"
  917. source = "registry+https://github.com/rust-lang/crates.io-index"
  918. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  919. dependencies = [
  920. "generic-array",
  921. ]
  922. [[package]]
  923. name = "block-padding"
  924. version = "0.3.3"
  925. source = "registry+https://github.com/rust-lang/crates.io-index"
  926. checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
  927. dependencies = [
  928. "generic-array",
  929. ]
  930. [[package]]
  931. name = "bounded-vec-deque"
  932. version = "0.1.1"
  933. source = "registry+https://github.com/rust-lang/crates.io-index"
  934. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  935. [[package]]
  936. name = "brotli"
  937. version = "8.0.2"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
  940. dependencies = [
  941. "alloc-no-stdlib",
  942. "alloc-stdlib",
  943. "brotli-decompressor",
  944. ]
  945. [[package]]
  946. name = "brotli-decompressor"
  947. version = "5.0.0"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
  950. dependencies = [
  951. "alloc-no-stdlib",
  952. "alloc-stdlib",
  953. ]
  954. [[package]]
  955. name = "bs58"
  956. version = "0.5.1"
  957. source = "registry+https://github.com/rust-lang/crates.io-index"
  958. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  959. dependencies = [
  960. "tinyvec",
  961. ]
  962. [[package]]
  963. name = "bumpalo"
  964. version = "3.19.1"
  965. source = "registry+https://github.com/rust-lang/crates.io-index"
  966. checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
  967. [[package]]
  968. name = "by_address"
  969. version = "1.2.1"
  970. source = "registry+https://github.com/rust-lang/crates.io-index"
  971. checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
  972. [[package]]
  973. name = "bytemuck"
  974. version = "1.25.0"
  975. source = "registry+https://github.com/rust-lang/crates.io-index"
  976. checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
  977. [[package]]
  978. name = "byteorder"
  979. version = "1.5.0"
  980. source = "registry+https://github.com/rust-lang/crates.io-index"
  981. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  982. [[package]]
  983. name = "bytes"
  984. version = "1.11.1"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
  987. [[package]]
  988. name = "camino"
  989. version = "1.2.2"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
  992. dependencies = [
  993. "serde_core",
  994. ]
  995. [[package]]
  996. name = "caret"
  997. version = "0.4.7"
  998. source = "registry+https://github.com/rust-lang/crates.io-index"
  999. checksum = "8c979a125c4d00f63d49b648530a952c6cc42e3387cc96f41f9a4687ee6b9273"
  1000. [[package]]
  1001. name = "cargo-platform"
  1002. version = "0.1.9"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  1005. dependencies = [
  1006. "serde",
  1007. ]
  1008. [[package]]
  1009. name = "cargo_metadata"
  1010. version = "0.19.2"
  1011. source = "registry+https://github.com/rust-lang/crates.io-index"
  1012. checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
  1013. dependencies = [
  1014. "camino",
  1015. "cargo-platform",
  1016. "semver",
  1017. "serde",
  1018. "serde_json",
  1019. "thiserror 2.0.18",
  1020. ]
  1021. [[package]]
  1022. name = "cashu"
  1023. version = "0.15.0"
  1024. dependencies = [
  1025. "bip39",
  1026. "bitcoin 0.32.8",
  1027. "cbor-diag",
  1028. "ciborium",
  1029. "lightning 0.2.2",
  1030. "lightning-invoice 0.34.0",
  1031. "nostr-sdk",
  1032. "once_cell",
  1033. "serde",
  1034. "serde_json",
  1035. "serde_with",
  1036. "strum 0.27.2",
  1037. "strum_macros 0.27.2",
  1038. "thiserror 2.0.18",
  1039. "tracing",
  1040. "url",
  1041. "utoipa",
  1042. "uuid",
  1043. "web-time",
  1044. "zeroize",
  1045. ]
  1046. [[package]]
  1047. name = "cast"
  1048. version = "0.3.0"
  1049. source = "registry+https://github.com/rust-lang/crates.io-index"
  1050. checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
  1051. [[package]]
  1052. name = "cbc"
  1053. version = "0.1.2"
  1054. source = "registry+https://github.com/rust-lang/crates.io-index"
  1055. checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
  1056. dependencies = [
  1057. "cipher",
  1058. ]
  1059. [[package]]
  1060. name = "cbor-diag"
  1061. version = "0.1.12"
  1062. source = "registry+https://github.com/rust-lang/crates.io-index"
  1063. checksum = "dc245b6ecd09b23901a4fbad1ad975701fd5061ceaef6afa93a2d70605a64429"
  1064. dependencies = [
  1065. "bs58",
  1066. "chrono",
  1067. "data-encoding",
  1068. "half",
  1069. "nom",
  1070. "num-bigint",
  1071. "num-rational",
  1072. "num-traits",
  1073. "separator",
  1074. "url",
  1075. "uuid",
  1076. ]
  1077. [[package]]
  1078. name = "cc"
  1079. version = "1.2.56"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
  1082. dependencies = [
  1083. "find-msvc-tools",
  1084. "jobserver",
  1085. "libc",
  1086. "shlex",
  1087. ]
  1088. [[package]]
  1089. name = "cdk"
  1090. version = "0.15.0"
  1091. dependencies = [
  1092. "anyhow",
  1093. "arc-swap",
  1094. "arti-client",
  1095. "arti-hyper",
  1096. "async-trait",
  1097. "bip39",
  1098. "bitcoin 0.32.8",
  1099. "cbor-diag",
  1100. "cdk-common",
  1101. "cdk-fake-wallet",
  1102. "cdk-npubcash",
  1103. "cdk-prometheus",
  1104. "cdk-signatory",
  1105. "cdk-sqlite",
  1106. "ciborium",
  1107. "criterion",
  1108. "futures",
  1109. "getrandom 0.2.17",
  1110. "gloo-timers",
  1111. "hickory-resolver",
  1112. "http 0.2.12",
  1113. "hyper 0.14.32",
  1114. "jsonwebtoken",
  1115. "lightning 0.2.2",
  1116. "lightning-invoice 0.34.0",
  1117. "nostr-sdk",
  1118. "rand 0.9.2",
  1119. "regex",
  1120. "ring 0.17.14",
  1121. "rustls 0.23.36",
  1122. "serde",
  1123. "serde_json",
  1124. "serde_with",
  1125. "thiserror 2.0.18",
  1126. "tls-api",
  1127. "tls-api-native-tls",
  1128. "tokio",
  1129. "tokio-tungstenite 0.26.2",
  1130. "tokio-util",
  1131. "tor-rtcompat",
  1132. "tracing",
  1133. "tracing-subscriber",
  1134. "ureq",
  1135. "url",
  1136. "utoipa",
  1137. "uuid",
  1138. "web-time",
  1139. "zeroize",
  1140. ]
  1141. [[package]]
  1142. name = "cdk-axum"
  1143. version = "0.15.0"
  1144. dependencies = [
  1145. "anyhow",
  1146. "async-trait",
  1147. "axum 0.8.8",
  1148. "cdk",
  1149. "cdk-prometheus",
  1150. "futures",
  1151. "moka",
  1152. "paste",
  1153. "redis",
  1154. "serde",
  1155. "serde_json",
  1156. "sha2",
  1157. "tokio",
  1158. "tracing",
  1159. "utoipa",
  1160. "uuid",
  1161. ]
  1162. [[package]]
  1163. name = "cdk-cli"
  1164. version = "0.15.0"
  1165. dependencies = [
  1166. "anyhow",
  1167. "bip39",
  1168. "bitcoin 0.32.8",
  1169. "cdk",
  1170. "cdk-common",
  1171. "cdk-redb",
  1172. "cdk-sqlite",
  1173. "clap",
  1174. "home",
  1175. "lightning 0.2.2",
  1176. "nostr-sdk",
  1177. "serde",
  1178. "serde_json",
  1179. "serde_with",
  1180. "tokio",
  1181. "tracing",
  1182. "tracing-subscriber",
  1183. "url",
  1184. ]
  1185. [[package]]
  1186. name = "cdk-cln"
  1187. version = "0.15.0"
  1188. dependencies = [
  1189. "async-trait",
  1190. "bitcoin 0.32.8",
  1191. "cdk-common",
  1192. "cln-rpc",
  1193. "futures",
  1194. "serde_json",
  1195. "thiserror 2.0.18",
  1196. "tokio",
  1197. "tokio-util",
  1198. "tracing",
  1199. "uuid",
  1200. ]
  1201. [[package]]
  1202. name = "cdk-common"
  1203. version = "0.15.0"
  1204. dependencies = [
  1205. "anyhow",
  1206. "async-trait",
  1207. "bip39",
  1208. "bitcoin 0.32.8",
  1209. "cashu",
  1210. "cbor-diag",
  1211. "cdk-http-client",
  1212. "cdk-prometheus",
  1213. "ciborium",
  1214. "criterion",
  1215. "futures",
  1216. "getrandom 0.2.17",
  1217. "lightning 0.2.2",
  1218. "lightning-invoice 0.34.0",
  1219. "parking_lot",
  1220. "paste",
  1221. "rand 0.9.2",
  1222. "serde",
  1223. "serde_json",
  1224. "serde_with",
  1225. "thiserror 2.0.18",
  1226. "tokio",
  1227. "tonic 0.14.4",
  1228. "tracing",
  1229. "url",
  1230. "utoipa",
  1231. "uuid",
  1232. "wasm-bindgen",
  1233. "wasm-bindgen-futures",
  1234. "wasm-bindgen-test",
  1235. "web-time",
  1236. ]
  1237. [[package]]
  1238. name = "cdk-fake-wallet"
  1239. version = "0.15.0"
  1240. dependencies = [
  1241. "async-trait",
  1242. "bitcoin 0.32.8",
  1243. "cdk-common",
  1244. "futures",
  1245. "lightning 0.2.2",
  1246. "lightning-invoice 0.34.0",
  1247. "serde",
  1248. "serde_json",
  1249. "thiserror 2.0.18",
  1250. "tokio",
  1251. "tokio-stream",
  1252. "tokio-util",
  1253. "tracing",
  1254. "uuid",
  1255. ]
  1256. [[package]]
  1257. name = "cdk-ffi"
  1258. version = "0.15.0"
  1259. dependencies = [
  1260. "android_logger",
  1261. "async-trait",
  1262. "bip39",
  1263. "cdk",
  1264. "cdk-common",
  1265. "cdk-npubcash",
  1266. "cdk-postgres",
  1267. "cdk-sql-common",
  1268. "cdk-sqlite",
  1269. "futures",
  1270. "log",
  1271. "nostr-sdk",
  1272. "once_cell",
  1273. "rand 0.9.2",
  1274. "serde",
  1275. "serde_json",
  1276. "thiserror 2.0.18",
  1277. "tokio",
  1278. "tracing",
  1279. "tracing-subscriber",
  1280. "uniffi",
  1281. "url",
  1282. "uuid",
  1283. ]
  1284. [[package]]
  1285. name = "cdk-http-client"
  1286. version = "0.15.0"
  1287. dependencies = [
  1288. "bitreq",
  1289. "mockito",
  1290. "regex",
  1291. "reqwest",
  1292. "serde",
  1293. "serde_json",
  1294. "serde_urlencoded",
  1295. "thiserror 2.0.18",
  1296. "tokio",
  1297. "url",
  1298. ]
  1299. [[package]]
  1300. name = "cdk-integration-tests"
  1301. version = "0.15.0"
  1302. dependencies = [
  1303. "anyhow",
  1304. "async-trait",
  1305. "axum 0.8.8",
  1306. "bip39",
  1307. "bitcoin 0.32.8",
  1308. "cashu",
  1309. "cdk",
  1310. "cdk-axum",
  1311. "cdk-cln",
  1312. "cdk-common",
  1313. "cdk-fake-wallet",
  1314. "cdk-ffi",
  1315. "cdk-http-client",
  1316. "cdk-ldk-node",
  1317. "cdk-lnd",
  1318. "cdk-mintd",
  1319. "cdk-redb",
  1320. "cdk-sqlite",
  1321. "clap",
  1322. "futures",
  1323. "getrandom 0.2.17",
  1324. "ldk-node",
  1325. "lightning-invoice 0.34.0",
  1326. "ln-regtest-rs",
  1327. "once_cell",
  1328. "rand 0.9.2",
  1329. "serde",
  1330. "serde_json",
  1331. "tokio",
  1332. "tokio-tungstenite 0.26.2",
  1333. "tokio-util",
  1334. "tower-http",
  1335. "tower-service",
  1336. "tracing",
  1337. "tracing-subscriber",
  1338. "uuid",
  1339. "web-time",
  1340. ]
  1341. [[package]]
  1342. name = "cdk-ldk-node"
  1343. version = "0.15.0"
  1344. dependencies = [
  1345. "async-trait",
  1346. "axum 0.8.8",
  1347. "bip39",
  1348. "cdk-common",
  1349. "futures",
  1350. "ldk-node",
  1351. "maud",
  1352. "rust-embed",
  1353. "serde",
  1354. "serde_json",
  1355. "serde_urlencoded",
  1356. "thiserror 2.0.18",
  1357. "tokio",
  1358. "tokio-stream",
  1359. "tokio-util",
  1360. "tower 0.5.3",
  1361. "tower-http",
  1362. "tracing",
  1363. "urlencoding",
  1364. ]
  1365. [[package]]
  1366. name = "cdk-lnbits"
  1367. version = "0.15.0"
  1368. dependencies = [
  1369. "anyhow",
  1370. "async-trait",
  1371. "bitcoin 0.32.8",
  1372. "cdk-common",
  1373. "futures",
  1374. "lnbits-rs",
  1375. "rustls 0.23.36",
  1376. "serde_json",
  1377. "thiserror 2.0.18",
  1378. "tokio",
  1379. "tokio-util",
  1380. "tracing",
  1381. ]
  1382. [[package]]
  1383. name = "cdk-lnd"
  1384. version = "0.15.0"
  1385. dependencies = [
  1386. "anyhow",
  1387. "async-trait",
  1388. "cdk-common",
  1389. "futures",
  1390. "http 1.4.0",
  1391. "hyper 1.8.1",
  1392. "hyper-rustls 0.27.7",
  1393. "hyper-util",
  1394. "prost 0.14.3",
  1395. "rustls 0.23.36",
  1396. "rustls-pemfile 2.2.0",
  1397. "serde_json",
  1398. "thiserror 2.0.18",
  1399. "tokio",
  1400. "tokio-util",
  1401. "tonic 0.14.4",
  1402. "tonic-prost",
  1403. "tonic-prost-build",
  1404. "tracing",
  1405. ]
  1406. [[package]]
  1407. name = "cdk-mint-rpc"
  1408. version = "0.15.0"
  1409. dependencies = [
  1410. "anyhow",
  1411. "cdk",
  1412. "cdk-common",
  1413. "clap",
  1414. "home",
  1415. "prost 0.14.3",
  1416. "rustls 0.23.36",
  1417. "serde",
  1418. "serde_json",
  1419. "thiserror 2.0.18",
  1420. "tokio",
  1421. "tonic 0.14.4",
  1422. "tonic-prost",
  1423. "tonic-prost-build",
  1424. "tracing",
  1425. "tracing-subscriber",
  1426. ]
  1427. [[package]]
  1428. name = "cdk-mintd"
  1429. version = "0.15.0"
  1430. dependencies = [
  1431. "anyhow",
  1432. "async-trait",
  1433. "axum 0.8.8",
  1434. "bip39",
  1435. "bitcoin 0.32.8",
  1436. "cdk",
  1437. "cdk-axum",
  1438. "cdk-cln",
  1439. "cdk-common",
  1440. "cdk-fake-wallet",
  1441. "cdk-ldk-node",
  1442. "cdk-lnbits",
  1443. "cdk-lnd",
  1444. "cdk-mint-rpc",
  1445. "cdk-payment-processor",
  1446. "cdk-postgres",
  1447. "cdk-prometheus",
  1448. "cdk-signatory",
  1449. "cdk-sqlite",
  1450. "clap",
  1451. "config",
  1452. "futures",
  1453. "home",
  1454. "lightning-invoice 0.34.0",
  1455. "serde",
  1456. "tokio",
  1457. "tower 0.5.3",
  1458. "tower-http",
  1459. "tracing",
  1460. "tracing-appender",
  1461. "tracing-subscriber",
  1462. "utoipa",
  1463. "utoipa-swagger-ui",
  1464. ]
  1465. [[package]]
  1466. name = "cdk-npubcash"
  1467. version = "0.15.0"
  1468. dependencies = [
  1469. "async-trait",
  1470. "base64 0.22.1",
  1471. "cashu",
  1472. "cdk",
  1473. "cdk-common",
  1474. "cdk-http-client",
  1475. "cdk-sqlite",
  1476. "chrono",
  1477. "nostr-sdk",
  1478. "rustls 0.23.36",
  1479. "serde",
  1480. "serde_json",
  1481. "thiserror 2.0.18",
  1482. "tokio",
  1483. "tracing",
  1484. "tracing-subscriber",
  1485. "url",
  1486. ]
  1487. [[package]]
  1488. name = "cdk-payment-processor"
  1489. version = "0.15.0"
  1490. dependencies = [
  1491. "anyhow",
  1492. "async-trait",
  1493. "bip39",
  1494. "bitcoin 0.32.8",
  1495. "cashu",
  1496. "cdk-cln",
  1497. "cdk-common",
  1498. "cdk-fake-wallet",
  1499. "cdk-lnd",
  1500. "cdk-sqlite",
  1501. "clap",
  1502. "futures",
  1503. "hex",
  1504. "lightning 0.2.2",
  1505. "lightning-invoice 0.34.0",
  1506. "prost 0.14.3",
  1507. "rand 0.9.2",
  1508. "serde",
  1509. "serde_json",
  1510. "serde_with",
  1511. "thiserror 2.0.18",
  1512. "tokio",
  1513. "tokio-stream",
  1514. "tokio-util",
  1515. "tonic 0.14.4",
  1516. "tonic-prost",
  1517. "tonic-prost-build",
  1518. "tracing",
  1519. "tracing-subscriber",
  1520. "utoipa",
  1521. "uuid",
  1522. ]
  1523. [[package]]
  1524. name = "cdk-postgres"
  1525. version = "0.15.0"
  1526. dependencies = [
  1527. "async-trait",
  1528. "bitcoin 0.32.8",
  1529. "cdk-common",
  1530. "cdk-sql-common",
  1531. "futures-util",
  1532. "lightning-invoice 0.34.0",
  1533. "native-tls",
  1534. "once_cell",
  1535. "paste",
  1536. "postgres-native-tls",
  1537. "serde",
  1538. "serde_json",
  1539. "thiserror 2.0.18",
  1540. "tokio",
  1541. "tokio-postgres",
  1542. "tracing",
  1543. "uuid",
  1544. ]
  1545. [[package]]
  1546. name = "cdk-prometheus"
  1547. version = "0.15.0"
  1548. dependencies = [
  1549. "anyhow",
  1550. "futures",
  1551. "once_cell",
  1552. "prometheus",
  1553. "reqwest",
  1554. "serde",
  1555. "serde_json",
  1556. "sysinfo",
  1557. "thiserror 2.0.18",
  1558. "tokio",
  1559. "tracing",
  1560. "tracing-subscriber",
  1561. ]
  1562. [[package]]
  1563. name = "cdk-redb"
  1564. version = "0.15.0"
  1565. dependencies = [
  1566. "async-trait",
  1567. "cdk-common",
  1568. "lightning-invoice 0.34.0",
  1569. "paste",
  1570. "redb",
  1571. "serde",
  1572. "serde_json",
  1573. "tempfile",
  1574. "thiserror 2.0.18",
  1575. "tokio",
  1576. "tracing",
  1577. "uuid",
  1578. ]
  1579. [[package]]
  1580. name = "cdk-signatory"
  1581. version = "0.15.0"
  1582. dependencies = [
  1583. "anyhow",
  1584. "async-trait",
  1585. "bip39",
  1586. "bitcoin 0.32.8",
  1587. "cdk-common",
  1588. "cdk-sqlite",
  1589. "clap",
  1590. "getrandom 0.2.17",
  1591. "home",
  1592. "prost 0.14.3",
  1593. "rustls 0.23.36",
  1594. "thiserror 2.0.18",
  1595. "tokio",
  1596. "tokio-stream",
  1597. "tonic 0.14.4",
  1598. "tonic-prost",
  1599. "tonic-prost-build",
  1600. "tracing",
  1601. "tracing-subscriber",
  1602. ]
  1603. [[package]]
  1604. name = "cdk-sql-common"
  1605. version = "0.15.0"
  1606. dependencies = [
  1607. "async-trait",
  1608. "bitcoin 0.32.8",
  1609. "cdk-common",
  1610. "cdk-prometheus",
  1611. "lightning-invoice 0.34.0",
  1612. "once_cell",
  1613. "serde",
  1614. "serde_json",
  1615. "thiserror 2.0.18",
  1616. "tokio",
  1617. "tracing",
  1618. "uuid",
  1619. ]
  1620. [[package]]
  1621. name = "cdk-sqlite"
  1622. version = "0.15.0"
  1623. dependencies = [
  1624. "async-trait",
  1625. "bitcoin 0.32.8",
  1626. "cdk-common",
  1627. "cdk-prometheus",
  1628. "cdk-sql-common",
  1629. "lightning-invoice 0.34.0",
  1630. "paste",
  1631. "rusqlite",
  1632. "serde",
  1633. "serde_json",
  1634. "thiserror 2.0.18",
  1635. "tokio",
  1636. "tracing",
  1637. "uuid",
  1638. ]
  1639. [[package]]
  1640. name = "cfg-if"
  1641. version = "1.0.4"
  1642. source = "registry+https://github.com/rust-lang/crates.io-index"
  1643. checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
  1644. [[package]]
  1645. name = "cfg_aliases"
  1646. version = "0.2.1"
  1647. source = "registry+https://github.com/rust-lang/crates.io-index"
  1648. checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
  1649. [[package]]
  1650. name = "chacha20"
  1651. version = "0.9.1"
  1652. source = "registry+https://github.com/rust-lang/crates.io-index"
  1653. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  1654. dependencies = [
  1655. "cfg-if",
  1656. "cipher",
  1657. "cpufeatures",
  1658. ]
  1659. [[package]]
  1660. name = "chacha20-poly1305"
  1661. version = "0.1.2"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "4b4b0fc281743d80256607bd65e8beedc42cb0787ea119c85b81b4c0eab85e5f"
  1664. [[package]]
  1665. name = "chacha20poly1305"
  1666. version = "0.10.1"
  1667. source = "registry+https://github.com/rust-lang/crates.io-index"
  1668. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  1669. dependencies = [
  1670. "aead",
  1671. "chacha20",
  1672. "cipher",
  1673. "poly1305",
  1674. "zeroize",
  1675. ]
  1676. [[package]]
  1677. name = "chrono"
  1678. version = "0.4.43"
  1679. source = "registry+https://github.com/rust-lang/crates.io-index"
  1680. checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
  1681. dependencies = [
  1682. "iana-time-zone",
  1683. "js-sys",
  1684. "num-traits",
  1685. "serde",
  1686. "wasm-bindgen",
  1687. "windows-link",
  1688. ]
  1689. [[package]]
  1690. name = "chunked_transfer"
  1691. version = "1.5.0"
  1692. source = "registry+https://github.com/rust-lang/crates.io-index"
  1693. checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
  1694. [[package]]
  1695. name = "ciborium"
  1696. version = "0.2.2"
  1697. source = "registry+https://github.com/rust-lang/crates.io-index"
  1698. checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
  1699. dependencies = [
  1700. "ciborium-io",
  1701. "ciborium-ll",
  1702. "serde",
  1703. ]
  1704. [[package]]
  1705. name = "ciborium-io"
  1706. version = "0.2.2"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
  1709. [[package]]
  1710. name = "ciborium-ll"
  1711. version = "0.2.2"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
  1714. dependencies = [
  1715. "ciborium-io",
  1716. "half",
  1717. ]
  1718. [[package]]
  1719. name = "cipher"
  1720. version = "0.4.4"
  1721. source = "registry+https://github.com/rust-lang/crates.io-index"
  1722. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  1723. dependencies = [
  1724. "crypto-common",
  1725. "inout",
  1726. "zeroize",
  1727. ]
  1728. [[package]]
  1729. name = "clap"
  1730. version = "4.5.59"
  1731. source = "registry+https://github.com/rust-lang/crates.io-index"
  1732. checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
  1733. dependencies = [
  1734. "clap_builder",
  1735. "clap_derive",
  1736. ]
  1737. [[package]]
  1738. name = "clap_builder"
  1739. version = "4.5.59"
  1740. source = "registry+https://github.com/rust-lang/crates.io-index"
  1741. checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
  1742. dependencies = [
  1743. "anstream",
  1744. "anstyle",
  1745. "clap_lex",
  1746. "strsim 0.11.1",
  1747. ]
  1748. [[package]]
  1749. name = "clap_derive"
  1750. version = "4.5.55"
  1751. source = "registry+https://github.com/rust-lang/crates.io-index"
  1752. checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
  1753. dependencies = [
  1754. "heck 0.5.0",
  1755. "proc-macro2",
  1756. "quote",
  1757. "syn 2.0.116",
  1758. ]
  1759. [[package]]
  1760. name = "clap_lex"
  1761. version = "1.0.0"
  1762. source = "registry+https://github.com/rust-lang/crates.io-index"
  1763. checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
  1764. [[package]]
  1765. name = "cln-rpc"
  1766. version = "0.4.0"
  1767. source = "registry+https://github.com/rust-lang/crates.io-index"
  1768. checksum = "f4436e58f1fccb1faf69df9ac436ae9304b5c200c7d92e6c4229826bdd0a8d0d"
  1769. dependencies = [
  1770. "anyhow",
  1771. "bitcoin 0.31.2",
  1772. "bytes",
  1773. "futures-util",
  1774. "hex",
  1775. "log",
  1776. "serde",
  1777. "serde_json",
  1778. "tokio",
  1779. "tokio-util",
  1780. ]
  1781. [[package]]
  1782. name = "cmake"
  1783. version = "0.1.57"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
  1786. dependencies = [
  1787. "cc",
  1788. ]
  1789. [[package]]
  1790. name = "coarsetime"
  1791. version = "0.1.37"
  1792. source = "registry+https://github.com/rust-lang/crates.io-index"
  1793. checksum = "e58eb270476aa4fc7843849f8a35063e8743b4dbcdf6dd0f8ea0886980c204c2"
  1794. dependencies = [
  1795. "libc",
  1796. "wasix",
  1797. "wasm-bindgen",
  1798. ]
  1799. [[package]]
  1800. name = "colorchoice"
  1801. version = "1.0.4"
  1802. source = "registry+https://github.com/rust-lang/crates.io-index"
  1803. checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
  1804. [[package]]
  1805. name = "colored"
  1806. version = "3.1.1"
  1807. source = "registry+https://github.com/rust-lang/crates.io-index"
  1808. checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
  1809. dependencies = [
  1810. "windows-sys 0.61.2",
  1811. ]
  1812. [[package]]
  1813. name = "combine"
  1814. version = "4.6.7"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  1817. dependencies = [
  1818. "bytes",
  1819. "futures-core",
  1820. "memchr",
  1821. "pin-project-lite",
  1822. "tokio",
  1823. "tokio-util",
  1824. ]
  1825. [[package]]
  1826. name = "compression-codecs"
  1827. version = "0.4.36"
  1828. source = "registry+https://github.com/rust-lang/crates.io-index"
  1829. checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a"
  1830. dependencies = [
  1831. "brotli",
  1832. "compression-core",
  1833. "flate2",
  1834. "liblzma",
  1835. "memchr",
  1836. "zstd",
  1837. "zstd-safe",
  1838. ]
  1839. [[package]]
  1840. name = "compression-core"
  1841. version = "0.4.31"
  1842. source = "registry+https://github.com/rust-lang/crates.io-index"
  1843. checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
  1844. [[package]]
  1845. name = "concurrent-queue"
  1846. version = "2.5.0"
  1847. source = "registry+https://github.com/rust-lang/crates.io-index"
  1848. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  1849. dependencies = [
  1850. "crossbeam-utils",
  1851. ]
  1852. [[package]]
  1853. name = "config"
  1854. version = "0.15.19"
  1855. source = "registry+https://github.com/rust-lang/crates.io-index"
  1856. checksum = "b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6"
  1857. dependencies = [
  1858. "async-trait",
  1859. "convert_case 0.6.0",
  1860. "json5",
  1861. "pathdiff",
  1862. "ron",
  1863. "rust-ini",
  1864. "serde-untagged",
  1865. "serde_core",
  1866. "serde_json",
  1867. "toml 0.9.12+spec-1.1.0",
  1868. "winnow 0.7.14",
  1869. "yaml-rust2",
  1870. ]
  1871. [[package]]
  1872. name = "const-oid"
  1873. version = "0.9.6"
  1874. source = "registry+https://github.com/rust-lang/crates.io-index"
  1875. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  1876. [[package]]
  1877. name = "const-random"
  1878. version = "0.1.18"
  1879. source = "registry+https://github.com/rust-lang/crates.io-index"
  1880. checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
  1881. dependencies = [
  1882. "const-random-macro",
  1883. ]
  1884. [[package]]
  1885. name = "const-random-macro"
  1886. version = "0.1.16"
  1887. source = "registry+https://github.com/rust-lang/crates.io-index"
  1888. checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
  1889. dependencies = [
  1890. "getrandom 0.2.17",
  1891. "once_cell",
  1892. "tiny-keccak",
  1893. ]
  1894. [[package]]
  1895. name = "convert_case"
  1896. version = "0.4.0"
  1897. source = "registry+https://github.com/rust-lang/crates.io-index"
  1898. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  1899. [[package]]
  1900. name = "convert_case"
  1901. version = "0.6.0"
  1902. source = "registry+https://github.com/rust-lang/crates.io-index"
  1903. checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
  1904. dependencies = [
  1905. "unicode-segmentation",
  1906. ]
  1907. [[package]]
  1908. name = "cookie"
  1909. version = "0.18.1"
  1910. source = "registry+https://github.com/rust-lang/crates.io-index"
  1911. checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
  1912. dependencies = [
  1913. "percent-encoding",
  1914. "time",
  1915. "version_check",
  1916. ]
  1917. [[package]]
  1918. name = "cookie_store"
  1919. version = "0.22.1"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
  1922. dependencies = [
  1923. "cookie",
  1924. "document-features",
  1925. "idna",
  1926. "indexmap 2.13.0",
  1927. "log",
  1928. "serde",
  1929. "serde_derive",
  1930. "serde_json",
  1931. "time",
  1932. "url",
  1933. ]
  1934. [[package]]
  1935. name = "core-foundation"
  1936. version = "0.9.4"
  1937. source = "registry+https://github.com/rust-lang/crates.io-index"
  1938. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  1939. dependencies = [
  1940. "core-foundation-sys",
  1941. "libc",
  1942. ]
  1943. [[package]]
  1944. name = "core-foundation"
  1945. version = "0.10.1"
  1946. source = "registry+https://github.com/rust-lang/crates.io-index"
  1947. checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
  1948. dependencies = [
  1949. "core-foundation-sys",
  1950. "libc",
  1951. ]
  1952. [[package]]
  1953. name = "core-foundation-sys"
  1954. version = "0.8.7"
  1955. source = "registry+https://github.com/rust-lang/crates.io-index"
  1956. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  1957. [[package]]
  1958. name = "cpufeatures"
  1959. version = "0.2.17"
  1960. source = "registry+https://github.com/rust-lang/crates.io-index"
  1961. checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
  1962. dependencies = [
  1963. "libc",
  1964. ]
  1965. [[package]]
  1966. name = "crc32fast"
  1967. version = "1.5.0"
  1968. source = "registry+https://github.com/rust-lang/crates.io-index"
  1969. checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
  1970. dependencies = [
  1971. "cfg-if",
  1972. ]
  1973. [[package]]
  1974. name = "criterion"
  1975. version = "0.6.0"
  1976. source = "registry+https://github.com/rust-lang/crates.io-index"
  1977. checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679"
  1978. dependencies = [
  1979. "anes",
  1980. "cast",
  1981. "ciborium",
  1982. "clap",
  1983. "criterion-plot",
  1984. "itertools 0.13.0",
  1985. "num-traits",
  1986. "oorandom",
  1987. "plotters",
  1988. "rayon",
  1989. "regex",
  1990. "serde",
  1991. "serde_json",
  1992. "tinytemplate",
  1993. "walkdir",
  1994. ]
  1995. [[package]]
  1996. name = "criterion-plot"
  1997. version = "0.5.0"
  1998. source = "registry+https://github.com/rust-lang/crates.io-index"
  1999. checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
  2000. dependencies = [
  2001. "cast",
  2002. "itertools 0.10.5",
  2003. ]
  2004. [[package]]
  2005. name = "critical-section"
  2006. version = "1.2.0"
  2007. source = "registry+https://github.com/rust-lang/crates.io-index"
  2008. checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
  2009. [[package]]
  2010. name = "crossbeam-channel"
  2011. version = "0.5.15"
  2012. source = "registry+https://github.com/rust-lang/crates.io-index"
  2013. checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
  2014. dependencies = [
  2015. "crossbeam-utils",
  2016. ]
  2017. [[package]]
  2018. name = "crossbeam-deque"
  2019. version = "0.8.6"
  2020. source = "registry+https://github.com/rust-lang/crates.io-index"
  2021. checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
  2022. dependencies = [
  2023. "crossbeam-epoch",
  2024. "crossbeam-utils",
  2025. ]
  2026. [[package]]
  2027. name = "crossbeam-epoch"
  2028. version = "0.9.18"
  2029. source = "registry+https://github.com/rust-lang/crates.io-index"
  2030. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  2031. dependencies = [
  2032. "crossbeam-utils",
  2033. ]
  2034. [[package]]
  2035. name = "crossbeam-queue"
  2036. version = "0.3.12"
  2037. source = "registry+https://github.com/rust-lang/crates.io-index"
  2038. checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
  2039. dependencies = [
  2040. "crossbeam-utils",
  2041. ]
  2042. [[package]]
  2043. name = "crossbeam-utils"
  2044. version = "0.8.21"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  2047. [[package]]
  2048. name = "crunchy"
  2049. version = "0.2.4"
  2050. source = "registry+https://github.com/rust-lang/crates.io-index"
  2051. checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
  2052. [[package]]
  2053. name = "crypto-bigint"
  2054. version = "0.5.5"
  2055. source = "registry+https://github.com/rust-lang/crates.io-index"
  2056. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  2057. dependencies = [
  2058. "generic-array",
  2059. "rand_core 0.6.4",
  2060. "subtle",
  2061. "zeroize",
  2062. ]
  2063. [[package]]
  2064. name = "crypto-common"
  2065. version = "0.1.7"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
  2068. dependencies = [
  2069. "generic-array",
  2070. "rand_core 0.6.4",
  2071. "typenum",
  2072. ]
  2073. [[package]]
  2074. name = "ctr"
  2075. version = "0.9.2"
  2076. source = "registry+https://github.com/rust-lang/crates.io-index"
  2077. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  2078. dependencies = [
  2079. "cipher",
  2080. ]
  2081. [[package]]
  2082. name = "curve25519-dalek"
  2083. version = "4.1.3"
  2084. source = "registry+https://github.com/rust-lang/crates.io-index"
  2085. checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
  2086. dependencies = [
  2087. "cfg-if",
  2088. "cpufeatures",
  2089. "curve25519-dalek-derive",
  2090. "digest",
  2091. "fiat-crypto",
  2092. "rustc_version",
  2093. "subtle",
  2094. "zeroize",
  2095. ]
  2096. [[package]]
  2097. name = "curve25519-dalek-derive"
  2098. version = "0.1.1"
  2099. source = "registry+https://github.com/rust-lang/crates.io-index"
  2100. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  2101. dependencies = [
  2102. "proc-macro2",
  2103. "quote",
  2104. "syn 2.0.116",
  2105. ]
  2106. [[package]]
  2107. name = "darling"
  2108. version = "0.14.4"
  2109. source = "registry+https://github.com/rust-lang/crates.io-index"
  2110. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  2111. dependencies = [
  2112. "darling_core 0.14.4",
  2113. "darling_macro 0.14.4",
  2114. ]
  2115. [[package]]
  2116. name = "darling"
  2117. version = "0.21.3"
  2118. source = "registry+https://github.com/rust-lang/crates.io-index"
  2119. checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
  2120. dependencies = [
  2121. "darling_core 0.21.3",
  2122. "darling_macro 0.21.3",
  2123. ]
  2124. [[package]]
  2125. name = "darling_core"
  2126. version = "0.14.4"
  2127. source = "registry+https://github.com/rust-lang/crates.io-index"
  2128. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  2129. dependencies = [
  2130. "fnv",
  2131. "ident_case",
  2132. "proc-macro2",
  2133. "quote",
  2134. "strsim 0.10.0",
  2135. "syn 1.0.109",
  2136. ]
  2137. [[package]]
  2138. name = "darling_core"
  2139. version = "0.21.3"
  2140. source = "registry+https://github.com/rust-lang/crates.io-index"
  2141. checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
  2142. dependencies = [
  2143. "fnv",
  2144. "ident_case",
  2145. "proc-macro2",
  2146. "quote",
  2147. "strsim 0.11.1",
  2148. "syn 2.0.116",
  2149. ]
  2150. [[package]]
  2151. name = "darling_macro"
  2152. version = "0.14.4"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  2155. dependencies = [
  2156. "darling_core 0.14.4",
  2157. "quote",
  2158. "syn 1.0.109",
  2159. ]
  2160. [[package]]
  2161. name = "darling_macro"
  2162. version = "0.21.3"
  2163. source = "registry+https://github.com/rust-lang/crates.io-index"
  2164. checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
  2165. dependencies = [
  2166. "darling_core 0.21.3",
  2167. "quote",
  2168. "syn 2.0.116",
  2169. ]
  2170. [[package]]
  2171. name = "data-encoding"
  2172. version = "2.10.0"
  2173. source = "registry+https://github.com/rust-lang/crates.io-index"
  2174. checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
  2175. [[package]]
  2176. name = "der"
  2177. version = "0.7.10"
  2178. source = "registry+https://github.com/rust-lang/crates.io-index"
  2179. checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
  2180. dependencies = [
  2181. "const-oid",
  2182. "pem-rfc7468",
  2183. "zeroize",
  2184. ]
  2185. [[package]]
  2186. name = "deranged"
  2187. version = "0.5.6"
  2188. source = "registry+https://github.com/rust-lang/crates.io-index"
  2189. checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
  2190. dependencies = [
  2191. "powerfmt",
  2192. "serde_core",
  2193. ]
  2194. [[package]]
  2195. name = "derive-adhoc"
  2196. version = "0.7.3"
  2197. source = "registry+https://github.com/rust-lang/crates.io-index"
  2198. checksum = "5283ac2881753c76c0892406705553f0d9ab30649f81e18964d3408f4501edb8"
  2199. dependencies = [
  2200. "derive-adhoc-macros",
  2201. "heck 0.4.1",
  2202. ]
  2203. [[package]]
  2204. name = "derive-adhoc-macros"
  2205. version = "0.7.3"
  2206. source = "registry+https://github.com/rust-lang/crates.io-index"
  2207. checksum = "c21b673a9b8c78c34908e6fcb42b922e11c4df2de5237f1c3f58d3285904a84b"
  2208. dependencies = [
  2209. "heck 0.4.1",
  2210. "itertools 0.11.0",
  2211. "proc-macro-crate 1.3.1",
  2212. "proc-macro2",
  2213. "quote",
  2214. "sha3",
  2215. "strum 0.25.0",
  2216. "syn 1.0.109",
  2217. "void",
  2218. ]
  2219. [[package]]
  2220. name = "derive-deftly"
  2221. version = "0.10.5"
  2222. source = "registry+https://github.com/rust-lang/crates.io-index"
  2223. checksum = "2c173dfcd5b92893ab05a8efb18b9522db4db6e0b93db5740f397573c027ce1e"
  2224. dependencies = [
  2225. "derive-deftly-macros",
  2226. "heck 0.5.0",
  2227. ]
  2228. [[package]]
  2229. name = "derive-deftly-macros"
  2230. version = "0.10.5"
  2231. source = "registry+https://github.com/rust-lang/crates.io-index"
  2232. checksum = "216fa20211bcd18cc359b75413bfb6cf89f62568fa27bc5fed3778a7a16e17af"
  2233. dependencies = [
  2234. "heck 0.5.0",
  2235. "indexmap 2.13.0",
  2236. "itertools 0.12.1",
  2237. "proc-macro-crate 3.4.0",
  2238. "proc-macro2",
  2239. "quote",
  2240. "sha3",
  2241. "strum 0.26.3",
  2242. "syn 2.0.116",
  2243. "void",
  2244. ]
  2245. [[package]]
  2246. name = "derive_arbitrary"
  2247. version = "1.4.2"
  2248. source = "registry+https://github.com/rust-lang/crates.io-index"
  2249. checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
  2250. dependencies = [
  2251. "proc-macro2",
  2252. "quote",
  2253. "syn 2.0.116",
  2254. ]
  2255. [[package]]
  2256. name = "derive_builder_core_fork_arti"
  2257. version = "0.11.2"
  2258. source = "registry+https://github.com/rust-lang/crates.io-index"
  2259. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  2260. dependencies = [
  2261. "darling 0.14.4",
  2262. "proc-macro2",
  2263. "quote",
  2264. "syn 1.0.109",
  2265. ]
  2266. [[package]]
  2267. name = "derive_builder_fork_arti"
  2268. version = "0.11.2"
  2269. source = "registry+https://github.com/rust-lang/crates.io-index"
  2270. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  2271. dependencies = [
  2272. "derive_builder_macro_fork_arti",
  2273. ]
  2274. [[package]]
  2275. name = "derive_builder_macro_fork_arti"
  2276. version = "0.11.2"
  2277. source = "registry+https://github.com/rust-lang/crates.io-index"
  2278. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  2279. dependencies = [
  2280. "derive_builder_core_fork_arti",
  2281. "syn 1.0.109",
  2282. ]
  2283. [[package]]
  2284. name = "derive_more"
  2285. version = "0.99.20"
  2286. source = "registry+https://github.com/rust-lang/crates.io-index"
  2287. checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
  2288. dependencies = [
  2289. "convert_case 0.4.0",
  2290. "proc-macro2",
  2291. "quote",
  2292. "rustc_version",
  2293. "syn 2.0.116",
  2294. ]
  2295. [[package]]
  2296. name = "digest"
  2297. version = "0.10.7"
  2298. source = "registry+https://github.com/rust-lang/crates.io-index"
  2299. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  2300. dependencies = [
  2301. "block-buffer",
  2302. "const-oid",
  2303. "crypto-common",
  2304. "subtle",
  2305. ]
  2306. [[package]]
  2307. name = "directories"
  2308. version = "5.0.1"
  2309. source = "registry+https://github.com/rust-lang/crates.io-index"
  2310. checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
  2311. dependencies = [
  2312. "dirs-sys 0.4.1",
  2313. ]
  2314. [[package]]
  2315. name = "dirs"
  2316. version = "5.0.1"
  2317. source = "registry+https://github.com/rust-lang/crates.io-index"
  2318. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  2319. dependencies = [
  2320. "dirs-sys 0.4.1",
  2321. ]
  2322. [[package]]
  2323. name = "dirs"
  2324. version = "6.0.0"
  2325. source = "registry+https://github.com/rust-lang/crates.io-index"
  2326. checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
  2327. dependencies = [
  2328. "dirs-sys 0.5.0",
  2329. ]
  2330. [[package]]
  2331. name = "dirs-sys"
  2332. version = "0.4.1"
  2333. source = "registry+https://github.com/rust-lang/crates.io-index"
  2334. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  2335. dependencies = [
  2336. "libc",
  2337. "option-ext",
  2338. "redox_users 0.4.6",
  2339. "windows-sys 0.48.0",
  2340. ]
  2341. [[package]]
  2342. name = "dirs-sys"
  2343. version = "0.5.0"
  2344. source = "registry+https://github.com/rust-lang/crates.io-index"
  2345. checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
  2346. dependencies = [
  2347. "libc",
  2348. "option-ext",
  2349. "redox_users 0.5.2",
  2350. "windows-sys 0.61.2",
  2351. ]
  2352. [[package]]
  2353. name = "displaydoc"
  2354. version = "0.2.5"
  2355. source = "registry+https://github.com/rust-lang/crates.io-index"
  2356. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  2357. dependencies = [
  2358. "proc-macro2",
  2359. "quote",
  2360. "syn 2.0.116",
  2361. ]
  2362. [[package]]
  2363. name = "dlv-list"
  2364. version = "0.5.2"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
  2367. dependencies = [
  2368. "const-random",
  2369. ]
  2370. [[package]]
  2371. name = "dnssec-prover"
  2372. version = "0.6.8"
  2373. source = "registry+https://github.com/rust-lang/crates.io-index"
  2374. checksum = "ec4f825369fc7134da70ca4040fddc8e03b80a46d249ae38d9c1c39b7b4476bf"
  2375. [[package]]
  2376. name = "document-features"
  2377. version = "0.2.12"
  2378. source = "registry+https://github.com/rust-lang/crates.io-index"
  2379. checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
  2380. dependencies = [
  2381. "litrs",
  2382. ]
  2383. [[package]]
  2384. name = "downcast-rs"
  2385. version = "1.2.1"
  2386. source = "registry+https://github.com/rust-lang/crates.io-index"
  2387. checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
  2388. [[package]]
  2389. name = "dunce"
  2390. version = "1.0.5"
  2391. source = "registry+https://github.com/rust-lang/crates.io-index"
  2392. checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
  2393. [[package]]
  2394. name = "dyn-clone"
  2395. version = "1.0.20"
  2396. source = "registry+https://github.com/rust-lang/crates.io-index"
  2397. checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
  2398. [[package]]
  2399. name = "ecdsa"
  2400. version = "0.16.9"
  2401. source = "registry+https://github.com/rust-lang/crates.io-index"
  2402. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  2403. dependencies = [
  2404. "der",
  2405. "digest",
  2406. "elliptic-curve",
  2407. "rfc6979",
  2408. "signature",
  2409. "spki",
  2410. ]
  2411. [[package]]
  2412. name = "ed25519"
  2413. version = "2.2.3"
  2414. source = "registry+https://github.com/rust-lang/crates.io-index"
  2415. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  2416. dependencies = [
  2417. "pkcs8",
  2418. "signature",
  2419. ]
  2420. [[package]]
  2421. name = "ed25519-dalek"
  2422. version = "2.2.0"
  2423. source = "registry+https://github.com/rust-lang/crates.io-index"
  2424. checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
  2425. dependencies = [
  2426. "curve25519-dalek",
  2427. "ed25519",
  2428. "merlin",
  2429. "rand_core 0.6.4",
  2430. "serde",
  2431. "sha2",
  2432. "subtle",
  2433. "zeroize",
  2434. ]
  2435. [[package]]
  2436. name = "educe"
  2437. version = "0.4.23"
  2438. source = "registry+https://github.com/rust-lang/crates.io-index"
  2439. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  2440. dependencies = [
  2441. "enum-ordinalize",
  2442. "proc-macro2",
  2443. "quote",
  2444. "syn 1.0.109",
  2445. ]
  2446. [[package]]
  2447. name = "either"
  2448. version = "1.15.0"
  2449. source = "registry+https://github.com/rust-lang/crates.io-index"
  2450. checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
  2451. [[package]]
  2452. name = "electrum-client"
  2453. version = "0.24.1"
  2454. source = "registry+https://github.com/rust-lang/crates.io-index"
  2455. checksum = "a5059f13888a90486e7268bbce59b175f5f76b1c55e5b9c568ceaa42d2b8507c"
  2456. dependencies = [
  2457. "bitcoin 0.32.8",
  2458. "byteorder",
  2459. "libc",
  2460. "log",
  2461. "rustls 0.23.36",
  2462. "serde",
  2463. "serde_json",
  2464. "webpki-roots 0.25.4",
  2465. "winapi",
  2466. ]
  2467. [[package]]
  2468. name = "elliptic-curve"
  2469. version = "0.13.8"
  2470. source = "registry+https://github.com/rust-lang/crates.io-index"
  2471. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  2472. dependencies = [
  2473. "base16ct",
  2474. "crypto-bigint",
  2475. "digest",
  2476. "ff",
  2477. "generic-array",
  2478. "group",
  2479. "pkcs8",
  2480. "rand_core 0.6.4",
  2481. "sec1",
  2482. "subtle",
  2483. "zeroize",
  2484. ]
  2485. [[package]]
  2486. name = "encoding_rs"
  2487. version = "0.8.35"
  2488. source = "registry+https://github.com/rust-lang/crates.io-index"
  2489. checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
  2490. dependencies = [
  2491. "cfg-if",
  2492. ]
  2493. [[package]]
  2494. name = "enum-as-inner"
  2495. version = "0.6.1"
  2496. source = "registry+https://github.com/rust-lang/crates.io-index"
  2497. checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
  2498. dependencies = [
  2499. "heck 0.5.0",
  2500. "proc-macro2",
  2501. "quote",
  2502. "syn 2.0.116",
  2503. ]
  2504. [[package]]
  2505. name = "enum-ordinalize"
  2506. version = "3.1.15"
  2507. source = "registry+https://github.com/rust-lang/crates.io-index"
  2508. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  2509. dependencies = [
  2510. "num-bigint",
  2511. "num-traits",
  2512. "proc-macro2",
  2513. "quote",
  2514. "syn 2.0.116",
  2515. ]
  2516. [[package]]
  2517. name = "env_filter"
  2518. version = "0.1.4"
  2519. source = "registry+https://github.com/rust-lang/crates.io-index"
  2520. checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
  2521. dependencies = [
  2522. "log",
  2523. "regex",
  2524. ]
  2525. [[package]]
  2526. name = "env_logger"
  2527. version = "0.5.13"
  2528. source = "registry+https://github.com/rust-lang/crates.io-index"
  2529. checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38"
  2530. dependencies = [
  2531. "atty",
  2532. "humantime 1.3.0",
  2533. "log",
  2534. "regex",
  2535. "termcolor",
  2536. ]
  2537. [[package]]
  2538. name = "equivalent"
  2539. version = "1.0.2"
  2540. source = "registry+https://github.com/rust-lang/crates.io-index"
  2541. checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
  2542. [[package]]
  2543. name = "erased-serde"
  2544. version = "0.4.9"
  2545. source = "registry+https://github.com/rust-lang/crates.io-index"
  2546. checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
  2547. dependencies = [
  2548. "serde",
  2549. "serde_core",
  2550. "typeid",
  2551. ]
  2552. [[package]]
  2553. name = "errno"
  2554. version = "0.3.14"
  2555. source = "registry+https://github.com/rust-lang/crates.io-index"
  2556. checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
  2557. dependencies = [
  2558. "libc",
  2559. "windows-sys 0.61.2",
  2560. ]
  2561. [[package]]
  2562. name = "esplora-client"
  2563. version = "0.12.2"
  2564. source = "registry+https://github.com/rust-lang/crates.io-index"
  2565. checksum = "4aac1895e7d91053ecc4c4955832b6f904f4321ec59d07b120736103bf06f7a5"
  2566. dependencies = [
  2567. "bitcoin 0.32.8",
  2568. "hex-conservative 0.2.2",
  2569. "log",
  2570. "reqwest",
  2571. "serde",
  2572. "serde_json",
  2573. "tokio",
  2574. ]
  2575. [[package]]
  2576. name = "event-listener"
  2577. version = "5.4.1"
  2578. source = "registry+https://github.com/rust-lang/crates.io-index"
  2579. checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
  2580. dependencies = [
  2581. "concurrent-queue",
  2582. "parking",
  2583. "pin-project-lite",
  2584. ]
  2585. [[package]]
  2586. name = "event-listener-strategy"
  2587. version = "0.5.4"
  2588. source = "registry+https://github.com/rust-lang/crates.io-index"
  2589. checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
  2590. dependencies = [
  2591. "event-listener",
  2592. "pin-project-lite",
  2593. ]
  2594. [[package]]
  2595. name = "fallible-iterator"
  2596. version = "0.2.0"
  2597. source = "registry+https://github.com/rust-lang/crates.io-index"
  2598. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  2599. [[package]]
  2600. name = "fallible-iterator"
  2601. version = "0.3.0"
  2602. source = "registry+https://github.com/rust-lang/crates.io-index"
  2603. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  2604. [[package]]
  2605. name = "fallible-streaming-iterator"
  2606. version = "0.1.9"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  2609. [[package]]
  2610. name = "fastrand"
  2611. version = "2.3.0"
  2612. source = "registry+https://github.com/rust-lang/crates.io-index"
  2613. checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
  2614. [[package]]
  2615. name = "fedimint-tonic-lnd"
  2616. version = "0.2.0"
  2617. source = "registry+https://github.com/rust-lang/crates.io-index"
  2618. checksum = "df03ca33b5116de3051c1e233fe341e23b04c4913c7b16042497924559bc2a2e"
  2619. dependencies = [
  2620. "hex",
  2621. "http-body 0.4.6",
  2622. "hyper 0.14.32",
  2623. "hyper-rustls 0.24.2",
  2624. "prost 0.12.6",
  2625. "rustls 0.21.12",
  2626. "rustls-pemfile 1.0.4",
  2627. "tokio",
  2628. "tokio-stream",
  2629. "tonic 0.10.2",
  2630. "tonic-build 0.10.2",
  2631. "tower 0.4.13",
  2632. ]
  2633. [[package]]
  2634. name = "ff"
  2635. version = "0.13.1"
  2636. source = "registry+https://github.com/rust-lang/crates.io-index"
  2637. checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
  2638. dependencies = [
  2639. "rand_core 0.6.4",
  2640. "subtle",
  2641. ]
  2642. [[package]]
  2643. name = "fiat-crypto"
  2644. version = "0.2.9"
  2645. source = "registry+https://github.com/rust-lang/crates.io-index"
  2646. checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
  2647. [[package]]
  2648. name = "figment"
  2649. version = "0.10.19"
  2650. source = "registry+https://github.com/rust-lang/crates.io-index"
  2651. checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
  2652. dependencies = [
  2653. "atomic 0.6.1",
  2654. "serde",
  2655. "toml 0.8.23",
  2656. "uncased",
  2657. "version_check",
  2658. ]
  2659. [[package]]
  2660. name = "filetime"
  2661. version = "0.2.27"
  2662. source = "registry+https://github.com/rust-lang/crates.io-index"
  2663. checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
  2664. dependencies = [
  2665. "cfg-if",
  2666. "libc",
  2667. "libredox",
  2668. ]
  2669. [[package]]
  2670. name = "find-msvc-tools"
  2671. version = "0.1.9"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
  2674. [[package]]
  2675. name = "fixedbitset"
  2676. version = "0.4.2"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  2679. [[package]]
  2680. name = "fixedbitset"
  2681. version = "0.5.7"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
  2684. [[package]]
  2685. name = "flate2"
  2686. version = "1.1.9"
  2687. source = "registry+https://github.com/rust-lang/crates.io-index"
  2688. checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
  2689. dependencies = [
  2690. "crc32fast",
  2691. "miniz_oxide",
  2692. "zlib-rs",
  2693. ]
  2694. [[package]]
  2695. name = "fluid-let"
  2696. version = "1.0.0"
  2697. source = "registry+https://github.com/rust-lang/crates.io-index"
  2698. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  2699. [[package]]
  2700. name = "fnv"
  2701. version = "1.0.7"
  2702. source = "registry+https://github.com/rust-lang/crates.io-index"
  2703. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  2704. [[package]]
  2705. name = "foldhash"
  2706. version = "0.1.5"
  2707. source = "registry+https://github.com/rust-lang/crates.io-index"
  2708. checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
  2709. [[package]]
  2710. name = "foreign-types"
  2711. version = "0.3.2"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  2714. dependencies = [
  2715. "foreign-types-shared",
  2716. ]
  2717. [[package]]
  2718. name = "foreign-types-shared"
  2719. version = "0.1.1"
  2720. source = "registry+https://github.com/rust-lang/crates.io-index"
  2721. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  2722. [[package]]
  2723. name = "form_urlencoded"
  2724. version = "1.2.2"
  2725. source = "registry+https://github.com/rust-lang/crates.io-index"
  2726. checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
  2727. dependencies = [
  2728. "percent-encoding",
  2729. ]
  2730. [[package]]
  2731. name = "fs-err"
  2732. version = "2.11.0"
  2733. source = "registry+https://github.com/rust-lang/crates.io-index"
  2734. checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
  2735. dependencies = [
  2736. "autocfg",
  2737. ]
  2738. [[package]]
  2739. name = "fs-mistrust"
  2740. version = "0.7.13"
  2741. source = "registry+https://github.com/rust-lang/crates.io-index"
  2742. checksum = "43de34e45ddb3fc314aeae5c5b078b8e3549980cd45836f8364d7cca8d85aead"
  2743. dependencies = [
  2744. "derive_builder_fork_arti",
  2745. "dirs 5.0.1",
  2746. "libc",
  2747. "once_cell",
  2748. "pwd-grp",
  2749. "serde",
  2750. "thiserror 1.0.69",
  2751. "walkdir",
  2752. ]
  2753. [[package]]
  2754. name = "fs_extra"
  2755. version = "1.3.0"
  2756. source = "registry+https://github.com/rust-lang/crates.io-index"
  2757. checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
  2758. [[package]]
  2759. name = "fslock"
  2760. version = "0.2.1"
  2761. source = "registry+https://github.com/rust-lang/crates.io-index"
  2762. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  2763. dependencies = [
  2764. "libc",
  2765. "winapi",
  2766. ]
  2767. [[package]]
  2768. name = "funty"
  2769. version = "2.0.0"
  2770. source = "registry+https://github.com/rust-lang/crates.io-index"
  2771. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2772. [[package]]
  2773. name = "futures"
  2774. version = "0.3.32"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
  2777. dependencies = [
  2778. "futures-channel",
  2779. "futures-core",
  2780. "futures-executor",
  2781. "futures-io",
  2782. "futures-sink",
  2783. "futures-task",
  2784. "futures-util",
  2785. ]
  2786. [[package]]
  2787. name = "futures-channel"
  2788. version = "0.3.32"
  2789. source = "registry+https://github.com/rust-lang/crates.io-index"
  2790. checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
  2791. dependencies = [
  2792. "futures-core",
  2793. "futures-sink",
  2794. ]
  2795. [[package]]
  2796. name = "futures-core"
  2797. version = "0.3.32"
  2798. source = "registry+https://github.com/rust-lang/crates.io-index"
  2799. checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
  2800. [[package]]
  2801. name = "futures-executor"
  2802. version = "0.3.32"
  2803. source = "registry+https://github.com/rust-lang/crates.io-index"
  2804. checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
  2805. dependencies = [
  2806. "futures-core",
  2807. "futures-task",
  2808. "futures-util",
  2809. ]
  2810. [[package]]
  2811. name = "futures-io"
  2812. version = "0.3.32"
  2813. source = "registry+https://github.com/rust-lang/crates.io-index"
  2814. checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
  2815. [[package]]
  2816. name = "futures-macro"
  2817. version = "0.3.32"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
  2820. dependencies = [
  2821. "proc-macro2",
  2822. "quote",
  2823. "syn 2.0.116",
  2824. ]
  2825. [[package]]
  2826. name = "futures-rustls"
  2827. version = "0.26.0"
  2828. source = "registry+https://github.com/rust-lang/crates.io-index"
  2829. checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb"
  2830. dependencies = [
  2831. "futures-io",
  2832. "rustls 0.23.36",
  2833. "rustls-pki-types",
  2834. ]
  2835. [[package]]
  2836. name = "futures-sink"
  2837. version = "0.3.32"
  2838. source = "registry+https://github.com/rust-lang/crates.io-index"
  2839. checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
  2840. [[package]]
  2841. name = "futures-task"
  2842. version = "0.3.32"
  2843. source = "registry+https://github.com/rust-lang/crates.io-index"
  2844. checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
  2845. [[package]]
  2846. name = "futures-util"
  2847. version = "0.3.32"
  2848. source = "registry+https://github.com/rust-lang/crates.io-index"
  2849. checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
  2850. dependencies = [
  2851. "futures-channel",
  2852. "futures-core",
  2853. "futures-io",
  2854. "futures-macro",
  2855. "futures-sink",
  2856. "futures-task",
  2857. "memchr",
  2858. "pin-project-lite",
  2859. "slab",
  2860. ]
  2861. [[package]]
  2862. name = "generic-array"
  2863. version = "0.14.7"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2866. dependencies = [
  2867. "typenum",
  2868. "version_check",
  2869. "zeroize",
  2870. ]
  2871. [[package]]
  2872. name = "getrandom"
  2873. version = "0.2.17"
  2874. source = "registry+https://github.com/rust-lang/crates.io-index"
  2875. checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
  2876. dependencies = [
  2877. "cfg-if",
  2878. "js-sys",
  2879. "libc",
  2880. "wasi 0.11.1+wasi-snapshot-preview1",
  2881. "wasm-bindgen",
  2882. ]
  2883. [[package]]
  2884. name = "getrandom"
  2885. version = "0.3.4"
  2886. source = "registry+https://github.com/rust-lang/crates.io-index"
  2887. checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
  2888. dependencies = [
  2889. "cfg-if",
  2890. "js-sys",
  2891. "libc",
  2892. "r-efi",
  2893. "wasip2",
  2894. "wasm-bindgen",
  2895. ]
  2896. [[package]]
  2897. name = "getrandom"
  2898. version = "0.4.1"
  2899. source = "registry+https://github.com/rust-lang/crates.io-index"
  2900. checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
  2901. dependencies = [
  2902. "cfg-if",
  2903. "libc",
  2904. "r-efi",
  2905. "wasip2",
  2906. "wasip3",
  2907. ]
  2908. [[package]]
  2909. name = "gimli"
  2910. version = "0.32.3"
  2911. source = "registry+https://github.com/rust-lang/crates.io-index"
  2912. checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
  2913. [[package]]
  2914. name = "glob"
  2915. version = "0.3.3"
  2916. source = "registry+https://github.com/rust-lang/crates.io-index"
  2917. checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
  2918. [[package]]
  2919. name = "glob-match"
  2920. version = "0.2.1"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  2923. [[package]]
  2924. name = "gloo-timers"
  2925. version = "0.3.0"
  2926. source = "registry+https://github.com/rust-lang/crates.io-index"
  2927. checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
  2928. dependencies = [
  2929. "futures-channel",
  2930. "futures-core",
  2931. "js-sys",
  2932. "wasm-bindgen",
  2933. ]
  2934. [[package]]
  2935. name = "goblin"
  2936. version = "0.8.2"
  2937. source = "registry+https://github.com/rust-lang/crates.io-index"
  2938. checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
  2939. dependencies = [
  2940. "log",
  2941. "plain",
  2942. "scroll",
  2943. ]
  2944. [[package]]
  2945. name = "group"
  2946. version = "0.13.0"
  2947. source = "registry+https://github.com/rust-lang/crates.io-index"
  2948. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2949. dependencies = [
  2950. "ff",
  2951. "rand_core 0.6.4",
  2952. "subtle",
  2953. ]
  2954. [[package]]
  2955. name = "h2"
  2956. version = "0.3.27"
  2957. source = "registry+https://github.com/rust-lang/crates.io-index"
  2958. checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
  2959. dependencies = [
  2960. "bytes",
  2961. "fnv",
  2962. "futures-core",
  2963. "futures-sink",
  2964. "futures-util",
  2965. "http 0.2.12",
  2966. "indexmap 2.13.0",
  2967. "slab",
  2968. "tokio",
  2969. "tokio-util",
  2970. "tracing",
  2971. ]
  2972. [[package]]
  2973. name = "h2"
  2974. version = "0.4.13"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
  2977. dependencies = [
  2978. "atomic-waker",
  2979. "bytes",
  2980. "fnv",
  2981. "futures-core",
  2982. "futures-sink",
  2983. "http 1.4.0",
  2984. "indexmap 2.13.0",
  2985. "slab",
  2986. "tokio",
  2987. "tokio-util",
  2988. "tracing",
  2989. ]
  2990. [[package]]
  2991. name = "half"
  2992. version = "2.7.1"
  2993. source = "registry+https://github.com/rust-lang/crates.io-index"
  2994. checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
  2995. dependencies = [
  2996. "cfg-if",
  2997. "crunchy",
  2998. "zerocopy",
  2999. ]
  3000. [[package]]
  3001. name = "hashbrown"
  3002. version = "0.12.3"
  3003. source = "registry+https://github.com/rust-lang/crates.io-index"
  3004. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  3005. [[package]]
  3006. name = "hashbrown"
  3007. version = "0.13.2"
  3008. source = "registry+https://github.com/rust-lang/crates.io-index"
  3009. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  3010. [[package]]
  3011. name = "hashbrown"
  3012. version = "0.14.5"
  3013. source = "registry+https://github.com/rust-lang/crates.io-index"
  3014. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  3015. dependencies = [
  3016. "ahash",
  3017. "serde",
  3018. ]
  3019. [[package]]
  3020. name = "hashbrown"
  3021. version = "0.15.5"
  3022. source = "registry+https://github.com/rust-lang/crates.io-index"
  3023. checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
  3024. dependencies = [
  3025. "foldhash",
  3026. ]
  3027. [[package]]
  3028. name = "hashbrown"
  3029. version = "0.16.1"
  3030. source = "registry+https://github.com/rust-lang/crates.io-index"
  3031. checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
  3032. [[package]]
  3033. name = "hashlink"
  3034. version = "0.9.1"
  3035. source = "registry+https://github.com/rust-lang/crates.io-index"
  3036. checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
  3037. dependencies = [
  3038. "hashbrown 0.14.5",
  3039. ]
  3040. [[package]]
  3041. name = "hashlink"
  3042. version = "0.10.0"
  3043. source = "registry+https://github.com/rust-lang/crates.io-index"
  3044. checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
  3045. dependencies = [
  3046. "hashbrown 0.15.5",
  3047. ]
  3048. [[package]]
  3049. name = "heck"
  3050. version = "0.4.1"
  3051. source = "registry+https://github.com/rust-lang/crates.io-index"
  3052. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  3053. [[package]]
  3054. name = "heck"
  3055. version = "0.5.0"
  3056. source = "registry+https://github.com/rust-lang/crates.io-index"
  3057. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  3058. [[package]]
  3059. name = "hermit-abi"
  3060. version = "0.1.19"
  3061. source = "registry+https://github.com/rust-lang/crates.io-index"
  3062. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  3063. dependencies = [
  3064. "libc",
  3065. ]
  3066. [[package]]
  3067. name = "hex"
  3068. version = "0.4.3"
  3069. source = "registry+https://github.com/rust-lang/crates.io-index"
  3070. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  3071. [[package]]
  3072. name = "hex-conservative"
  3073. version = "0.1.2"
  3074. source = "registry+https://github.com/rust-lang/crates.io-index"
  3075. checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20"
  3076. [[package]]
  3077. name = "hex-conservative"
  3078. version = "0.2.2"
  3079. source = "registry+https://github.com/rust-lang/crates.io-index"
  3080. checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
  3081. dependencies = [
  3082. "arrayvec",
  3083. ]
  3084. [[package]]
  3085. name = "hex_lit"
  3086. version = "0.1.1"
  3087. source = "registry+https://github.com/rust-lang/crates.io-index"
  3088. checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd"
  3089. [[package]]
  3090. name = "hickory-proto"
  3091. version = "0.25.2"
  3092. source = "registry+https://github.com/rust-lang/crates.io-index"
  3093. checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
  3094. dependencies = [
  3095. "async-trait",
  3096. "bitflags 2.11.0",
  3097. "cfg-if",
  3098. "data-encoding",
  3099. "enum-as-inner",
  3100. "futures-channel",
  3101. "futures-io",
  3102. "futures-util",
  3103. "idna",
  3104. "ipnet",
  3105. "once_cell",
  3106. "rand 0.9.2",
  3107. "ring 0.17.14",
  3108. "rustls-pki-types",
  3109. "thiserror 2.0.18",
  3110. "time",
  3111. "tinyvec",
  3112. "tokio",
  3113. "tracing",
  3114. "url",
  3115. ]
  3116. [[package]]
  3117. name = "hickory-resolver"
  3118. version = "0.25.2"
  3119. source = "registry+https://github.com/rust-lang/crates.io-index"
  3120. checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
  3121. dependencies = [
  3122. "cfg-if",
  3123. "futures-util",
  3124. "hickory-proto",
  3125. "ipconfig",
  3126. "moka",
  3127. "once_cell",
  3128. "parking_lot",
  3129. "rand 0.9.2",
  3130. "resolv-conf",
  3131. "smallvec",
  3132. "thiserror 2.0.18",
  3133. "tokio",
  3134. "tracing",
  3135. ]
  3136. [[package]]
  3137. name = "hkdf"
  3138. version = "0.12.4"
  3139. source = "registry+https://github.com/rust-lang/crates.io-index"
  3140. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  3141. dependencies = [
  3142. "hmac",
  3143. ]
  3144. [[package]]
  3145. name = "hmac"
  3146. version = "0.12.1"
  3147. source = "registry+https://github.com/rust-lang/crates.io-index"
  3148. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  3149. dependencies = [
  3150. "digest",
  3151. ]
  3152. [[package]]
  3153. name = "home"
  3154. version = "0.5.12"
  3155. source = "registry+https://github.com/rust-lang/crates.io-index"
  3156. checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
  3157. dependencies = [
  3158. "windows-sys 0.61.2",
  3159. ]
  3160. [[package]]
  3161. name = "hostname-validator"
  3162. version = "1.1.1"
  3163. source = "registry+https://github.com/rust-lang/crates.io-index"
  3164. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  3165. [[package]]
  3166. name = "http"
  3167. version = "0.2.12"
  3168. source = "registry+https://github.com/rust-lang/crates.io-index"
  3169. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  3170. dependencies = [
  3171. "bytes",
  3172. "fnv",
  3173. "itoa",
  3174. ]
  3175. [[package]]
  3176. name = "http"
  3177. version = "1.4.0"
  3178. source = "registry+https://github.com/rust-lang/crates.io-index"
  3179. checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
  3180. dependencies = [
  3181. "bytes",
  3182. "itoa",
  3183. ]
  3184. [[package]]
  3185. name = "http-body"
  3186. version = "0.4.6"
  3187. source = "registry+https://github.com/rust-lang/crates.io-index"
  3188. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  3189. dependencies = [
  3190. "bytes",
  3191. "http 0.2.12",
  3192. "pin-project-lite",
  3193. ]
  3194. [[package]]
  3195. name = "http-body"
  3196. version = "1.0.1"
  3197. source = "registry+https://github.com/rust-lang/crates.io-index"
  3198. checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  3199. dependencies = [
  3200. "bytes",
  3201. "http 1.4.0",
  3202. ]
  3203. [[package]]
  3204. name = "http-body-util"
  3205. version = "0.1.3"
  3206. source = "registry+https://github.com/rust-lang/crates.io-index"
  3207. checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
  3208. dependencies = [
  3209. "bytes",
  3210. "futures-core",
  3211. "http 1.4.0",
  3212. "http-body 1.0.1",
  3213. "pin-project-lite",
  3214. ]
  3215. [[package]]
  3216. name = "http-range-header"
  3217. version = "0.4.2"
  3218. source = "registry+https://github.com/rust-lang/crates.io-index"
  3219. checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
  3220. [[package]]
  3221. name = "httparse"
  3222. version = "1.10.1"
  3223. source = "registry+https://github.com/rust-lang/crates.io-index"
  3224. checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
  3225. [[package]]
  3226. name = "httpdate"
  3227. version = "1.0.3"
  3228. source = "registry+https://github.com/rust-lang/crates.io-index"
  3229. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  3230. [[package]]
  3231. name = "humantime"
  3232. version = "1.3.0"
  3233. source = "registry+https://github.com/rust-lang/crates.io-index"
  3234. checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  3235. dependencies = [
  3236. "quick-error",
  3237. ]
  3238. [[package]]
  3239. name = "humantime"
  3240. version = "2.3.0"
  3241. source = "registry+https://github.com/rust-lang/crates.io-index"
  3242. checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
  3243. [[package]]
  3244. name = "humantime-serde"
  3245. version = "1.1.1"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  3248. dependencies = [
  3249. "humantime 2.3.0",
  3250. "serde",
  3251. ]
  3252. [[package]]
  3253. name = "hyper"
  3254. version = "0.14.32"
  3255. source = "registry+https://github.com/rust-lang/crates.io-index"
  3256. checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
  3257. dependencies = [
  3258. "bytes",
  3259. "futures-channel",
  3260. "futures-core",
  3261. "futures-util",
  3262. "h2 0.3.27",
  3263. "http 0.2.12",
  3264. "http-body 0.4.6",
  3265. "httparse",
  3266. "httpdate",
  3267. "itoa",
  3268. "pin-project-lite",
  3269. "socket2 0.5.10",
  3270. "tokio",
  3271. "tower-service",
  3272. "tracing",
  3273. "want",
  3274. ]
  3275. [[package]]
  3276. name = "hyper"
  3277. version = "1.8.1"
  3278. source = "registry+https://github.com/rust-lang/crates.io-index"
  3279. checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
  3280. dependencies = [
  3281. "atomic-waker",
  3282. "bytes",
  3283. "futures-channel",
  3284. "futures-core",
  3285. "h2 0.4.13",
  3286. "http 1.4.0",
  3287. "http-body 1.0.1",
  3288. "httparse",
  3289. "httpdate",
  3290. "itoa",
  3291. "pin-project-lite",
  3292. "pin-utils",
  3293. "smallvec",
  3294. "tokio",
  3295. "want",
  3296. ]
  3297. [[package]]
  3298. name = "hyper-rustls"
  3299. version = "0.24.2"
  3300. source = "registry+https://github.com/rust-lang/crates.io-index"
  3301. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  3302. dependencies = [
  3303. "futures-util",
  3304. "http 0.2.12",
  3305. "hyper 0.14.32",
  3306. "rustls 0.21.12",
  3307. "tokio",
  3308. "tokio-rustls 0.24.1",
  3309. ]
  3310. [[package]]
  3311. name = "hyper-rustls"
  3312. version = "0.27.7"
  3313. source = "registry+https://github.com/rust-lang/crates.io-index"
  3314. checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
  3315. dependencies = [
  3316. "http 1.4.0",
  3317. "hyper 1.8.1",
  3318. "hyper-util",
  3319. "log",
  3320. "rustls 0.23.36",
  3321. "rustls-native-certs",
  3322. "rustls-pki-types",
  3323. "tokio",
  3324. "tokio-rustls 0.26.4",
  3325. "tower-service",
  3326. "webpki-roots 1.0.6",
  3327. ]
  3328. [[package]]
  3329. name = "hyper-timeout"
  3330. version = "0.4.1"
  3331. source = "registry+https://github.com/rust-lang/crates.io-index"
  3332. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  3333. dependencies = [
  3334. "hyper 0.14.32",
  3335. "pin-project-lite",
  3336. "tokio",
  3337. "tokio-io-timeout",
  3338. ]
  3339. [[package]]
  3340. name = "hyper-timeout"
  3341. version = "0.5.2"
  3342. source = "registry+https://github.com/rust-lang/crates.io-index"
  3343. checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
  3344. dependencies = [
  3345. "hyper 1.8.1",
  3346. "hyper-util",
  3347. "pin-project-lite",
  3348. "tokio",
  3349. "tower-service",
  3350. ]
  3351. [[package]]
  3352. name = "hyper-util"
  3353. version = "0.1.20"
  3354. source = "registry+https://github.com/rust-lang/crates.io-index"
  3355. checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
  3356. dependencies = [
  3357. "base64 0.22.1",
  3358. "bytes",
  3359. "futures-channel",
  3360. "futures-util",
  3361. "http 1.4.0",
  3362. "http-body 1.0.1",
  3363. "hyper 1.8.1",
  3364. "ipnet",
  3365. "libc",
  3366. "percent-encoding",
  3367. "pin-project-lite",
  3368. "socket2 0.6.2",
  3369. "tokio",
  3370. "tower-service",
  3371. "tracing",
  3372. ]
  3373. [[package]]
  3374. name = "iana-time-zone"
  3375. version = "0.1.65"
  3376. source = "registry+https://github.com/rust-lang/crates.io-index"
  3377. checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
  3378. dependencies = [
  3379. "android_system_properties",
  3380. "core-foundation-sys",
  3381. "iana-time-zone-haiku",
  3382. "js-sys",
  3383. "log",
  3384. "wasm-bindgen",
  3385. "windows-core 0.62.2",
  3386. ]
  3387. [[package]]
  3388. name = "iana-time-zone-haiku"
  3389. version = "0.1.2"
  3390. source = "registry+https://github.com/rust-lang/crates.io-index"
  3391. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  3392. dependencies = [
  3393. "cc",
  3394. ]
  3395. [[package]]
  3396. name = "icu_collections"
  3397. version = "2.1.1"
  3398. source = "registry+https://github.com/rust-lang/crates.io-index"
  3399. checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
  3400. dependencies = [
  3401. "displaydoc",
  3402. "potential_utf",
  3403. "yoke",
  3404. "zerofrom",
  3405. "zerovec",
  3406. ]
  3407. [[package]]
  3408. name = "icu_locale_core"
  3409. version = "2.1.1"
  3410. source = "registry+https://github.com/rust-lang/crates.io-index"
  3411. checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
  3412. dependencies = [
  3413. "displaydoc",
  3414. "litemap",
  3415. "tinystr 0.8.2",
  3416. "writeable",
  3417. "zerovec",
  3418. ]
  3419. [[package]]
  3420. name = "icu_normalizer"
  3421. version = "2.1.1"
  3422. source = "registry+https://github.com/rust-lang/crates.io-index"
  3423. checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
  3424. dependencies = [
  3425. "icu_collections",
  3426. "icu_normalizer_data",
  3427. "icu_properties",
  3428. "icu_provider",
  3429. "smallvec",
  3430. "zerovec",
  3431. ]
  3432. [[package]]
  3433. name = "icu_normalizer_data"
  3434. version = "2.1.1"
  3435. source = "registry+https://github.com/rust-lang/crates.io-index"
  3436. checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
  3437. [[package]]
  3438. name = "icu_properties"
  3439. version = "2.1.2"
  3440. source = "registry+https://github.com/rust-lang/crates.io-index"
  3441. checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
  3442. dependencies = [
  3443. "icu_collections",
  3444. "icu_locale_core",
  3445. "icu_properties_data",
  3446. "icu_provider",
  3447. "zerotrie",
  3448. "zerovec",
  3449. ]
  3450. [[package]]
  3451. name = "icu_properties_data"
  3452. version = "2.1.2"
  3453. source = "registry+https://github.com/rust-lang/crates.io-index"
  3454. checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
  3455. [[package]]
  3456. name = "icu_provider"
  3457. version = "2.1.1"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
  3460. dependencies = [
  3461. "displaydoc",
  3462. "icu_locale_core",
  3463. "writeable",
  3464. "yoke",
  3465. "zerofrom",
  3466. "zerotrie",
  3467. "zerovec",
  3468. ]
  3469. [[package]]
  3470. name = "id-arena"
  3471. version = "2.3.0"
  3472. source = "registry+https://github.com/rust-lang/crates.io-index"
  3473. checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
  3474. [[package]]
  3475. name = "ident_case"
  3476. version = "1.0.1"
  3477. source = "registry+https://github.com/rust-lang/crates.io-index"
  3478. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  3479. [[package]]
  3480. name = "idna"
  3481. version = "1.1.0"
  3482. source = "registry+https://github.com/rust-lang/crates.io-index"
  3483. checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
  3484. dependencies = [
  3485. "idna_adapter",
  3486. "smallvec",
  3487. "utf8_iter",
  3488. ]
  3489. [[package]]
  3490. name = "idna_adapter"
  3491. version = "1.2.1"
  3492. source = "registry+https://github.com/rust-lang/crates.io-index"
  3493. checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
  3494. dependencies = [
  3495. "icu_normalizer",
  3496. "icu_properties",
  3497. ]
  3498. [[package]]
  3499. name = "indexmap"
  3500. version = "1.9.3"
  3501. source = "registry+https://github.com/rust-lang/crates.io-index"
  3502. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  3503. dependencies = [
  3504. "autocfg",
  3505. "hashbrown 0.12.3",
  3506. "serde",
  3507. ]
  3508. [[package]]
  3509. name = "indexmap"
  3510. version = "2.13.0"
  3511. source = "registry+https://github.com/rust-lang/crates.io-index"
  3512. checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
  3513. dependencies = [
  3514. "equivalent",
  3515. "hashbrown 0.16.1",
  3516. "serde",
  3517. "serde_core",
  3518. ]
  3519. [[package]]
  3520. name = "inout"
  3521. version = "0.1.4"
  3522. source = "registry+https://github.com/rust-lang/crates.io-index"
  3523. checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
  3524. dependencies = [
  3525. "block-padding",
  3526. "generic-array",
  3527. ]
  3528. [[package]]
  3529. name = "instant"
  3530. version = "0.1.13"
  3531. source = "registry+https://github.com/rust-lang/crates.io-index"
  3532. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  3533. dependencies = [
  3534. "cfg-if",
  3535. "js-sys",
  3536. "wasm-bindgen",
  3537. "web-sys",
  3538. ]
  3539. [[package]]
  3540. name = "inventory"
  3541. version = "0.3.21"
  3542. source = "registry+https://github.com/rust-lang/crates.io-index"
  3543. checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
  3544. dependencies = [
  3545. "rustversion",
  3546. ]
  3547. [[package]]
  3548. name = "ipconfig"
  3549. version = "0.3.2"
  3550. source = "registry+https://github.com/rust-lang/crates.io-index"
  3551. checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
  3552. dependencies = [
  3553. "socket2 0.5.10",
  3554. "widestring",
  3555. "windows-sys 0.48.0",
  3556. "winreg",
  3557. ]
  3558. [[package]]
  3559. name = "ipnet"
  3560. version = "2.11.0"
  3561. source = "registry+https://github.com/rust-lang/crates.io-index"
  3562. checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
  3563. [[package]]
  3564. name = "iri-string"
  3565. version = "0.7.10"
  3566. source = "registry+https://github.com/rust-lang/crates.io-index"
  3567. checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
  3568. dependencies = [
  3569. "memchr",
  3570. "serde",
  3571. ]
  3572. [[package]]
  3573. name = "is_terminal_polyfill"
  3574. version = "1.70.2"
  3575. source = "registry+https://github.com/rust-lang/crates.io-index"
  3576. checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
  3577. [[package]]
  3578. name = "itertools"
  3579. version = "0.10.5"
  3580. source = "registry+https://github.com/rust-lang/crates.io-index"
  3581. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  3582. dependencies = [
  3583. "either",
  3584. ]
  3585. [[package]]
  3586. name = "itertools"
  3587. version = "0.11.0"
  3588. source = "registry+https://github.com/rust-lang/crates.io-index"
  3589. checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
  3590. dependencies = [
  3591. "either",
  3592. ]
  3593. [[package]]
  3594. name = "itertools"
  3595. version = "0.12.1"
  3596. source = "registry+https://github.com/rust-lang/crates.io-index"
  3597. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  3598. dependencies = [
  3599. "either",
  3600. ]
  3601. [[package]]
  3602. name = "itertools"
  3603. version = "0.13.0"
  3604. source = "registry+https://github.com/rust-lang/crates.io-index"
  3605. checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
  3606. dependencies = [
  3607. "either",
  3608. ]
  3609. [[package]]
  3610. name = "itertools"
  3611. version = "0.14.0"
  3612. source = "registry+https://github.com/rust-lang/crates.io-index"
  3613. checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
  3614. dependencies = [
  3615. "either",
  3616. ]
  3617. [[package]]
  3618. name = "itoa"
  3619. version = "1.0.17"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
  3622. [[package]]
  3623. name = "jobserver"
  3624. version = "0.1.34"
  3625. source = "registry+https://github.com/rust-lang/crates.io-index"
  3626. checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
  3627. dependencies = [
  3628. "getrandom 0.3.4",
  3629. "libc",
  3630. ]
  3631. [[package]]
  3632. name = "js-sys"
  3633. version = "0.3.85"
  3634. source = "registry+https://github.com/rust-lang/crates.io-index"
  3635. checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
  3636. dependencies = [
  3637. "once_cell",
  3638. "wasm-bindgen",
  3639. ]
  3640. [[package]]
  3641. name = "json5"
  3642. version = "0.4.1"
  3643. source = "registry+https://github.com/rust-lang/crates.io-index"
  3644. checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
  3645. dependencies = [
  3646. "pest",
  3647. "pest_derive",
  3648. "serde",
  3649. ]
  3650. [[package]]
  3651. name = "jsonrpc"
  3652. version = "0.18.0"
  3653. source = "registry+https://github.com/rust-lang/crates.io-index"
  3654. checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf"
  3655. dependencies = [
  3656. "base64 0.13.1",
  3657. "minreq",
  3658. "serde",
  3659. "serde_json",
  3660. ]
  3661. [[package]]
  3662. name = "jsonwebtoken"
  3663. version = "9.3.1"
  3664. source = "registry+https://github.com/rust-lang/crates.io-index"
  3665. checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
  3666. dependencies = [
  3667. "base64 0.22.1",
  3668. "js-sys",
  3669. "pem 3.0.6",
  3670. "ring 0.17.14",
  3671. "serde",
  3672. "serde_json",
  3673. "simple_asn1",
  3674. ]
  3675. [[package]]
  3676. name = "keccak"
  3677. version = "0.1.6"
  3678. source = "registry+https://github.com/rust-lang/crates.io-index"
  3679. checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
  3680. dependencies = [
  3681. "cpufeatures",
  3682. ]
  3683. [[package]]
  3684. name = "lazy_static"
  3685. version = "1.5.0"
  3686. source = "registry+https://github.com/rust-lang/crates.io-index"
  3687. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  3688. dependencies = [
  3689. "spin 0.9.8",
  3690. ]
  3691. [[package]]
  3692. name = "ldk-node"
  3693. version = "0.7.0"
  3694. source = "registry+https://github.com/rust-lang/crates.io-index"
  3695. checksum = "d830ef2d6b00f089fb6e3ac845370ebf0f35f9d11ce81b3a097c1580d2dce358"
  3696. dependencies = [
  3697. "base64 0.22.1",
  3698. "bdk_chain",
  3699. "bdk_electrum",
  3700. "bdk_esplora",
  3701. "bdk_wallet",
  3702. "bip21",
  3703. "bip39",
  3704. "bitcoin 0.32.8",
  3705. "chrono",
  3706. "electrum-client",
  3707. "esplora-client",
  3708. "libc",
  3709. "lightning 0.2.2",
  3710. "lightning-background-processor",
  3711. "lightning-block-sync",
  3712. "lightning-invoice 0.34.0",
  3713. "lightning-liquidity",
  3714. "lightning-macros",
  3715. "lightning-net-tokio",
  3716. "lightning-persister",
  3717. "lightning-rapid-gossip-sync",
  3718. "lightning-transaction-sync",
  3719. "lightning-types 0.3.1",
  3720. "log",
  3721. "prost 0.11.9",
  3722. "rand 0.9.2",
  3723. "reqwest",
  3724. "rusqlite",
  3725. "rustls 0.23.36",
  3726. "serde",
  3727. "serde_json",
  3728. "tokio",
  3729. "vss-client-ng",
  3730. "winapi",
  3731. ]
  3732. [[package]]
  3733. name = "leb128fmt"
  3734. version = "0.1.0"
  3735. source = "registry+https://github.com/rust-lang/crates.io-index"
  3736. checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
  3737. [[package]]
  3738. name = "libc"
  3739. version = "0.2.182"
  3740. source = "registry+https://github.com/rust-lang/crates.io-index"
  3741. checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
  3742. [[package]]
  3743. name = "liblzma"
  3744. version = "0.4.6"
  3745. source = "registry+https://github.com/rust-lang/crates.io-index"
  3746. checksum = "b6033b77c21d1f56deeae8014eb9fbe7bdf1765185a6c508b5ca82eeaed7f899"
  3747. dependencies = [
  3748. "liblzma-sys",
  3749. ]
  3750. [[package]]
  3751. name = "liblzma-sys"
  3752. version = "0.4.5"
  3753. source = "registry+https://github.com/rust-lang/crates.io-index"
  3754. checksum = "9f2db66f3268487b5033077f266da6777d057949b8f93c8ad82e441df25e6186"
  3755. dependencies = [
  3756. "cc",
  3757. "libc",
  3758. "pkg-config",
  3759. ]
  3760. [[package]]
  3761. name = "libm"
  3762. version = "0.2.16"
  3763. source = "registry+https://github.com/rust-lang/crates.io-index"
  3764. checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
  3765. [[package]]
  3766. name = "libredox"
  3767. version = "0.1.12"
  3768. source = "registry+https://github.com/rust-lang/crates.io-index"
  3769. checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
  3770. dependencies = [
  3771. "bitflags 2.11.0",
  3772. "libc",
  3773. "redox_syscall 0.7.1",
  3774. ]
  3775. [[package]]
  3776. name = "libsqlite3-sys"
  3777. version = "0.28.0"
  3778. source = "registry+https://github.com/rust-lang/crates.io-index"
  3779. checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
  3780. dependencies = [
  3781. "cc",
  3782. "pkg-config",
  3783. "vcpkg",
  3784. ]
  3785. [[package]]
  3786. name = "lightning"
  3787. version = "0.1.8"
  3788. source = "registry+https://github.com/rust-lang/crates.io-index"
  3789. checksum = "8ffe63f56b10d214be1ade8698ee80af82d981237cae3e581e7a631f5f4959f3"
  3790. dependencies = [
  3791. "bech32 0.11.1",
  3792. "bitcoin 0.32.8",
  3793. "dnssec-prover",
  3794. "hashbrown 0.13.2",
  3795. "libm",
  3796. "lightning-invoice 0.33.2",
  3797. "lightning-types 0.2.0",
  3798. "possiblyrandom",
  3799. ]
  3800. [[package]]
  3801. name = "lightning"
  3802. version = "0.2.2"
  3803. source = "registry+https://github.com/rust-lang/crates.io-index"
  3804. checksum = "4c90397b635e3ece6b9a723fb470a46cb9b3592f217d72e40540a5fada00289d"
  3805. dependencies = [
  3806. "bech32 0.11.1",
  3807. "bitcoin 0.32.8",
  3808. "dnssec-prover",
  3809. "hashbrown 0.13.2",
  3810. "libm",
  3811. "lightning-invoice 0.34.0",
  3812. "lightning-macros",
  3813. "lightning-types 0.3.1",
  3814. "possiblyrandom",
  3815. ]
  3816. [[package]]
  3817. name = "lightning-background-processor"
  3818. version = "0.2.0"
  3819. source = "registry+https://github.com/rust-lang/crates.io-index"
  3820. checksum = "abdc5450264184deba88b1dc61fa8d2ca905e21748bad556915757ac73d91103"
  3821. dependencies = [
  3822. "bitcoin 0.32.8",
  3823. "bitcoin-io",
  3824. "bitcoin_hashes 0.14.1",
  3825. "lightning 0.2.2",
  3826. "lightning-liquidity",
  3827. "lightning-rapid-gossip-sync",
  3828. "possiblyrandom",
  3829. ]
  3830. [[package]]
  3831. name = "lightning-block-sync"
  3832. version = "0.2.0"
  3833. source = "registry+https://github.com/rust-lang/crates.io-index"
  3834. checksum = "ee5069846b07a62aaecdaf25233e067bc69f245b7c8fd00cc9c217053221f875"
  3835. dependencies = [
  3836. "bitcoin 0.32.8",
  3837. "chunked_transfer",
  3838. "lightning 0.2.2",
  3839. "serde_json",
  3840. "tokio",
  3841. ]
  3842. [[package]]
  3843. name = "lightning-invoice"
  3844. version = "0.33.2"
  3845. source = "registry+https://github.com/rust-lang/crates.io-index"
  3846. checksum = "11209f386879b97198b2bfc9e9c1e5d42870825c6bd4376f17f95357244d6600"
  3847. dependencies = [
  3848. "bech32 0.11.1",
  3849. "bitcoin 0.32.8",
  3850. "lightning-types 0.2.0",
  3851. ]
  3852. [[package]]
  3853. name = "lightning-invoice"
  3854. version = "0.34.0"
  3855. source = "registry+https://github.com/rust-lang/crates.io-index"
  3856. checksum = "b85e5e14bcdb30d746e9785b04f27938292e8944f78f26517e01e91691f6b3f2"
  3857. dependencies = [
  3858. "bech32 0.11.1",
  3859. "bitcoin 0.32.8",
  3860. "lightning-types 0.3.1",
  3861. "serde",
  3862. ]
  3863. [[package]]
  3864. name = "lightning-liquidity"
  3865. version = "0.2.0"
  3866. source = "registry+https://github.com/rust-lang/crates.io-index"
  3867. checksum = "58a6480d4d7726c49b4cd170b18a39563bbe897d0b8960be11d5e4a0cebd43b0"
  3868. dependencies = [
  3869. "bitcoin 0.32.8",
  3870. "chrono",
  3871. "lightning 0.2.2",
  3872. "lightning-invoice 0.34.0",
  3873. "lightning-macros",
  3874. "lightning-types 0.3.1",
  3875. "serde",
  3876. "serde_json",
  3877. ]
  3878. [[package]]
  3879. name = "lightning-macros"
  3880. version = "0.2.1"
  3881. source = "registry+https://github.com/rust-lang/crates.io-index"
  3882. checksum = "d4c717494cdc2c8bb85bee7113031248f5f6c64f8802b33c1c9e2d98e594aa71"
  3883. dependencies = [
  3884. "proc-macro2",
  3885. "quote",
  3886. "syn 2.0.116",
  3887. ]
  3888. [[package]]
  3889. name = "lightning-net-tokio"
  3890. version = "0.2.0"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "8055737e3d2d06240a3fdf10e26b2716110fcea90011a0839e8e82fc6e58ff5e"
  3893. dependencies = [
  3894. "bitcoin 0.32.8",
  3895. "lightning 0.2.2",
  3896. "tokio",
  3897. ]
  3898. [[package]]
  3899. name = "lightning-persister"
  3900. version = "0.2.0"
  3901. source = "registry+https://github.com/rust-lang/crates.io-index"
  3902. checksum = "e6d78990de56ca75c5535c3f8e6f86b183a1aa8f521eb32afb9e8181f3bd91d7"
  3903. dependencies = [
  3904. "bitcoin 0.32.8",
  3905. "lightning 0.2.2",
  3906. "tokio",
  3907. "windows-sys 0.48.0",
  3908. ]
  3909. [[package]]
  3910. name = "lightning-rapid-gossip-sync"
  3911. version = "0.2.0"
  3912. source = "registry+https://github.com/rust-lang/crates.io-index"
  3913. checksum = "b094f79f22713aa95194a166c77b2f6c7d68f9d76622a43552a29b8fe6fa92d0"
  3914. dependencies = [
  3915. "bitcoin 0.32.8",
  3916. "bitcoin-io",
  3917. "bitcoin_hashes 0.14.1",
  3918. "lightning 0.2.2",
  3919. ]
  3920. [[package]]
  3921. name = "lightning-transaction-sync"
  3922. version = "0.2.1"
  3923. source = "registry+https://github.com/rust-lang/crates.io-index"
  3924. checksum = "b7260095a79a44b09ebd97e77855ec8b7996ab939223369f66244974a374bd2c"
  3925. dependencies = [
  3926. "bitcoin 0.32.8",
  3927. "electrum-client",
  3928. "esplora-client",
  3929. "futures",
  3930. "lightning 0.2.2",
  3931. "lightning-macros",
  3932. ]
  3933. [[package]]
  3934. name = "lightning-types"
  3935. version = "0.2.0"
  3936. source = "registry+https://github.com/rust-lang/crates.io-index"
  3937. checksum = "f2cd84d4e71472035903e43caded8ecc123066ce466329ccd5ae537a8d5488c7"
  3938. dependencies = [
  3939. "bitcoin 0.32.8",
  3940. ]
  3941. [[package]]
  3942. name = "lightning-types"
  3943. version = "0.3.1"
  3944. source = "registry+https://github.com/rust-lang/crates.io-index"
  3945. checksum = "cb1aac93f22f2c2eac8a0ee83bb1a1ea58673caa2c82847302710b83364d04e6"
  3946. dependencies = [
  3947. "bitcoin 0.32.8",
  3948. ]
  3949. [[package]]
  3950. name = "linux-raw-sys"
  3951. version = "0.4.15"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  3954. [[package]]
  3955. name = "linux-raw-sys"
  3956. version = "0.11.0"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
  3959. [[package]]
  3960. name = "litemap"
  3961. version = "0.8.1"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
  3964. [[package]]
  3965. name = "litrs"
  3966. version = "1.0.0"
  3967. source = "registry+https://github.com/rust-lang/crates.io-index"
  3968. checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
  3969. [[package]]
  3970. name = "ln-regtest-rs"
  3971. version = "0.1.0"
  3972. source = "git+https://github.com/thesimplekid/ln-regtest-rs?rev=70eb1551#70eb1551c76469b4f28c6e7322520c1123436cb5"
  3973. dependencies = [
  3974. "anyhow",
  3975. "async-trait",
  3976. "bitcoincore-rpc",
  3977. "cln-rpc",
  3978. "fedimint-tonic-lnd",
  3979. "lightning 0.1.8",
  3980. "serde",
  3981. "serde_json",
  3982. "tempfile",
  3983. "tokio",
  3984. "tracing",
  3985. "tracing-subscriber",
  3986. "uuid",
  3987. ]
  3988. [[package]]
  3989. name = "lnbits-rs"
  3990. version = "0.9.2"
  3991. source = "registry+https://github.com/rust-lang/crates.io-index"
  3992. checksum = "cb81b6d43bb006d2588cf1b5c7ee83f67505a453c50dc25e74d7c01ece107131"
  3993. dependencies = [
  3994. "anyhow",
  3995. "chrono",
  3996. "futures-util",
  3997. "log",
  3998. "reqwest",
  3999. "serde",
  4000. "serde_json",
  4001. "tokio",
  4002. "tokio-tungstenite 0.26.2",
  4003. "tracing",
  4004. "tungstenite 0.26.2",
  4005. "url",
  4006. ]
  4007. [[package]]
  4008. name = "lock_api"
  4009. version = "0.4.14"
  4010. source = "registry+https://github.com/rust-lang/crates.io-index"
  4011. checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
  4012. dependencies = [
  4013. "scopeguard",
  4014. ]
  4015. [[package]]
  4016. name = "log"
  4017. version = "0.4.29"
  4018. source = "registry+https://github.com/rust-lang/crates.io-index"
  4019. checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
  4020. [[package]]
  4021. name = "lru"
  4022. version = "0.16.3"
  4023. source = "registry+https://github.com/rust-lang/crates.io-index"
  4024. checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
  4025. [[package]]
  4026. name = "lru-slab"
  4027. version = "0.1.2"
  4028. source = "registry+https://github.com/rust-lang/crates.io-index"
  4029. checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
  4030. [[package]]
  4031. name = "matchers"
  4032. version = "0.2.0"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
  4035. dependencies = [
  4036. "regex-automata",
  4037. ]
  4038. [[package]]
  4039. name = "matchit"
  4040. version = "0.7.3"
  4041. source = "registry+https://github.com/rust-lang/crates.io-index"
  4042. checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
  4043. [[package]]
  4044. name = "matchit"
  4045. version = "0.8.4"
  4046. source = "registry+https://github.com/rust-lang/crates.io-index"
  4047. checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
  4048. [[package]]
  4049. name = "maud"
  4050. version = "0.27.0"
  4051. source = "registry+https://github.com/rust-lang/crates.io-index"
  4052. checksum = "8156733e27020ea5c684db5beac5d1d611e1272ab17901a49466294b84fc217e"
  4053. dependencies = [
  4054. "itoa",
  4055. "maud_macros",
  4056. ]
  4057. [[package]]
  4058. name = "maud_macros"
  4059. version = "0.27.0"
  4060. source = "registry+https://github.com/rust-lang/crates.io-index"
  4061. checksum = "7261b00f3952f617899bc012e3dbd56e4f0110a038175929fa5d18e5a19913ca"
  4062. dependencies = [
  4063. "proc-macro2",
  4064. "proc-macro2-diagnostics",
  4065. "quote",
  4066. "syn 2.0.116",
  4067. ]
  4068. [[package]]
  4069. name = "md-5"
  4070. version = "0.10.6"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
  4073. dependencies = [
  4074. "cfg-if",
  4075. "digest",
  4076. ]
  4077. [[package]]
  4078. name = "memchr"
  4079. version = "2.8.0"
  4080. source = "registry+https://github.com/rust-lang/crates.io-index"
  4081. checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
  4082. [[package]]
  4083. name = "memmap2"
  4084. version = "0.9.10"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
  4087. dependencies = [
  4088. "libc",
  4089. ]
  4090. [[package]]
  4091. name = "merlin"
  4092. version = "3.0.0"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  4095. dependencies = [
  4096. "byteorder",
  4097. "keccak",
  4098. "rand_core 0.6.4",
  4099. "zeroize",
  4100. ]
  4101. [[package]]
  4102. name = "mime"
  4103. version = "0.3.17"
  4104. source = "registry+https://github.com/rust-lang/crates.io-index"
  4105. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  4106. [[package]]
  4107. name = "mime_guess"
  4108. version = "2.0.5"
  4109. source = "registry+https://github.com/rust-lang/crates.io-index"
  4110. checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
  4111. dependencies = [
  4112. "mime",
  4113. "unicase",
  4114. ]
  4115. [[package]]
  4116. name = "minicov"
  4117. version = "0.3.8"
  4118. source = "registry+https://github.com/rust-lang/crates.io-index"
  4119. checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
  4120. dependencies = [
  4121. "cc",
  4122. "walkdir",
  4123. ]
  4124. [[package]]
  4125. name = "minimal-lexical"
  4126. version = "0.2.1"
  4127. source = "registry+https://github.com/rust-lang/crates.io-index"
  4128. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  4129. [[package]]
  4130. name = "miniscript"
  4131. version = "12.3.5"
  4132. source = "registry+https://github.com/rust-lang/crates.io-index"
  4133. checksum = "487906208f38448e186e3deb02f2b8ef046a9078b0de00bdb28bf4fb9b76951c"
  4134. dependencies = [
  4135. "bech32 0.11.1",
  4136. "bitcoin 0.32.8",
  4137. "serde",
  4138. ]
  4139. [[package]]
  4140. name = "miniz_oxide"
  4141. version = "0.8.9"
  4142. source = "registry+https://github.com/rust-lang/crates.io-index"
  4143. checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
  4144. dependencies = [
  4145. "adler2",
  4146. "simd-adler32",
  4147. ]
  4148. [[package]]
  4149. name = "minreq"
  4150. version = "2.14.1"
  4151. source = "registry+https://github.com/rust-lang/crates.io-index"
  4152. checksum = "05015102dad0f7d61691ca347e9d9d9006685a64aefb3d79eecf62665de2153d"
  4153. dependencies = [
  4154. "serde",
  4155. "serde_json",
  4156. ]
  4157. [[package]]
  4158. name = "mio"
  4159. version = "1.1.1"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
  4162. dependencies = [
  4163. "libc",
  4164. "wasi 0.11.1+wasi-snapshot-preview1",
  4165. "windows-sys 0.61.2",
  4166. ]
  4167. [[package]]
  4168. name = "mockito"
  4169. version = "1.7.2"
  4170. source = "registry+https://github.com/rust-lang/crates.io-index"
  4171. checksum = "90820618712cab19cfc46b274c6c22546a82affcb3c3bdf0f29e3db8e1bb92c0"
  4172. dependencies = [
  4173. "assert-json-diff",
  4174. "bytes",
  4175. "colored",
  4176. "futures-core",
  4177. "http 1.4.0",
  4178. "http-body 1.0.1",
  4179. "http-body-util",
  4180. "hyper 1.8.1",
  4181. "hyper-util",
  4182. "log",
  4183. "pin-project-lite",
  4184. "rand 0.9.2",
  4185. "regex",
  4186. "serde_json",
  4187. "serde_urlencoded",
  4188. "similar",
  4189. "tokio",
  4190. ]
  4191. [[package]]
  4192. name = "moka"
  4193. version = "0.12.13"
  4194. source = "registry+https://github.com/rust-lang/crates.io-index"
  4195. checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e"
  4196. dependencies = [
  4197. "async-lock",
  4198. "crossbeam-channel",
  4199. "crossbeam-epoch",
  4200. "crossbeam-utils",
  4201. "equivalent",
  4202. "event-listener",
  4203. "futures-util",
  4204. "parking_lot",
  4205. "portable-atomic",
  4206. "smallvec",
  4207. "tagptr",
  4208. "uuid",
  4209. ]
  4210. [[package]]
  4211. name = "multimap"
  4212. version = "0.8.3"
  4213. source = "registry+https://github.com/rust-lang/crates.io-index"
  4214. checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
  4215. [[package]]
  4216. name = "multimap"
  4217. version = "0.10.1"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
  4220. [[package]]
  4221. name = "native-tls"
  4222. version = "0.2.14"
  4223. source = "registry+https://github.com/rust-lang/crates.io-index"
  4224. checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
  4225. dependencies = [
  4226. "libc",
  4227. "log",
  4228. "openssl",
  4229. "openssl-probe 0.1.6",
  4230. "openssl-sys",
  4231. "schannel",
  4232. "security-framework 2.11.1",
  4233. "security-framework-sys",
  4234. "tempfile",
  4235. ]
  4236. [[package]]
  4237. name = "negentropy"
  4238. version = "0.5.0"
  4239. source = "registry+https://github.com/rust-lang/crates.io-index"
  4240. checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d"
  4241. [[package]]
  4242. name = "nom"
  4243. version = "7.1.3"
  4244. source = "registry+https://github.com/rust-lang/crates.io-index"
  4245. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  4246. dependencies = [
  4247. "memchr",
  4248. "minimal-lexical",
  4249. ]
  4250. [[package]]
  4251. name = "nostr"
  4252. version = "0.44.2"
  4253. source = "registry+https://github.com/rust-lang/crates.io-index"
  4254. checksum = "3aa5e3b6a278ed061835fe1ee293b71641e6bf8b401cfe4e1834bbf4ef0a34e1"
  4255. dependencies = [
  4256. "aes",
  4257. "base64 0.22.1",
  4258. "bech32 0.11.1",
  4259. "bip39",
  4260. "bitcoin_hashes 0.14.1",
  4261. "cbc",
  4262. "chacha20",
  4263. "chacha20poly1305",
  4264. "getrandom 0.2.17",
  4265. "hex",
  4266. "instant",
  4267. "scrypt",
  4268. "secp256k1 0.29.1",
  4269. "serde",
  4270. "serde_json",
  4271. "unicode-normalization",
  4272. "url",
  4273. ]
  4274. [[package]]
  4275. name = "nostr-database"
  4276. version = "0.44.0"
  4277. source = "registry+https://github.com/rust-lang/crates.io-index"
  4278. checksum = "7462c9d8ae5ef6a28d66a192d399ad2530f1f2130b13186296dbb11bdef5b3d1"
  4279. dependencies = [
  4280. "lru",
  4281. "nostr",
  4282. "tokio",
  4283. ]
  4284. [[package]]
  4285. name = "nostr-gossip"
  4286. version = "0.44.0"
  4287. source = "registry+https://github.com/rust-lang/crates.io-index"
  4288. checksum = "ade30de16869618919c6b5efc8258f47b654a98b51541eb77f85e8ec5e3c83a6"
  4289. dependencies = [
  4290. "nostr",
  4291. ]
  4292. [[package]]
  4293. name = "nostr-relay-pool"
  4294. version = "0.44.0"
  4295. source = "registry+https://github.com/rust-lang/crates.io-index"
  4296. checksum = "4b1073ccfbaea5549fb914a9d52c68dab2aecda61535e5143dd73e95445a804b"
  4297. dependencies = [
  4298. "async-utility",
  4299. "async-wsocket",
  4300. "atomic-destructor",
  4301. "hex",
  4302. "lru",
  4303. "negentropy",
  4304. "nostr",
  4305. "nostr-database",
  4306. "tokio",
  4307. "tracing",
  4308. ]
  4309. [[package]]
  4310. name = "nostr-sdk"
  4311. version = "0.44.1"
  4312. source = "registry+https://github.com/rust-lang/crates.io-index"
  4313. checksum = "471732576710e779b64f04c55e3f8b5292f865fea228436daf19694f0bf70393"
  4314. dependencies = [
  4315. "async-utility",
  4316. "nostr",
  4317. "nostr-database",
  4318. "nostr-gossip",
  4319. "nostr-relay-pool",
  4320. "tokio",
  4321. "tracing",
  4322. ]
  4323. [[package]]
  4324. name = "ntapi"
  4325. version = "0.4.3"
  4326. source = "registry+https://github.com/rust-lang/crates.io-index"
  4327. checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
  4328. dependencies = [
  4329. "winapi",
  4330. ]
  4331. [[package]]
  4332. name = "nu-ansi-term"
  4333. version = "0.50.3"
  4334. source = "registry+https://github.com/rust-lang/crates.io-index"
  4335. checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
  4336. dependencies = [
  4337. "windows-sys 0.61.2",
  4338. ]
  4339. [[package]]
  4340. name = "num-bigint"
  4341. version = "0.4.6"
  4342. source = "registry+https://github.com/rust-lang/crates.io-index"
  4343. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  4344. dependencies = [
  4345. "num-integer",
  4346. "num-traits",
  4347. ]
  4348. [[package]]
  4349. name = "num-bigint-dig"
  4350. version = "0.8.6"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
  4353. dependencies = [
  4354. "lazy_static",
  4355. "libm",
  4356. "num-integer",
  4357. "num-iter",
  4358. "num-traits",
  4359. "rand 0.8.5",
  4360. "smallvec",
  4361. "zeroize",
  4362. ]
  4363. [[package]]
  4364. name = "num-conv"
  4365. version = "0.2.0"
  4366. source = "registry+https://github.com/rust-lang/crates.io-index"
  4367. checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
  4368. [[package]]
  4369. name = "num-integer"
  4370. version = "0.1.46"
  4371. source = "registry+https://github.com/rust-lang/crates.io-index"
  4372. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  4373. dependencies = [
  4374. "num-traits",
  4375. ]
  4376. [[package]]
  4377. name = "num-iter"
  4378. version = "0.1.45"
  4379. source = "registry+https://github.com/rust-lang/crates.io-index"
  4380. checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
  4381. dependencies = [
  4382. "autocfg",
  4383. "num-integer",
  4384. "num-traits",
  4385. ]
  4386. [[package]]
  4387. name = "num-rational"
  4388. version = "0.4.2"
  4389. source = "registry+https://github.com/rust-lang/crates.io-index"
  4390. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  4391. dependencies = [
  4392. "num-bigint",
  4393. "num-integer",
  4394. "num-traits",
  4395. ]
  4396. [[package]]
  4397. name = "num-traits"
  4398. version = "0.2.19"
  4399. source = "registry+https://github.com/rust-lang/crates.io-index"
  4400. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  4401. dependencies = [
  4402. "autocfg",
  4403. "libm",
  4404. ]
  4405. [[package]]
  4406. name = "num_enum"
  4407. version = "0.7.5"
  4408. source = "registry+https://github.com/rust-lang/crates.io-index"
  4409. checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
  4410. dependencies = [
  4411. "num_enum_derive",
  4412. "rustversion",
  4413. ]
  4414. [[package]]
  4415. name = "num_enum_derive"
  4416. version = "0.7.5"
  4417. source = "registry+https://github.com/rust-lang/crates.io-index"
  4418. checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
  4419. dependencies = [
  4420. "proc-macro-crate 3.4.0",
  4421. "proc-macro2",
  4422. "quote",
  4423. "syn 2.0.116",
  4424. ]
  4425. [[package]]
  4426. name = "objc2-core-foundation"
  4427. version = "0.3.2"
  4428. source = "registry+https://github.com/rust-lang/crates.io-index"
  4429. checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
  4430. dependencies = [
  4431. "bitflags 2.11.0",
  4432. ]
  4433. [[package]]
  4434. name = "objc2-system-configuration"
  4435. version = "0.3.2"
  4436. source = "registry+https://github.com/rust-lang/crates.io-index"
  4437. checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
  4438. dependencies = [
  4439. "objc2-core-foundation",
  4440. ]
  4441. [[package]]
  4442. name = "object"
  4443. version = "0.37.3"
  4444. source = "registry+https://github.com/rust-lang/crates.io-index"
  4445. checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
  4446. dependencies = [
  4447. "memchr",
  4448. ]
  4449. [[package]]
  4450. name = "once_cell"
  4451. version = "1.21.3"
  4452. source = "registry+https://github.com/rust-lang/crates.io-index"
  4453. checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
  4454. dependencies = [
  4455. "critical-section",
  4456. "portable-atomic",
  4457. ]
  4458. [[package]]
  4459. name = "once_cell_polyfill"
  4460. version = "1.70.2"
  4461. source = "registry+https://github.com/rust-lang/crates.io-index"
  4462. checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
  4463. [[package]]
  4464. name = "oorandom"
  4465. version = "11.1.5"
  4466. source = "registry+https://github.com/rust-lang/crates.io-index"
  4467. checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
  4468. [[package]]
  4469. name = "opaque-debug"
  4470. version = "0.3.1"
  4471. source = "registry+https://github.com/rust-lang/crates.io-index"
  4472. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  4473. [[package]]
  4474. name = "openssl"
  4475. version = "0.10.75"
  4476. source = "registry+https://github.com/rust-lang/crates.io-index"
  4477. checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
  4478. dependencies = [
  4479. "bitflags 2.11.0",
  4480. "cfg-if",
  4481. "foreign-types",
  4482. "libc",
  4483. "once_cell",
  4484. "openssl-macros",
  4485. "openssl-sys",
  4486. ]
  4487. [[package]]
  4488. name = "openssl-macros"
  4489. version = "0.1.1"
  4490. source = "registry+https://github.com/rust-lang/crates.io-index"
  4491. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  4492. dependencies = [
  4493. "proc-macro2",
  4494. "quote",
  4495. "syn 2.0.116",
  4496. ]
  4497. [[package]]
  4498. name = "openssl-probe"
  4499. version = "0.1.6"
  4500. source = "registry+https://github.com/rust-lang/crates.io-index"
  4501. checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
  4502. [[package]]
  4503. name = "openssl-probe"
  4504. version = "0.2.1"
  4505. source = "registry+https://github.com/rust-lang/crates.io-index"
  4506. checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
  4507. [[package]]
  4508. name = "openssl-sys"
  4509. version = "0.9.111"
  4510. source = "registry+https://github.com/rust-lang/crates.io-index"
  4511. checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
  4512. dependencies = [
  4513. "cc",
  4514. "libc",
  4515. "pkg-config",
  4516. "vcpkg",
  4517. ]
  4518. [[package]]
  4519. name = "option-ext"
  4520. version = "0.2.0"
  4521. source = "registry+https://github.com/rust-lang/crates.io-index"
  4522. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  4523. [[package]]
  4524. name = "ordered-float"
  4525. version = "2.10.1"
  4526. source = "registry+https://github.com/rust-lang/crates.io-index"
  4527. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  4528. dependencies = [
  4529. "num-traits",
  4530. ]
  4531. [[package]]
  4532. name = "ordered-multimap"
  4533. version = "0.7.3"
  4534. source = "registry+https://github.com/rust-lang/crates.io-index"
  4535. checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
  4536. dependencies = [
  4537. "dlv-list",
  4538. "hashbrown 0.14.5",
  4539. ]
  4540. [[package]]
  4541. name = "p256"
  4542. version = "0.13.2"
  4543. source = "registry+https://github.com/rust-lang/crates.io-index"
  4544. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  4545. dependencies = [
  4546. "ecdsa",
  4547. "elliptic-curve",
  4548. "primeorder",
  4549. "sha2",
  4550. ]
  4551. [[package]]
  4552. name = "p384"
  4553. version = "0.13.1"
  4554. source = "registry+https://github.com/rust-lang/crates.io-index"
  4555. checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
  4556. dependencies = [
  4557. "ecdsa",
  4558. "elliptic-curve",
  4559. "primeorder",
  4560. "sha2",
  4561. ]
  4562. [[package]]
  4563. name = "p521"
  4564. version = "0.13.3"
  4565. source = "registry+https://github.com/rust-lang/crates.io-index"
  4566. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  4567. dependencies = [
  4568. "base16ct",
  4569. "ecdsa",
  4570. "elliptic-curve",
  4571. "primeorder",
  4572. "rand_core 0.6.4",
  4573. "sha2",
  4574. ]
  4575. [[package]]
  4576. name = "parking"
  4577. version = "2.2.1"
  4578. source = "registry+https://github.com/rust-lang/crates.io-index"
  4579. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  4580. [[package]]
  4581. name = "parking_lot"
  4582. version = "0.12.5"
  4583. source = "registry+https://github.com/rust-lang/crates.io-index"
  4584. checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
  4585. dependencies = [
  4586. "lock_api",
  4587. "parking_lot_core",
  4588. ]
  4589. [[package]]
  4590. name = "parking_lot_core"
  4591. version = "0.9.12"
  4592. source = "registry+https://github.com/rust-lang/crates.io-index"
  4593. checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
  4594. dependencies = [
  4595. "cfg-if",
  4596. "libc",
  4597. "redox_syscall 0.5.18",
  4598. "smallvec",
  4599. "windows-link",
  4600. ]
  4601. [[package]]
  4602. name = "password-hash"
  4603. version = "0.5.0"
  4604. source = "registry+https://github.com/rust-lang/crates.io-index"
  4605. checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
  4606. dependencies = [
  4607. "base64ct",
  4608. "rand_core 0.6.4",
  4609. "subtle",
  4610. ]
  4611. [[package]]
  4612. name = "paste"
  4613. version = "1.0.15"
  4614. source = "registry+https://github.com/rust-lang/crates.io-index"
  4615. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  4616. [[package]]
  4617. name = "pathdiff"
  4618. version = "0.2.3"
  4619. source = "registry+https://github.com/rust-lang/crates.io-index"
  4620. checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
  4621. [[package]]
  4622. name = "pbkdf2"
  4623. version = "0.12.2"
  4624. source = "registry+https://github.com/rust-lang/crates.io-index"
  4625. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4626. dependencies = [
  4627. "digest",
  4628. "hmac",
  4629. ]
  4630. [[package]]
  4631. name = "pem"
  4632. version = "0.8.3"
  4633. source = "registry+https://github.com/rust-lang/crates.io-index"
  4634. checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb"
  4635. dependencies = [
  4636. "base64 0.13.1",
  4637. "once_cell",
  4638. "regex",
  4639. ]
  4640. [[package]]
  4641. name = "pem"
  4642. version = "3.0.6"
  4643. source = "registry+https://github.com/rust-lang/crates.io-index"
  4644. checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
  4645. dependencies = [
  4646. "base64 0.22.1",
  4647. "serde_core",
  4648. ]
  4649. [[package]]
  4650. name = "pem-rfc7468"
  4651. version = "0.7.0"
  4652. source = "registry+https://github.com/rust-lang/crates.io-index"
  4653. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  4654. dependencies = [
  4655. "base64ct",
  4656. ]
  4657. [[package]]
  4658. name = "percent-encoding"
  4659. version = "2.3.2"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
  4662. [[package]]
  4663. name = "percent-encoding-rfc3986"
  4664. version = "0.1.3"
  4665. source = "registry+https://github.com/rust-lang/crates.io-index"
  4666. checksum = "3637c05577168127568a64e9dc5a6887da720efef07b3d9472d45f63ab191166"
  4667. [[package]]
  4668. name = "pest"
  4669. version = "2.8.6"
  4670. source = "registry+https://github.com/rust-lang/crates.io-index"
  4671. checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
  4672. dependencies = [
  4673. "memchr",
  4674. "ucd-trie",
  4675. ]
  4676. [[package]]
  4677. name = "pest_derive"
  4678. version = "2.8.6"
  4679. source = "registry+https://github.com/rust-lang/crates.io-index"
  4680. checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
  4681. dependencies = [
  4682. "pest",
  4683. "pest_generator",
  4684. ]
  4685. [[package]]
  4686. name = "pest_generator"
  4687. version = "2.8.6"
  4688. source = "registry+https://github.com/rust-lang/crates.io-index"
  4689. checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
  4690. dependencies = [
  4691. "pest",
  4692. "pest_meta",
  4693. "proc-macro2",
  4694. "quote",
  4695. "syn 2.0.116",
  4696. ]
  4697. [[package]]
  4698. name = "pest_meta"
  4699. version = "2.8.6"
  4700. source = "registry+https://github.com/rust-lang/crates.io-index"
  4701. checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
  4702. dependencies = [
  4703. "pest",
  4704. "sha2",
  4705. ]
  4706. [[package]]
  4707. name = "petgraph"
  4708. version = "0.6.5"
  4709. source = "registry+https://github.com/rust-lang/crates.io-index"
  4710. checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
  4711. dependencies = [
  4712. "fixedbitset 0.4.2",
  4713. "indexmap 2.13.0",
  4714. ]
  4715. [[package]]
  4716. name = "petgraph"
  4717. version = "0.8.3"
  4718. source = "registry+https://github.com/rust-lang/crates.io-index"
  4719. checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
  4720. dependencies = [
  4721. "fixedbitset 0.5.7",
  4722. "hashbrown 0.15.5",
  4723. "indexmap 2.13.0",
  4724. ]
  4725. [[package]]
  4726. name = "phf"
  4727. version = "0.11.3"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
  4730. dependencies = [
  4731. "phf_macros",
  4732. "phf_shared 0.11.3",
  4733. ]
  4734. [[package]]
  4735. name = "phf"
  4736. version = "0.13.1"
  4737. source = "registry+https://github.com/rust-lang/crates.io-index"
  4738. checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
  4739. dependencies = [
  4740. "phf_shared 0.13.1",
  4741. "serde",
  4742. ]
  4743. [[package]]
  4744. name = "phf_generator"
  4745. version = "0.11.3"
  4746. source = "registry+https://github.com/rust-lang/crates.io-index"
  4747. checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
  4748. dependencies = [
  4749. "phf_shared 0.11.3",
  4750. "rand 0.8.5",
  4751. ]
  4752. [[package]]
  4753. name = "phf_macros"
  4754. version = "0.11.3"
  4755. source = "registry+https://github.com/rust-lang/crates.io-index"
  4756. checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
  4757. dependencies = [
  4758. "phf_generator",
  4759. "phf_shared 0.11.3",
  4760. "proc-macro2",
  4761. "quote",
  4762. "syn 2.0.116",
  4763. ]
  4764. [[package]]
  4765. name = "phf_shared"
  4766. version = "0.11.3"
  4767. source = "registry+https://github.com/rust-lang/crates.io-index"
  4768. checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
  4769. dependencies = [
  4770. "siphasher 1.0.2",
  4771. ]
  4772. [[package]]
  4773. name = "phf_shared"
  4774. version = "0.13.1"
  4775. source = "registry+https://github.com/rust-lang/crates.io-index"
  4776. checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
  4777. dependencies = [
  4778. "siphasher 1.0.2",
  4779. ]
  4780. [[package]]
  4781. name = "pin-project"
  4782. version = "1.1.10"
  4783. source = "registry+https://github.com/rust-lang/crates.io-index"
  4784. checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
  4785. dependencies = [
  4786. "pin-project-internal",
  4787. ]
  4788. [[package]]
  4789. name = "pin-project-internal"
  4790. version = "1.1.10"
  4791. source = "registry+https://github.com/rust-lang/crates.io-index"
  4792. checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
  4793. dependencies = [
  4794. "proc-macro2",
  4795. "quote",
  4796. "syn 2.0.116",
  4797. ]
  4798. [[package]]
  4799. name = "pin-project-lite"
  4800. version = "0.2.16"
  4801. source = "registry+https://github.com/rust-lang/crates.io-index"
  4802. checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
  4803. [[package]]
  4804. name = "pin-utils"
  4805. version = "0.1.0"
  4806. source = "registry+https://github.com/rust-lang/crates.io-index"
  4807. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4808. [[package]]
  4809. name = "pkcs1"
  4810. version = "0.7.5"
  4811. source = "registry+https://github.com/rust-lang/crates.io-index"
  4812. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  4813. dependencies = [
  4814. "der",
  4815. "pkcs8",
  4816. "spki",
  4817. ]
  4818. [[package]]
  4819. name = "pkcs8"
  4820. version = "0.10.2"
  4821. source = "registry+https://github.com/rust-lang/crates.io-index"
  4822. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4823. dependencies = [
  4824. "der",
  4825. "spki",
  4826. ]
  4827. [[package]]
  4828. name = "pkg-config"
  4829. version = "0.3.32"
  4830. source = "registry+https://github.com/rust-lang/crates.io-index"
  4831. checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
  4832. [[package]]
  4833. name = "plain"
  4834. version = "0.2.3"
  4835. source = "registry+https://github.com/rust-lang/crates.io-index"
  4836. checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
  4837. [[package]]
  4838. name = "plotters"
  4839. version = "0.3.7"
  4840. source = "registry+https://github.com/rust-lang/crates.io-index"
  4841. checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
  4842. dependencies = [
  4843. "num-traits",
  4844. "plotters-backend",
  4845. "plotters-svg",
  4846. "wasm-bindgen",
  4847. "web-sys",
  4848. ]
  4849. [[package]]
  4850. name = "plotters-backend"
  4851. version = "0.3.7"
  4852. source = "registry+https://github.com/rust-lang/crates.io-index"
  4853. checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
  4854. [[package]]
  4855. name = "plotters-svg"
  4856. version = "0.3.7"
  4857. source = "registry+https://github.com/rust-lang/crates.io-index"
  4858. checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
  4859. dependencies = [
  4860. "plotters-backend",
  4861. ]
  4862. [[package]]
  4863. name = "poly1305"
  4864. version = "0.8.0"
  4865. source = "registry+https://github.com/rust-lang/crates.io-index"
  4866. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4867. dependencies = [
  4868. "cpufeatures",
  4869. "opaque-debug",
  4870. "universal-hash",
  4871. ]
  4872. [[package]]
  4873. name = "portable-atomic"
  4874. version = "1.13.1"
  4875. source = "registry+https://github.com/rust-lang/crates.io-index"
  4876. checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
  4877. [[package]]
  4878. name = "possiblyrandom"
  4879. version = "0.2.0"
  4880. source = "registry+https://github.com/rust-lang/crates.io-index"
  4881. checksum = "1b122a615d72104fb3d8b26523fdf9232cd8ee06949fb37e4ce3ff964d15dffd"
  4882. dependencies = [
  4883. "getrandom 0.2.17",
  4884. ]
  4885. [[package]]
  4886. name = "postage"
  4887. version = "0.5.0"
  4888. source = "registry+https://github.com/rust-lang/crates.io-index"
  4889. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  4890. dependencies = [
  4891. "atomic 0.5.3",
  4892. "crossbeam-queue",
  4893. "futures",
  4894. "parking_lot",
  4895. "pin-project",
  4896. "static_assertions",
  4897. "thiserror 1.0.69",
  4898. ]
  4899. [[package]]
  4900. name = "postgres-native-tls"
  4901. version = "0.5.2"
  4902. source = "registry+https://github.com/rust-lang/crates.io-index"
  4903. checksum = "ac73153d92e4bde922bd6f1dfba7f1ab8132266c031153b55e20a1521cd36d49"
  4904. dependencies = [
  4905. "native-tls",
  4906. "tokio",
  4907. "tokio-native-tls",
  4908. "tokio-postgres",
  4909. ]
  4910. [[package]]
  4911. name = "postgres-protocol"
  4912. version = "0.6.10"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "3ee9dd5fe15055d2b6806f4736aa0c9637217074e224bbec46d4041b91bb9491"
  4915. dependencies = [
  4916. "base64 0.22.1",
  4917. "byteorder",
  4918. "bytes",
  4919. "fallible-iterator 0.2.0",
  4920. "hmac",
  4921. "md-5",
  4922. "memchr",
  4923. "rand 0.9.2",
  4924. "sha2",
  4925. "stringprep",
  4926. ]
  4927. [[package]]
  4928. name = "postgres-types"
  4929. version = "0.2.12"
  4930. source = "registry+https://github.com/rust-lang/crates.io-index"
  4931. checksum = "54b858f82211e84682fecd373f68e1ceae642d8d751a1ebd13f33de6257b3e20"
  4932. dependencies = [
  4933. "bytes",
  4934. "fallible-iterator 0.2.0",
  4935. "postgres-protocol",
  4936. ]
  4937. [[package]]
  4938. name = "potential_utf"
  4939. version = "0.1.4"
  4940. source = "registry+https://github.com/rust-lang/crates.io-index"
  4941. checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
  4942. dependencies = [
  4943. "zerovec",
  4944. ]
  4945. [[package]]
  4946. name = "powerfmt"
  4947. version = "0.2.0"
  4948. source = "registry+https://github.com/rust-lang/crates.io-index"
  4949. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4950. [[package]]
  4951. name = "ppv-lite86"
  4952. version = "0.2.21"
  4953. source = "registry+https://github.com/rust-lang/crates.io-index"
  4954. checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
  4955. dependencies = [
  4956. "zerocopy",
  4957. ]
  4958. [[package]]
  4959. name = "prettyplease"
  4960. version = "0.1.25"
  4961. source = "registry+https://github.com/rust-lang/crates.io-index"
  4962. checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
  4963. dependencies = [
  4964. "proc-macro2",
  4965. "syn 1.0.109",
  4966. ]
  4967. [[package]]
  4968. name = "prettyplease"
  4969. version = "0.2.37"
  4970. source = "registry+https://github.com/rust-lang/crates.io-index"
  4971. checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
  4972. dependencies = [
  4973. "proc-macro2",
  4974. "syn 2.0.116",
  4975. ]
  4976. [[package]]
  4977. name = "primeorder"
  4978. version = "0.13.6"
  4979. source = "registry+https://github.com/rust-lang/crates.io-index"
  4980. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4981. dependencies = [
  4982. "elliptic-curve",
  4983. ]
  4984. [[package]]
  4985. name = "priority-queue"
  4986. version = "2.7.0"
  4987. source = "registry+https://github.com/rust-lang/crates.io-index"
  4988. checksum = "93980406f12d9f8140ed5abe7155acb10bb1e69ea55c88960b9c2f117445ef96"
  4989. dependencies = [
  4990. "equivalent",
  4991. "indexmap 2.13.0",
  4992. "serde",
  4993. ]
  4994. [[package]]
  4995. name = "proc-macro-crate"
  4996. version = "1.3.1"
  4997. source = "registry+https://github.com/rust-lang/crates.io-index"
  4998. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  4999. dependencies = [
  5000. "once_cell",
  5001. "toml_edit 0.19.15",
  5002. ]
  5003. [[package]]
  5004. name = "proc-macro-crate"
  5005. version = "3.4.0"
  5006. source = "registry+https://github.com/rust-lang/crates.io-index"
  5007. checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
  5008. dependencies = [
  5009. "toml_edit 0.23.10+spec-1.0.0",
  5010. ]
  5011. [[package]]
  5012. name = "proc-macro2"
  5013. version = "1.0.106"
  5014. source = "registry+https://github.com/rust-lang/crates.io-index"
  5015. checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
  5016. dependencies = [
  5017. "unicode-ident",
  5018. ]
  5019. [[package]]
  5020. name = "proc-macro2-diagnostics"
  5021. version = "0.10.1"
  5022. source = "registry+https://github.com/rust-lang/crates.io-index"
  5023. checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
  5024. dependencies = [
  5025. "proc-macro2",
  5026. "quote",
  5027. "syn 2.0.116",
  5028. "version_check",
  5029. ]
  5030. [[package]]
  5031. name = "prometheus"
  5032. version = "0.13.4"
  5033. source = "registry+https://github.com/rust-lang/crates.io-index"
  5034. checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
  5035. dependencies = [
  5036. "cfg-if",
  5037. "fnv",
  5038. "lazy_static",
  5039. "memchr",
  5040. "parking_lot",
  5041. "protobuf",
  5042. "thiserror 1.0.69",
  5043. ]
  5044. [[package]]
  5045. name = "prost"
  5046. version = "0.11.9"
  5047. source = "registry+https://github.com/rust-lang/crates.io-index"
  5048. checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd"
  5049. dependencies = [
  5050. "bytes",
  5051. "prost-derive 0.11.9",
  5052. ]
  5053. [[package]]
  5054. name = "prost"
  5055. version = "0.12.6"
  5056. source = "registry+https://github.com/rust-lang/crates.io-index"
  5057. checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
  5058. dependencies = [
  5059. "bytes",
  5060. "prost-derive 0.12.6",
  5061. ]
  5062. [[package]]
  5063. name = "prost"
  5064. version = "0.14.3"
  5065. source = "registry+https://github.com/rust-lang/crates.io-index"
  5066. checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
  5067. dependencies = [
  5068. "bytes",
  5069. "prost-derive 0.14.3",
  5070. ]
  5071. [[package]]
  5072. name = "prost-build"
  5073. version = "0.11.9"
  5074. source = "registry+https://github.com/rust-lang/crates.io-index"
  5075. checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270"
  5076. dependencies = [
  5077. "bytes",
  5078. "heck 0.4.1",
  5079. "itertools 0.10.5",
  5080. "lazy_static",
  5081. "log",
  5082. "multimap 0.8.3",
  5083. "petgraph 0.6.5",
  5084. "prettyplease 0.1.25",
  5085. "prost 0.11.9",
  5086. "prost-types 0.11.9",
  5087. "regex",
  5088. "syn 1.0.109",
  5089. "tempfile",
  5090. "which",
  5091. ]
  5092. [[package]]
  5093. name = "prost-build"
  5094. version = "0.12.6"
  5095. source = "registry+https://github.com/rust-lang/crates.io-index"
  5096. checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
  5097. dependencies = [
  5098. "bytes",
  5099. "heck 0.5.0",
  5100. "itertools 0.12.1",
  5101. "log",
  5102. "multimap 0.10.1",
  5103. "once_cell",
  5104. "petgraph 0.6.5",
  5105. "prettyplease 0.2.37",
  5106. "prost 0.12.6",
  5107. "prost-types 0.12.6",
  5108. "regex",
  5109. "syn 2.0.116",
  5110. "tempfile",
  5111. ]
  5112. [[package]]
  5113. name = "prost-build"
  5114. version = "0.14.3"
  5115. source = "registry+https://github.com/rust-lang/crates.io-index"
  5116. checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
  5117. dependencies = [
  5118. "heck 0.5.0",
  5119. "itertools 0.14.0",
  5120. "log",
  5121. "multimap 0.10.1",
  5122. "petgraph 0.8.3",
  5123. "prettyplease 0.2.37",
  5124. "prost 0.14.3",
  5125. "prost-types 0.14.3",
  5126. "pulldown-cmark",
  5127. "pulldown-cmark-to-cmark",
  5128. "regex",
  5129. "syn 2.0.116",
  5130. "tempfile",
  5131. ]
  5132. [[package]]
  5133. name = "prost-derive"
  5134. version = "0.11.9"
  5135. source = "registry+https://github.com/rust-lang/crates.io-index"
  5136. checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4"
  5137. dependencies = [
  5138. "anyhow",
  5139. "itertools 0.10.5",
  5140. "proc-macro2",
  5141. "quote",
  5142. "syn 1.0.109",
  5143. ]
  5144. [[package]]
  5145. name = "prost-derive"
  5146. version = "0.12.6"
  5147. source = "registry+https://github.com/rust-lang/crates.io-index"
  5148. checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
  5149. dependencies = [
  5150. "anyhow",
  5151. "itertools 0.12.1",
  5152. "proc-macro2",
  5153. "quote",
  5154. "syn 2.0.116",
  5155. ]
  5156. [[package]]
  5157. name = "prost-derive"
  5158. version = "0.14.3"
  5159. source = "registry+https://github.com/rust-lang/crates.io-index"
  5160. checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
  5161. dependencies = [
  5162. "anyhow",
  5163. "itertools 0.14.0",
  5164. "proc-macro2",
  5165. "quote",
  5166. "syn 2.0.116",
  5167. ]
  5168. [[package]]
  5169. name = "prost-types"
  5170. version = "0.11.9"
  5171. source = "registry+https://github.com/rust-lang/crates.io-index"
  5172. checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13"
  5173. dependencies = [
  5174. "prost 0.11.9",
  5175. ]
  5176. [[package]]
  5177. name = "prost-types"
  5178. version = "0.12.6"
  5179. source = "registry+https://github.com/rust-lang/crates.io-index"
  5180. checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
  5181. dependencies = [
  5182. "prost 0.12.6",
  5183. ]
  5184. [[package]]
  5185. name = "prost-types"
  5186. version = "0.14.3"
  5187. source = "registry+https://github.com/rust-lang/crates.io-index"
  5188. checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
  5189. dependencies = [
  5190. "prost 0.14.3",
  5191. ]
  5192. [[package]]
  5193. name = "protobuf"
  5194. version = "2.28.0"
  5195. source = "registry+https://github.com/rust-lang/crates.io-index"
  5196. checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
  5197. [[package]]
  5198. name = "pulldown-cmark"
  5199. version = "0.13.0"
  5200. source = "registry+https://github.com/rust-lang/crates.io-index"
  5201. checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
  5202. dependencies = [
  5203. "bitflags 2.11.0",
  5204. "memchr",
  5205. "unicase",
  5206. ]
  5207. [[package]]
  5208. name = "pulldown-cmark-to-cmark"
  5209. version = "22.0.0"
  5210. source = "registry+https://github.com/rust-lang/crates.io-index"
  5211. checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
  5212. dependencies = [
  5213. "pulldown-cmark",
  5214. ]
  5215. [[package]]
  5216. name = "pwd-grp"
  5217. version = "0.1.1"
  5218. source = "registry+https://github.com/rust-lang/crates.io-index"
  5219. checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
  5220. dependencies = [
  5221. "derive-adhoc",
  5222. "libc",
  5223. "paste",
  5224. "thiserror 1.0.69",
  5225. ]
  5226. [[package]]
  5227. name = "quick-error"
  5228. version = "1.2.3"
  5229. source = "registry+https://github.com/rust-lang/crates.io-index"
  5230. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  5231. [[package]]
  5232. name = "quinn"
  5233. version = "0.11.9"
  5234. source = "registry+https://github.com/rust-lang/crates.io-index"
  5235. checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
  5236. dependencies = [
  5237. "bytes",
  5238. "cfg_aliases",
  5239. "pin-project-lite",
  5240. "quinn-proto",
  5241. "quinn-udp",
  5242. "rustc-hash",
  5243. "rustls 0.23.36",
  5244. "socket2 0.6.2",
  5245. "thiserror 2.0.18",
  5246. "tokio",
  5247. "tracing",
  5248. "web-time",
  5249. ]
  5250. [[package]]
  5251. name = "quinn-proto"
  5252. version = "0.11.13"
  5253. source = "registry+https://github.com/rust-lang/crates.io-index"
  5254. checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
  5255. dependencies = [
  5256. "bytes",
  5257. "getrandom 0.3.4",
  5258. "lru-slab",
  5259. "rand 0.9.2",
  5260. "ring 0.17.14",
  5261. "rustc-hash",
  5262. "rustls 0.23.36",
  5263. "rustls-pki-types",
  5264. "slab",
  5265. "thiserror 2.0.18",
  5266. "tinyvec",
  5267. "tracing",
  5268. "web-time",
  5269. ]
  5270. [[package]]
  5271. name = "quinn-udp"
  5272. version = "0.5.14"
  5273. source = "registry+https://github.com/rust-lang/crates.io-index"
  5274. checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
  5275. dependencies = [
  5276. "cfg_aliases",
  5277. "libc",
  5278. "once_cell",
  5279. "socket2 0.6.2",
  5280. "tracing",
  5281. "windows-sys 0.60.2",
  5282. ]
  5283. [[package]]
  5284. name = "quote"
  5285. version = "1.0.44"
  5286. source = "registry+https://github.com/rust-lang/crates.io-index"
  5287. checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
  5288. dependencies = [
  5289. "proc-macro2",
  5290. ]
  5291. [[package]]
  5292. name = "r-efi"
  5293. version = "5.3.0"
  5294. source = "registry+https://github.com/rust-lang/crates.io-index"
  5295. checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
  5296. [[package]]
  5297. name = "radium"
  5298. version = "0.7.0"
  5299. source = "registry+https://github.com/rust-lang/crates.io-index"
  5300. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  5301. [[package]]
  5302. name = "rand"
  5303. version = "0.8.5"
  5304. source = "registry+https://github.com/rust-lang/crates.io-index"
  5305. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  5306. dependencies = [
  5307. "libc",
  5308. "rand_chacha 0.3.1",
  5309. "rand_core 0.6.4",
  5310. ]
  5311. [[package]]
  5312. name = "rand"
  5313. version = "0.9.2"
  5314. source = "registry+https://github.com/rust-lang/crates.io-index"
  5315. checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
  5316. dependencies = [
  5317. "rand_chacha 0.9.0",
  5318. "rand_core 0.9.5",
  5319. ]
  5320. [[package]]
  5321. name = "rand_chacha"
  5322. version = "0.3.1"
  5323. source = "registry+https://github.com/rust-lang/crates.io-index"
  5324. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  5325. dependencies = [
  5326. "ppv-lite86",
  5327. "rand_core 0.6.4",
  5328. ]
  5329. [[package]]
  5330. name = "rand_chacha"
  5331. version = "0.9.0"
  5332. source = "registry+https://github.com/rust-lang/crates.io-index"
  5333. checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
  5334. dependencies = [
  5335. "ppv-lite86",
  5336. "rand_core 0.9.5",
  5337. ]
  5338. [[package]]
  5339. name = "rand_core"
  5340. version = "0.6.4"
  5341. source = "registry+https://github.com/rust-lang/crates.io-index"
  5342. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  5343. dependencies = [
  5344. "getrandom 0.2.17",
  5345. ]
  5346. [[package]]
  5347. name = "rand_core"
  5348. version = "0.9.5"
  5349. source = "registry+https://github.com/rust-lang/crates.io-index"
  5350. checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
  5351. dependencies = [
  5352. "getrandom 0.3.4",
  5353. ]
  5354. [[package]]
  5355. name = "rayon"
  5356. version = "1.11.0"
  5357. source = "registry+https://github.com/rust-lang/crates.io-index"
  5358. checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
  5359. dependencies = [
  5360. "either",
  5361. "rayon-core",
  5362. ]
  5363. [[package]]
  5364. name = "rayon-core"
  5365. version = "1.13.0"
  5366. source = "registry+https://github.com/rust-lang/crates.io-index"
  5367. checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
  5368. dependencies = [
  5369. "crossbeam-deque",
  5370. "crossbeam-utils",
  5371. ]
  5372. [[package]]
  5373. name = "redb"
  5374. version = "2.6.3"
  5375. source = "registry+https://github.com/rust-lang/crates.io-index"
  5376. checksum = "8eca1e9d98d5a7e9002d0013e18d5a9b000aee942eb134883a82f06ebffb6c01"
  5377. dependencies = [
  5378. "libc",
  5379. ]
  5380. [[package]]
  5381. name = "redis"
  5382. version = "0.31.0"
  5383. source = "registry+https://github.com/rust-lang/crates.io-index"
  5384. checksum = "0bc1ea653e0b2e097db3ebb5b7f678be339620b8041f66b30a308c1d45d36a7f"
  5385. dependencies = [
  5386. "bytes",
  5387. "cfg-if",
  5388. "combine",
  5389. "futures-util",
  5390. "itoa",
  5391. "num-bigint",
  5392. "percent-encoding",
  5393. "pin-project-lite",
  5394. "rustls 0.23.36",
  5395. "rustls-native-certs",
  5396. "ryu",
  5397. "sha1_smol",
  5398. "socket2 0.5.10",
  5399. "tokio",
  5400. "tokio-rustls 0.26.4",
  5401. "tokio-util",
  5402. "url",
  5403. ]
  5404. [[package]]
  5405. name = "redox_syscall"
  5406. version = "0.5.18"
  5407. source = "registry+https://github.com/rust-lang/crates.io-index"
  5408. checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
  5409. dependencies = [
  5410. "bitflags 2.11.0",
  5411. ]
  5412. [[package]]
  5413. name = "redox_syscall"
  5414. version = "0.7.1"
  5415. source = "registry+https://github.com/rust-lang/crates.io-index"
  5416. checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
  5417. dependencies = [
  5418. "bitflags 2.11.0",
  5419. ]
  5420. [[package]]
  5421. name = "redox_users"
  5422. version = "0.4.6"
  5423. source = "registry+https://github.com/rust-lang/crates.io-index"
  5424. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  5425. dependencies = [
  5426. "getrandom 0.2.17",
  5427. "libredox",
  5428. "thiserror 1.0.69",
  5429. ]
  5430. [[package]]
  5431. name = "redox_users"
  5432. version = "0.5.2"
  5433. source = "registry+https://github.com/rust-lang/crates.io-index"
  5434. checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
  5435. dependencies = [
  5436. "getrandom 0.2.17",
  5437. "libredox",
  5438. "thiserror 2.0.18",
  5439. ]
  5440. [[package]]
  5441. name = "ref-cast"
  5442. version = "1.0.25"
  5443. source = "registry+https://github.com/rust-lang/crates.io-index"
  5444. checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
  5445. dependencies = [
  5446. "ref-cast-impl",
  5447. ]
  5448. [[package]]
  5449. name = "ref-cast-impl"
  5450. version = "1.0.25"
  5451. source = "registry+https://github.com/rust-lang/crates.io-index"
  5452. checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
  5453. dependencies = [
  5454. "proc-macro2",
  5455. "quote",
  5456. "syn 2.0.116",
  5457. ]
  5458. [[package]]
  5459. name = "regex"
  5460. version = "1.12.3"
  5461. source = "registry+https://github.com/rust-lang/crates.io-index"
  5462. checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
  5463. dependencies = [
  5464. "aho-corasick",
  5465. "memchr",
  5466. "regex-automata",
  5467. "regex-syntax",
  5468. ]
  5469. [[package]]
  5470. name = "regex-automata"
  5471. version = "0.4.14"
  5472. source = "registry+https://github.com/rust-lang/crates.io-index"
  5473. checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
  5474. dependencies = [
  5475. "aho-corasick",
  5476. "memchr",
  5477. "regex-syntax",
  5478. ]
  5479. [[package]]
  5480. name = "regex-syntax"
  5481. version = "0.8.9"
  5482. source = "registry+https://github.com/rust-lang/crates.io-index"
  5483. checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
  5484. [[package]]
  5485. name = "reqwest"
  5486. version = "0.12.28"
  5487. source = "registry+https://github.com/rust-lang/crates.io-index"
  5488. checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
  5489. dependencies = [
  5490. "base64 0.22.1",
  5491. "bytes",
  5492. "futures-channel",
  5493. "futures-core",
  5494. "futures-util",
  5495. "http 1.4.0",
  5496. "http-body 1.0.1",
  5497. "http-body-util",
  5498. "hyper 1.8.1",
  5499. "hyper-rustls 0.27.7",
  5500. "hyper-util",
  5501. "js-sys",
  5502. "log",
  5503. "percent-encoding",
  5504. "pin-project-lite",
  5505. "quinn",
  5506. "rustls 0.23.36",
  5507. "rustls-native-certs",
  5508. "rustls-pki-types",
  5509. "serde",
  5510. "serde_json",
  5511. "serde_urlencoded",
  5512. "sync_wrapper 1.0.2",
  5513. "tokio",
  5514. "tokio-rustls 0.26.4",
  5515. "tower 0.5.3",
  5516. "tower-http",
  5517. "tower-service",
  5518. "url",
  5519. "wasm-bindgen",
  5520. "wasm-bindgen-futures",
  5521. "web-sys",
  5522. "webpki-roots 1.0.6",
  5523. ]
  5524. [[package]]
  5525. name = "resolv-conf"
  5526. version = "0.7.6"
  5527. source = "registry+https://github.com/rust-lang/crates.io-index"
  5528. checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
  5529. [[package]]
  5530. name = "retry-error"
  5531. version = "0.5.4"
  5532. source = "registry+https://github.com/rust-lang/crates.io-index"
  5533. checksum = "eeb501c6079c6e2a1c9761b76ddb12ecb6818b8773748f5e0394b95f838e4a38"
  5534. [[package]]
  5535. name = "rfc6979"
  5536. version = "0.4.0"
  5537. source = "registry+https://github.com/rust-lang/crates.io-index"
  5538. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  5539. dependencies = [
  5540. "hmac",
  5541. "subtle",
  5542. ]
  5543. [[package]]
  5544. name = "ring"
  5545. version = "0.16.20"
  5546. source = "registry+https://github.com/rust-lang/crates.io-index"
  5547. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  5548. dependencies = [
  5549. "cc",
  5550. "libc",
  5551. "once_cell",
  5552. "spin 0.5.2",
  5553. "untrusted 0.7.1",
  5554. "web-sys",
  5555. "winapi",
  5556. ]
  5557. [[package]]
  5558. name = "ring"
  5559. version = "0.17.14"
  5560. source = "registry+https://github.com/rust-lang/crates.io-index"
  5561. checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
  5562. dependencies = [
  5563. "cc",
  5564. "cfg-if",
  5565. "getrandom 0.2.17",
  5566. "libc",
  5567. "untrusted 0.9.0",
  5568. "windows-sys 0.52.0",
  5569. ]
  5570. [[package]]
  5571. name = "ron"
  5572. version = "0.12.0"
  5573. source = "registry+https://github.com/rust-lang/crates.io-index"
  5574. checksum = "fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32"
  5575. dependencies = [
  5576. "bitflags 2.11.0",
  5577. "once_cell",
  5578. "serde",
  5579. "serde_derive",
  5580. "typeid",
  5581. "unicode-ident",
  5582. ]
  5583. [[package]]
  5584. name = "rsa"
  5585. version = "0.9.10"
  5586. source = "registry+https://github.com/rust-lang/crates.io-index"
  5587. checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
  5588. dependencies = [
  5589. "const-oid",
  5590. "digest",
  5591. "num-bigint-dig",
  5592. "num-integer",
  5593. "num-traits",
  5594. "pkcs1",
  5595. "pkcs8",
  5596. "rand_core 0.6.4",
  5597. "sha2",
  5598. "signature",
  5599. "spki",
  5600. "subtle",
  5601. "zeroize",
  5602. ]
  5603. [[package]]
  5604. name = "rusqlite"
  5605. version = "0.31.0"
  5606. source = "registry+https://github.com/rust-lang/crates.io-index"
  5607. checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
  5608. dependencies = [
  5609. "bitflags 2.11.0",
  5610. "fallible-iterator 0.3.0",
  5611. "fallible-streaming-iterator",
  5612. "hashlink 0.9.1",
  5613. "libsqlite3-sys",
  5614. "smallvec",
  5615. "time",
  5616. ]
  5617. [[package]]
  5618. name = "rust-embed"
  5619. version = "8.11.0"
  5620. source = "registry+https://github.com/rust-lang/crates.io-index"
  5621. checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
  5622. dependencies = [
  5623. "rust-embed-impl",
  5624. "rust-embed-utils",
  5625. "walkdir",
  5626. ]
  5627. [[package]]
  5628. name = "rust-embed-impl"
  5629. version = "8.11.0"
  5630. source = "registry+https://github.com/rust-lang/crates.io-index"
  5631. checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
  5632. dependencies = [
  5633. "proc-macro2",
  5634. "quote",
  5635. "rust-embed-utils",
  5636. "syn 2.0.116",
  5637. "walkdir",
  5638. ]
  5639. [[package]]
  5640. name = "rust-embed-utils"
  5641. version = "8.11.0"
  5642. source = "registry+https://github.com/rust-lang/crates.io-index"
  5643. checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
  5644. dependencies = [
  5645. "sha2",
  5646. "walkdir",
  5647. ]
  5648. [[package]]
  5649. name = "rust-ini"
  5650. version = "0.21.3"
  5651. source = "registry+https://github.com/rust-lang/crates.io-index"
  5652. checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
  5653. dependencies = [
  5654. "cfg-if",
  5655. "ordered-multimap",
  5656. ]
  5657. [[package]]
  5658. name = "rustc-demangle"
  5659. version = "0.1.27"
  5660. source = "registry+https://github.com/rust-lang/crates.io-index"
  5661. checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
  5662. [[package]]
  5663. name = "rustc-hash"
  5664. version = "2.1.1"
  5665. source = "registry+https://github.com/rust-lang/crates.io-index"
  5666. checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
  5667. [[package]]
  5668. name = "rustc_version"
  5669. version = "0.4.1"
  5670. source = "registry+https://github.com/rust-lang/crates.io-index"
  5671. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  5672. dependencies = [
  5673. "semver",
  5674. ]
  5675. [[package]]
  5676. name = "rustix"
  5677. version = "0.38.44"
  5678. source = "registry+https://github.com/rust-lang/crates.io-index"
  5679. checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
  5680. dependencies = [
  5681. "bitflags 2.11.0",
  5682. "errno",
  5683. "libc",
  5684. "linux-raw-sys 0.4.15",
  5685. "windows-sys 0.59.0",
  5686. ]
  5687. [[package]]
  5688. name = "rustix"
  5689. version = "1.1.3"
  5690. source = "registry+https://github.com/rust-lang/crates.io-index"
  5691. checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
  5692. dependencies = [
  5693. "bitflags 2.11.0",
  5694. "errno",
  5695. "libc",
  5696. "linux-raw-sys 0.11.0",
  5697. "windows-sys 0.61.2",
  5698. ]
  5699. [[package]]
  5700. name = "rustls"
  5701. version = "0.21.12"
  5702. source = "registry+https://github.com/rust-lang/crates.io-index"
  5703. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  5704. dependencies = [
  5705. "log",
  5706. "ring 0.17.14",
  5707. "rustls-webpki 0.101.7",
  5708. "sct",
  5709. ]
  5710. [[package]]
  5711. name = "rustls"
  5712. version = "0.23.36"
  5713. source = "registry+https://github.com/rust-lang/crates.io-index"
  5714. checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
  5715. dependencies = [
  5716. "aws-lc-rs",
  5717. "log",
  5718. "once_cell",
  5719. "ring 0.17.14",
  5720. "rustls-pki-types",
  5721. "rustls-webpki 0.103.9",
  5722. "subtle",
  5723. "zeroize",
  5724. ]
  5725. [[package]]
  5726. name = "rustls-native-certs"
  5727. version = "0.8.3"
  5728. source = "registry+https://github.com/rust-lang/crates.io-index"
  5729. checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
  5730. dependencies = [
  5731. "openssl-probe 0.2.1",
  5732. "rustls-pki-types",
  5733. "schannel",
  5734. "security-framework 3.6.0",
  5735. ]
  5736. [[package]]
  5737. name = "rustls-pemfile"
  5738. version = "1.0.4"
  5739. source = "registry+https://github.com/rust-lang/crates.io-index"
  5740. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  5741. dependencies = [
  5742. "base64 0.21.7",
  5743. ]
  5744. [[package]]
  5745. name = "rustls-pemfile"
  5746. version = "2.2.0"
  5747. source = "registry+https://github.com/rust-lang/crates.io-index"
  5748. checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
  5749. dependencies = [
  5750. "rustls-pki-types",
  5751. ]
  5752. [[package]]
  5753. name = "rustls-pki-types"
  5754. version = "1.14.0"
  5755. source = "registry+https://github.com/rust-lang/crates.io-index"
  5756. checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
  5757. dependencies = [
  5758. "web-time",
  5759. "zeroize",
  5760. ]
  5761. [[package]]
  5762. name = "rustls-webpki"
  5763. version = "0.101.7"
  5764. source = "registry+https://github.com/rust-lang/crates.io-index"
  5765. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  5766. dependencies = [
  5767. "ring 0.17.14",
  5768. "untrusted 0.9.0",
  5769. ]
  5770. [[package]]
  5771. name = "rustls-webpki"
  5772. version = "0.103.9"
  5773. source = "registry+https://github.com/rust-lang/crates.io-index"
  5774. checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
  5775. dependencies = [
  5776. "aws-lc-rs",
  5777. "ring 0.17.14",
  5778. "rustls-pki-types",
  5779. "untrusted 0.9.0",
  5780. ]
  5781. [[package]]
  5782. name = "rustversion"
  5783. version = "1.0.22"
  5784. source = "registry+https://github.com/rust-lang/crates.io-index"
  5785. checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
  5786. [[package]]
  5787. name = "ryu"
  5788. version = "1.0.23"
  5789. source = "registry+https://github.com/rust-lang/crates.io-index"
  5790. checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
  5791. [[package]]
  5792. name = "safelog"
  5793. version = "0.3.8"
  5794. source = "registry+https://github.com/rust-lang/crates.io-index"
  5795. checksum = "cabd7492c13678058e680f161cf94ba34d9d9e48419d1fbc6c21a32926c23764"
  5796. dependencies = [
  5797. "derive_more",
  5798. "educe",
  5799. "either",
  5800. "fluid-let",
  5801. "thiserror 1.0.69",
  5802. ]
  5803. [[package]]
  5804. name = "salsa20"
  5805. version = "0.10.2"
  5806. source = "registry+https://github.com/rust-lang/crates.io-index"
  5807. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  5808. dependencies = [
  5809. "cipher",
  5810. ]
  5811. [[package]]
  5812. name = "same-file"
  5813. version = "1.0.6"
  5814. source = "registry+https://github.com/rust-lang/crates.io-index"
  5815. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  5816. dependencies = [
  5817. "winapi-util",
  5818. ]
  5819. [[package]]
  5820. name = "sanitize-filename"
  5821. version = "0.5.0"
  5822. source = "registry+https://github.com/rust-lang/crates.io-index"
  5823. checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603"
  5824. dependencies = [
  5825. "lazy_static",
  5826. "regex",
  5827. ]
  5828. [[package]]
  5829. name = "schannel"
  5830. version = "0.1.28"
  5831. source = "registry+https://github.com/rust-lang/crates.io-index"
  5832. checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
  5833. dependencies = [
  5834. "windows-sys 0.61.2",
  5835. ]
  5836. [[package]]
  5837. name = "schemars"
  5838. version = "0.9.0"
  5839. source = "registry+https://github.com/rust-lang/crates.io-index"
  5840. checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
  5841. dependencies = [
  5842. "dyn-clone",
  5843. "ref-cast",
  5844. "serde",
  5845. "serde_json",
  5846. ]
  5847. [[package]]
  5848. name = "schemars"
  5849. version = "1.2.1"
  5850. source = "registry+https://github.com/rust-lang/crates.io-index"
  5851. checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
  5852. dependencies = [
  5853. "dyn-clone",
  5854. "ref-cast",
  5855. "serde",
  5856. "serde_json",
  5857. ]
  5858. [[package]]
  5859. name = "scopeguard"
  5860. version = "1.2.0"
  5861. source = "registry+https://github.com/rust-lang/crates.io-index"
  5862. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  5863. [[package]]
  5864. name = "scroll"
  5865. version = "0.12.0"
  5866. source = "registry+https://github.com/rust-lang/crates.io-index"
  5867. checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
  5868. dependencies = [
  5869. "scroll_derive",
  5870. ]
  5871. [[package]]
  5872. name = "scroll_derive"
  5873. version = "0.12.1"
  5874. source = "registry+https://github.com/rust-lang/crates.io-index"
  5875. checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
  5876. dependencies = [
  5877. "proc-macro2",
  5878. "quote",
  5879. "syn 2.0.116",
  5880. ]
  5881. [[package]]
  5882. name = "scrypt"
  5883. version = "0.11.0"
  5884. source = "registry+https://github.com/rust-lang/crates.io-index"
  5885. checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
  5886. dependencies = [
  5887. "password-hash",
  5888. "pbkdf2",
  5889. "salsa20",
  5890. "sha2",
  5891. ]
  5892. [[package]]
  5893. name = "sct"
  5894. version = "0.7.1"
  5895. source = "registry+https://github.com/rust-lang/crates.io-index"
  5896. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  5897. dependencies = [
  5898. "ring 0.17.14",
  5899. "untrusted 0.9.0",
  5900. ]
  5901. [[package]]
  5902. name = "sec1"
  5903. version = "0.7.3"
  5904. source = "registry+https://github.com/rust-lang/crates.io-index"
  5905. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  5906. dependencies = [
  5907. "base16ct",
  5908. "der",
  5909. "generic-array",
  5910. "pkcs8",
  5911. "subtle",
  5912. "zeroize",
  5913. ]
  5914. [[package]]
  5915. name = "secp256k1"
  5916. version = "0.28.2"
  5917. source = "registry+https://github.com/rust-lang/crates.io-index"
  5918. checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10"
  5919. dependencies = [
  5920. "bitcoin_hashes 0.13.0",
  5921. "secp256k1-sys 0.9.2",
  5922. "serde",
  5923. ]
  5924. [[package]]
  5925. name = "secp256k1"
  5926. version = "0.29.1"
  5927. source = "registry+https://github.com/rust-lang/crates.io-index"
  5928. checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
  5929. dependencies = [
  5930. "bitcoin_hashes 0.14.1",
  5931. "rand 0.8.5",
  5932. "secp256k1-sys 0.10.1",
  5933. "serde",
  5934. ]
  5935. [[package]]
  5936. name = "secp256k1-sys"
  5937. version = "0.9.2"
  5938. source = "registry+https://github.com/rust-lang/crates.io-index"
  5939. checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb"
  5940. dependencies = [
  5941. "cc",
  5942. ]
  5943. [[package]]
  5944. name = "secp256k1-sys"
  5945. version = "0.10.1"
  5946. source = "registry+https://github.com/rust-lang/crates.io-index"
  5947. checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
  5948. dependencies = [
  5949. "cc",
  5950. ]
  5951. [[package]]
  5952. name = "security-framework"
  5953. version = "2.11.1"
  5954. source = "registry+https://github.com/rust-lang/crates.io-index"
  5955. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  5956. dependencies = [
  5957. "bitflags 2.11.0",
  5958. "core-foundation 0.9.4",
  5959. "core-foundation-sys",
  5960. "libc",
  5961. "security-framework-sys",
  5962. ]
  5963. [[package]]
  5964. name = "security-framework"
  5965. version = "3.6.0"
  5966. source = "registry+https://github.com/rust-lang/crates.io-index"
  5967. checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
  5968. dependencies = [
  5969. "bitflags 2.11.0",
  5970. "core-foundation 0.10.1",
  5971. "core-foundation-sys",
  5972. "libc",
  5973. "security-framework-sys",
  5974. ]
  5975. [[package]]
  5976. name = "security-framework-sys"
  5977. version = "2.16.0"
  5978. source = "registry+https://github.com/rust-lang/crates.io-index"
  5979. checksum = "321c8673b092a9a42605034a9879d73cb79101ed5fd117bc9a597b89b4e9e61a"
  5980. dependencies = [
  5981. "core-foundation-sys",
  5982. "libc",
  5983. ]
  5984. [[package]]
  5985. name = "semver"
  5986. version = "1.0.27"
  5987. source = "registry+https://github.com/rust-lang/crates.io-index"
  5988. checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
  5989. dependencies = [
  5990. "serde",
  5991. "serde_core",
  5992. ]
  5993. [[package]]
  5994. name = "separator"
  5995. version = "0.4.1"
  5996. source = "registry+https://github.com/rust-lang/crates.io-index"
  5997. checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"
  5998. [[package]]
  5999. name = "serde"
  6000. version = "1.0.228"
  6001. source = "registry+https://github.com/rust-lang/crates.io-index"
  6002. checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
  6003. dependencies = [
  6004. "serde_core",
  6005. "serde_derive",
  6006. ]
  6007. [[package]]
  6008. name = "serde-untagged"
  6009. version = "0.1.9"
  6010. source = "registry+https://github.com/rust-lang/crates.io-index"
  6011. checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
  6012. dependencies = [
  6013. "erased-serde",
  6014. "serde",
  6015. "serde_core",
  6016. "typeid",
  6017. ]
  6018. [[package]]
  6019. name = "serde-value"
  6020. version = "0.7.0"
  6021. source = "registry+https://github.com/rust-lang/crates.io-index"
  6022. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  6023. dependencies = [
  6024. "ordered-float",
  6025. "serde",
  6026. ]
  6027. [[package]]
  6028. name = "serde_core"
  6029. version = "1.0.228"
  6030. source = "registry+https://github.com/rust-lang/crates.io-index"
  6031. checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
  6032. dependencies = [
  6033. "serde_derive",
  6034. ]
  6035. [[package]]
  6036. name = "serde_derive"
  6037. version = "1.0.228"
  6038. source = "registry+https://github.com/rust-lang/crates.io-index"
  6039. checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
  6040. dependencies = [
  6041. "proc-macro2",
  6042. "quote",
  6043. "syn 2.0.116",
  6044. ]
  6045. [[package]]
  6046. name = "serde_ignored"
  6047. version = "0.1.14"
  6048. source = "registry+https://github.com/rust-lang/crates.io-index"
  6049. checksum = "115dffd5f3853e06e746965a20dcbae6ee747ae30b543d91b0e089668bb07798"
  6050. dependencies = [
  6051. "serde",
  6052. "serde_core",
  6053. ]
  6054. [[package]]
  6055. name = "serde_json"
  6056. version = "1.0.149"
  6057. source = "registry+https://github.com/rust-lang/crates.io-index"
  6058. checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
  6059. dependencies = [
  6060. "itoa",
  6061. "memchr",
  6062. "serde",
  6063. "serde_core",
  6064. "zmij",
  6065. ]
  6066. [[package]]
  6067. name = "serde_path_to_error"
  6068. version = "0.1.20"
  6069. source = "registry+https://github.com/rust-lang/crates.io-index"
  6070. checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
  6071. dependencies = [
  6072. "itoa",
  6073. "serde",
  6074. "serde_core",
  6075. ]
  6076. [[package]]
  6077. name = "serde_spanned"
  6078. version = "0.6.9"
  6079. source = "registry+https://github.com/rust-lang/crates.io-index"
  6080. checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
  6081. dependencies = [
  6082. "serde",
  6083. ]
  6084. [[package]]
  6085. name = "serde_spanned"
  6086. version = "1.0.4"
  6087. source = "registry+https://github.com/rust-lang/crates.io-index"
  6088. checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
  6089. dependencies = [
  6090. "serde_core",
  6091. ]
  6092. [[package]]
  6093. name = "serde_urlencoded"
  6094. version = "0.7.1"
  6095. source = "registry+https://github.com/rust-lang/crates.io-index"
  6096. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  6097. dependencies = [
  6098. "form_urlencoded",
  6099. "itoa",
  6100. "ryu",
  6101. "serde",
  6102. ]
  6103. [[package]]
  6104. name = "serde_with"
  6105. version = "3.16.1"
  6106. source = "registry+https://github.com/rust-lang/crates.io-index"
  6107. checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
  6108. dependencies = [
  6109. "base64 0.22.1",
  6110. "chrono",
  6111. "hex",
  6112. "indexmap 1.9.3",
  6113. "indexmap 2.13.0",
  6114. "schemars 0.9.0",
  6115. "schemars 1.2.1",
  6116. "serde_core",
  6117. "serde_json",
  6118. "serde_with_macros",
  6119. "time",
  6120. ]
  6121. [[package]]
  6122. name = "serde_with_macros"
  6123. version = "3.16.1"
  6124. source = "registry+https://github.com/rust-lang/crates.io-index"
  6125. checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
  6126. dependencies = [
  6127. "darling 0.21.3",
  6128. "proc-macro2",
  6129. "quote",
  6130. "syn 2.0.116",
  6131. ]
  6132. [[package]]
  6133. name = "sha1"
  6134. version = "0.10.6"
  6135. source = "registry+https://github.com/rust-lang/crates.io-index"
  6136. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  6137. dependencies = [
  6138. "cfg-if",
  6139. "cpufeatures",
  6140. "digest",
  6141. ]
  6142. [[package]]
  6143. name = "sha1_smol"
  6144. version = "1.0.1"
  6145. source = "registry+https://github.com/rust-lang/crates.io-index"
  6146. checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
  6147. [[package]]
  6148. name = "sha2"
  6149. version = "0.10.9"
  6150. source = "registry+https://github.com/rust-lang/crates.io-index"
  6151. checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
  6152. dependencies = [
  6153. "cfg-if",
  6154. "cpufeatures",
  6155. "digest",
  6156. ]
  6157. [[package]]
  6158. name = "sha3"
  6159. version = "0.10.8"
  6160. source = "registry+https://github.com/rust-lang/crates.io-index"
  6161. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  6162. dependencies = [
  6163. "digest",
  6164. "keccak",
  6165. ]
  6166. [[package]]
  6167. name = "sharded-slab"
  6168. version = "0.1.7"
  6169. source = "registry+https://github.com/rust-lang/crates.io-index"
  6170. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  6171. dependencies = [
  6172. "lazy_static",
  6173. ]
  6174. [[package]]
  6175. name = "shellexpand"
  6176. version = "3.1.1"
  6177. source = "registry+https://github.com/rust-lang/crates.io-index"
  6178. checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
  6179. dependencies = [
  6180. "dirs 6.0.0",
  6181. ]
  6182. [[package]]
  6183. name = "shlex"
  6184. version = "1.3.0"
  6185. source = "registry+https://github.com/rust-lang/crates.io-index"
  6186. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  6187. [[package]]
  6188. name = "signal-hook-registry"
  6189. version = "1.4.8"
  6190. source = "registry+https://github.com/rust-lang/crates.io-index"
  6191. checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
  6192. dependencies = [
  6193. "errno",
  6194. "libc",
  6195. ]
  6196. [[package]]
  6197. name = "signature"
  6198. version = "2.2.0"
  6199. source = "registry+https://github.com/rust-lang/crates.io-index"
  6200. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  6201. dependencies = [
  6202. "digest",
  6203. "rand_core 0.6.4",
  6204. ]
  6205. [[package]]
  6206. name = "simd-adler32"
  6207. version = "0.3.8"
  6208. source = "registry+https://github.com/rust-lang/crates.io-index"
  6209. checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
  6210. [[package]]
  6211. name = "similar"
  6212. version = "2.7.0"
  6213. source = "registry+https://github.com/rust-lang/crates.io-index"
  6214. checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
  6215. [[package]]
  6216. name = "simple_asn1"
  6217. version = "0.6.4"
  6218. source = "registry+https://github.com/rust-lang/crates.io-index"
  6219. checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
  6220. dependencies = [
  6221. "num-bigint",
  6222. "num-traits",
  6223. "thiserror 2.0.18",
  6224. "time",
  6225. ]
  6226. [[package]]
  6227. name = "siphasher"
  6228. version = "0.3.11"
  6229. source = "registry+https://github.com/rust-lang/crates.io-index"
  6230. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  6231. [[package]]
  6232. name = "siphasher"
  6233. version = "1.0.2"
  6234. source = "registry+https://github.com/rust-lang/crates.io-index"
  6235. checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
  6236. [[package]]
  6237. name = "slab"
  6238. version = "0.4.12"
  6239. source = "registry+https://github.com/rust-lang/crates.io-index"
  6240. checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
  6241. [[package]]
  6242. name = "slotmap"
  6243. version = "1.1.1"
  6244. source = "registry+https://github.com/rust-lang/crates.io-index"
  6245. checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
  6246. dependencies = [
  6247. "version_check",
  6248. ]
  6249. [[package]]
  6250. name = "smallvec"
  6251. version = "1.15.1"
  6252. source = "registry+https://github.com/rust-lang/crates.io-index"
  6253. checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
  6254. [[package]]
  6255. name = "smawk"
  6256. version = "0.3.2"
  6257. source = "registry+https://github.com/rust-lang/crates.io-index"
  6258. checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
  6259. [[package]]
  6260. name = "socket2"
  6261. version = "0.5.10"
  6262. source = "registry+https://github.com/rust-lang/crates.io-index"
  6263. checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
  6264. dependencies = [
  6265. "libc",
  6266. "windows-sys 0.52.0",
  6267. ]
  6268. [[package]]
  6269. name = "socket2"
  6270. version = "0.6.2"
  6271. source = "registry+https://github.com/rust-lang/crates.io-index"
  6272. checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
  6273. dependencies = [
  6274. "libc",
  6275. "windows-sys 0.60.2",
  6276. ]
  6277. [[package]]
  6278. name = "spin"
  6279. version = "0.5.2"
  6280. source = "registry+https://github.com/rust-lang/crates.io-index"
  6281. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  6282. [[package]]
  6283. name = "spin"
  6284. version = "0.9.8"
  6285. source = "registry+https://github.com/rust-lang/crates.io-index"
  6286. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  6287. [[package]]
  6288. name = "spki"
  6289. version = "0.7.3"
  6290. source = "registry+https://github.com/rust-lang/crates.io-index"
  6291. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  6292. dependencies = [
  6293. "base64ct",
  6294. "der",
  6295. ]
  6296. [[package]]
  6297. name = "ssh-cipher"
  6298. version = "0.2.0"
  6299. source = "registry+https://github.com/rust-lang/crates.io-index"
  6300. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  6301. dependencies = [
  6302. "cipher",
  6303. "ssh-encoding",
  6304. ]
  6305. [[package]]
  6306. name = "ssh-encoding"
  6307. version = "0.2.0"
  6308. source = "registry+https://github.com/rust-lang/crates.io-index"
  6309. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  6310. dependencies = [
  6311. "base64ct",
  6312. "pem-rfc7468",
  6313. "sha2",
  6314. ]
  6315. [[package]]
  6316. name = "ssh-key"
  6317. version = "0.6.7"
  6318. source = "registry+https://github.com/rust-lang/crates.io-index"
  6319. checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
  6320. dependencies = [
  6321. "p256",
  6322. "p384",
  6323. "p521",
  6324. "rand_core 0.6.4",
  6325. "rsa",
  6326. "sec1",
  6327. "sha2",
  6328. "signature",
  6329. "ssh-cipher",
  6330. "ssh-encoding",
  6331. "subtle",
  6332. "zeroize",
  6333. ]
  6334. [[package]]
  6335. name = "stable_deref_trait"
  6336. version = "1.2.1"
  6337. source = "registry+https://github.com/rust-lang/crates.io-index"
  6338. checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
  6339. [[package]]
  6340. name = "static_assertions"
  6341. version = "1.1.0"
  6342. source = "registry+https://github.com/rust-lang/crates.io-index"
  6343. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  6344. [[package]]
  6345. name = "stringprep"
  6346. version = "0.1.5"
  6347. source = "registry+https://github.com/rust-lang/crates.io-index"
  6348. checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
  6349. dependencies = [
  6350. "unicode-bidi",
  6351. "unicode-normalization",
  6352. "unicode-properties",
  6353. ]
  6354. [[package]]
  6355. name = "strsim"
  6356. version = "0.10.0"
  6357. source = "registry+https://github.com/rust-lang/crates.io-index"
  6358. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  6359. [[package]]
  6360. name = "strsim"
  6361. version = "0.11.1"
  6362. source = "registry+https://github.com/rust-lang/crates.io-index"
  6363. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  6364. [[package]]
  6365. name = "strum"
  6366. version = "0.25.0"
  6367. source = "registry+https://github.com/rust-lang/crates.io-index"
  6368. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  6369. dependencies = [
  6370. "strum_macros 0.25.3",
  6371. ]
  6372. [[package]]
  6373. name = "strum"
  6374. version = "0.26.3"
  6375. source = "registry+https://github.com/rust-lang/crates.io-index"
  6376. checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
  6377. dependencies = [
  6378. "strum_macros 0.26.4",
  6379. ]
  6380. [[package]]
  6381. name = "strum"
  6382. version = "0.27.2"
  6383. source = "registry+https://github.com/rust-lang/crates.io-index"
  6384. checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
  6385. [[package]]
  6386. name = "strum_macros"
  6387. version = "0.25.3"
  6388. source = "registry+https://github.com/rust-lang/crates.io-index"
  6389. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  6390. dependencies = [
  6391. "heck 0.4.1",
  6392. "proc-macro2",
  6393. "quote",
  6394. "rustversion",
  6395. "syn 2.0.116",
  6396. ]
  6397. [[package]]
  6398. name = "strum_macros"
  6399. version = "0.26.4"
  6400. source = "registry+https://github.com/rust-lang/crates.io-index"
  6401. checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
  6402. dependencies = [
  6403. "heck 0.5.0",
  6404. "proc-macro2",
  6405. "quote",
  6406. "rustversion",
  6407. "syn 2.0.116",
  6408. ]
  6409. [[package]]
  6410. name = "strum_macros"
  6411. version = "0.27.2"
  6412. source = "registry+https://github.com/rust-lang/crates.io-index"
  6413. checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
  6414. dependencies = [
  6415. "heck 0.5.0",
  6416. "proc-macro2",
  6417. "quote",
  6418. "syn 2.0.116",
  6419. ]
  6420. [[package]]
  6421. name = "subtle"
  6422. version = "2.6.1"
  6423. source = "registry+https://github.com/rust-lang/crates.io-index"
  6424. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  6425. [[package]]
  6426. name = "syn"
  6427. version = "1.0.109"
  6428. source = "registry+https://github.com/rust-lang/crates.io-index"
  6429. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  6430. dependencies = [
  6431. "proc-macro2",
  6432. "quote",
  6433. "unicode-ident",
  6434. ]
  6435. [[package]]
  6436. name = "syn"
  6437. version = "2.0.116"
  6438. source = "registry+https://github.com/rust-lang/crates.io-index"
  6439. checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
  6440. dependencies = [
  6441. "proc-macro2",
  6442. "quote",
  6443. "unicode-ident",
  6444. ]
  6445. [[package]]
  6446. name = "sync_wrapper"
  6447. version = "0.1.2"
  6448. source = "registry+https://github.com/rust-lang/crates.io-index"
  6449. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  6450. [[package]]
  6451. name = "sync_wrapper"
  6452. version = "1.0.2"
  6453. source = "registry+https://github.com/rust-lang/crates.io-index"
  6454. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  6455. dependencies = [
  6456. "futures-core",
  6457. ]
  6458. [[package]]
  6459. name = "synstructure"
  6460. version = "0.13.2"
  6461. source = "registry+https://github.com/rust-lang/crates.io-index"
  6462. checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
  6463. dependencies = [
  6464. "proc-macro2",
  6465. "quote",
  6466. "syn 2.0.116",
  6467. ]
  6468. [[package]]
  6469. name = "sysinfo"
  6470. version = "0.32.1"
  6471. source = "registry+https://github.com/rust-lang/crates.io-index"
  6472. checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
  6473. dependencies = [
  6474. "core-foundation-sys",
  6475. "libc",
  6476. "memchr",
  6477. "ntapi",
  6478. "rayon",
  6479. "windows",
  6480. ]
  6481. [[package]]
  6482. name = "tagptr"
  6483. version = "0.2.0"
  6484. source = "registry+https://github.com/rust-lang/crates.io-index"
  6485. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  6486. [[package]]
  6487. name = "tap"
  6488. version = "1.0.1"
  6489. source = "registry+https://github.com/rust-lang/crates.io-index"
  6490. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  6491. [[package]]
  6492. name = "tempfile"
  6493. version = "3.25.0"
  6494. source = "registry+https://github.com/rust-lang/crates.io-index"
  6495. checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
  6496. dependencies = [
  6497. "fastrand",
  6498. "getrandom 0.4.1",
  6499. "once_cell",
  6500. "rustix 1.1.3",
  6501. "windows-sys 0.61.2",
  6502. ]
  6503. [[package]]
  6504. name = "termcolor"
  6505. version = "1.4.1"
  6506. source = "registry+https://github.com/rust-lang/crates.io-index"
  6507. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  6508. dependencies = [
  6509. "winapi-util",
  6510. ]
  6511. [[package]]
  6512. name = "test-cert-gen"
  6513. version = "0.9.0"
  6514. source = "registry+https://github.com/rust-lang/crates.io-index"
  6515. checksum = "345f92b7cac59507cdaba298c5493f7c40e2063d31f6fc621105183344d5d50a"
  6516. dependencies = [
  6517. "once_cell",
  6518. "pem 0.8.3",
  6519. "tempfile",
  6520. ]
  6521. [[package]]
  6522. name = "textwrap"
  6523. version = "0.16.2"
  6524. source = "registry+https://github.com/rust-lang/crates.io-index"
  6525. checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
  6526. dependencies = [
  6527. "smawk",
  6528. ]
  6529. [[package]]
  6530. name = "thiserror"
  6531. version = "1.0.69"
  6532. source = "registry+https://github.com/rust-lang/crates.io-index"
  6533. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  6534. dependencies = [
  6535. "thiserror-impl 1.0.69",
  6536. ]
  6537. [[package]]
  6538. name = "thiserror"
  6539. version = "2.0.18"
  6540. source = "registry+https://github.com/rust-lang/crates.io-index"
  6541. checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
  6542. dependencies = [
  6543. "thiserror-impl 2.0.18",
  6544. ]
  6545. [[package]]
  6546. name = "thiserror-impl"
  6547. version = "1.0.69"
  6548. source = "registry+https://github.com/rust-lang/crates.io-index"
  6549. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  6550. dependencies = [
  6551. "proc-macro2",
  6552. "quote",
  6553. "syn 2.0.116",
  6554. ]
  6555. [[package]]
  6556. name = "thiserror-impl"
  6557. version = "2.0.18"
  6558. source = "registry+https://github.com/rust-lang/crates.io-index"
  6559. checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
  6560. dependencies = [
  6561. "proc-macro2",
  6562. "quote",
  6563. "syn 2.0.116",
  6564. ]
  6565. [[package]]
  6566. name = "thread_local"
  6567. version = "1.1.9"
  6568. source = "registry+https://github.com/rust-lang/crates.io-index"
  6569. checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
  6570. dependencies = [
  6571. "cfg-if",
  6572. ]
  6573. [[package]]
  6574. name = "time"
  6575. version = "0.3.47"
  6576. source = "registry+https://github.com/rust-lang/crates.io-index"
  6577. checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
  6578. dependencies = [
  6579. "deranged",
  6580. "itoa",
  6581. "num-conv",
  6582. "powerfmt",
  6583. "serde_core",
  6584. "time-core",
  6585. "time-macros",
  6586. ]
  6587. [[package]]
  6588. name = "time-core"
  6589. version = "0.1.8"
  6590. source = "registry+https://github.com/rust-lang/crates.io-index"
  6591. checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
  6592. [[package]]
  6593. name = "time-macros"
  6594. version = "0.2.27"
  6595. source = "registry+https://github.com/rust-lang/crates.io-index"
  6596. checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
  6597. dependencies = [
  6598. "num-conv",
  6599. "time-core",
  6600. ]
  6601. [[package]]
  6602. name = "tiny-keccak"
  6603. version = "2.0.2"
  6604. source = "registry+https://github.com/rust-lang/crates.io-index"
  6605. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  6606. dependencies = [
  6607. "crunchy",
  6608. ]
  6609. [[package]]
  6610. name = "tinystr"
  6611. version = "0.7.6"
  6612. source = "registry+https://github.com/rust-lang/crates.io-index"
  6613. checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
  6614. dependencies = [
  6615. "displaydoc",
  6616. ]
  6617. [[package]]
  6618. name = "tinystr"
  6619. version = "0.8.2"
  6620. source = "registry+https://github.com/rust-lang/crates.io-index"
  6621. checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
  6622. dependencies = [
  6623. "displaydoc",
  6624. "zerovec",
  6625. ]
  6626. [[package]]
  6627. name = "tinytemplate"
  6628. version = "1.2.1"
  6629. source = "registry+https://github.com/rust-lang/crates.io-index"
  6630. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  6631. dependencies = [
  6632. "serde",
  6633. "serde_json",
  6634. ]
  6635. [[package]]
  6636. name = "tinyvec"
  6637. version = "1.10.0"
  6638. source = "registry+https://github.com/rust-lang/crates.io-index"
  6639. checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
  6640. dependencies = [
  6641. "tinyvec_macros",
  6642. ]
  6643. [[package]]
  6644. name = "tinyvec_macros"
  6645. version = "0.1.1"
  6646. source = "registry+https://github.com/rust-lang/crates.io-index"
  6647. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  6648. [[package]]
  6649. name = "tls-api"
  6650. version = "0.9.0"
  6651. source = "registry+https://github.com/rust-lang/crates.io-index"
  6652. checksum = "66d1b3dfb0a60da3e8a130c9f2432063d9979928a05c2b2cdcfc9fd05e4f53a3"
  6653. dependencies = [
  6654. "anyhow",
  6655. "log",
  6656. "pem 0.8.3",
  6657. "tempfile",
  6658. "thiserror 1.0.69",
  6659. "tokio",
  6660. "void",
  6661. "webpki",
  6662. ]
  6663. [[package]]
  6664. name = "tls-api-native-tls"
  6665. version = "0.9.0"
  6666. source = "registry+https://github.com/rust-lang/crates.io-index"
  6667. checksum = "7b935bda2458120a5d2cea542013796fcf13937566580027f6a08f42a52206f7"
  6668. dependencies = [
  6669. "anyhow",
  6670. "native-tls",
  6671. "thiserror 1.0.69",
  6672. "tls-api",
  6673. "tls-api-test",
  6674. "tokio",
  6675. ]
  6676. [[package]]
  6677. name = "tls-api-test"
  6678. version = "0.9.0"
  6679. source = "registry+https://github.com/rust-lang/crates.io-index"
  6680. checksum = "9df107843d725428d76bb159040fbae6d1524dcf25d5b24c56daa6b37ce9dbb5"
  6681. dependencies = [
  6682. "anyhow",
  6683. "env_logger",
  6684. "log",
  6685. "pem 0.8.3",
  6686. "test-cert-gen",
  6687. "tls-api",
  6688. "tokio",
  6689. "untrusted 0.6.2",
  6690. "webpki",
  6691. ]
  6692. [[package]]
  6693. name = "tokio"
  6694. version = "1.49.0"
  6695. source = "registry+https://github.com/rust-lang/crates.io-index"
  6696. checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
  6697. dependencies = [
  6698. "bytes",
  6699. "libc",
  6700. "mio",
  6701. "parking_lot",
  6702. "pin-project-lite",
  6703. "signal-hook-registry",
  6704. "socket2 0.6.2",
  6705. "tokio-macros",
  6706. "windows-sys 0.61.2",
  6707. ]
  6708. [[package]]
  6709. name = "tokio-io-timeout"
  6710. version = "1.2.1"
  6711. source = "registry+https://github.com/rust-lang/crates.io-index"
  6712. checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
  6713. dependencies = [
  6714. "pin-project-lite",
  6715. "tokio",
  6716. ]
  6717. [[package]]
  6718. name = "tokio-macros"
  6719. version = "2.6.0"
  6720. source = "registry+https://github.com/rust-lang/crates.io-index"
  6721. checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
  6722. dependencies = [
  6723. "proc-macro2",
  6724. "quote",
  6725. "syn 2.0.116",
  6726. ]
  6727. [[package]]
  6728. name = "tokio-native-tls"
  6729. version = "0.3.1"
  6730. source = "registry+https://github.com/rust-lang/crates.io-index"
  6731. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  6732. dependencies = [
  6733. "native-tls",
  6734. "tokio",
  6735. ]
  6736. [[package]]
  6737. name = "tokio-postgres"
  6738. version = "0.7.16"
  6739. source = "registry+https://github.com/rust-lang/crates.io-index"
  6740. checksum = "dcea47c8f71744367793f16c2db1f11cb859d28f436bdb4ca9193eb1f787ee42"
  6741. dependencies = [
  6742. "async-trait",
  6743. "byteorder",
  6744. "bytes",
  6745. "fallible-iterator 0.2.0",
  6746. "futures-channel",
  6747. "futures-util",
  6748. "log",
  6749. "parking_lot",
  6750. "percent-encoding",
  6751. "phf 0.13.1",
  6752. "pin-project-lite",
  6753. "postgres-protocol",
  6754. "postgres-types",
  6755. "rand 0.9.2",
  6756. "socket2 0.6.2",
  6757. "tokio",
  6758. "tokio-util",
  6759. "whoami",
  6760. ]
  6761. [[package]]
  6762. name = "tokio-rustls"
  6763. version = "0.24.1"
  6764. source = "registry+https://github.com/rust-lang/crates.io-index"
  6765. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  6766. dependencies = [
  6767. "rustls 0.21.12",
  6768. "tokio",
  6769. ]
  6770. [[package]]
  6771. name = "tokio-rustls"
  6772. version = "0.26.4"
  6773. source = "registry+https://github.com/rust-lang/crates.io-index"
  6774. checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
  6775. dependencies = [
  6776. "rustls 0.23.36",
  6777. "tokio",
  6778. ]
  6779. [[package]]
  6780. name = "tokio-socks"
  6781. version = "0.5.2"
  6782. source = "registry+https://github.com/rust-lang/crates.io-index"
  6783. checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
  6784. dependencies = [
  6785. "either",
  6786. "futures-util",
  6787. "thiserror 1.0.69",
  6788. "tokio",
  6789. ]
  6790. [[package]]
  6791. name = "tokio-stream"
  6792. version = "0.1.18"
  6793. source = "registry+https://github.com/rust-lang/crates.io-index"
  6794. checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
  6795. dependencies = [
  6796. "futures-core",
  6797. "pin-project-lite",
  6798. "tokio",
  6799. "tokio-util",
  6800. ]
  6801. [[package]]
  6802. name = "tokio-tungstenite"
  6803. version = "0.26.2"
  6804. source = "registry+https://github.com/rust-lang/crates.io-index"
  6805. checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084"
  6806. dependencies = [
  6807. "futures-util",
  6808. "log",
  6809. "rustls 0.23.36",
  6810. "rustls-native-certs",
  6811. "rustls-pki-types",
  6812. "tokio",
  6813. "tokio-rustls 0.26.4",
  6814. "tungstenite 0.26.2",
  6815. "webpki-roots 0.26.11",
  6816. ]
  6817. [[package]]
  6818. name = "tokio-tungstenite"
  6819. version = "0.28.0"
  6820. source = "registry+https://github.com/rust-lang/crates.io-index"
  6821. checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
  6822. dependencies = [
  6823. "futures-util",
  6824. "log",
  6825. "tokio",
  6826. "tungstenite 0.28.0",
  6827. ]
  6828. [[package]]
  6829. name = "tokio-util"
  6830. version = "0.7.18"
  6831. source = "registry+https://github.com/rust-lang/crates.io-index"
  6832. checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
  6833. dependencies = [
  6834. "bytes",
  6835. "futures-core",
  6836. "futures-io",
  6837. "futures-sink",
  6838. "pin-project-lite",
  6839. "tokio",
  6840. ]
  6841. [[package]]
  6842. name = "toml"
  6843. version = "0.5.11"
  6844. source = "registry+https://github.com/rust-lang/crates.io-index"
  6845. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  6846. dependencies = [
  6847. "serde",
  6848. ]
  6849. [[package]]
  6850. name = "toml"
  6851. version = "0.8.23"
  6852. source = "registry+https://github.com/rust-lang/crates.io-index"
  6853. checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
  6854. dependencies = [
  6855. "serde",
  6856. "serde_spanned 0.6.9",
  6857. "toml_datetime 0.6.11",
  6858. "toml_edit 0.22.27",
  6859. ]
  6860. [[package]]
  6861. name = "toml"
  6862. version = "0.9.12+spec-1.1.0"
  6863. source = "registry+https://github.com/rust-lang/crates.io-index"
  6864. checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
  6865. dependencies = [
  6866. "serde_core",
  6867. "serde_spanned 1.0.4",
  6868. "toml_datetime 0.7.5+spec-1.1.0",
  6869. "toml_parser",
  6870. "winnow 0.7.14",
  6871. ]
  6872. [[package]]
  6873. name = "toml_datetime"
  6874. version = "0.6.11"
  6875. source = "registry+https://github.com/rust-lang/crates.io-index"
  6876. checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
  6877. dependencies = [
  6878. "serde",
  6879. ]
  6880. [[package]]
  6881. name = "toml_datetime"
  6882. version = "0.7.5+spec-1.1.0"
  6883. source = "registry+https://github.com/rust-lang/crates.io-index"
  6884. checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
  6885. dependencies = [
  6886. "serde_core",
  6887. ]
  6888. [[package]]
  6889. name = "toml_edit"
  6890. version = "0.19.15"
  6891. source = "registry+https://github.com/rust-lang/crates.io-index"
  6892. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  6893. dependencies = [
  6894. "indexmap 2.13.0",
  6895. "toml_datetime 0.6.11",
  6896. "winnow 0.5.40",
  6897. ]
  6898. [[package]]
  6899. name = "toml_edit"
  6900. version = "0.22.27"
  6901. source = "registry+https://github.com/rust-lang/crates.io-index"
  6902. checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
  6903. dependencies = [
  6904. "indexmap 2.13.0",
  6905. "serde",
  6906. "serde_spanned 0.6.9",
  6907. "toml_datetime 0.6.11",
  6908. "toml_write",
  6909. "winnow 0.7.14",
  6910. ]
  6911. [[package]]
  6912. name = "toml_edit"
  6913. version = "0.23.10+spec-1.0.0"
  6914. source = "registry+https://github.com/rust-lang/crates.io-index"
  6915. checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
  6916. dependencies = [
  6917. "indexmap 2.13.0",
  6918. "toml_datetime 0.7.5+spec-1.1.0",
  6919. "toml_parser",
  6920. "winnow 0.7.14",
  6921. ]
  6922. [[package]]
  6923. name = "toml_parser"
  6924. version = "1.0.9+spec-1.1.0"
  6925. source = "registry+https://github.com/rust-lang/crates.io-index"
  6926. checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
  6927. dependencies = [
  6928. "winnow 0.7.14",
  6929. ]
  6930. [[package]]
  6931. name = "toml_write"
  6932. version = "0.1.2"
  6933. source = "registry+https://github.com/rust-lang/crates.io-index"
  6934. checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
  6935. [[package]]
  6936. name = "tonic"
  6937. version = "0.10.2"
  6938. source = "registry+https://github.com/rust-lang/crates.io-index"
  6939. checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e"
  6940. dependencies = [
  6941. "async-stream",
  6942. "async-trait",
  6943. "axum 0.6.20",
  6944. "base64 0.21.7",
  6945. "bytes",
  6946. "h2 0.3.27",
  6947. "http 0.2.12",
  6948. "http-body 0.4.6",
  6949. "hyper 0.14.32",
  6950. "hyper-timeout 0.4.1",
  6951. "percent-encoding",
  6952. "pin-project",
  6953. "prost 0.12.6",
  6954. "rustls 0.21.12",
  6955. "rustls-pemfile 1.0.4",
  6956. "tokio",
  6957. "tokio-rustls 0.24.1",
  6958. "tokio-stream",
  6959. "tower 0.4.13",
  6960. "tower-layer",
  6961. "tower-service",
  6962. "tracing",
  6963. ]
  6964. [[package]]
  6965. name = "tonic"
  6966. version = "0.14.4"
  6967. source = "registry+https://github.com/rust-lang/crates.io-index"
  6968. checksum = "7f32a6f80051a4111560201420c7885d0082ba9efe2ab61875c587bb6b18b9a0"
  6969. dependencies = [
  6970. "async-trait",
  6971. "axum 0.8.8",
  6972. "base64 0.22.1",
  6973. "bytes",
  6974. "h2 0.4.13",
  6975. "http 1.4.0",
  6976. "http-body 1.0.1",
  6977. "http-body-util",
  6978. "hyper 1.8.1",
  6979. "hyper-timeout 0.5.2",
  6980. "hyper-util",
  6981. "percent-encoding",
  6982. "pin-project",
  6983. "socket2 0.6.2",
  6984. "sync_wrapper 1.0.2",
  6985. "tokio",
  6986. "tokio-rustls 0.26.4",
  6987. "tokio-stream",
  6988. "tower 0.5.3",
  6989. "tower-layer",
  6990. "tower-service",
  6991. "tracing",
  6992. ]
  6993. [[package]]
  6994. name = "tonic-build"
  6995. version = "0.10.2"
  6996. source = "registry+https://github.com/rust-lang/crates.io-index"
  6997. checksum = "9d021fc044c18582b9a2408cd0dd05b1596e3ecdb5c4df822bb0183545683889"
  6998. dependencies = [
  6999. "prettyplease 0.2.37",
  7000. "proc-macro2",
  7001. "prost-build 0.12.6",
  7002. "quote",
  7003. "syn 2.0.116",
  7004. ]
  7005. [[package]]
  7006. name = "tonic-build"
  7007. version = "0.14.4"
  7008. source = "registry+https://github.com/rust-lang/crates.io-index"
  7009. checksum = "ce6d8958ed3be404120ca43ffa0fb1e1fc7be214e96c8d33bd43a131b6eebc9e"
  7010. dependencies = [
  7011. "prettyplease 0.2.37",
  7012. "proc-macro2",
  7013. "quote",
  7014. "syn 2.0.116",
  7015. ]
  7016. [[package]]
  7017. name = "tonic-prost"
  7018. version = "0.14.4"
  7019. source = "registry+https://github.com/rust-lang/crates.io-index"
  7020. checksum = "9f86539c0089bfd09b1f8c0ab0239d80392af74c21bc9e0f15e1b4aca4c1647f"
  7021. dependencies = [
  7022. "bytes",
  7023. "prost 0.14.3",
  7024. "tonic 0.14.4",
  7025. ]
  7026. [[package]]
  7027. name = "tonic-prost-build"
  7028. version = "0.14.4"
  7029. source = "registry+https://github.com/rust-lang/crates.io-index"
  7030. checksum = "65873ace111e90344b8973e94a1fc817c924473affff24629281f90daed1cd2e"
  7031. dependencies = [
  7032. "prettyplease 0.2.37",
  7033. "proc-macro2",
  7034. "prost-build 0.14.3",
  7035. "prost-types 0.14.3",
  7036. "quote",
  7037. "syn 2.0.116",
  7038. "tempfile",
  7039. "tonic-build 0.14.4",
  7040. ]
  7041. [[package]]
  7042. name = "tor-async-utils"
  7043. version = "0.19.0"
  7044. source = "registry+https://github.com/rust-lang/crates.io-index"
  7045. checksum = "e12afaae386a152b8e82bb6041ab6404b659f198bec7655af301aa3b686d5d81"
  7046. dependencies = [
  7047. "futures",
  7048. "pin-project",
  7049. "postage",
  7050. "void",
  7051. ]
  7052. [[package]]
  7053. name = "tor-basic-utils"
  7054. version = "0.19.0"
  7055. source = "registry+https://github.com/rust-lang/crates.io-index"
  7056. checksum = "47792fe0aaac440166bfacc326e418f74b9db821a07f0c5d9d1edc1b9ec39c98"
  7057. dependencies = [
  7058. "hex",
  7059. "libc",
  7060. "paste",
  7061. "rand 0.8.5",
  7062. "rand_chacha 0.3.1",
  7063. "slab",
  7064. "thiserror 1.0.69",
  7065. ]
  7066. [[package]]
  7067. name = "tor-bytes"
  7068. version = "0.19.0"
  7069. source = "registry+https://github.com/rust-lang/crates.io-index"
  7070. checksum = "96e47fc5f649f4041bdea9d30492aae35205cd53ea8b71be50f9b6130802e82c"
  7071. dependencies = [
  7072. "bytes",
  7073. "digest",
  7074. "educe",
  7075. "getrandom 0.2.17",
  7076. "thiserror 1.0.69",
  7077. "tor-error",
  7078. "tor-llcrypto",
  7079. "zeroize",
  7080. ]
  7081. [[package]]
  7082. name = "tor-cell"
  7083. version = "0.19.0"
  7084. source = "registry+https://github.com/rust-lang/crates.io-index"
  7085. checksum = "38e51af4f36e96fe61833a4d94cf50c252a9958c162c0db2fa7a92ee2f0985c3"
  7086. dependencies = [
  7087. "bitflags 2.11.0",
  7088. "bytes",
  7089. "caret",
  7090. "derive_more",
  7091. "educe",
  7092. "paste",
  7093. "rand 0.8.5",
  7094. "smallvec",
  7095. "thiserror 1.0.69",
  7096. "tor-basic-utils",
  7097. "tor-bytes",
  7098. "tor-cert",
  7099. "tor-error",
  7100. "tor-linkspec",
  7101. "tor-llcrypto",
  7102. "tor-units",
  7103. ]
  7104. [[package]]
  7105. name = "tor-cert"
  7106. version = "0.19.0"
  7107. source = "registry+https://github.com/rust-lang/crates.io-index"
  7108. checksum = "0b02ff5433d5b4ff6e9779da4886da52b9e458b6435c61a5f804ebfc09a979f1"
  7109. dependencies = [
  7110. "caret",
  7111. "derive_more",
  7112. "digest",
  7113. "thiserror 1.0.69",
  7114. "tor-bytes",
  7115. "tor-checkable",
  7116. "tor-llcrypto",
  7117. ]
  7118. [[package]]
  7119. name = "tor-chanmgr"
  7120. version = "0.19.0"
  7121. source = "registry+https://github.com/rust-lang/crates.io-index"
  7122. checksum = "ffcb97ca0f59f56e765d423564eac7305ed3fc290389341c09df7784d23113bb"
  7123. dependencies = [
  7124. "async-trait",
  7125. "derive_builder_fork_arti",
  7126. "derive_more",
  7127. "educe",
  7128. "futures",
  7129. "postage",
  7130. "rand 0.8.5",
  7131. "safelog",
  7132. "serde",
  7133. "thiserror 1.0.69",
  7134. "tor-async-utils",
  7135. "tor-basic-utils",
  7136. "tor-cell",
  7137. "tor-config",
  7138. "tor-error",
  7139. "tor-linkspec",
  7140. "tor-llcrypto",
  7141. "tor-netdir",
  7142. "tor-proto",
  7143. "tor-rtcompat",
  7144. "tor-socksproto",
  7145. "tor-units",
  7146. "tracing",
  7147. "void",
  7148. ]
  7149. [[package]]
  7150. name = "tor-checkable"
  7151. version = "0.19.0"
  7152. source = "registry+https://github.com/rust-lang/crates.io-index"
  7153. checksum = "857c0e77022d70040a0d060054fbe368611df203159068f71636b4fa1f517369"
  7154. dependencies = [
  7155. "humantime 2.3.0",
  7156. "signature",
  7157. "thiserror 1.0.69",
  7158. "tor-llcrypto",
  7159. ]
  7160. [[package]]
  7161. name = "tor-circmgr"
  7162. version = "0.19.0"
  7163. source = "registry+https://github.com/rust-lang/crates.io-index"
  7164. checksum = "4e7da3dc69ac9ccc42281f850e34f1ce0999f4b0b84e71de6102298eb17b40c1"
  7165. dependencies = [
  7166. "amplify",
  7167. "async-trait",
  7168. "bounded-vec-deque",
  7169. "cfg-if",
  7170. "derive_builder_fork_arti",
  7171. "derive_more",
  7172. "downcast-rs",
  7173. "dyn-clone",
  7174. "educe",
  7175. "futures",
  7176. "humantime-serde",
  7177. "itertools 0.12.1",
  7178. "once_cell",
  7179. "pin-project",
  7180. "rand 0.8.5",
  7181. "retry-error",
  7182. "safelog",
  7183. "serde",
  7184. "static_assertions",
  7185. "thiserror 1.0.69",
  7186. "tor-async-utils",
  7187. "tor-basic-utils",
  7188. "tor-chanmgr",
  7189. "tor-config",
  7190. "tor-error",
  7191. "tor-guardmgr",
  7192. "tor-linkspec",
  7193. "tor-netdir",
  7194. "tor-netdoc",
  7195. "tor-persist",
  7196. "tor-proto",
  7197. "tor-protover",
  7198. "tor-relay-selection",
  7199. "tor-rtcompat",
  7200. "tracing",
  7201. "void",
  7202. "weak-table",
  7203. ]
  7204. [[package]]
  7205. name = "tor-config"
  7206. version = "0.19.0"
  7207. source = "registry+https://github.com/rust-lang/crates.io-index"
  7208. checksum = "bddf9074373f65d5d9f870c03c95f025e1ca3881d4c41bf68fe3d2dec78b6fb6"
  7209. dependencies = [
  7210. "derive-deftly",
  7211. "derive_builder_fork_arti",
  7212. "directories",
  7213. "educe",
  7214. "either",
  7215. "figment",
  7216. "fs-mistrust",
  7217. "itertools 0.12.1",
  7218. "once_cell",
  7219. "paste",
  7220. "regex",
  7221. "serde",
  7222. "serde-value",
  7223. "serde_ignored",
  7224. "shellexpand",
  7225. "strum 0.26.3",
  7226. "thiserror 1.0.69",
  7227. "toml 0.8.23",
  7228. "tor-basic-utils",
  7229. "tor-error",
  7230. "tracing",
  7231. "void",
  7232. ]
  7233. [[package]]
  7234. name = "tor-consdiff"
  7235. version = "0.19.0"
  7236. source = "registry+https://github.com/rust-lang/crates.io-index"
  7237. checksum = "e023575b1a5187644c089aa1430b57f73f539482ce10cdf32bcd370afc91de08"
  7238. dependencies = [
  7239. "digest",
  7240. "hex",
  7241. "thiserror 1.0.69",
  7242. "tor-llcrypto",
  7243. ]
  7244. [[package]]
  7245. name = "tor-dirclient"
  7246. version = "0.19.0"
  7247. source = "registry+https://github.com/rust-lang/crates.io-index"
  7248. checksum = "80ef78cc758514a4fe5a25fbe8c86e93b08f4f9ac69fe48c8ccf62ae0b729b0e"
  7249. dependencies = [
  7250. "async-compression",
  7251. "base64ct",
  7252. "derive_more",
  7253. "futures",
  7254. "hex",
  7255. "http 1.4.0",
  7256. "httparse",
  7257. "httpdate",
  7258. "itertools 0.12.1",
  7259. "memchr",
  7260. "thiserror 1.0.69",
  7261. "tor-circmgr",
  7262. "tor-error",
  7263. "tor-linkspec",
  7264. "tor-llcrypto",
  7265. "tor-netdoc",
  7266. "tor-proto",
  7267. "tor-rtcompat",
  7268. "tracing",
  7269. ]
  7270. [[package]]
  7271. name = "tor-dirmgr"
  7272. version = "0.19.0"
  7273. source = "registry+https://github.com/rust-lang/crates.io-index"
  7274. checksum = "dc7219371bda85128b27c794950f845878e8c351165aade3c01a4efc8d2950a8"
  7275. dependencies = [
  7276. "async-trait",
  7277. "base64ct",
  7278. "derive_builder_fork_arti",
  7279. "derive_more",
  7280. "digest",
  7281. "educe",
  7282. "event-listener",
  7283. "fs-mistrust",
  7284. "fslock",
  7285. "futures",
  7286. "hex",
  7287. "humantime 2.3.0",
  7288. "humantime-serde",
  7289. "itertools 0.12.1",
  7290. "memmap2",
  7291. "once_cell",
  7292. "paste",
  7293. "postage",
  7294. "rand 0.8.5",
  7295. "rusqlite",
  7296. "safelog",
  7297. "scopeguard",
  7298. "serde",
  7299. "signature",
  7300. "strum 0.26.3",
  7301. "thiserror 1.0.69",
  7302. "time",
  7303. "tor-async-utils",
  7304. "tor-basic-utils",
  7305. "tor-checkable",
  7306. "tor-circmgr",
  7307. "tor-config",
  7308. "tor-consdiff",
  7309. "tor-dirclient",
  7310. "tor-error",
  7311. "tor-guardmgr",
  7312. "tor-llcrypto",
  7313. "tor-netdir",
  7314. "tor-netdoc",
  7315. "tor-persist",
  7316. "tor-proto",
  7317. "tor-rtcompat",
  7318. "tracing",
  7319. ]
  7320. [[package]]
  7321. name = "tor-error"
  7322. version = "0.19.0"
  7323. source = "registry+https://github.com/rust-lang/crates.io-index"
  7324. checksum = "6478753496321936ebacba91c34375fd79e29bbe9dfc9a3354d5cb211dfbd33b"
  7325. dependencies = [
  7326. "backtrace",
  7327. "derive_more",
  7328. "futures",
  7329. "once_cell",
  7330. "paste",
  7331. "retry-error",
  7332. "static_assertions",
  7333. "strum 0.26.3",
  7334. "thiserror 1.0.69",
  7335. "tracing",
  7336. ]
  7337. [[package]]
  7338. name = "tor-guardmgr"
  7339. version = "0.19.0"
  7340. source = "registry+https://github.com/rust-lang/crates.io-index"
  7341. checksum = "fbb523b11abd1c3378f727cfa6cb965ba622c02f8ff356c1b3972f81e084f29b"
  7342. dependencies = [
  7343. "amplify",
  7344. "base64ct",
  7345. "derive-deftly",
  7346. "derive_builder_fork_arti",
  7347. "derive_more",
  7348. "dyn-clone",
  7349. "educe",
  7350. "futures",
  7351. "humantime 2.3.0",
  7352. "humantime-serde",
  7353. "itertools 0.12.1",
  7354. "num_enum",
  7355. "pin-project",
  7356. "postage",
  7357. "rand 0.8.5",
  7358. "safelog",
  7359. "serde",
  7360. "strum 0.26.3",
  7361. "thiserror 1.0.69",
  7362. "tor-async-utils",
  7363. "tor-basic-utils",
  7364. "tor-config",
  7365. "tor-error",
  7366. "tor-linkspec",
  7367. "tor-llcrypto",
  7368. "tor-netdir",
  7369. "tor-netdoc",
  7370. "tor-persist",
  7371. "tor-proto",
  7372. "tor-relay-selection",
  7373. "tor-rtcompat",
  7374. "tor-units",
  7375. "tracing",
  7376. ]
  7377. [[package]]
  7378. name = "tor-hscrypto"
  7379. version = "0.19.0"
  7380. source = "registry+https://github.com/rust-lang/crates.io-index"
  7381. checksum = "e919b4b8680fe6e5ddd95744c314c380011d33b68e3dbafc51451d12fd7758c6"
  7382. dependencies = [
  7383. "data-encoding",
  7384. "derive_more",
  7385. "digest",
  7386. "itertools 0.12.1",
  7387. "paste",
  7388. "rand 0.8.5",
  7389. "safelog",
  7390. "signature",
  7391. "subtle",
  7392. "thiserror 1.0.69",
  7393. "tor-basic-utils",
  7394. "tor-bytes",
  7395. "tor-error",
  7396. "tor-llcrypto",
  7397. "tor-units",
  7398. ]
  7399. [[package]]
  7400. name = "tor-keymgr"
  7401. version = "0.19.0"
  7402. source = "registry+https://github.com/rust-lang/crates.io-index"
  7403. checksum = "b8b14cc41aabd46ae923aaa5e96ad7d8ceb8c320da7a49cee05ee153acdf6f6c"
  7404. dependencies = [
  7405. "amplify",
  7406. "arrayvec",
  7407. "derive-deftly",
  7408. "derive_builder_fork_arti",
  7409. "derive_more",
  7410. "downcast-rs",
  7411. "dyn-clone",
  7412. "fs-mistrust",
  7413. "glob-match",
  7414. "humantime 2.3.0",
  7415. "inventory",
  7416. "itertools 0.12.1",
  7417. "rand 0.8.5",
  7418. "serde",
  7419. "ssh-key",
  7420. "thiserror 1.0.69",
  7421. "tor-basic-utils",
  7422. "tor-config",
  7423. "tor-error",
  7424. "tor-hscrypto",
  7425. "tor-llcrypto",
  7426. "tor-persist",
  7427. "walkdir",
  7428. "zeroize",
  7429. ]
  7430. [[package]]
  7431. name = "tor-linkspec"
  7432. version = "0.19.0"
  7433. source = "registry+https://github.com/rust-lang/crates.io-index"
  7434. checksum = "cb0bf13a55acd0163b8f227efeac4d00700e0e1bcf8b043b17e2941a88ca6c64"
  7435. dependencies = [
  7436. "base64ct",
  7437. "by_address",
  7438. "caret",
  7439. "derive-deftly",
  7440. "derive_builder_fork_arti",
  7441. "derive_more",
  7442. "hex",
  7443. "itertools 0.12.1",
  7444. "safelog",
  7445. "serde",
  7446. "serde_with",
  7447. "strum 0.26.3",
  7448. "thiserror 1.0.69",
  7449. "tor-basic-utils",
  7450. "tor-bytes",
  7451. "tor-config",
  7452. "tor-llcrypto",
  7453. "tor-protover",
  7454. ]
  7455. [[package]]
  7456. name = "tor-llcrypto"
  7457. version = "0.19.0"
  7458. source = "registry+https://github.com/rust-lang/crates.io-index"
  7459. checksum = "3a050d7145f3d1209d579f2d62d0da3eeb25e269d5a98ec1ef3c11c72d8eb174"
  7460. dependencies = [
  7461. "aes",
  7462. "base64ct",
  7463. "ctr",
  7464. "curve25519-dalek",
  7465. "derive_more",
  7466. "digest",
  7467. "ed25519-dalek",
  7468. "educe",
  7469. "getrandom 0.2.17",
  7470. "hex",
  7471. "rand_core 0.6.4",
  7472. "rsa",
  7473. "safelog",
  7474. "serde",
  7475. "sha1",
  7476. "sha2",
  7477. "sha3",
  7478. "signature",
  7479. "simple_asn1",
  7480. "subtle",
  7481. "thiserror 1.0.69",
  7482. "x25519-dalek",
  7483. "zeroize",
  7484. ]
  7485. [[package]]
  7486. name = "tor-log-ratelim"
  7487. version = "0.19.0"
  7488. source = "registry+https://github.com/rust-lang/crates.io-index"
  7489. checksum = "339de85e1ffa31035cc24f02366f2ae0cdb5d93eefc9a5487042dea4f6a6ccf6"
  7490. dependencies = [
  7491. "futures",
  7492. "humantime 2.3.0",
  7493. "once_cell",
  7494. "thiserror 1.0.69",
  7495. "tor-error",
  7496. "tor-rtcompat",
  7497. "tracing",
  7498. "weak-table",
  7499. ]
  7500. [[package]]
  7501. name = "tor-netdir"
  7502. version = "0.19.0"
  7503. source = "registry+https://github.com/rust-lang/crates.io-index"
  7504. checksum = "228eeb225054455c0545a4d5e06d188790e5bd85129eefb9b24c86cb18f22ce2"
  7505. dependencies = [
  7506. "bitflags 2.11.0",
  7507. "derive_more",
  7508. "futures",
  7509. "humantime 2.3.0",
  7510. "itertools 0.12.1",
  7511. "num_enum",
  7512. "rand 0.8.5",
  7513. "serde",
  7514. "static_assertions",
  7515. "strum 0.26.3",
  7516. "thiserror 1.0.69",
  7517. "tor-basic-utils",
  7518. "tor-error",
  7519. "tor-linkspec",
  7520. "tor-llcrypto",
  7521. "tor-netdoc",
  7522. "tor-protover",
  7523. "tor-units",
  7524. "tracing",
  7525. "typed-index-collections",
  7526. ]
  7527. [[package]]
  7528. name = "tor-netdoc"
  7529. version = "0.19.0"
  7530. source = "registry+https://github.com/rust-lang/crates.io-index"
  7531. checksum = "8b34733b319ff6aa7a146973647c00120d111aa77da221d28309bacf144e3239"
  7532. dependencies = [
  7533. "amplify",
  7534. "base64ct",
  7535. "bitflags 2.11.0",
  7536. "cipher",
  7537. "derive_builder_fork_arti",
  7538. "derive_more",
  7539. "digest",
  7540. "educe",
  7541. "hex",
  7542. "humantime 2.3.0",
  7543. "itertools 0.12.1",
  7544. "once_cell",
  7545. "phf 0.11.3",
  7546. "serde",
  7547. "serde_with",
  7548. "signature",
  7549. "smallvec",
  7550. "subtle",
  7551. "thiserror 1.0.69",
  7552. "time",
  7553. "tinystr 0.7.6",
  7554. "tor-basic-utils",
  7555. "tor-bytes",
  7556. "tor-cell",
  7557. "tor-cert",
  7558. "tor-checkable",
  7559. "tor-error",
  7560. "tor-llcrypto",
  7561. "tor-protover",
  7562. "weak-table",
  7563. "zeroize",
  7564. ]
  7565. [[package]]
  7566. name = "tor-persist"
  7567. version = "0.19.0"
  7568. source = "registry+https://github.com/rust-lang/crates.io-index"
  7569. checksum = "be17e068b7d71554504245c3e6770c55c245435a42622d2b60b09c13539d93a5"
  7570. dependencies = [
  7571. "derive-deftly",
  7572. "derive_more",
  7573. "filetime",
  7574. "fs-mistrust",
  7575. "fslock",
  7576. "itertools 0.12.1",
  7577. "paste",
  7578. "sanitize-filename",
  7579. "serde",
  7580. "serde_json",
  7581. "thiserror 1.0.69",
  7582. "tor-basic-utils",
  7583. "tor-error",
  7584. "tracing",
  7585. ]
  7586. [[package]]
  7587. name = "tor-proto"
  7588. version = "0.19.0"
  7589. source = "registry+https://github.com/rust-lang/crates.io-index"
  7590. checksum = "d95024a4b55a2e7f239c171643814ea1b2d5a2eadd0b44dae7b34467982007df"
  7591. dependencies = [
  7592. "asynchronous-codec",
  7593. "bitvec",
  7594. "bytes",
  7595. "cipher",
  7596. "coarsetime",
  7597. "derive_builder_fork_arti",
  7598. "derive_more",
  7599. "digest",
  7600. "educe",
  7601. "futures",
  7602. "hkdf",
  7603. "hmac",
  7604. "pin-project",
  7605. "rand 0.8.5",
  7606. "rand_core 0.6.4",
  7607. "safelog",
  7608. "subtle",
  7609. "thiserror 1.0.69",
  7610. "tokio",
  7611. "tokio-util",
  7612. "tor-async-utils",
  7613. "tor-basic-utils",
  7614. "tor-bytes",
  7615. "tor-cell",
  7616. "tor-cert",
  7617. "tor-checkable",
  7618. "tor-config",
  7619. "tor-error",
  7620. "tor-linkspec",
  7621. "tor-llcrypto",
  7622. "tor-log-ratelim",
  7623. "tor-rtcompat",
  7624. "tor-rtmock",
  7625. "tor-units",
  7626. "tracing",
  7627. "typenum",
  7628. "void",
  7629. "zeroize",
  7630. ]
  7631. [[package]]
  7632. name = "tor-protover"
  7633. version = "0.19.0"
  7634. source = "registry+https://github.com/rust-lang/crates.io-index"
  7635. checksum = "31af5dd9523db6727fc24defef908f77a7b2698cd143af6987f6bd5cc47aed0b"
  7636. dependencies = [
  7637. "caret",
  7638. "thiserror 1.0.69",
  7639. ]
  7640. [[package]]
  7641. name = "tor-relay-selection"
  7642. version = "0.19.0"
  7643. source = "registry+https://github.com/rust-lang/crates.io-index"
  7644. checksum = "5dd23d7db7d25c7682c81147c8acf6a6bc9824029ebe575b5610784201aa6326"
  7645. dependencies = [
  7646. "rand 0.8.5",
  7647. "serde",
  7648. "tor-basic-utils",
  7649. "tor-linkspec",
  7650. "tor-netdir",
  7651. "tor-netdoc",
  7652. ]
  7653. [[package]]
  7654. name = "tor-rtcompat"
  7655. version = "0.19.0"
  7656. source = "registry+https://github.com/rust-lang/crates.io-index"
  7657. checksum = "6655852504f1defe01a1c1cd5b681ce5d81af5cfb8c18adb26b9d2155fdd1d7c"
  7658. dependencies = [
  7659. "async-native-tls",
  7660. "async-trait",
  7661. "async_executors",
  7662. "coarsetime",
  7663. "derive_more",
  7664. "educe",
  7665. "futures",
  7666. "futures-rustls",
  7667. "native-tls",
  7668. "paste",
  7669. "pin-project",
  7670. "rustls-pki-types",
  7671. "thiserror 1.0.69",
  7672. "tokio",
  7673. "tokio-util",
  7674. "tracing",
  7675. "x509-signature",
  7676. ]
  7677. [[package]]
  7678. name = "tor-rtmock"
  7679. version = "0.19.0"
  7680. source = "registry+https://github.com/rust-lang/crates.io-index"
  7681. checksum = "71f69e39720387c6a66a07eb95a04bbbe63993bfe9be94fb8f5a39f39e190160"
  7682. dependencies = [
  7683. "amplify",
  7684. "async-trait",
  7685. "backtrace",
  7686. "derive-deftly",
  7687. "derive_more",
  7688. "educe",
  7689. "futures",
  7690. "humantime 2.3.0",
  7691. "itertools 0.12.1",
  7692. "pin-project",
  7693. "priority-queue",
  7694. "slotmap",
  7695. "strum 0.26.3",
  7696. "thiserror 1.0.69",
  7697. "tor-async-utils",
  7698. "tor-error",
  7699. "tor-rtcompat",
  7700. "tracing",
  7701. "tracing-test",
  7702. "void",
  7703. ]
  7704. [[package]]
  7705. name = "tor-socksproto"
  7706. version = "0.19.0"
  7707. source = "registry+https://github.com/rust-lang/crates.io-index"
  7708. checksum = "4b05f853360120f8d075ab59b7400c0df15f3533bf26554669c8f09ba71dc7b1"
  7709. dependencies = [
  7710. "caret",
  7711. "subtle",
  7712. "thiserror 1.0.69",
  7713. "tor-bytes",
  7714. "tor-error",
  7715. ]
  7716. [[package]]
  7717. name = "tor-units"
  7718. version = "0.19.0"
  7719. source = "registry+https://github.com/rust-lang/crates.io-index"
  7720. checksum = "dae68a36e67c399141035fba00dea9c0a34cdc094a260faf2b03565cbcf9e7ca"
  7721. dependencies = [
  7722. "derive_more",
  7723. "thiserror 1.0.69",
  7724. ]
  7725. [[package]]
  7726. name = "tower"
  7727. version = "0.4.13"
  7728. source = "registry+https://github.com/rust-lang/crates.io-index"
  7729. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  7730. dependencies = [
  7731. "futures-core",
  7732. "futures-util",
  7733. "indexmap 1.9.3",
  7734. "pin-project",
  7735. "pin-project-lite",
  7736. "rand 0.8.5",
  7737. "slab",
  7738. "tokio",
  7739. "tokio-util",
  7740. "tower-layer",
  7741. "tower-service",
  7742. "tracing",
  7743. ]
  7744. [[package]]
  7745. name = "tower"
  7746. version = "0.5.3"
  7747. source = "registry+https://github.com/rust-lang/crates.io-index"
  7748. checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
  7749. dependencies = [
  7750. "futures-core",
  7751. "futures-util",
  7752. "indexmap 2.13.0",
  7753. "pin-project-lite",
  7754. "slab",
  7755. "sync_wrapper 1.0.2",
  7756. "tokio",
  7757. "tokio-util",
  7758. "tower-layer",
  7759. "tower-service",
  7760. "tracing",
  7761. ]
  7762. [[package]]
  7763. name = "tower-http"
  7764. version = "0.6.8"
  7765. source = "registry+https://github.com/rust-lang/crates.io-index"
  7766. checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
  7767. dependencies = [
  7768. "async-compression",
  7769. "bitflags 2.11.0",
  7770. "bytes",
  7771. "futures-core",
  7772. "futures-util",
  7773. "http 1.4.0",
  7774. "http-body 1.0.1",
  7775. "http-body-util",
  7776. "http-range-header",
  7777. "httpdate",
  7778. "iri-string",
  7779. "mime",
  7780. "mime_guess",
  7781. "percent-encoding",
  7782. "pin-project-lite",
  7783. "tokio",
  7784. "tokio-util",
  7785. "tower 0.5.3",
  7786. "tower-layer",
  7787. "tower-service",
  7788. "tracing",
  7789. ]
  7790. [[package]]
  7791. name = "tower-layer"
  7792. version = "0.3.3"
  7793. source = "registry+https://github.com/rust-lang/crates.io-index"
  7794. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  7795. [[package]]
  7796. name = "tower-service"
  7797. version = "0.3.3"
  7798. source = "registry+https://github.com/rust-lang/crates.io-index"
  7799. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  7800. [[package]]
  7801. name = "tracing"
  7802. version = "0.1.44"
  7803. source = "registry+https://github.com/rust-lang/crates.io-index"
  7804. checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
  7805. dependencies = [
  7806. "log",
  7807. "pin-project-lite",
  7808. "tracing-attributes",
  7809. "tracing-core",
  7810. ]
  7811. [[package]]
  7812. name = "tracing-appender"
  7813. version = "0.2.4"
  7814. source = "registry+https://github.com/rust-lang/crates.io-index"
  7815. checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
  7816. dependencies = [
  7817. "crossbeam-channel",
  7818. "thiserror 2.0.18",
  7819. "time",
  7820. "tracing-subscriber",
  7821. ]
  7822. [[package]]
  7823. name = "tracing-attributes"
  7824. version = "0.1.31"
  7825. source = "registry+https://github.com/rust-lang/crates.io-index"
  7826. checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
  7827. dependencies = [
  7828. "proc-macro2",
  7829. "quote",
  7830. "syn 2.0.116",
  7831. ]
  7832. [[package]]
  7833. name = "tracing-core"
  7834. version = "0.1.36"
  7835. source = "registry+https://github.com/rust-lang/crates.io-index"
  7836. checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
  7837. dependencies = [
  7838. "once_cell",
  7839. "valuable",
  7840. ]
  7841. [[package]]
  7842. name = "tracing-log"
  7843. version = "0.2.0"
  7844. source = "registry+https://github.com/rust-lang/crates.io-index"
  7845. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  7846. dependencies = [
  7847. "log",
  7848. "once_cell",
  7849. "tracing-core",
  7850. ]
  7851. [[package]]
  7852. name = "tracing-subscriber"
  7853. version = "0.3.22"
  7854. source = "registry+https://github.com/rust-lang/crates.io-index"
  7855. checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
  7856. dependencies = [
  7857. "matchers",
  7858. "nu-ansi-term",
  7859. "once_cell",
  7860. "regex-automata",
  7861. "sharded-slab",
  7862. "smallvec",
  7863. "thread_local",
  7864. "tracing",
  7865. "tracing-core",
  7866. "tracing-log",
  7867. ]
  7868. [[package]]
  7869. name = "tracing-test"
  7870. version = "0.2.6"
  7871. source = "registry+https://github.com/rust-lang/crates.io-index"
  7872. checksum = "19a4c448db514d4f24c5ddb9f73f2ee71bfb24c526cf0c570ba142d1119e0051"
  7873. dependencies = [
  7874. "tracing-core",
  7875. "tracing-subscriber",
  7876. "tracing-test-macro",
  7877. ]
  7878. [[package]]
  7879. name = "tracing-test-macro"
  7880. version = "0.2.6"
  7881. source = "registry+https://github.com/rust-lang/crates.io-index"
  7882. checksum = "ad06847b7afb65c7866a36664b75c40b895e318cea4f71299f013fb22965329d"
  7883. dependencies = [
  7884. "quote",
  7885. "syn 2.0.116",
  7886. ]
  7887. [[package]]
  7888. name = "try-lock"
  7889. version = "0.2.5"
  7890. source = "registry+https://github.com/rust-lang/crates.io-index"
  7891. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  7892. [[package]]
  7893. name = "tungstenite"
  7894. version = "0.26.2"
  7895. source = "registry+https://github.com/rust-lang/crates.io-index"
  7896. checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13"
  7897. dependencies = [
  7898. "bytes",
  7899. "data-encoding",
  7900. "http 1.4.0",
  7901. "httparse",
  7902. "log",
  7903. "rand 0.9.2",
  7904. "rustls 0.23.36",
  7905. "rustls-pki-types",
  7906. "sha1",
  7907. "thiserror 2.0.18",
  7908. "utf-8",
  7909. ]
  7910. [[package]]
  7911. name = "tungstenite"
  7912. version = "0.28.0"
  7913. source = "registry+https://github.com/rust-lang/crates.io-index"
  7914. checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
  7915. dependencies = [
  7916. "bytes",
  7917. "data-encoding",
  7918. "http 1.4.0",
  7919. "httparse",
  7920. "log",
  7921. "rand 0.9.2",
  7922. "sha1",
  7923. "thiserror 2.0.18",
  7924. "utf-8",
  7925. ]
  7926. [[package]]
  7927. name = "typed-index-collections"
  7928. version = "3.5.0"
  7929. source = "registry+https://github.com/rust-lang/crates.io-index"
  7930. checksum = "898160f1dfd383b4e92e17f0512a7d62f3c51c44937b23b6ffc3a1614a8eaccd"
  7931. dependencies = [
  7932. "bincode",
  7933. "serde",
  7934. ]
  7935. [[package]]
  7936. name = "typeid"
  7937. version = "1.0.3"
  7938. source = "registry+https://github.com/rust-lang/crates.io-index"
  7939. checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
  7940. [[package]]
  7941. name = "typenum"
  7942. version = "1.19.0"
  7943. source = "registry+https://github.com/rust-lang/crates.io-index"
  7944. checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
  7945. [[package]]
  7946. name = "ucd-trie"
  7947. version = "0.1.7"
  7948. source = "registry+https://github.com/rust-lang/crates.io-index"
  7949. checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
  7950. [[package]]
  7951. name = "uncased"
  7952. version = "0.9.10"
  7953. source = "registry+https://github.com/rust-lang/crates.io-index"
  7954. checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
  7955. dependencies = [
  7956. "version_check",
  7957. ]
  7958. [[package]]
  7959. name = "unicase"
  7960. version = "2.9.0"
  7961. source = "registry+https://github.com/rust-lang/crates.io-index"
  7962. checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
  7963. [[package]]
  7964. name = "unicode-bidi"
  7965. version = "0.3.18"
  7966. source = "registry+https://github.com/rust-lang/crates.io-index"
  7967. checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
  7968. [[package]]
  7969. name = "unicode-ident"
  7970. version = "1.0.24"
  7971. source = "registry+https://github.com/rust-lang/crates.io-index"
  7972. checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
  7973. [[package]]
  7974. name = "unicode-normalization"
  7975. version = "0.1.25"
  7976. source = "registry+https://github.com/rust-lang/crates.io-index"
  7977. checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
  7978. dependencies = [
  7979. "tinyvec",
  7980. ]
  7981. [[package]]
  7982. name = "unicode-properties"
  7983. version = "0.1.4"
  7984. source = "registry+https://github.com/rust-lang/crates.io-index"
  7985. checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
  7986. [[package]]
  7987. name = "unicode-segmentation"
  7988. version = "1.12.0"
  7989. source = "registry+https://github.com/rust-lang/crates.io-index"
  7990. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  7991. [[package]]
  7992. name = "unicode-xid"
  7993. version = "0.2.6"
  7994. source = "registry+https://github.com/rust-lang/crates.io-index"
  7995. checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
  7996. [[package]]
  7997. name = "uniffi"
  7998. version = "0.29.5"
  7999. source = "registry+https://github.com/rust-lang/crates.io-index"
  8000. checksum = "3291800a6b06569f7d3e15bdb6dc235e0f0c8bd3eb07177f430057feb076415f"
  8001. dependencies = [
  8002. "anyhow",
  8003. "camino",
  8004. "cargo_metadata",
  8005. "clap",
  8006. "uniffi_bindgen",
  8007. "uniffi_core",
  8008. "uniffi_macros",
  8009. "uniffi_pipeline",
  8010. ]
  8011. [[package]]
  8012. name = "uniffi_bindgen"
  8013. version = "0.29.5"
  8014. source = "registry+https://github.com/rust-lang/crates.io-index"
  8015. checksum = "a04b99fa7796eaaa7b87976a0dbdd1178dc1ee702ea00aca2642003aef9b669e"
  8016. dependencies = [
  8017. "anyhow",
  8018. "askama",
  8019. "camino",
  8020. "cargo_metadata",
  8021. "fs-err",
  8022. "glob",
  8023. "goblin",
  8024. "heck 0.5.0",
  8025. "indexmap 2.13.0",
  8026. "once_cell",
  8027. "serde",
  8028. "tempfile",
  8029. "textwrap",
  8030. "toml 0.5.11",
  8031. "uniffi_internal_macros",
  8032. "uniffi_meta",
  8033. "uniffi_pipeline",
  8034. "uniffi_udl",
  8035. ]
  8036. [[package]]
  8037. name = "uniffi_core"
  8038. version = "0.29.5"
  8039. source = "registry+https://github.com/rust-lang/crates.io-index"
  8040. checksum = "f38a9a27529ccff732f8efddb831b65b1e07f7dea3fd4cacd4a35a8c4b253b98"
  8041. dependencies = [
  8042. "anyhow",
  8043. "async-compat",
  8044. "bytes",
  8045. "once_cell",
  8046. "static_assertions",
  8047. ]
  8048. [[package]]
  8049. name = "uniffi_internal_macros"
  8050. version = "0.29.5"
  8051. source = "registry+https://github.com/rust-lang/crates.io-index"
  8052. checksum = "09acd2ce09c777dd65ee97c251d33c8a972afc04873f1e3b21eb3492ade16933"
  8053. dependencies = [
  8054. "anyhow",
  8055. "indexmap 2.13.0",
  8056. "proc-macro2",
  8057. "quote",
  8058. "syn 2.0.116",
  8059. ]
  8060. [[package]]
  8061. name = "uniffi_macros"
  8062. version = "0.29.5"
  8063. source = "registry+https://github.com/rust-lang/crates.io-index"
  8064. checksum = "5596f178c4f7aafa1a501c4e0b96236a96bc2ef92bdb453d83e609dad0040152"
  8065. dependencies = [
  8066. "camino",
  8067. "fs-err",
  8068. "once_cell",
  8069. "proc-macro2",
  8070. "quote",
  8071. "serde",
  8072. "syn 2.0.116",
  8073. "toml 0.5.11",
  8074. "uniffi_meta",
  8075. ]
  8076. [[package]]
  8077. name = "uniffi_meta"
  8078. version = "0.29.5"
  8079. source = "registry+https://github.com/rust-lang/crates.io-index"
  8080. checksum = "beadc1f460eb2e209263c49c4f5b19e9a02e00a3b2b393f78ad10d766346ecff"
  8081. dependencies = [
  8082. "anyhow",
  8083. "siphasher 0.3.11",
  8084. "uniffi_internal_macros",
  8085. "uniffi_pipeline",
  8086. ]
  8087. [[package]]
  8088. name = "uniffi_pipeline"
  8089. version = "0.29.5"
  8090. source = "registry+https://github.com/rust-lang/crates.io-index"
  8091. checksum = "dd76b3ac8a2d964ca9fce7df21c755afb4c77b054a85ad7a029ad179cc5abb8a"
  8092. dependencies = [
  8093. "anyhow",
  8094. "heck 0.5.0",
  8095. "indexmap 2.13.0",
  8096. "tempfile",
  8097. "uniffi_internal_macros",
  8098. ]
  8099. [[package]]
  8100. name = "uniffi_udl"
  8101. version = "0.29.5"
  8102. source = "registry+https://github.com/rust-lang/crates.io-index"
  8103. checksum = "4319cf905911d70d5b97ce0f46f101619a22e9a189c8c46d797a9955e9233716"
  8104. dependencies = [
  8105. "anyhow",
  8106. "textwrap",
  8107. "uniffi_meta",
  8108. "weedle2",
  8109. ]
  8110. [[package]]
  8111. name = "universal-hash"
  8112. version = "0.5.1"
  8113. source = "registry+https://github.com/rust-lang/crates.io-index"
  8114. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  8115. dependencies = [
  8116. "crypto-common",
  8117. "subtle",
  8118. ]
  8119. [[package]]
  8120. name = "untrusted"
  8121. version = "0.6.2"
  8122. source = "registry+https://github.com/rust-lang/crates.io-index"
  8123. checksum = "55cd1f4b4e96b46aeb8d4855db4a7a9bd96eeeb5c6a1ab54593328761642ce2f"
  8124. [[package]]
  8125. name = "untrusted"
  8126. version = "0.7.1"
  8127. source = "registry+https://github.com/rust-lang/crates.io-index"
  8128. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  8129. [[package]]
  8130. name = "untrusted"
  8131. version = "0.9.0"
  8132. source = "registry+https://github.com/rust-lang/crates.io-index"
  8133. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  8134. [[package]]
  8135. name = "unty"
  8136. version = "0.0.4"
  8137. source = "registry+https://github.com/rust-lang/crates.io-index"
  8138. checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
  8139. [[package]]
  8140. name = "ureq"
  8141. version = "3.2.0"
  8142. source = "registry+https://github.com/rust-lang/crates.io-index"
  8143. checksum = "fdc97a28575b85cfedf2a7e7d3cc64b3e11bd8ac766666318003abbacc7a21fc"
  8144. dependencies = [
  8145. "base64 0.22.1",
  8146. "cookie_store",
  8147. "flate2",
  8148. "log",
  8149. "percent-encoding",
  8150. "rustls 0.23.36",
  8151. "rustls-pki-types",
  8152. "serde",
  8153. "serde_json",
  8154. "ureq-proto",
  8155. "utf-8",
  8156. "webpki-roots 1.0.6",
  8157. ]
  8158. [[package]]
  8159. name = "ureq-proto"
  8160. version = "0.5.3"
  8161. source = "registry+https://github.com/rust-lang/crates.io-index"
  8162. checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
  8163. dependencies = [
  8164. "base64 0.22.1",
  8165. "http 1.4.0",
  8166. "httparse",
  8167. "log",
  8168. ]
  8169. [[package]]
  8170. name = "url"
  8171. version = "2.5.8"
  8172. source = "registry+https://github.com/rust-lang/crates.io-index"
  8173. checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
  8174. dependencies = [
  8175. "form_urlencoded",
  8176. "idna",
  8177. "percent-encoding",
  8178. "serde",
  8179. "serde_derive",
  8180. ]
  8181. [[package]]
  8182. name = "urlencoding"
  8183. version = "2.1.3"
  8184. source = "registry+https://github.com/rust-lang/crates.io-index"
  8185. checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
  8186. [[package]]
  8187. name = "utf-8"
  8188. version = "0.7.6"
  8189. source = "registry+https://github.com/rust-lang/crates.io-index"
  8190. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  8191. [[package]]
  8192. name = "utf8_iter"
  8193. version = "1.0.4"
  8194. source = "registry+https://github.com/rust-lang/crates.io-index"
  8195. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  8196. [[package]]
  8197. name = "utf8parse"
  8198. version = "0.2.2"
  8199. source = "registry+https://github.com/rust-lang/crates.io-index"
  8200. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  8201. [[package]]
  8202. name = "utoipa"
  8203. version = "5.4.0"
  8204. source = "registry+https://github.com/rust-lang/crates.io-index"
  8205. checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
  8206. dependencies = [
  8207. "indexmap 2.13.0",
  8208. "serde",
  8209. "serde_json",
  8210. "utoipa-gen",
  8211. ]
  8212. [[package]]
  8213. name = "utoipa-gen"
  8214. version = "5.4.0"
  8215. source = "registry+https://github.com/rust-lang/crates.io-index"
  8216. checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
  8217. dependencies = [
  8218. "proc-macro2",
  8219. "quote",
  8220. "syn 2.0.116",
  8221. ]
  8222. [[package]]
  8223. name = "utoipa-swagger-ui"
  8224. version = "9.0.2"
  8225. source = "registry+https://github.com/rust-lang/crates.io-index"
  8226. checksum = "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55"
  8227. dependencies = [
  8228. "axum 0.8.8",
  8229. "base64 0.22.1",
  8230. "mime_guess",
  8231. "regex",
  8232. "rust-embed",
  8233. "serde",
  8234. "serde_json",
  8235. "url",
  8236. "utoipa",
  8237. "zip",
  8238. ]
  8239. [[package]]
  8240. name = "uuid"
  8241. version = "1.21.0"
  8242. source = "registry+https://github.com/rust-lang/crates.io-index"
  8243. checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
  8244. dependencies = [
  8245. "getrandom 0.4.1",
  8246. "js-sys",
  8247. "serde_core",
  8248. "wasm-bindgen",
  8249. ]
  8250. [[package]]
  8251. name = "valuable"
  8252. version = "0.1.1"
  8253. source = "registry+https://github.com/rust-lang/crates.io-index"
  8254. checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
  8255. [[package]]
  8256. name = "vcpkg"
  8257. version = "0.2.15"
  8258. source = "registry+https://github.com/rust-lang/crates.io-index"
  8259. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  8260. [[package]]
  8261. name = "version_check"
  8262. version = "0.9.5"
  8263. source = "registry+https://github.com/rust-lang/crates.io-index"
  8264. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  8265. [[package]]
  8266. name = "void"
  8267. version = "1.0.2"
  8268. source = "registry+https://github.com/rust-lang/crates.io-index"
  8269. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  8270. [[package]]
  8271. name = "vss-client-ng"
  8272. version = "0.4.1"
  8273. source = "registry+https://github.com/rust-lang/crates.io-index"
  8274. checksum = "c05f61751537ec3e7cf744e6ed8a56830b8d048f9862871cb4b9c239e3d23b45"
  8275. dependencies = [
  8276. "async-trait",
  8277. "base64 0.22.1",
  8278. "bitcoin 0.32.8",
  8279. "bitcoin_hashes 0.14.1",
  8280. "chacha20-poly1305",
  8281. "log",
  8282. "prost 0.11.9",
  8283. "prost-build 0.11.9",
  8284. "rand 0.8.5",
  8285. "reqwest",
  8286. "serde",
  8287. "serde_json",
  8288. "tokio",
  8289. "url",
  8290. ]
  8291. [[package]]
  8292. name = "walkdir"
  8293. version = "2.5.0"
  8294. source = "registry+https://github.com/rust-lang/crates.io-index"
  8295. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  8296. dependencies = [
  8297. "same-file",
  8298. "winapi-util",
  8299. ]
  8300. [[package]]
  8301. name = "want"
  8302. version = "0.3.1"
  8303. source = "registry+https://github.com/rust-lang/crates.io-index"
  8304. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  8305. dependencies = [
  8306. "try-lock",
  8307. ]
  8308. [[package]]
  8309. name = "wasi"
  8310. version = "0.11.1+wasi-snapshot-preview1"
  8311. source = "registry+https://github.com/rust-lang/crates.io-index"
  8312. checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
  8313. [[package]]
  8314. name = "wasi"
  8315. version = "0.14.7+wasi-0.2.4"
  8316. source = "registry+https://github.com/rust-lang/crates.io-index"
  8317. checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
  8318. dependencies = [
  8319. "wasip2",
  8320. ]
  8321. [[package]]
  8322. name = "wasip2"
  8323. version = "1.0.2+wasi-0.2.9"
  8324. source = "registry+https://github.com/rust-lang/crates.io-index"
  8325. checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
  8326. dependencies = [
  8327. "wit-bindgen",
  8328. ]
  8329. [[package]]
  8330. name = "wasip3"
  8331. version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
  8332. source = "registry+https://github.com/rust-lang/crates.io-index"
  8333. checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
  8334. dependencies = [
  8335. "wit-bindgen",
  8336. ]
  8337. [[package]]
  8338. name = "wasite"
  8339. version = "1.0.2"
  8340. source = "registry+https://github.com/rust-lang/crates.io-index"
  8341. checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
  8342. dependencies = [
  8343. "wasi 0.14.7+wasi-0.2.4",
  8344. ]
  8345. [[package]]
  8346. name = "wasix"
  8347. version = "0.13.1"
  8348. source = "registry+https://github.com/rust-lang/crates.io-index"
  8349. checksum = "1757e0d1f8456693c7e5c6c629bdb54884e032aa0bb53c155f6a39f94440d332"
  8350. dependencies = [
  8351. "wasi 0.11.1+wasi-snapshot-preview1",
  8352. ]
  8353. [[package]]
  8354. name = "wasm-bindgen"
  8355. version = "0.2.108"
  8356. source = "registry+https://github.com/rust-lang/crates.io-index"
  8357. checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
  8358. dependencies = [
  8359. "cfg-if",
  8360. "once_cell",
  8361. "rustversion",
  8362. "wasm-bindgen-macro",
  8363. "wasm-bindgen-shared",
  8364. ]
  8365. [[package]]
  8366. name = "wasm-bindgen-futures"
  8367. version = "0.4.58"
  8368. source = "registry+https://github.com/rust-lang/crates.io-index"
  8369. checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
  8370. dependencies = [
  8371. "cfg-if",
  8372. "futures-util",
  8373. "js-sys",
  8374. "once_cell",
  8375. "wasm-bindgen",
  8376. "web-sys",
  8377. ]
  8378. [[package]]
  8379. name = "wasm-bindgen-macro"
  8380. version = "0.2.108"
  8381. source = "registry+https://github.com/rust-lang/crates.io-index"
  8382. checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
  8383. dependencies = [
  8384. "quote",
  8385. "wasm-bindgen-macro-support",
  8386. ]
  8387. [[package]]
  8388. name = "wasm-bindgen-macro-support"
  8389. version = "0.2.108"
  8390. source = "registry+https://github.com/rust-lang/crates.io-index"
  8391. checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
  8392. dependencies = [
  8393. "bumpalo",
  8394. "proc-macro2",
  8395. "quote",
  8396. "syn 2.0.116",
  8397. "wasm-bindgen-shared",
  8398. ]
  8399. [[package]]
  8400. name = "wasm-bindgen-shared"
  8401. version = "0.2.108"
  8402. source = "registry+https://github.com/rust-lang/crates.io-index"
  8403. checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
  8404. dependencies = [
  8405. "unicode-ident",
  8406. ]
  8407. [[package]]
  8408. name = "wasm-bindgen-test"
  8409. version = "0.3.58"
  8410. source = "registry+https://github.com/rust-lang/crates.io-index"
  8411. checksum = "45649196a53b0b7a15101d845d44d2dda7374fc1b5b5e2bbf58b7577ff4b346d"
  8412. dependencies = [
  8413. "async-trait",
  8414. "cast",
  8415. "js-sys",
  8416. "libm",
  8417. "minicov",
  8418. "nu-ansi-term",
  8419. "num-traits",
  8420. "oorandom",
  8421. "serde",
  8422. "serde_json",
  8423. "wasm-bindgen",
  8424. "wasm-bindgen-futures",
  8425. "wasm-bindgen-test-macro",
  8426. "wasm-bindgen-test-shared",
  8427. ]
  8428. [[package]]
  8429. name = "wasm-bindgen-test-macro"
  8430. version = "0.3.58"
  8431. source = "registry+https://github.com/rust-lang/crates.io-index"
  8432. checksum = "f579cdd0123ac74b94e1a4a72bd963cf30ebac343f2df347da0b8df24cdebed2"
  8433. dependencies = [
  8434. "proc-macro2",
  8435. "quote",
  8436. "syn 2.0.116",
  8437. ]
  8438. [[package]]
  8439. name = "wasm-bindgen-test-shared"
  8440. version = "0.2.108"
  8441. source = "registry+https://github.com/rust-lang/crates.io-index"
  8442. checksum = "a8145dd1593bf0fb137dbfa85b8be79ec560a447298955877804640e40c2d6ea"
  8443. [[package]]
  8444. name = "wasm-encoder"
  8445. version = "0.244.0"
  8446. source = "registry+https://github.com/rust-lang/crates.io-index"
  8447. checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
  8448. dependencies = [
  8449. "leb128fmt",
  8450. "wasmparser",
  8451. ]
  8452. [[package]]
  8453. name = "wasm-metadata"
  8454. version = "0.244.0"
  8455. source = "registry+https://github.com/rust-lang/crates.io-index"
  8456. checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
  8457. dependencies = [
  8458. "anyhow",
  8459. "indexmap 2.13.0",
  8460. "wasm-encoder",
  8461. "wasmparser",
  8462. ]
  8463. [[package]]
  8464. name = "wasmparser"
  8465. version = "0.244.0"
  8466. source = "registry+https://github.com/rust-lang/crates.io-index"
  8467. checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
  8468. dependencies = [
  8469. "bitflags 2.11.0",
  8470. "hashbrown 0.15.5",
  8471. "indexmap 2.13.0",
  8472. "semver",
  8473. ]
  8474. [[package]]
  8475. name = "weak-table"
  8476. version = "0.3.2"
  8477. source = "registry+https://github.com/rust-lang/crates.io-index"
  8478. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  8479. [[package]]
  8480. name = "web-sys"
  8481. version = "0.3.85"
  8482. source = "registry+https://github.com/rust-lang/crates.io-index"
  8483. checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
  8484. dependencies = [
  8485. "js-sys",
  8486. "wasm-bindgen",
  8487. ]
  8488. [[package]]
  8489. name = "web-time"
  8490. version = "1.1.0"
  8491. source = "registry+https://github.com/rust-lang/crates.io-index"
  8492. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  8493. dependencies = [
  8494. "js-sys",
  8495. "wasm-bindgen",
  8496. ]
  8497. [[package]]
  8498. name = "webpki"
  8499. version = "0.22.4"
  8500. source = "registry+https://github.com/rust-lang/crates.io-index"
  8501. checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
  8502. dependencies = [
  8503. "ring 0.17.14",
  8504. "untrusted 0.9.0",
  8505. ]
  8506. [[package]]
  8507. name = "webpki-roots"
  8508. version = "0.25.4"
  8509. source = "registry+https://github.com/rust-lang/crates.io-index"
  8510. checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
  8511. [[package]]
  8512. name = "webpki-roots"
  8513. version = "0.26.11"
  8514. source = "registry+https://github.com/rust-lang/crates.io-index"
  8515. checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
  8516. dependencies = [
  8517. "webpki-roots 1.0.6",
  8518. ]
  8519. [[package]]
  8520. name = "webpki-roots"
  8521. version = "1.0.6"
  8522. source = "registry+https://github.com/rust-lang/crates.io-index"
  8523. checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
  8524. dependencies = [
  8525. "rustls-pki-types",
  8526. ]
  8527. [[package]]
  8528. name = "weedle2"
  8529. version = "5.0.0"
  8530. source = "registry+https://github.com/rust-lang/crates.io-index"
  8531. checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
  8532. dependencies = [
  8533. "nom",
  8534. ]
  8535. [[package]]
  8536. name = "which"
  8537. version = "4.4.2"
  8538. source = "registry+https://github.com/rust-lang/crates.io-index"
  8539. checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
  8540. dependencies = [
  8541. "either",
  8542. "home",
  8543. "once_cell",
  8544. "rustix 0.38.44",
  8545. ]
  8546. [[package]]
  8547. name = "whoami"
  8548. version = "2.1.1"
  8549. source = "registry+https://github.com/rust-lang/crates.io-index"
  8550. checksum = "d6a5b12f9df4f978d2cfdb1bd3bac52433f44393342d7ee9c25f5a1c14c0f45d"
  8551. dependencies = [
  8552. "libc",
  8553. "libredox",
  8554. "objc2-system-configuration",
  8555. "wasite",
  8556. "web-sys",
  8557. ]
  8558. [[package]]
  8559. name = "widestring"
  8560. version = "1.2.1"
  8561. source = "registry+https://github.com/rust-lang/crates.io-index"
  8562. checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
  8563. [[package]]
  8564. name = "winapi"
  8565. version = "0.3.9"
  8566. source = "registry+https://github.com/rust-lang/crates.io-index"
  8567. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  8568. dependencies = [
  8569. "winapi-i686-pc-windows-gnu",
  8570. "winapi-x86_64-pc-windows-gnu",
  8571. ]
  8572. [[package]]
  8573. name = "winapi-i686-pc-windows-gnu"
  8574. version = "0.4.0"
  8575. source = "registry+https://github.com/rust-lang/crates.io-index"
  8576. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  8577. [[package]]
  8578. name = "winapi-util"
  8579. version = "0.1.11"
  8580. source = "registry+https://github.com/rust-lang/crates.io-index"
  8581. checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
  8582. dependencies = [
  8583. "windows-sys 0.61.2",
  8584. ]
  8585. [[package]]
  8586. name = "winapi-x86_64-pc-windows-gnu"
  8587. version = "0.4.0"
  8588. source = "registry+https://github.com/rust-lang/crates.io-index"
  8589. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  8590. [[package]]
  8591. name = "windows"
  8592. version = "0.57.0"
  8593. source = "registry+https://github.com/rust-lang/crates.io-index"
  8594. checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
  8595. dependencies = [
  8596. "windows-core 0.57.0",
  8597. "windows-targets 0.52.6",
  8598. ]
  8599. [[package]]
  8600. name = "windows-core"
  8601. version = "0.57.0"
  8602. source = "registry+https://github.com/rust-lang/crates.io-index"
  8603. checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
  8604. dependencies = [
  8605. "windows-implement 0.57.0",
  8606. "windows-interface 0.57.0",
  8607. "windows-result 0.1.2",
  8608. "windows-targets 0.52.6",
  8609. ]
  8610. [[package]]
  8611. name = "windows-core"
  8612. version = "0.62.2"
  8613. source = "registry+https://github.com/rust-lang/crates.io-index"
  8614. checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
  8615. dependencies = [
  8616. "windows-implement 0.60.2",
  8617. "windows-interface 0.59.3",
  8618. "windows-link",
  8619. "windows-result 0.4.1",
  8620. "windows-strings",
  8621. ]
  8622. [[package]]
  8623. name = "windows-implement"
  8624. version = "0.57.0"
  8625. source = "registry+https://github.com/rust-lang/crates.io-index"
  8626. checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
  8627. dependencies = [
  8628. "proc-macro2",
  8629. "quote",
  8630. "syn 2.0.116",
  8631. ]
  8632. [[package]]
  8633. name = "windows-implement"
  8634. version = "0.60.2"
  8635. source = "registry+https://github.com/rust-lang/crates.io-index"
  8636. checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
  8637. dependencies = [
  8638. "proc-macro2",
  8639. "quote",
  8640. "syn 2.0.116",
  8641. ]
  8642. [[package]]
  8643. name = "windows-interface"
  8644. version = "0.57.0"
  8645. source = "registry+https://github.com/rust-lang/crates.io-index"
  8646. checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
  8647. dependencies = [
  8648. "proc-macro2",
  8649. "quote",
  8650. "syn 2.0.116",
  8651. ]
  8652. [[package]]
  8653. name = "windows-interface"
  8654. version = "0.59.3"
  8655. source = "registry+https://github.com/rust-lang/crates.io-index"
  8656. checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
  8657. dependencies = [
  8658. "proc-macro2",
  8659. "quote",
  8660. "syn 2.0.116",
  8661. ]
  8662. [[package]]
  8663. name = "windows-link"
  8664. version = "0.2.1"
  8665. source = "registry+https://github.com/rust-lang/crates.io-index"
  8666. checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
  8667. [[package]]
  8668. name = "windows-result"
  8669. version = "0.1.2"
  8670. source = "registry+https://github.com/rust-lang/crates.io-index"
  8671. checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
  8672. dependencies = [
  8673. "windows-targets 0.52.6",
  8674. ]
  8675. [[package]]
  8676. name = "windows-result"
  8677. version = "0.4.1"
  8678. source = "registry+https://github.com/rust-lang/crates.io-index"
  8679. checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
  8680. dependencies = [
  8681. "windows-link",
  8682. ]
  8683. [[package]]
  8684. name = "windows-strings"
  8685. version = "0.5.1"
  8686. source = "registry+https://github.com/rust-lang/crates.io-index"
  8687. checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
  8688. dependencies = [
  8689. "windows-link",
  8690. ]
  8691. [[package]]
  8692. name = "windows-sys"
  8693. version = "0.48.0"
  8694. source = "registry+https://github.com/rust-lang/crates.io-index"
  8695. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  8696. dependencies = [
  8697. "windows-targets 0.48.5",
  8698. ]
  8699. [[package]]
  8700. name = "windows-sys"
  8701. version = "0.52.0"
  8702. source = "registry+https://github.com/rust-lang/crates.io-index"
  8703. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  8704. dependencies = [
  8705. "windows-targets 0.52.6",
  8706. ]
  8707. [[package]]
  8708. name = "windows-sys"
  8709. version = "0.59.0"
  8710. source = "registry+https://github.com/rust-lang/crates.io-index"
  8711. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  8712. dependencies = [
  8713. "windows-targets 0.52.6",
  8714. ]
  8715. [[package]]
  8716. name = "windows-sys"
  8717. version = "0.60.2"
  8718. source = "registry+https://github.com/rust-lang/crates.io-index"
  8719. checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
  8720. dependencies = [
  8721. "windows-targets 0.53.5",
  8722. ]
  8723. [[package]]
  8724. name = "windows-sys"
  8725. version = "0.61.2"
  8726. source = "registry+https://github.com/rust-lang/crates.io-index"
  8727. checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
  8728. dependencies = [
  8729. "windows-link",
  8730. ]
  8731. [[package]]
  8732. name = "windows-targets"
  8733. version = "0.48.5"
  8734. source = "registry+https://github.com/rust-lang/crates.io-index"
  8735. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  8736. dependencies = [
  8737. "windows_aarch64_gnullvm 0.48.5",
  8738. "windows_aarch64_msvc 0.48.5",
  8739. "windows_i686_gnu 0.48.5",
  8740. "windows_i686_msvc 0.48.5",
  8741. "windows_x86_64_gnu 0.48.5",
  8742. "windows_x86_64_gnullvm 0.48.5",
  8743. "windows_x86_64_msvc 0.48.5",
  8744. ]
  8745. [[package]]
  8746. name = "windows-targets"
  8747. version = "0.52.6"
  8748. source = "registry+https://github.com/rust-lang/crates.io-index"
  8749. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  8750. dependencies = [
  8751. "windows_aarch64_gnullvm 0.52.6",
  8752. "windows_aarch64_msvc 0.52.6",
  8753. "windows_i686_gnu 0.52.6",
  8754. "windows_i686_gnullvm 0.52.6",
  8755. "windows_i686_msvc 0.52.6",
  8756. "windows_x86_64_gnu 0.52.6",
  8757. "windows_x86_64_gnullvm 0.52.6",
  8758. "windows_x86_64_msvc 0.52.6",
  8759. ]
  8760. [[package]]
  8761. name = "windows-targets"
  8762. version = "0.53.5"
  8763. source = "registry+https://github.com/rust-lang/crates.io-index"
  8764. checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
  8765. dependencies = [
  8766. "windows-link",
  8767. "windows_aarch64_gnullvm 0.53.1",
  8768. "windows_aarch64_msvc 0.53.1",
  8769. "windows_i686_gnu 0.53.1",
  8770. "windows_i686_gnullvm 0.53.1",
  8771. "windows_i686_msvc 0.53.1",
  8772. "windows_x86_64_gnu 0.53.1",
  8773. "windows_x86_64_gnullvm 0.53.1",
  8774. "windows_x86_64_msvc 0.53.1",
  8775. ]
  8776. [[package]]
  8777. name = "windows_aarch64_gnullvm"
  8778. version = "0.48.5"
  8779. source = "registry+https://github.com/rust-lang/crates.io-index"
  8780. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  8781. [[package]]
  8782. name = "windows_aarch64_gnullvm"
  8783. version = "0.52.6"
  8784. source = "registry+https://github.com/rust-lang/crates.io-index"
  8785. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  8786. [[package]]
  8787. name = "windows_aarch64_gnullvm"
  8788. version = "0.53.1"
  8789. source = "registry+https://github.com/rust-lang/crates.io-index"
  8790. checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
  8791. [[package]]
  8792. name = "windows_aarch64_msvc"
  8793. version = "0.48.5"
  8794. source = "registry+https://github.com/rust-lang/crates.io-index"
  8795. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  8796. [[package]]
  8797. name = "windows_aarch64_msvc"
  8798. version = "0.52.6"
  8799. source = "registry+https://github.com/rust-lang/crates.io-index"
  8800. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  8801. [[package]]
  8802. name = "windows_aarch64_msvc"
  8803. version = "0.53.1"
  8804. source = "registry+https://github.com/rust-lang/crates.io-index"
  8805. checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
  8806. [[package]]
  8807. name = "windows_i686_gnu"
  8808. version = "0.48.5"
  8809. source = "registry+https://github.com/rust-lang/crates.io-index"
  8810. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  8811. [[package]]
  8812. name = "windows_i686_gnu"
  8813. version = "0.52.6"
  8814. source = "registry+https://github.com/rust-lang/crates.io-index"
  8815. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  8816. [[package]]
  8817. name = "windows_i686_gnu"
  8818. version = "0.53.1"
  8819. source = "registry+https://github.com/rust-lang/crates.io-index"
  8820. checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
  8821. [[package]]
  8822. name = "windows_i686_gnullvm"
  8823. version = "0.52.6"
  8824. source = "registry+https://github.com/rust-lang/crates.io-index"
  8825. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  8826. [[package]]
  8827. name = "windows_i686_gnullvm"
  8828. version = "0.53.1"
  8829. source = "registry+https://github.com/rust-lang/crates.io-index"
  8830. checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
  8831. [[package]]
  8832. name = "windows_i686_msvc"
  8833. version = "0.48.5"
  8834. source = "registry+https://github.com/rust-lang/crates.io-index"
  8835. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  8836. [[package]]
  8837. name = "windows_i686_msvc"
  8838. version = "0.52.6"
  8839. source = "registry+https://github.com/rust-lang/crates.io-index"
  8840. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  8841. [[package]]
  8842. name = "windows_i686_msvc"
  8843. version = "0.53.1"
  8844. source = "registry+https://github.com/rust-lang/crates.io-index"
  8845. checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
  8846. [[package]]
  8847. name = "windows_x86_64_gnu"
  8848. version = "0.48.5"
  8849. source = "registry+https://github.com/rust-lang/crates.io-index"
  8850. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  8851. [[package]]
  8852. name = "windows_x86_64_gnu"
  8853. version = "0.52.6"
  8854. source = "registry+https://github.com/rust-lang/crates.io-index"
  8855. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  8856. [[package]]
  8857. name = "windows_x86_64_gnu"
  8858. version = "0.53.1"
  8859. source = "registry+https://github.com/rust-lang/crates.io-index"
  8860. checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
  8861. [[package]]
  8862. name = "windows_x86_64_gnullvm"
  8863. version = "0.48.5"
  8864. source = "registry+https://github.com/rust-lang/crates.io-index"
  8865. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  8866. [[package]]
  8867. name = "windows_x86_64_gnullvm"
  8868. version = "0.52.6"
  8869. source = "registry+https://github.com/rust-lang/crates.io-index"
  8870. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  8871. [[package]]
  8872. name = "windows_x86_64_gnullvm"
  8873. version = "0.53.1"
  8874. source = "registry+https://github.com/rust-lang/crates.io-index"
  8875. checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
  8876. [[package]]
  8877. name = "windows_x86_64_msvc"
  8878. version = "0.48.5"
  8879. source = "registry+https://github.com/rust-lang/crates.io-index"
  8880. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  8881. [[package]]
  8882. name = "windows_x86_64_msvc"
  8883. version = "0.52.6"
  8884. source = "registry+https://github.com/rust-lang/crates.io-index"
  8885. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  8886. [[package]]
  8887. name = "windows_x86_64_msvc"
  8888. version = "0.53.1"
  8889. source = "registry+https://github.com/rust-lang/crates.io-index"
  8890. checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
  8891. [[package]]
  8892. name = "winnow"
  8893. version = "0.5.40"
  8894. source = "registry+https://github.com/rust-lang/crates.io-index"
  8895. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  8896. dependencies = [
  8897. "memchr",
  8898. ]
  8899. [[package]]
  8900. name = "winnow"
  8901. version = "0.7.14"
  8902. source = "registry+https://github.com/rust-lang/crates.io-index"
  8903. checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
  8904. dependencies = [
  8905. "memchr",
  8906. ]
  8907. [[package]]
  8908. name = "winreg"
  8909. version = "0.50.0"
  8910. source = "registry+https://github.com/rust-lang/crates.io-index"
  8911. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  8912. dependencies = [
  8913. "cfg-if",
  8914. "windows-sys 0.48.0",
  8915. ]
  8916. [[package]]
  8917. name = "wit-bindgen"
  8918. version = "0.51.0"
  8919. source = "registry+https://github.com/rust-lang/crates.io-index"
  8920. checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
  8921. dependencies = [
  8922. "wit-bindgen-rust-macro",
  8923. ]
  8924. [[package]]
  8925. name = "wit-bindgen-core"
  8926. version = "0.51.0"
  8927. source = "registry+https://github.com/rust-lang/crates.io-index"
  8928. checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
  8929. dependencies = [
  8930. "anyhow",
  8931. "heck 0.5.0",
  8932. "wit-parser",
  8933. ]
  8934. [[package]]
  8935. name = "wit-bindgen-rust"
  8936. version = "0.51.0"
  8937. source = "registry+https://github.com/rust-lang/crates.io-index"
  8938. checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
  8939. dependencies = [
  8940. "anyhow",
  8941. "heck 0.5.0",
  8942. "indexmap 2.13.0",
  8943. "prettyplease 0.2.37",
  8944. "syn 2.0.116",
  8945. "wasm-metadata",
  8946. "wit-bindgen-core",
  8947. "wit-component",
  8948. ]
  8949. [[package]]
  8950. name = "wit-bindgen-rust-macro"
  8951. version = "0.51.0"
  8952. source = "registry+https://github.com/rust-lang/crates.io-index"
  8953. checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
  8954. dependencies = [
  8955. "anyhow",
  8956. "prettyplease 0.2.37",
  8957. "proc-macro2",
  8958. "quote",
  8959. "syn 2.0.116",
  8960. "wit-bindgen-core",
  8961. "wit-bindgen-rust",
  8962. ]
  8963. [[package]]
  8964. name = "wit-component"
  8965. version = "0.244.0"
  8966. source = "registry+https://github.com/rust-lang/crates.io-index"
  8967. checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
  8968. dependencies = [
  8969. "anyhow",
  8970. "bitflags 2.11.0",
  8971. "indexmap 2.13.0",
  8972. "log",
  8973. "serde",
  8974. "serde_derive",
  8975. "serde_json",
  8976. "wasm-encoder",
  8977. "wasm-metadata",
  8978. "wasmparser",
  8979. "wit-parser",
  8980. ]
  8981. [[package]]
  8982. name = "wit-parser"
  8983. version = "0.244.0"
  8984. source = "registry+https://github.com/rust-lang/crates.io-index"
  8985. checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
  8986. dependencies = [
  8987. "anyhow",
  8988. "id-arena",
  8989. "indexmap 2.13.0",
  8990. "log",
  8991. "semver",
  8992. "serde",
  8993. "serde_derive",
  8994. "serde_json",
  8995. "unicode-xid",
  8996. "wasmparser",
  8997. ]
  8998. [[package]]
  8999. name = "writeable"
  9000. version = "0.6.2"
  9001. source = "registry+https://github.com/rust-lang/crates.io-index"
  9002. checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
  9003. [[package]]
  9004. name = "wyz"
  9005. version = "0.5.1"
  9006. source = "registry+https://github.com/rust-lang/crates.io-index"
  9007. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  9008. dependencies = [
  9009. "tap",
  9010. ]
  9011. [[package]]
  9012. name = "x25519-dalek"
  9013. version = "2.0.1"
  9014. source = "registry+https://github.com/rust-lang/crates.io-index"
  9015. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  9016. dependencies = [
  9017. "curve25519-dalek",
  9018. "rand_core 0.6.4",
  9019. "serde",
  9020. "zeroize",
  9021. ]
  9022. [[package]]
  9023. name = "x509-signature"
  9024. version = "0.5.0"
  9025. source = "registry+https://github.com/rust-lang/crates.io-index"
  9026. checksum = "9fb2bc2a902d992cd5f471ee3ab0ffd6603047a4207384562755b9d6de977518"
  9027. dependencies = [
  9028. "ring 0.16.20",
  9029. "untrusted 0.7.1",
  9030. ]
  9031. [[package]]
  9032. name = "yaml-rust2"
  9033. version = "0.10.4"
  9034. source = "registry+https://github.com/rust-lang/crates.io-index"
  9035. checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
  9036. dependencies = [
  9037. "arraydeque",
  9038. "encoding_rs",
  9039. "hashlink 0.10.0",
  9040. ]
  9041. [[package]]
  9042. name = "yoke"
  9043. version = "0.8.1"
  9044. source = "registry+https://github.com/rust-lang/crates.io-index"
  9045. checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
  9046. dependencies = [
  9047. "stable_deref_trait",
  9048. "yoke-derive",
  9049. "zerofrom",
  9050. ]
  9051. [[package]]
  9052. name = "yoke-derive"
  9053. version = "0.8.1"
  9054. source = "registry+https://github.com/rust-lang/crates.io-index"
  9055. checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
  9056. dependencies = [
  9057. "proc-macro2",
  9058. "quote",
  9059. "syn 2.0.116",
  9060. "synstructure",
  9061. ]
  9062. [[package]]
  9063. name = "zerocopy"
  9064. version = "0.8.39"
  9065. source = "registry+https://github.com/rust-lang/crates.io-index"
  9066. checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
  9067. dependencies = [
  9068. "zerocopy-derive",
  9069. ]
  9070. [[package]]
  9071. name = "zerocopy-derive"
  9072. version = "0.8.39"
  9073. source = "registry+https://github.com/rust-lang/crates.io-index"
  9074. checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
  9075. dependencies = [
  9076. "proc-macro2",
  9077. "quote",
  9078. "syn 2.0.116",
  9079. ]
  9080. [[package]]
  9081. name = "zerofrom"
  9082. version = "0.1.6"
  9083. source = "registry+https://github.com/rust-lang/crates.io-index"
  9084. checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
  9085. dependencies = [
  9086. "zerofrom-derive",
  9087. ]
  9088. [[package]]
  9089. name = "zerofrom-derive"
  9090. version = "0.1.6"
  9091. source = "registry+https://github.com/rust-lang/crates.io-index"
  9092. checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
  9093. dependencies = [
  9094. "proc-macro2",
  9095. "quote",
  9096. "syn 2.0.116",
  9097. "synstructure",
  9098. ]
  9099. [[package]]
  9100. name = "zeroize"
  9101. version = "1.8.2"
  9102. source = "registry+https://github.com/rust-lang/crates.io-index"
  9103. checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
  9104. dependencies = [
  9105. "zeroize_derive",
  9106. ]
  9107. [[package]]
  9108. name = "zeroize_derive"
  9109. version = "1.4.3"
  9110. source = "registry+https://github.com/rust-lang/crates.io-index"
  9111. checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
  9112. dependencies = [
  9113. "proc-macro2",
  9114. "quote",
  9115. "syn 2.0.116",
  9116. ]
  9117. [[package]]
  9118. name = "zerotrie"
  9119. version = "0.2.3"
  9120. source = "registry+https://github.com/rust-lang/crates.io-index"
  9121. checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
  9122. dependencies = [
  9123. "displaydoc",
  9124. "yoke",
  9125. "zerofrom",
  9126. ]
  9127. [[package]]
  9128. name = "zerovec"
  9129. version = "0.11.5"
  9130. source = "registry+https://github.com/rust-lang/crates.io-index"
  9131. checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
  9132. dependencies = [
  9133. "yoke",
  9134. "zerofrom",
  9135. "zerovec-derive",
  9136. ]
  9137. [[package]]
  9138. name = "zerovec-derive"
  9139. version = "0.11.2"
  9140. source = "registry+https://github.com/rust-lang/crates.io-index"
  9141. checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
  9142. dependencies = [
  9143. "proc-macro2",
  9144. "quote",
  9145. "syn 2.0.116",
  9146. ]
  9147. [[package]]
  9148. name = "zip"
  9149. version = "3.0.0"
  9150. source = "registry+https://github.com/rust-lang/crates.io-index"
  9151. checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
  9152. dependencies = [
  9153. "arbitrary",
  9154. "crc32fast",
  9155. "flate2",
  9156. "indexmap 2.13.0",
  9157. "memchr",
  9158. "zopfli",
  9159. ]
  9160. [[package]]
  9161. name = "zlib-rs"
  9162. version = "0.6.0"
  9163. source = "registry+https://github.com/rust-lang/crates.io-index"
  9164. checksum = "a7948af682ccbc3342b6e9420e8c51c1fe5d7bf7756002b4a3c6cabfe96a7e3c"
  9165. [[package]]
  9166. name = "zmij"
  9167. version = "1.0.21"
  9168. source = "registry+https://github.com/rust-lang/crates.io-index"
  9169. checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
  9170. [[package]]
  9171. name = "zopfli"
  9172. version = "0.8.3"
  9173. source = "registry+https://github.com/rust-lang/crates.io-index"
  9174. checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
  9175. dependencies = [
  9176. "bumpalo",
  9177. "crc32fast",
  9178. "log",
  9179. "simd-adler32",
  9180. ]
  9181. [[package]]
  9182. name = "zstd"
  9183. version = "0.13.3"
  9184. source = "registry+https://github.com/rust-lang/crates.io-index"
  9185. checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
  9186. dependencies = [
  9187. "zstd-safe",
  9188. ]
  9189. [[package]]
  9190. name = "zstd-safe"
  9191. version = "7.2.4"
  9192. source = "registry+https://github.com/rust-lang/crates.io-index"
  9193. checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
  9194. dependencies = [
  9195. "zstd-sys",
  9196. ]
  9197. [[package]]
  9198. name = "zstd-sys"
  9199. version = "2.0.16+zstd.1.5.7"
  9200. source = "registry+https://github.com/rust-lang/crates.io-index"
  9201. checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
  9202. dependencies = [
  9203. "cc",
  9204. "pkg-config",
  9205. ]