Cargo.lock 170 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "Inflector"
  6. version = "0.11.4"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
  9. dependencies = [
  10. "lazy_static",
  11. "regex",
  12. ]
  13. [[package]]
  14. name = "addr2line"
  15. version = "0.22.0"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
  18. dependencies = [
  19. "gimli 0.29.0",
  20. ]
  21. [[package]]
  22. name = "adler"
  23. version = "1.0.2"
  24. source = "registry+https://github.com/rust-lang/crates.io-index"
  25. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  26. [[package]]
  27. name = "aead"
  28. version = "0.5.2"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  31. dependencies = [
  32. "crypto-common",
  33. "generic-array",
  34. ]
  35. [[package]]
  36. name = "aes"
  37. version = "0.8.4"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  40. dependencies = [
  41. "cfg-if",
  42. "cipher",
  43. "cpufeatures",
  44. ]
  45. [[package]]
  46. name = "aes-gcm"
  47. version = "0.10.3"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
  50. dependencies = [
  51. "aead",
  52. "aes",
  53. "cipher",
  54. "ctr",
  55. "ghash",
  56. "subtle",
  57. ]
  58. [[package]]
  59. name = "ahash"
  60. version = "0.8.11"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  63. dependencies = [
  64. "cfg-if",
  65. "once_cell",
  66. "version_check",
  67. "zerocopy",
  68. ]
  69. [[package]]
  70. name = "aho-corasick"
  71. version = "1.1.3"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  74. dependencies = [
  75. "memchr",
  76. ]
  77. [[package]]
  78. name = "allocator-api2"
  79. version = "0.2.18"
  80. source = "registry+https://github.com/rust-lang/crates.io-index"
  81. checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
  82. [[package]]
  83. name = "android-tzdata"
  84. version = "0.1.1"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  87. [[package]]
  88. name = "android_system_properties"
  89. version = "0.1.5"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  92. dependencies = [
  93. "libc",
  94. ]
  95. [[package]]
  96. name = "anstream"
  97. version = "0.6.15"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
  100. dependencies = [
  101. "anstyle",
  102. "anstyle-parse",
  103. "anstyle-query",
  104. "anstyle-wincon",
  105. "colorchoice",
  106. "is_terminal_polyfill",
  107. "utf8parse",
  108. ]
  109. [[package]]
  110. name = "anstyle"
  111. version = "1.0.8"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
  114. [[package]]
  115. name = "anstyle-parse"
  116. version = "0.2.5"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
  119. dependencies = [
  120. "utf8parse",
  121. ]
  122. [[package]]
  123. name = "anstyle-query"
  124. version = "1.1.1"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
  127. dependencies = [
  128. "windows-sys 0.52.0",
  129. ]
  130. [[package]]
  131. name = "anstyle-wincon"
  132. version = "3.0.4"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
  135. dependencies = [
  136. "anstyle",
  137. "windows-sys 0.52.0",
  138. ]
  139. [[package]]
  140. name = "anyhow"
  141. version = "1.0.86"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
  144. [[package]]
  145. name = "arbitrary"
  146. version = "1.3.2"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
  149. [[package]]
  150. name = "arrayref"
  151. version = "0.3.8"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a"
  154. [[package]]
  155. name = "arrayvec"
  156. version = "0.7.6"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  159. [[package]]
  160. name = "ascii"
  161. version = "0.9.3"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e"
  164. [[package]]
  165. name = "asn1-rs"
  166. version = "0.6.2"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
  169. dependencies = [
  170. "asn1-rs-derive",
  171. "asn1-rs-impl",
  172. "displaydoc",
  173. "nom",
  174. "num-traits",
  175. "rusticata-macros",
  176. "thiserror",
  177. "time",
  178. ]
  179. [[package]]
  180. name = "asn1-rs-derive"
  181. version = "0.5.1"
  182. source = "registry+https://github.com/rust-lang/crates.io-index"
  183. checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
  184. dependencies = [
  185. "proc-macro2",
  186. "quote",
  187. "syn 2.0.75",
  188. "synstructure",
  189. ]
  190. [[package]]
  191. name = "asn1-rs-impl"
  192. version = "0.2.0"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  195. dependencies = [
  196. "proc-macro2",
  197. "quote",
  198. "syn 2.0.75",
  199. ]
  200. [[package]]
  201. name = "asn1_der"
  202. version = "0.7.6"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247"
  205. [[package]]
  206. name = "async-graphql"
  207. version = "7.0.7"
  208. source = "registry+https://github.com/rust-lang/crates.io-index"
  209. checksum = "2b76aba2f176af685c2229633881a3adeae51f87ae1811781e73910b7001c93e"
  210. dependencies = [
  211. "async-graphql-derive",
  212. "async-graphql-parser",
  213. "async-graphql-value",
  214. "async-stream",
  215. "async-trait",
  216. "base64 0.22.1",
  217. "bytes",
  218. "fnv",
  219. "futures-util",
  220. "http 1.1.0",
  221. "indexmap 2.4.0",
  222. "mime",
  223. "multer",
  224. "num-traits",
  225. "once_cell",
  226. "pin-project-lite",
  227. "regex",
  228. "serde",
  229. "serde_json",
  230. "serde_urlencoded",
  231. "static_assertions_next",
  232. "thiserror",
  233. "tracing",
  234. "tracing-futures",
  235. ]
  236. [[package]]
  237. name = "async-graphql-derive"
  238. version = "7.0.7"
  239. source = "registry+https://github.com/rust-lang/crates.io-index"
  240. checksum = "72e2e26a6b44bc61df3ca8546402cf9204c28e30c06084cc8e75cd5e34d4f150"
  241. dependencies = [
  242. "Inflector",
  243. "async-graphql-parser",
  244. "darling 0.20.10",
  245. "proc-macro-crate 3.1.0",
  246. "proc-macro2",
  247. "quote",
  248. "strum 0.26.3",
  249. "syn 2.0.75",
  250. "thiserror",
  251. ]
  252. [[package]]
  253. name = "async-graphql-parser"
  254. version = "7.0.7"
  255. source = "registry+https://github.com/rust-lang/crates.io-index"
  256. checksum = "f801451484b4977d6fe67b29030f81353cabdcbb754e5a064f39493582dac0cf"
  257. dependencies = [
  258. "async-graphql-value",
  259. "pest",
  260. "serde",
  261. "serde_json",
  262. ]
  263. [[package]]
  264. name = "async-graphql-value"
  265. version = "7.0.7"
  266. source = "registry+https://github.com/rust-lang/crates.io-index"
  267. checksum = "69117c43c01d81a69890a9f5dd6235f2f027ca8d1ec62d6d3c5e01ca0edb4f2b"
  268. dependencies = [
  269. "bytes",
  270. "indexmap 2.4.0",
  271. "serde",
  272. "serde_json",
  273. ]
  274. [[package]]
  275. name = "async-io"
  276. version = "2.3.4"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8"
  279. dependencies = [
  280. "async-lock",
  281. "cfg-if",
  282. "concurrent-queue",
  283. "futures-io",
  284. "futures-lite",
  285. "parking",
  286. "polling",
  287. "rustix",
  288. "slab",
  289. "tracing",
  290. "windows-sys 0.59.0",
  291. ]
  292. [[package]]
  293. name = "async-lock"
  294. version = "3.4.0"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
  297. dependencies = [
  298. "event-listener",
  299. "event-listener-strategy",
  300. "pin-project-lite",
  301. ]
  302. [[package]]
  303. name = "async-stream"
  304. version = "0.3.5"
  305. source = "registry+https://github.com/rust-lang/crates.io-index"
  306. checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
  307. dependencies = [
  308. "async-stream-impl",
  309. "futures-core",
  310. "pin-project-lite",
  311. ]
  312. [[package]]
  313. name = "async-stream-impl"
  314. version = "0.3.5"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
  317. dependencies = [
  318. "proc-macro2",
  319. "quote",
  320. "syn 2.0.75",
  321. ]
  322. [[package]]
  323. name = "async-trait"
  324. version = "0.1.81"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
  327. dependencies = [
  328. "proc-macro2",
  329. "quote",
  330. "syn 2.0.75",
  331. ]
  332. [[package]]
  333. name = "asynchronous-codec"
  334. version = "0.6.2"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568"
  337. dependencies = [
  338. "bytes",
  339. "futures-sink",
  340. "futures-util",
  341. "memchr",
  342. "pin-project-lite",
  343. ]
  344. [[package]]
  345. name = "asynchronous-codec"
  346. version = "0.7.0"
  347. source = "registry+https://github.com/rust-lang/crates.io-index"
  348. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  349. dependencies = [
  350. "bytes",
  351. "futures-sink",
  352. "futures-util",
  353. "memchr",
  354. "pin-project-lite",
  355. ]
  356. [[package]]
  357. name = "atomic-polyfill"
  358. version = "1.0.3"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
  361. dependencies = [
  362. "critical-section",
  363. ]
  364. [[package]]
  365. name = "attohttpc"
  366. version = "0.24.1"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2"
  369. dependencies = [
  370. "http 0.2.12",
  371. "log",
  372. "url",
  373. ]
  374. [[package]]
  375. name = "autocfg"
  376. version = "1.3.0"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
  379. [[package]]
  380. name = "axum"
  381. version = "0.5.17"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43"
  384. dependencies = [
  385. "async-trait",
  386. "axum-core",
  387. "bitflags 1.3.2",
  388. "bytes",
  389. "futures-util",
  390. "http 0.2.12",
  391. "http-body",
  392. "hyper",
  393. "itoa",
  394. "matchit",
  395. "memchr",
  396. "mime",
  397. "percent-encoding",
  398. "pin-project-lite",
  399. "serde",
  400. "serde_json",
  401. "serde_urlencoded",
  402. "sync_wrapper",
  403. "tokio",
  404. "tower",
  405. "tower-http",
  406. "tower-layer",
  407. "tower-service",
  408. ]
  409. [[package]]
  410. name = "axum-core"
  411. version = "0.2.9"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc"
  414. dependencies = [
  415. "async-trait",
  416. "bytes",
  417. "futures-util",
  418. "http 0.2.12",
  419. "http-body",
  420. "mime",
  421. "tower-layer",
  422. "tower-service",
  423. ]
  424. [[package]]
  425. name = "backtrace"
  426. version = "0.3.73"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
  429. dependencies = [
  430. "addr2line",
  431. "cc",
  432. "cfg-if",
  433. "libc",
  434. "miniz_oxide",
  435. "object",
  436. "rustc-demangle",
  437. "serde",
  438. ]
  439. [[package]]
  440. name = "base-x"
  441. version = "0.2.11"
  442. source = "registry+https://github.com/rust-lang/crates.io-index"
  443. checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
  444. [[package]]
  445. name = "base16ct"
  446. version = "0.2.0"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  449. [[package]]
  450. name = "base64"
  451. version = "0.13.1"
  452. source = "registry+https://github.com/rust-lang/crates.io-index"
  453. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  454. [[package]]
  455. name = "base64"
  456. version = "0.21.7"
  457. source = "registry+https://github.com/rust-lang/crates.io-index"
  458. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  459. [[package]]
  460. name = "base64"
  461. version = "0.22.1"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  464. [[package]]
  465. name = "base64ct"
  466. version = "1.6.0"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  469. [[package]]
  470. name = "bech32"
  471. version = "0.9.1"
  472. source = "registry+https://github.com/rust-lang/crates.io-index"
  473. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  474. [[package]]
  475. name = "bincode"
  476. version = "1.3.3"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  479. dependencies = [
  480. "serde",
  481. ]
  482. [[package]]
  483. name = "bit-set"
  484. version = "0.5.3"
  485. source = "registry+https://github.com/rust-lang/crates.io-index"
  486. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  487. dependencies = [
  488. "bit-vec",
  489. ]
  490. [[package]]
  491. name = "bit-vec"
  492. version = "0.6.3"
  493. source = "registry+https://github.com/rust-lang/crates.io-index"
  494. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  495. [[package]]
  496. name = "bitflags"
  497. version = "1.3.2"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  500. [[package]]
  501. name = "bitflags"
  502. version = "2.6.0"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  505. dependencies = [
  506. "serde",
  507. ]
  508. [[package]]
  509. name = "bitvec"
  510. version = "1.0.1"
  511. source = "registry+https://github.com/rust-lang/crates.io-index"
  512. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  513. dependencies = [
  514. "funty",
  515. "radium",
  516. "tap",
  517. "wyz",
  518. ]
  519. [[package]]
  520. name = "blake2"
  521. version = "0.10.6"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
  524. dependencies = [
  525. "digest 0.10.7",
  526. ]
  527. [[package]]
  528. name = "block-buffer"
  529. version = "0.9.0"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  532. dependencies = [
  533. "generic-array",
  534. ]
  535. [[package]]
  536. name = "block-buffer"
  537. version = "0.10.4"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  540. dependencies = [
  541. "generic-array",
  542. ]
  543. [[package]]
  544. name = "borsh"
  545. version = "0.10.3"
  546. source = "registry+https://github.com/rust-lang/crates.io-index"
  547. checksum = "4114279215a005bc675e386011e594e1d9b800918cea18fcadadcce864a2046b"
  548. dependencies = [
  549. "borsh-derive",
  550. "hashbrown 0.13.2",
  551. ]
  552. [[package]]
  553. name = "borsh-derive"
  554. version = "0.10.3"
  555. source = "registry+https://github.com/rust-lang/crates.io-index"
  556. checksum = "0754613691538d51f329cce9af41d7b7ca150bc973056f1156611489475f54f7"
  557. dependencies = [
  558. "borsh-derive-internal",
  559. "borsh-schema-derive-internal",
  560. "proc-macro-crate 0.1.5",
  561. "proc-macro2",
  562. "syn 1.0.109",
  563. ]
  564. [[package]]
  565. name = "borsh-derive-internal"
  566. version = "0.10.3"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "afb438156919598d2c7bad7e1c0adf3d26ed3840dbc010db1a882a65583ca2fb"
  569. dependencies = [
  570. "proc-macro2",
  571. "quote",
  572. "syn 1.0.109",
  573. ]
  574. [[package]]
  575. name = "borsh-schema-derive-internal"
  576. version = "0.10.3"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "634205cc43f74a1b9046ef87c4540ebda95696ec0f315024860cad7c5b0f5ccd"
  579. dependencies = [
  580. "proc-macro2",
  581. "quote",
  582. "syn 1.0.109",
  583. ]
  584. [[package]]
  585. name = "bs58"
  586. version = "0.5.1"
  587. source = "registry+https://github.com/rust-lang/crates.io-index"
  588. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  589. dependencies = [
  590. "sha2 0.10.8",
  591. "tinyvec",
  592. ]
  593. [[package]]
  594. name = "bstr"
  595. version = "1.10.0"
  596. source = "registry+https://github.com/rust-lang/crates.io-index"
  597. checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
  598. dependencies = [
  599. "memchr",
  600. "regex-automata",
  601. "serde",
  602. ]
  603. [[package]]
  604. name = "bumpalo"
  605. version = "3.16.0"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  608. [[package]]
  609. name = "bytemuck"
  610. version = "1.17.0"
  611. source = "registry+https://github.com/rust-lang/crates.io-index"
  612. checksum = "6fd4c6dcc3b0aea2f5c0b4b82c2b15fe39ddbc76041a310848f4706edf76bb31"
  613. dependencies = [
  614. "bytemuck_derive",
  615. ]
  616. [[package]]
  617. name = "bytemuck_derive"
  618. version = "1.7.1"
  619. source = "registry+https://github.com/rust-lang/crates.io-index"
  620. checksum = "0cc8b54b395f2fcfbb3d90c47b01c7f444d94d05bdeb775811dec868ac3bbc26"
  621. dependencies = [
  622. "proc-macro2",
  623. "quote",
  624. "syn 2.0.75",
  625. ]
  626. [[package]]
  627. name = "byteorder"
  628. version = "1.5.0"
  629. source = "registry+https://github.com/rust-lang/crates.io-index"
  630. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  631. [[package]]
  632. name = "bytes"
  633. version = "1.7.1"
  634. source = "registry+https://github.com/rust-lang/crates.io-index"
  635. checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
  636. dependencies = [
  637. "serde",
  638. ]
  639. [[package]]
  640. name = "cc"
  641. version = "1.1.13"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "72db2f7947ecee9b03b510377e8bb9077afa27176fdbff55c51027e976fdcc48"
  644. dependencies = [
  645. "jobserver",
  646. "libc",
  647. "shlex",
  648. ]
  649. [[package]]
  650. name = "cfg-if"
  651. version = "1.0.0"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  654. [[package]]
  655. name = "chacha20"
  656. version = "0.9.1"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  659. dependencies = [
  660. "cfg-if",
  661. "cipher",
  662. "cpufeatures",
  663. ]
  664. [[package]]
  665. name = "chacha20poly1305"
  666. version = "0.10.1"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  669. dependencies = [
  670. "aead",
  671. "chacha20",
  672. "cipher",
  673. "poly1305",
  674. "zeroize",
  675. ]
  676. [[package]]
  677. name = "chrono"
  678. version = "0.4.38"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
  681. dependencies = [
  682. "android-tzdata",
  683. "iana-time-zone",
  684. "js-sys",
  685. "num-traits",
  686. "serde",
  687. "wasm-bindgen",
  688. "windows-targets 0.52.6",
  689. ]
  690. [[package]]
  691. name = "cipher"
  692. version = "0.4.4"
  693. source = "registry+https://github.com/rust-lang/crates.io-index"
  694. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  695. dependencies = [
  696. "crypto-common",
  697. "inout",
  698. "zeroize",
  699. ]
  700. [[package]]
  701. name = "clap"
  702. version = "4.5.16"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019"
  705. dependencies = [
  706. "clap_builder",
  707. "clap_derive",
  708. ]
  709. [[package]]
  710. name = "clap_builder"
  711. version = "4.5.15"
  712. source = "registry+https://github.com/rust-lang/crates.io-index"
  713. checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6"
  714. dependencies = [
  715. "anstream",
  716. "anstyle",
  717. "clap_lex",
  718. "strsim 0.11.1",
  719. ]
  720. [[package]]
  721. name = "clap_derive"
  722. version = "4.5.13"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
  725. dependencies = [
  726. "heck 0.5.0",
  727. "proc-macro2",
  728. "quote",
  729. "syn 2.0.75",
  730. ]
  731. [[package]]
  732. name = "clap_lex"
  733. version = "0.7.2"
  734. source = "registry+https://github.com/rust-lang/crates.io-index"
  735. checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
  736. [[package]]
  737. name = "cobs"
  738. version = "0.2.3"
  739. source = "registry+https://github.com/rust-lang/crates.io-index"
  740. checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
  741. [[package]]
  742. name = "coins-bip32"
  743. version = "0.8.7"
  744. source = "registry+https://github.com/rust-lang/crates.io-index"
  745. checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3"
  746. dependencies = [
  747. "bs58",
  748. "coins-core",
  749. "digest 0.10.7",
  750. "hmac 0.12.1",
  751. "k256",
  752. "serde",
  753. "sha2 0.10.8",
  754. "thiserror",
  755. ]
  756. [[package]]
  757. name = "coins-bip39"
  758. version = "0.8.7"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528"
  761. dependencies = [
  762. "bitvec",
  763. "coins-bip32",
  764. "hmac 0.12.1",
  765. "once_cell",
  766. "pbkdf2 0.12.2",
  767. "rand",
  768. "sha2 0.10.8",
  769. "thiserror",
  770. ]
  771. [[package]]
  772. name = "coins-core"
  773. version = "0.8.7"
  774. source = "registry+https://github.com/rust-lang/crates.io-index"
  775. checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979"
  776. dependencies = [
  777. "base64 0.21.7",
  778. "bech32",
  779. "bs58",
  780. "digest 0.10.7",
  781. "generic-array",
  782. "hex",
  783. "ripemd",
  784. "serde",
  785. "serde_derive",
  786. "sha2 0.10.8",
  787. "sha3",
  788. "thiserror",
  789. ]
  790. [[package]]
  791. name = "colorchoice"
  792. version = "1.0.2"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
  795. [[package]]
  796. name = "combine"
  797. version = "3.8.1"
  798. source = "registry+https://github.com/rust-lang/crates.io-index"
  799. checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680"
  800. dependencies = [
  801. "ascii",
  802. "byteorder",
  803. "either",
  804. "memchr",
  805. "unreachable",
  806. ]
  807. [[package]]
  808. name = "concurrent-queue"
  809. version = "2.5.0"
  810. source = "registry+https://github.com/rust-lang/crates.io-index"
  811. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  812. dependencies = [
  813. "crossbeam-utils",
  814. ]
  815. [[package]]
  816. name = "console"
  817. version = "0.15.8"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
  820. dependencies = [
  821. "encode_unicode",
  822. "lazy_static",
  823. "libc",
  824. "unicode-width",
  825. "windows-sys 0.52.0",
  826. ]
  827. [[package]]
  828. name = "const-oid"
  829. version = "0.9.6"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  832. [[package]]
  833. name = "convert_case"
  834. version = "0.4.0"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  837. [[package]]
  838. name = "cookie"
  839. version = "0.17.0"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
  842. dependencies = [
  843. "percent-encoding",
  844. "time",
  845. "version_check",
  846. ]
  847. [[package]]
  848. name = "cookie_store"
  849. version = "0.20.0"
  850. source = "registry+https://github.com/rust-lang/crates.io-index"
  851. checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
  852. dependencies = [
  853. "cookie",
  854. "idna 0.3.0",
  855. "log",
  856. "publicsuffix",
  857. "serde",
  858. "serde_derive",
  859. "serde_json",
  860. "time",
  861. "url",
  862. ]
  863. [[package]]
  864. name = "core-foundation"
  865. version = "0.9.4"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  868. dependencies = [
  869. "core-foundation-sys",
  870. "libc",
  871. ]
  872. [[package]]
  873. name = "core-foundation-sys"
  874. version = "0.8.7"
  875. source = "registry+https://github.com/rust-lang/crates.io-index"
  876. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  877. [[package]]
  878. name = "core2"
  879. version = "0.4.0"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
  882. dependencies = [
  883. "memchr",
  884. ]
  885. [[package]]
  886. name = "counter"
  887. version = "0.5.7"
  888. source = "registry+https://github.com/rust-lang/crates.io-index"
  889. checksum = "2d458e66999348f56fd3ffcfbb7f7951542075ca8359687c703de6500c1ddccd"
  890. dependencies = [
  891. "num-traits",
  892. ]
  893. [[package]]
  894. name = "cpufeatures"
  895. version = "0.2.13"
  896. source = "registry+https://github.com/rust-lang/crates.io-index"
  897. checksum = "51e852e6dc9a5bed1fae92dd2375037bf2b768725bf3be87811edee3249d09ad"
  898. dependencies = [
  899. "libc",
  900. ]
  901. [[package]]
  902. name = "cranelift-bforest"
  903. version = "0.110.2"
  904. source = "registry+https://github.com/rust-lang/crates.io-index"
  905. checksum = "305d51c180ebdc46ef61bc60c54ae6512db3bc9a05842a1f1e762e45977019ab"
  906. dependencies = [
  907. "cranelift-entity",
  908. ]
  909. [[package]]
  910. name = "cranelift-bitset"
  911. version = "0.110.2"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "e3247afacd9b13d620033f3190d9e49d1beefc1acb33d5604a249956c9c13709"
  914. dependencies = [
  915. "serde",
  916. "serde_derive",
  917. ]
  918. [[package]]
  919. name = "cranelift-codegen"
  920. version = "0.110.2"
  921. source = "registry+https://github.com/rust-lang/crates.io-index"
  922. checksum = "bd7ca95e831c18d1356da783765c344207cbdffea91e13e47fa9327dbb2e0719"
  923. dependencies = [
  924. "bumpalo",
  925. "cranelift-bforest",
  926. "cranelift-bitset",
  927. "cranelift-codegen-meta",
  928. "cranelift-codegen-shared",
  929. "cranelift-control",
  930. "cranelift-entity",
  931. "cranelift-isle",
  932. "gimli 0.28.1",
  933. "hashbrown 0.14.5",
  934. "log",
  935. "regalloc2",
  936. "rustc-hash 1.1.0",
  937. "smallvec",
  938. "target-lexicon",
  939. ]
  940. [[package]]
  941. name = "cranelift-codegen-meta"
  942. version = "0.110.2"
  943. source = "registry+https://github.com/rust-lang/crates.io-index"
  944. checksum = "450c105fa1e51bfba4e95a86e926504a867ad5639d63f31d43fe3b7ec1f1c9ef"
  945. dependencies = [
  946. "cranelift-codegen-shared",
  947. ]
  948. [[package]]
  949. name = "cranelift-codegen-shared"
  950. version = "0.110.2"
  951. source = "registry+https://github.com/rust-lang/crates.io-index"
  952. checksum = "5479117cd1266881479908d383086561cee37e49affbea9b1e6b594cc21cc220"
  953. [[package]]
  954. name = "cranelift-control"
  955. version = "0.110.2"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "34378804f0abfdd22c068a741cfeed86938b92375b2a96fb0b42c878e0141bfb"
  958. dependencies = [
  959. "arbitrary",
  960. ]
  961. [[package]]
  962. name = "cranelift-entity"
  963. version = "0.110.2"
  964. source = "registry+https://github.com/rust-lang/crates.io-index"
  965. checksum = "a48cb0a194c9ba82fec35a1e492055388d89b2e3c03dee9dcf2488892be8004d"
  966. dependencies = [
  967. "cranelift-bitset",
  968. "serde",
  969. "serde_derive",
  970. ]
  971. [[package]]
  972. name = "cranelift-frontend"
  973. version = "0.110.2"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "8327afc6c1c05f4be62fefce5b439fa83521c65363a322e86ea32c85e7ceaf64"
  976. dependencies = [
  977. "cranelift-codegen",
  978. "log",
  979. "smallvec",
  980. "target-lexicon",
  981. ]
  982. [[package]]
  983. name = "cranelift-isle"
  984. version = "0.110.2"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "56b08621c00321efcfa3eee6a3179adc009e21ea8d24ca7adc3c326184bc3f48"
  987. [[package]]
  988. name = "cranelift-native"
  989. version = "0.110.2"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "d51180b147c8557c1196c77b098f04140c91962e135ea152cd2fcabf40cf365c"
  992. dependencies = [
  993. "cranelift-codegen",
  994. "libc",
  995. "target-lexicon",
  996. ]
  997. [[package]]
  998. name = "cranelift-wasm"
  999. version = "0.110.2"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "019e3dccb7f15e0bc14f0ddc034ec608a66df8e05c9e1e16f75a7716f8461799"
  1002. dependencies = [
  1003. "cranelift-codegen",
  1004. "cranelift-entity",
  1005. "cranelift-frontend",
  1006. "itertools 0.12.1",
  1007. "log",
  1008. "smallvec",
  1009. "wasmparser",
  1010. "wasmtime-types",
  1011. ]
  1012. [[package]]
  1013. name = "crc32fast"
  1014. version = "1.4.2"
  1015. source = "registry+https://github.com/rust-lang/crates.io-index"
  1016. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  1017. dependencies = [
  1018. "cfg-if",
  1019. ]
  1020. [[package]]
  1021. name = "critical-section"
  1022. version = "1.1.2"
  1023. source = "registry+https://github.com/rust-lang/crates.io-index"
  1024. checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216"
  1025. [[package]]
  1026. name = "crossbeam-deque"
  1027. version = "0.8.5"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  1030. dependencies = [
  1031. "crossbeam-epoch",
  1032. "crossbeam-utils",
  1033. ]
  1034. [[package]]
  1035. name = "crossbeam-epoch"
  1036. version = "0.9.18"
  1037. source = "registry+https://github.com/rust-lang/crates.io-index"
  1038. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1039. dependencies = [
  1040. "crossbeam-utils",
  1041. ]
  1042. [[package]]
  1043. name = "crossbeam-utils"
  1044. version = "0.8.20"
  1045. source = "registry+https://github.com/rust-lang/crates.io-index"
  1046. checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
  1047. [[package]]
  1048. name = "crunchy"
  1049. version = "0.2.2"
  1050. source = "registry+https://github.com/rust-lang/crates.io-index"
  1051. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1052. [[package]]
  1053. name = "crypto-bigint"
  1054. version = "0.5.5"
  1055. source = "registry+https://github.com/rust-lang/crates.io-index"
  1056. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  1057. dependencies = [
  1058. "generic-array",
  1059. "rand_core",
  1060. "subtle",
  1061. "zeroize",
  1062. ]
  1063. [[package]]
  1064. name = "crypto-common"
  1065. version = "0.1.6"
  1066. source = "registry+https://github.com/rust-lang/crates.io-index"
  1067. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1068. dependencies = [
  1069. "generic-array",
  1070. "rand_core",
  1071. "typenum",
  1072. ]
  1073. [[package]]
  1074. name = "crypto-mac"
  1075. version = "0.8.0"
  1076. source = "registry+https://github.com/rust-lang/crates.io-index"
  1077. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  1078. dependencies = [
  1079. "generic-array",
  1080. "subtle",
  1081. ]
  1082. [[package]]
  1083. name = "ctr"
  1084. version = "0.9.2"
  1085. source = "registry+https://github.com/rust-lang/crates.io-index"
  1086. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  1087. dependencies = [
  1088. "cipher",
  1089. ]
  1090. [[package]]
  1091. name = "curve25519-dalek"
  1092. version = "4.1.3"
  1093. source = "registry+https://github.com/rust-lang/crates.io-index"
  1094. checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
  1095. dependencies = [
  1096. "cfg-if",
  1097. "cpufeatures",
  1098. "curve25519-dalek-derive",
  1099. "digest 0.10.7",
  1100. "fiat-crypto",
  1101. "rustc_version",
  1102. "subtle",
  1103. "zeroize",
  1104. ]
  1105. [[package]]
  1106. name = "curve25519-dalek-derive"
  1107. version = "0.1.1"
  1108. source = "registry+https://github.com/rust-lang/crates.io-index"
  1109. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1110. dependencies = [
  1111. "proc-macro2",
  1112. "quote",
  1113. "syn 2.0.75",
  1114. ]
  1115. [[package]]
  1116. name = "cynic"
  1117. version = "2.2.8"
  1118. source = "registry+https://github.com/rust-lang/crates.io-index"
  1119. checksum = "b1afa0591b1021e427e548a1f0f147fe6168f6c7c7f7006bace77f28856051b8"
  1120. dependencies = [
  1121. "cynic-proc-macros",
  1122. "reqwest",
  1123. "serde",
  1124. "serde_json",
  1125. "static_assertions",
  1126. "thiserror",
  1127. ]
  1128. [[package]]
  1129. name = "cynic-codegen"
  1130. version = "2.2.8"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "70a1bb05cc554f46079d0fa72abe995a2d32d0737d410a41da75b31e3f7ef768"
  1133. dependencies = [
  1134. "counter",
  1135. "darling 0.13.4",
  1136. "graphql-parser",
  1137. "once_cell",
  1138. "proc-macro2",
  1139. "quote",
  1140. "strsim 0.10.0",
  1141. "syn 1.0.109",
  1142. ]
  1143. [[package]]
  1144. name = "cynic-proc-macros"
  1145. version = "2.2.8"
  1146. source = "registry+https://github.com/rust-lang/crates.io-index"
  1147. checksum = "aa595c4ed7a5374e0e58c5c34f9d93bd6b7d45062790963bd4b4c3c0bf520c4d"
  1148. dependencies = [
  1149. "cynic-codegen",
  1150. "syn 1.0.109",
  1151. ]
  1152. [[package]]
  1153. name = "darling"
  1154. version = "0.13.4"
  1155. source = "registry+https://github.com/rust-lang/crates.io-index"
  1156. checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
  1157. dependencies = [
  1158. "darling_core 0.13.4",
  1159. "darling_macro 0.13.4",
  1160. ]
  1161. [[package]]
  1162. name = "darling"
  1163. version = "0.20.10"
  1164. source = "registry+https://github.com/rust-lang/crates.io-index"
  1165. checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
  1166. dependencies = [
  1167. "darling_core 0.20.10",
  1168. "darling_macro 0.20.10",
  1169. ]
  1170. [[package]]
  1171. name = "darling_core"
  1172. version = "0.13.4"
  1173. source = "registry+https://github.com/rust-lang/crates.io-index"
  1174. checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
  1175. dependencies = [
  1176. "fnv",
  1177. "ident_case",
  1178. "proc-macro2",
  1179. "quote",
  1180. "strsim 0.10.0",
  1181. "syn 1.0.109",
  1182. ]
  1183. [[package]]
  1184. name = "darling_core"
  1185. version = "0.20.10"
  1186. source = "registry+https://github.com/rust-lang/crates.io-index"
  1187. checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
  1188. dependencies = [
  1189. "fnv",
  1190. "ident_case",
  1191. "proc-macro2",
  1192. "quote",
  1193. "strsim 0.11.1",
  1194. "syn 2.0.75",
  1195. ]
  1196. [[package]]
  1197. name = "darling_macro"
  1198. version = "0.13.4"
  1199. source = "registry+https://github.com/rust-lang/crates.io-index"
  1200. checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
  1201. dependencies = [
  1202. "darling_core 0.13.4",
  1203. "quote",
  1204. "syn 1.0.109",
  1205. ]
  1206. [[package]]
  1207. name = "darling_macro"
  1208. version = "0.20.10"
  1209. source = "registry+https://github.com/rust-lang/crates.io-index"
  1210. checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
  1211. dependencies = [
  1212. "darling_core 0.20.10",
  1213. "quote",
  1214. "syn 2.0.75",
  1215. ]
  1216. [[package]]
  1217. name = "data-encoding"
  1218. version = "2.6.0"
  1219. source = "registry+https://github.com/rust-lang/crates.io-index"
  1220. checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
  1221. [[package]]
  1222. name = "data-encoding-macro"
  1223. version = "0.1.15"
  1224. source = "registry+https://github.com/rust-lang/crates.io-index"
  1225. checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639"
  1226. dependencies = [
  1227. "data-encoding",
  1228. "data-encoding-macro-internal",
  1229. ]
  1230. [[package]]
  1231. name = "data-encoding-macro-internal"
  1232. version = "0.1.13"
  1233. source = "registry+https://github.com/rust-lang/crates.io-index"
  1234. checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f"
  1235. dependencies = [
  1236. "data-encoding",
  1237. "syn 1.0.109",
  1238. ]
  1239. [[package]]
  1240. name = "der"
  1241. version = "0.7.9"
  1242. source = "registry+https://github.com/rust-lang/crates.io-index"
  1243. checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
  1244. dependencies = [
  1245. "const-oid",
  1246. "zeroize",
  1247. ]
  1248. [[package]]
  1249. name = "der-parser"
  1250. version = "9.0.0"
  1251. source = "registry+https://github.com/rust-lang/crates.io-index"
  1252. checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
  1253. dependencies = [
  1254. "asn1-rs",
  1255. "displaydoc",
  1256. "nom",
  1257. "num-bigint",
  1258. "num-traits",
  1259. "rusticata-macros",
  1260. ]
  1261. [[package]]
  1262. name = "deranged"
  1263. version = "0.3.11"
  1264. source = "registry+https://github.com/rust-lang/crates.io-index"
  1265. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1266. dependencies = [
  1267. "powerfmt",
  1268. "serde",
  1269. ]
  1270. [[package]]
  1271. name = "derivative"
  1272. version = "2.2.0"
  1273. source = "registry+https://github.com/rust-lang/crates.io-index"
  1274. checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
  1275. dependencies = [
  1276. "proc-macro2",
  1277. "quote",
  1278. "syn 1.0.109",
  1279. ]
  1280. [[package]]
  1281. name = "derive_more"
  1282. version = "0.99.18"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
  1285. dependencies = [
  1286. "convert_case",
  1287. "proc-macro2",
  1288. "quote",
  1289. "rustc_version",
  1290. "syn 2.0.75",
  1291. ]
  1292. [[package]]
  1293. name = "difflib"
  1294. version = "0.4.0"
  1295. source = "registry+https://github.com/rust-lang/crates.io-index"
  1296. checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
  1297. [[package]]
  1298. name = "digest"
  1299. version = "0.9.0"
  1300. source = "registry+https://github.com/rust-lang/crates.io-index"
  1301. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  1302. dependencies = [
  1303. "generic-array",
  1304. ]
  1305. [[package]]
  1306. name = "digest"
  1307. version = "0.10.7"
  1308. source = "registry+https://github.com/rust-lang/crates.io-index"
  1309. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1310. dependencies = [
  1311. "block-buffer 0.10.4",
  1312. "const-oid",
  1313. "crypto-common",
  1314. "subtle",
  1315. ]
  1316. [[package]]
  1317. name = "directories-next"
  1318. version = "2.0.0"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
  1321. dependencies = [
  1322. "cfg-if",
  1323. "dirs-sys-next",
  1324. ]
  1325. [[package]]
  1326. name = "dirs-sys-next"
  1327. version = "0.1.2"
  1328. source = "registry+https://github.com/rust-lang/crates.io-index"
  1329. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1330. dependencies = [
  1331. "libc",
  1332. "redox_users",
  1333. "winapi",
  1334. ]
  1335. [[package]]
  1336. name = "displaydoc"
  1337. version = "0.2.5"
  1338. source = "registry+https://github.com/rust-lang/crates.io-index"
  1339. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1340. dependencies = [
  1341. "proc-macro2",
  1342. "quote",
  1343. "syn 2.0.75",
  1344. ]
  1345. [[package]]
  1346. name = "dotenv"
  1347. version = "0.15.0"
  1348. source = "registry+https://github.com/rust-lang/crates.io-index"
  1349. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  1350. [[package]]
  1351. name = "downcast"
  1352. version = "0.11.0"
  1353. source = "registry+https://github.com/rust-lang/crates.io-index"
  1354. checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
  1355. [[package]]
  1356. name = "dtoa"
  1357. version = "1.0.9"
  1358. source = "registry+https://github.com/rust-lang/crates.io-index"
  1359. checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
  1360. [[package]]
  1361. name = "dyn-clone"
  1362. version = "1.0.17"
  1363. source = "registry+https://github.com/rust-lang/crates.io-index"
  1364. checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
  1365. [[package]]
  1366. name = "ecdsa"
  1367. version = "0.16.9"
  1368. source = "registry+https://github.com/rust-lang/crates.io-index"
  1369. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1370. dependencies = [
  1371. "der",
  1372. "digest 0.10.7",
  1373. "elliptic-curve",
  1374. "rfc6979",
  1375. "signature",
  1376. "spki",
  1377. ]
  1378. [[package]]
  1379. name = "ed25519"
  1380. version = "2.2.3"
  1381. source = "registry+https://github.com/rust-lang/crates.io-index"
  1382. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1383. dependencies = [
  1384. "pkcs8",
  1385. "signature",
  1386. ]
  1387. [[package]]
  1388. name = "ed25519-dalek"
  1389. version = "2.1.1"
  1390. source = "registry+https://github.com/rust-lang/crates.io-index"
  1391. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1392. dependencies = [
  1393. "curve25519-dalek",
  1394. "ed25519",
  1395. "rand_core",
  1396. "serde",
  1397. "sha2 0.10.8",
  1398. "subtle",
  1399. "zeroize",
  1400. ]
  1401. [[package]]
  1402. name = "either"
  1403. version = "1.13.0"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  1406. [[package]]
  1407. name = "elliptic-curve"
  1408. version = "0.13.8"
  1409. source = "registry+https://github.com/rust-lang/crates.io-index"
  1410. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1411. dependencies = [
  1412. "base16ct",
  1413. "crypto-bigint",
  1414. "digest 0.10.7",
  1415. "ff",
  1416. "generic-array",
  1417. "group",
  1418. "pkcs8",
  1419. "rand_core",
  1420. "sec1",
  1421. "subtle",
  1422. "zeroize",
  1423. ]
  1424. [[package]]
  1425. name = "embedded-io"
  1426. version = "0.4.0"
  1427. source = "registry+https://github.com/rust-lang/crates.io-index"
  1428. checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
  1429. [[package]]
  1430. name = "embedded-io"
  1431. version = "0.6.1"
  1432. source = "registry+https://github.com/rust-lang/crates.io-index"
  1433. checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
  1434. [[package]]
  1435. name = "encode_unicode"
  1436. version = "0.3.6"
  1437. source = "registry+https://github.com/rust-lang/crates.io-index"
  1438. checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
  1439. [[package]]
  1440. name = "encoding_rs"
  1441. version = "0.8.34"
  1442. source = "registry+https://github.com/rust-lang/crates.io-index"
  1443. checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
  1444. dependencies = [
  1445. "cfg-if",
  1446. ]
  1447. [[package]]
  1448. name = "enum-as-inner"
  1449. version = "0.6.0"
  1450. source = "registry+https://github.com/rust-lang/crates.io-index"
  1451. checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
  1452. dependencies = [
  1453. "heck 0.4.1",
  1454. "proc-macro2",
  1455. "quote",
  1456. "syn 2.0.75",
  1457. ]
  1458. [[package]]
  1459. name = "enum-iterator"
  1460. version = "1.5.0"
  1461. source = "registry+https://github.com/rust-lang/crates.io-index"
  1462. checksum = "9fd242f399be1da0a5354aa462d57b4ab2b4ee0683cc552f7c007d2d12d36e94"
  1463. dependencies = [
  1464. "enum-iterator-derive",
  1465. ]
  1466. [[package]]
  1467. name = "enum-iterator-derive"
  1468. version = "1.4.0"
  1469. source = "registry+https://github.com/rust-lang/crates.io-index"
  1470. checksum = "a1ab991c1362ac86c61ab6f556cff143daa22e5a15e4e189df818b2fd19fe65b"
  1471. dependencies = [
  1472. "proc-macro2",
  1473. "quote",
  1474. "syn 2.0.75",
  1475. ]
  1476. [[package]]
  1477. name = "equivalent"
  1478. version = "1.0.1"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  1481. [[package]]
  1482. name = "errno"
  1483. version = "0.3.9"
  1484. source = "registry+https://github.com/rust-lang/crates.io-index"
  1485. checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
  1486. dependencies = [
  1487. "libc",
  1488. "windows-sys 0.52.0",
  1489. ]
  1490. [[package]]
  1491. name = "eth-keystore"
  1492. version = "0.5.0"
  1493. source = "registry+https://github.com/rust-lang/crates.io-index"
  1494. checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab"
  1495. dependencies = [
  1496. "aes",
  1497. "ctr",
  1498. "digest 0.10.7",
  1499. "hex",
  1500. "hmac 0.12.1",
  1501. "pbkdf2 0.11.0",
  1502. "rand",
  1503. "scrypt",
  1504. "serde",
  1505. "serde_json",
  1506. "sha2 0.10.8",
  1507. "sha3",
  1508. "thiserror",
  1509. "uuid 0.8.2",
  1510. ]
  1511. [[package]]
  1512. name = "ethnum"
  1513. version = "1.5.0"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "b90ca2580b73ab6a1f724b76ca11ab632df820fd6040c336200d2c1df7b3c82c"
  1516. [[package]]
  1517. name = "event-listener"
  1518. version = "5.3.1"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
  1521. dependencies = [
  1522. "concurrent-queue",
  1523. "parking",
  1524. "pin-project-lite",
  1525. ]
  1526. [[package]]
  1527. name = "event-listener-strategy"
  1528. version = "0.5.2"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
  1531. dependencies = [
  1532. "event-listener",
  1533. "pin-project-lite",
  1534. ]
  1535. [[package]]
  1536. name = "eventsource-client"
  1537. version = "0.12.2"
  1538. source = "registry+https://github.com/rust-lang/crates.io-index"
  1539. checksum = "4c80c6714d1a380314fcb11a22eeff022e1e1c9642f0bb54e15dc9cb29f37b29"
  1540. dependencies = [
  1541. "futures",
  1542. "hyper",
  1543. "hyper-rustls",
  1544. "hyper-timeout",
  1545. "log",
  1546. "pin-project",
  1547. "rand",
  1548. "tokio",
  1549. ]
  1550. [[package]]
  1551. name = "fallible-iterator"
  1552. version = "0.3.0"
  1553. source = "registry+https://github.com/rust-lang/crates.io-index"
  1554. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  1555. [[package]]
  1556. name = "fast-math"
  1557. version = "0.1.1"
  1558. source = "registry+https://github.com/rust-lang/crates.io-index"
  1559. checksum = "2465292146cdfc2011350fe3b1c616ac83cf0faeedb33463ba1c332ed8948d66"
  1560. dependencies = [
  1561. "ieee754",
  1562. ]
  1563. [[package]]
  1564. name = "fastrand"
  1565. version = "2.1.0"
  1566. source = "registry+https://github.com/rust-lang/crates.io-index"
  1567. checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
  1568. [[package]]
  1569. name = "ff"
  1570. version = "0.13.0"
  1571. source = "registry+https://github.com/rust-lang/crates.io-index"
  1572. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  1573. dependencies = [
  1574. "rand_core",
  1575. "subtle",
  1576. ]
  1577. [[package]]
  1578. name = "fiat-crypto"
  1579. version = "0.2.9"
  1580. source = "registry+https://github.com/rust-lang/crates.io-index"
  1581. checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
  1582. [[package]]
  1583. name = "fixed-hash"
  1584. version = "0.8.0"
  1585. source = "registry+https://github.com/rust-lang/crates.io-index"
  1586. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  1587. dependencies = [
  1588. "static_assertions",
  1589. ]
  1590. [[package]]
  1591. name = "float-cmp"
  1592. version = "0.9.0"
  1593. source = "registry+https://github.com/rust-lang/crates.io-index"
  1594. checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
  1595. dependencies = [
  1596. "num-traits",
  1597. ]
  1598. [[package]]
  1599. name = "fnv"
  1600. version = "1.0.7"
  1601. source = "registry+https://github.com/rust-lang/crates.io-index"
  1602. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1603. [[package]]
  1604. name = "foreign-types"
  1605. version = "0.3.2"
  1606. source = "registry+https://github.com/rust-lang/crates.io-index"
  1607. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1608. dependencies = [
  1609. "foreign-types-shared",
  1610. ]
  1611. [[package]]
  1612. name = "foreign-types-shared"
  1613. version = "0.1.1"
  1614. source = "registry+https://github.com/rust-lang/crates.io-index"
  1615. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1616. [[package]]
  1617. name = "form_urlencoded"
  1618. version = "1.2.1"
  1619. source = "registry+https://github.com/rust-lang/crates.io-index"
  1620. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1621. dependencies = [
  1622. "percent-encoding",
  1623. ]
  1624. [[package]]
  1625. name = "fragile"
  1626. version = "2.0.0"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa"
  1629. [[package]]
  1630. name = "fuel-abi-types"
  1631. version = "0.7.0"
  1632. source = "registry+https://github.com/rust-lang/crates.io-index"
  1633. checksum = "bce44ac13b1971be7cea024a2003cf944522093dafec454fea9ff792f0ff2577"
  1634. dependencies = [
  1635. "itertools 0.10.5",
  1636. "lazy_static",
  1637. "proc-macro2",
  1638. "quote",
  1639. "regex",
  1640. "serde",
  1641. "serde_json",
  1642. "syn 2.0.75",
  1643. "thiserror",
  1644. ]
  1645. [[package]]
  1646. name = "fuel-asm"
  1647. version = "0.56.0"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "122c27ab46707017063bf1c6e0b4f3de881e22e81b4059750a0dc95033d9cc26"
  1650. dependencies = [
  1651. "bitflags 2.6.0",
  1652. "fuel-types",
  1653. "serde",
  1654. "strum 0.24.1",
  1655. ]
  1656. [[package]]
  1657. name = "fuel-core"
  1658. version = "0.35.0"
  1659. source = "registry+https://github.com/rust-lang/crates.io-index"
  1660. checksum = "023265fe375de17c0ad26ae5d01feb4841653524deab82cbc70979ea5d346b94"
  1661. dependencies = [
  1662. "anyhow",
  1663. "async-graphql",
  1664. "async-trait",
  1665. "axum",
  1666. "clap",
  1667. "derive_more",
  1668. "enum-iterator",
  1669. "fuel-core-chain-config",
  1670. "fuel-core-consensus-module",
  1671. "fuel-core-database",
  1672. "fuel-core-executor",
  1673. "fuel-core-gas-price-service",
  1674. "fuel-core-importer",
  1675. "fuel-core-metrics",
  1676. "fuel-core-p2p",
  1677. "fuel-core-poa",
  1678. "fuel-core-producer",
  1679. "fuel-core-services",
  1680. "fuel-core-storage",
  1681. "fuel-core-txpool",
  1682. "fuel-core-types",
  1683. "fuel-core-upgradable-executor",
  1684. "futures",
  1685. "hex",
  1686. "hyper",
  1687. "indicatif",
  1688. "itertools 0.12.1",
  1689. "postcard",
  1690. "rand",
  1691. "serde",
  1692. "serde_json",
  1693. "strum 0.25.0",
  1694. "strum_macros 0.25.3",
  1695. "thiserror",
  1696. "tokio",
  1697. "tokio-rayon",
  1698. "tokio-stream",
  1699. "tokio-util",
  1700. "tower-http",
  1701. "tracing",
  1702. "uuid 1.10.0",
  1703. ]
  1704. [[package]]
  1705. name = "fuel-core-chain-config"
  1706. version = "0.35.0"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "318a5a9733255cffac64a4b5acf6a7f41e438bec3ead506fc9f74730ce956528"
  1709. dependencies = [
  1710. "anyhow",
  1711. "bech32",
  1712. "derivative",
  1713. "fuel-core-storage",
  1714. "fuel-core-types",
  1715. "itertools 0.12.1",
  1716. "postcard",
  1717. "rand",
  1718. "serde",
  1719. "serde_json",
  1720. "serde_with",
  1721. "tracing",
  1722. ]
  1723. [[package]]
  1724. name = "fuel-core-client"
  1725. version = "0.35.0"
  1726. source = "registry+https://github.com/rust-lang/crates.io-index"
  1727. checksum = "03ad219bde52b072a2d828f27072982047a77cc02c953ea7e83c23de586d466d"
  1728. dependencies = [
  1729. "anyhow",
  1730. "cynic",
  1731. "derive_more",
  1732. "eventsource-client",
  1733. "fuel-core-types",
  1734. "futures",
  1735. "hex",
  1736. "hyper-rustls",
  1737. "itertools 0.12.1",
  1738. "reqwest",
  1739. "schemafy_lib",
  1740. "serde",
  1741. "serde_json",
  1742. "tai64",
  1743. "thiserror",
  1744. "tracing",
  1745. ]
  1746. [[package]]
  1747. name = "fuel-core-consensus-module"
  1748. version = "0.35.0"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "e43c7a168ee26efee5fa2fc54e4ba003b386f8f6d1f407db3e5c98bcdec6d0a2"
  1751. dependencies = [
  1752. "anyhow",
  1753. "fuel-core-chain-config",
  1754. "fuel-core-poa",
  1755. "fuel-core-storage",
  1756. "fuel-core-types",
  1757. ]
  1758. [[package]]
  1759. name = "fuel-core-database"
  1760. version = "0.35.0"
  1761. source = "registry+https://github.com/rust-lang/crates.io-index"
  1762. checksum = "8e7c0e04807ec39d71910ee1cab9c1f9eb27ee9bf05a3d8788c3db6801c6ac27"
  1763. dependencies = [
  1764. "anyhow",
  1765. "derive_more",
  1766. "fuel-core-storage",
  1767. "fuel-core-types",
  1768. ]
  1769. [[package]]
  1770. name = "fuel-core-executor"
  1771. version = "0.35.0"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "061f43f469181ac6991e83458147e3d07a503a23f48e1cedc10ea83e8700d6d8"
  1774. dependencies = [
  1775. "anyhow",
  1776. "fuel-core-storage",
  1777. "fuel-core-types",
  1778. "hex",
  1779. "parking_lot",
  1780. "serde",
  1781. "tracing",
  1782. ]
  1783. [[package]]
  1784. name = "fuel-core-gas-price-service"
  1785. version = "0.35.0"
  1786. source = "registry+https://github.com/rust-lang/crates.io-index"
  1787. checksum = "50015fb2a24f21c441a59e4e81e2a5eee3626285784119cf9346be6e37bfe199"
  1788. dependencies = [
  1789. "anyhow",
  1790. "async-trait",
  1791. "enum-iterator",
  1792. "fuel-core-services",
  1793. "fuel-core-storage",
  1794. "fuel-core-types",
  1795. "fuel-gas-price-algorithm",
  1796. "futures",
  1797. "num_enum",
  1798. "serde",
  1799. "strum 0.25.0",
  1800. "strum_macros 0.25.3",
  1801. "thiserror",
  1802. "tokio",
  1803. "tokio-stream",
  1804. "tracing",
  1805. ]
  1806. [[package]]
  1807. name = "fuel-core-importer"
  1808. version = "0.35.0"
  1809. source = "registry+https://github.com/rust-lang/crates.io-index"
  1810. checksum = "69fd6d1c72316511bd7c00084f2d8684a736dd57f97f912564d9af8ea13929c9"
  1811. dependencies = [
  1812. "anyhow",
  1813. "derive_more",
  1814. "fuel-core-metrics",
  1815. "fuel-core-storage",
  1816. "fuel-core-types",
  1817. "parking_lot",
  1818. "rayon",
  1819. "tokio",
  1820. "tracing",
  1821. ]
  1822. [[package]]
  1823. name = "fuel-core-metrics"
  1824. version = "0.35.0"
  1825. source = "registry+https://github.com/rust-lang/crates.io-index"
  1826. checksum = "88eb1bd81016b49493181b8bc29526678229350a780d4d04db137415028db179"
  1827. dependencies = [
  1828. "parking_lot",
  1829. "pin-project-lite",
  1830. "prometheus-client",
  1831. "regex",
  1832. "tracing",
  1833. ]
  1834. [[package]]
  1835. name = "fuel-core-p2p"
  1836. version = "0.35.0"
  1837. source = "registry+https://github.com/rust-lang/crates.io-index"
  1838. checksum = "fd4d69e535e914be87cb92843d4ac6b7b8b60110364f88efe8e509052368aaa3"
  1839. dependencies = [
  1840. "anyhow",
  1841. "async-trait",
  1842. "fuel-core-chain-config",
  1843. "fuel-core-metrics",
  1844. "fuel-core-services",
  1845. "fuel-core-storage",
  1846. "fuel-core-types",
  1847. "futures",
  1848. "hex",
  1849. "ip_network",
  1850. "libp2p",
  1851. "libp2p-mplex",
  1852. "postcard",
  1853. "prometheus-client",
  1854. "quick-protobuf",
  1855. "quick-protobuf-codec",
  1856. "rand",
  1857. "rayon",
  1858. "serde",
  1859. "serde_with",
  1860. "sha2 0.10.8",
  1861. "thiserror",
  1862. "tokio",
  1863. "tracing",
  1864. "void",
  1865. ]
  1866. [[package]]
  1867. name = "fuel-core-poa"
  1868. version = "0.35.0"
  1869. source = "registry+https://github.com/rust-lang/crates.io-index"
  1870. checksum = "5ef478ff684ee6c2eac57070322ba05525842670576328414da7fd6c40af4e25"
  1871. dependencies = [
  1872. "anyhow",
  1873. "async-trait",
  1874. "fuel-core-chain-config",
  1875. "fuel-core-services",
  1876. "fuel-core-storage",
  1877. "fuel-core-types",
  1878. "serde",
  1879. "serde_json",
  1880. "tokio",
  1881. "tokio-stream",
  1882. "tracing",
  1883. ]
  1884. [[package]]
  1885. name = "fuel-core-producer"
  1886. version = "0.35.0"
  1887. source = "registry+https://github.com/rust-lang/crates.io-index"
  1888. checksum = "43d09fa42cdfe3c72fe325043e6b7860586d7f34c60baaef9f4a18a13bdcc6f4"
  1889. dependencies = [
  1890. "anyhow",
  1891. "async-trait",
  1892. "derive_more",
  1893. "fuel-core-storage",
  1894. "fuel-core-types",
  1895. "tokio",
  1896. "tokio-rayon",
  1897. "tracing",
  1898. ]
  1899. [[package]]
  1900. name = "fuel-core-services"
  1901. version = "0.35.0"
  1902. source = "registry+https://github.com/rust-lang/crates.io-index"
  1903. checksum = "064b31213ea0b56f6558a0493b264cbd79e060a56de2bd35f8a10d7e78f526fa"
  1904. dependencies = [
  1905. "anyhow",
  1906. "async-trait",
  1907. "fuel-core-metrics",
  1908. "futures",
  1909. "parking_lot",
  1910. "tokio",
  1911. "tracing",
  1912. ]
  1913. [[package]]
  1914. name = "fuel-core-storage"
  1915. version = "0.35.0"
  1916. source = "registry+https://github.com/rust-lang/crates.io-index"
  1917. checksum = "f06320744b7d53bc7928d1a40a28fd697191a5b6938a353164231a3423ebdcd9"
  1918. dependencies = [
  1919. "anyhow",
  1920. "derive_more",
  1921. "enum-iterator",
  1922. "fuel-core-types",
  1923. "fuel-vm",
  1924. "impl-tools",
  1925. "itertools 0.12.1",
  1926. "mockall",
  1927. "num_enum",
  1928. "paste",
  1929. "postcard",
  1930. "primitive-types",
  1931. "rand",
  1932. "serde",
  1933. "strum 0.25.0",
  1934. "strum_macros 0.25.3",
  1935. ]
  1936. [[package]]
  1937. name = "fuel-core-txpool"
  1938. version = "0.35.0"
  1939. source = "registry+https://github.com/rust-lang/crates.io-index"
  1940. checksum = "9deaa3a9b5a2d49bf12fba5af16cc29142d58318eeb5ec8e67258d2dc1ec66ff"
  1941. dependencies = [
  1942. "anyhow",
  1943. "async-trait",
  1944. "derive_more",
  1945. "fuel-core-metrics",
  1946. "fuel-core-services",
  1947. "fuel-core-storage",
  1948. "fuel-core-types",
  1949. "mockall",
  1950. "num-rational",
  1951. "parking_lot",
  1952. "tokio",
  1953. "tokio-rayon",
  1954. "tokio-stream",
  1955. "tracing",
  1956. ]
  1957. [[package]]
  1958. name = "fuel-core-types"
  1959. version = "0.35.0"
  1960. source = "registry+https://github.com/rust-lang/crates.io-index"
  1961. checksum = "84fda0c6dc7b3bd24a993b3902f55862b8db0fa6de5b0f1d45f5942bc59792eb"
  1962. dependencies = [
  1963. "anyhow",
  1964. "bs58",
  1965. "derivative",
  1966. "derive_more",
  1967. "fuel-vm",
  1968. "rand",
  1969. "secrecy",
  1970. "serde",
  1971. "tai64",
  1972. "zeroize",
  1973. ]
  1974. [[package]]
  1975. name = "fuel-core-upgradable-executor"
  1976. version = "0.35.0"
  1977. source = "registry+https://github.com/rust-lang/crates.io-index"
  1978. checksum = "5c104eb427f63ab720ffa2cd08e35df3064753648ff5dace9853a68f7ae98e1b"
  1979. dependencies = [
  1980. "anyhow",
  1981. "derive_more",
  1982. "fuel-core-executor",
  1983. "fuel-core-storage",
  1984. "fuel-core-types",
  1985. "fuel-core-wasm-executor",
  1986. "parking_lot",
  1987. "postcard",
  1988. "tracing",
  1989. "wasmtime",
  1990. ]
  1991. [[package]]
  1992. name = "fuel-core-wasm-executor"
  1993. version = "0.35.0"
  1994. source = "registry+https://github.com/rust-lang/crates.io-index"
  1995. checksum = "5e2277ef1637329cb879d9cf370dae9fa3b23f28031eb59800f39e552b81aefe"
  1996. dependencies = [
  1997. "anyhow",
  1998. "fuel-core-executor",
  1999. "fuel-core-storage",
  2000. "fuel-core-types",
  2001. "postcard",
  2002. "serde",
  2003. ]
  2004. [[package]]
  2005. name = "fuel-crypto"
  2006. version = "0.56.0"
  2007. source = "registry+https://github.com/rust-lang/crates.io-index"
  2008. checksum = "33548590131674e8f272a3e056be4dbaa1de7cb364eab2b17987cd5c0dc31cb0"
  2009. dependencies = [
  2010. "coins-bip32",
  2011. "coins-bip39",
  2012. "ecdsa",
  2013. "ed25519-dalek",
  2014. "fuel-types",
  2015. "k256",
  2016. "lazy_static",
  2017. "p256",
  2018. "rand",
  2019. "secp256k1",
  2020. "serde",
  2021. "sha2 0.10.8",
  2022. "zeroize",
  2023. ]
  2024. [[package]]
  2025. name = "fuel-derive"
  2026. version = "0.56.0"
  2027. source = "registry+https://github.com/rust-lang/crates.io-index"
  2028. checksum = "3f49fdbfc1615d88d2849650afc2b0ac2fecd69661ebadd31a073d8416747764"
  2029. dependencies = [
  2030. "proc-macro2",
  2031. "quote",
  2032. "syn 2.0.75",
  2033. "synstructure",
  2034. ]
  2035. [[package]]
  2036. name = "fuel-gas-price-algorithm"
  2037. version = "0.35.0"
  2038. source = "registry+https://github.com/rust-lang/crates.io-index"
  2039. checksum = "9cca4572eaa61de46ba3e78c90b27bc16d13af2da165273bee66e3ac034513e2"
  2040. dependencies = [
  2041. "proptest",
  2042. "serde",
  2043. "thiserror",
  2044. ]
  2045. [[package]]
  2046. name = "fuel-merkle"
  2047. version = "0.56.0"
  2048. source = "registry+https://github.com/rust-lang/crates.io-index"
  2049. checksum = "cf17ce8ee5e8b573ea584c223635ff09f1288ad022bcf662954fdccb907602eb"
  2050. dependencies = [
  2051. "derive_more",
  2052. "digest 0.10.7",
  2053. "fuel-storage",
  2054. "hashbrown 0.13.2",
  2055. "hex",
  2056. "serde",
  2057. "sha2 0.10.8",
  2058. ]
  2059. [[package]]
  2060. name = "fuel-storage"
  2061. version = "0.56.0"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "4c1b711f28553ddc5f3546711bd220e144ce4c1af7d9e9a1f70b2f20d9f5b791"
  2064. [[package]]
  2065. name = "fuel-tx"
  2066. version = "0.56.0"
  2067. source = "registry+https://github.com/rust-lang/crates.io-index"
  2068. checksum = "13aae44611588d199dd119e4a0ebd8eb7ae4cde6bf8b4d12715610b1f5e5b731"
  2069. dependencies = [
  2070. "bitflags 2.6.0",
  2071. "derivative",
  2072. "derive_more",
  2073. "fuel-asm",
  2074. "fuel-crypto",
  2075. "fuel-merkle",
  2076. "fuel-types",
  2077. "hashbrown 0.14.5",
  2078. "itertools 0.10.5",
  2079. "postcard",
  2080. "rand",
  2081. "serde",
  2082. "serde_json",
  2083. "strum 0.24.1",
  2084. "strum_macros 0.24.3",
  2085. ]
  2086. [[package]]
  2087. name = "fuel-types"
  2088. version = "0.56.0"
  2089. source = "registry+https://github.com/rust-lang/crates.io-index"
  2090. checksum = "5b6fb26bcb408b6897e603f68cf60bbbaf6d15381c99f54a69ea743a58235ac1"
  2091. dependencies = [
  2092. "fuel-derive",
  2093. "hex",
  2094. "rand",
  2095. "serde",
  2096. ]
  2097. [[package]]
  2098. name = "fuel-vm"
  2099. version = "0.56.0"
  2100. source = "registry+https://github.com/rust-lang/crates.io-index"
  2101. checksum = "64fc4695efac9207276f6229f2dd9811848b328a13604a698f7bce1d452bd986"
  2102. dependencies = [
  2103. "anyhow",
  2104. "async-trait",
  2105. "backtrace",
  2106. "bitflags 2.6.0",
  2107. "derivative",
  2108. "derive_more",
  2109. "ethnum",
  2110. "fuel-asm",
  2111. "fuel-crypto",
  2112. "fuel-merkle",
  2113. "fuel-storage",
  2114. "fuel-tx",
  2115. "fuel-types",
  2116. "hashbrown 0.14.5",
  2117. "itertools 0.10.5",
  2118. "libm",
  2119. "paste",
  2120. "percent-encoding",
  2121. "primitive-types",
  2122. "rand",
  2123. "serde",
  2124. "serde_with",
  2125. "sha3",
  2126. "static_assertions",
  2127. "strum 0.24.1",
  2128. "tai64",
  2129. ]
  2130. [[package]]
  2131. name = "fuels"
  2132. version = "0.66.4"
  2133. source = "registry+https://github.com/rust-lang/crates.io-index"
  2134. checksum = "9699101cadc9ad3f1eff2a71532d755ab5526419414b99702e89c1d8b92b5938"
  2135. dependencies = [
  2136. "fuel-core-client",
  2137. "fuel-crypto",
  2138. "fuel-tx",
  2139. "fuels-accounts",
  2140. "fuels-core",
  2141. "fuels-macros",
  2142. "fuels-programs",
  2143. "fuels-test-helpers",
  2144. ]
  2145. [[package]]
  2146. name = "fuels-accounts"
  2147. version = "0.66.4"
  2148. source = "registry+https://github.com/rust-lang/crates.io-index"
  2149. checksum = "a3e97cf3bb16c8b6436dd6e3a6f9cea5c1ffda8daf7cdb335c60b74c31572f57"
  2150. dependencies = [
  2151. "async-trait",
  2152. "chrono",
  2153. "elliptic-curve",
  2154. "eth-keystore",
  2155. "fuel-core-client",
  2156. "fuel-core-types",
  2157. "fuel-crypto",
  2158. "fuel-tx",
  2159. "fuel-types",
  2160. "fuels-core",
  2161. "itertools 0.12.1",
  2162. "rand",
  2163. "semver",
  2164. "tai64",
  2165. "thiserror",
  2166. "tokio",
  2167. "zeroize",
  2168. ]
  2169. [[package]]
  2170. name = "fuels-code-gen"
  2171. version = "0.66.4"
  2172. source = "registry+https://github.com/rust-lang/crates.io-index"
  2173. checksum = "47552a5e8b6935595131ef38b14ef4eee8db870174ea62c8db804dbfa02f57d6"
  2174. dependencies = [
  2175. "Inflector",
  2176. "fuel-abi-types",
  2177. "itertools 0.12.1",
  2178. "proc-macro2",
  2179. "quote",
  2180. "regex",
  2181. "serde_json",
  2182. "syn 2.0.75",
  2183. ]
  2184. [[package]]
  2185. name = "fuels-core"
  2186. version = "0.66.4"
  2187. source = "registry+https://github.com/rust-lang/crates.io-index"
  2188. checksum = "b687c021466238851b07e2d39f974a614ffafc7e57dc9be00840d74c74c5febd"
  2189. dependencies = [
  2190. "async-trait",
  2191. "bech32",
  2192. "chrono",
  2193. "fuel-abi-types",
  2194. "fuel-asm",
  2195. "fuel-core-chain-config",
  2196. "fuel-core-client",
  2197. "fuel-core-types",
  2198. "fuel-crypto",
  2199. "fuel-tx",
  2200. "fuel-types",
  2201. "fuel-vm",
  2202. "fuels-macros",
  2203. "hex",
  2204. "itertools 0.12.1",
  2205. "postcard",
  2206. "serde",
  2207. "serde_json",
  2208. "thiserror",
  2209. "uint",
  2210. ]
  2211. [[package]]
  2212. name = "fuels-macros"
  2213. version = "0.66.4"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "b9dd9359ca6c0e7ad300d487e59babe03f64c6b7b169a0743d13f5c58837b589"
  2216. dependencies = [
  2217. "fuels-code-gen",
  2218. "itertools 0.12.1",
  2219. "proc-macro2",
  2220. "quote",
  2221. "syn 2.0.75",
  2222. ]
  2223. [[package]]
  2224. name = "fuels-programs"
  2225. version = "0.66.4"
  2226. source = "registry+https://github.com/rust-lang/crates.io-index"
  2227. checksum = "3288fc4b64e8f93a39b8ffa36fcaef8753232ffda5399662d28e24c172a7d00c"
  2228. dependencies = [
  2229. "async-trait",
  2230. "fuel-abi-types",
  2231. "fuel-asm",
  2232. "fuel-tx",
  2233. "fuel-types",
  2234. "fuels-accounts",
  2235. "fuels-core",
  2236. "itertools 0.12.1",
  2237. "rand",
  2238. "serde_json",
  2239. "tokio",
  2240. ]
  2241. [[package]]
  2242. name = "fuels-test-helpers"
  2243. version = "0.66.4"
  2244. source = "registry+https://github.com/rust-lang/crates.io-index"
  2245. checksum = "11e18f84f11543ab29e787e2170eeed7f390b791f16ef8be363e3700ea21833d"
  2246. dependencies = [
  2247. "fuel-core",
  2248. "fuel-core-chain-config",
  2249. "fuel-core-client",
  2250. "fuel-core-poa",
  2251. "fuel-core-services",
  2252. "fuel-core-types",
  2253. "fuel-crypto",
  2254. "fuel-tx",
  2255. "fuel-types",
  2256. "fuels-accounts",
  2257. "fuels-core",
  2258. "futures",
  2259. "portpicker",
  2260. "rand",
  2261. "tempfile",
  2262. "tokio",
  2263. "which",
  2264. ]
  2265. [[package]]
  2266. name = "funty"
  2267. version = "2.0.0"
  2268. source = "registry+https://github.com/rust-lang/crates.io-index"
  2269. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2270. [[package]]
  2271. name = "futures"
  2272. version = "0.3.30"
  2273. source = "registry+https://github.com/rust-lang/crates.io-index"
  2274. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  2275. dependencies = [
  2276. "futures-channel",
  2277. "futures-core",
  2278. "futures-executor",
  2279. "futures-io",
  2280. "futures-sink",
  2281. "futures-task",
  2282. "futures-util",
  2283. ]
  2284. [[package]]
  2285. name = "futures-bounded"
  2286. version = "0.2.4"
  2287. source = "registry+https://github.com/rust-lang/crates.io-index"
  2288. checksum = "91f328e7fb845fc832912fb6a34f40cf6d1888c92f974d1893a54e97b5ff542e"
  2289. dependencies = [
  2290. "futures-timer",
  2291. "futures-util",
  2292. ]
  2293. [[package]]
  2294. name = "futures-channel"
  2295. version = "0.3.30"
  2296. source = "registry+https://github.com/rust-lang/crates.io-index"
  2297. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  2298. dependencies = [
  2299. "futures-core",
  2300. "futures-sink",
  2301. ]
  2302. [[package]]
  2303. name = "futures-core"
  2304. version = "0.3.30"
  2305. source = "registry+https://github.com/rust-lang/crates.io-index"
  2306. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  2307. [[package]]
  2308. name = "futures-executor"
  2309. version = "0.3.30"
  2310. source = "registry+https://github.com/rust-lang/crates.io-index"
  2311. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  2312. dependencies = [
  2313. "futures-core",
  2314. "futures-task",
  2315. "futures-util",
  2316. "num_cpus",
  2317. ]
  2318. [[package]]
  2319. name = "futures-io"
  2320. version = "0.3.30"
  2321. source = "registry+https://github.com/rust-lang/crates.io-index"
  2322. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  2323. [[package]]
  2324. name = "futures-lite"
  2325. version = "2.3.0"
  2326. source = "registry+https://github.com/rust-lang/crates.io-index"
  2327. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  2328. dependencies = [
  2329. "futures-core",
  2330. "pin-project-lite",
  2331. ]
  2332. [[package]]
  2333. name = "futures-macro"
  2334. version = "0.3.30"
  2335. source = "registry+https://github.com/rust-lang/crates.io-index"
  2336. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  2337. dependencies = [
  2338. "proc-macro2",
  2339. "quote",
  2340. "syn 2.0.75",
  2341. ]
  2342. [[package]]
  2343. name = "futures-rustls"
  2344. version = "0.26.0"
  2345. source = "registry+https://github.com/rust-lang/crates.io-index"
  2346. checksum = "a8f2f12607f92c69b12ed746fabf9ca4f5c482cba46679c1a75b874ed7c26adb"
  2347. dependencies = [
  2348. "futures-io",
  2349. "rustls 0.23.12",
  2350. "rustls-pki-types",
  2351. ]
  2352. [[package]]
  2353. name = "futures-sink"
  2354. version = "0.3.30"
  2355. source = "registry+https://github.com/rust-lang/crates.io-index"
  2356. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  2357. [[package]]
  2358. name = "futures-task"
  2359. version = "0.3.30"
  2360. source = "registry+https://github.com/rust-lang/crates.io-index"
  2361. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  2362. [[package]]
  2363. name = "futures-ticker"
  2364. version = "0.0.3"
  2365. source = "registry+https://github.com/rust-lang/crates.io-index"
  2366. checksum = "9763058047f713632a52e916cc7f6a4b3fc6e9fc1ff8c5b1dc49e5a89041682e"
  2367. dependencies = [
  2368. "futures",
  2369. "futures-timer",
  2370. "instant",
  2371. ]
  2372. [[package]]
  2373. name = "futures-timer"
  2374. version = "3.0.3"
  2375. source = "registry+https://github.com/rust-lang/crates.io-index"
  2376. checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
  2377. [[package]]
  2378. name = "futures-util"
  2379. version = "0.3.30"
  2380. source = "registry+https://github.com/rust-lang/crates.io-index"
  2381. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  2382. dependencies = [
  2383. "futures-channel",
  2384. "futures-core",
  2385. "futures-io",
  2386. "futures-macro",
  2387. "futures-sink",
  2388. "futures-task",
  2389. "memchr",
  2390. "pin-project-lite",
  2391. "pin-utils",
  2392. "slab",
  2393. ]
  2394. [[package]]
  2395. name = "generic-array"
  2396. version = "0.14.7"
  2397. source = "registry+https://github.com/rust-lang/crates.io-index"
  2398. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2399. dependencies = [
  2400. "typenum",
  2401. "version_check",
  2402. "zeroize",
  2403. ]
  2404. [[package]]
  2405. name = "getrandom"
  2406. version = "0.2.15"
  2407. source = "registry+https://github.com/rust-lang/crates.io-index"
  2408. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  2409. dependencies = [
  2410. "cfg-if",
  2411. "libc",
  2412. "wasi",
  2413. ]
  2414. [[package]]
  2415. name = "ghash"
  2416. version = "0.5.1"
  2417. source = "registry+https://github.com/rust-lang/crates.io-index"
  2418. checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
  2419. dependencies = [
  2420. "opaque-debug",
  2421. "polyval",
  2422. ]
  2423. [[package]]
  2424. name = "gimli"
  2425. version = "0.28.1"
  2426. source = "registry+https://github.com/rust-lang/crates.io-index"
  2427. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  2428. dependencies = [
  2429. "fallible-iterator",
  2430. "indexmap 2.4.0",
  2431. "stable_deref_trait",
  2432. ]
  2433. [[package]]
  2434. name = "gimli"
  2435. version = "0.29.0"
  2436. source = "registry+https://github.com/rust-lang/crates.io-index"
  2437. checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
  2438. [[package]]
  2439. name = "graphql-parser"
  2440. version = "0.4.0"
  2441. source = "registry+https://github.com/rust-lang/crates.io-index"
  2442. checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474"
  2443. dependencies = [
  2444. "combine",
  2445. "thiserror",
  2446. ]
  2447. [[package]]
  2448. name = "group"
  2449. version = "0.13.0"
  2450. source = "registry+https://github.com/rust-lang/crates.io-index"
  2451. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2452. dependencies = [
  2453. "ff",
  2454. "rand_core",
  2455. "subtle",
  2456. ]
  2457. [[package]]
  2458. name = "h2"
  2459. version = "0.3.26"
  2460. source = "registry+https://github.com/rust-lang/crates.io-index"
  2461. checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
  2462. dependencies = [
  2463. "bytes",
  2464. "fnv",
  2465. "futures-core",
  2466. "futures-sink",
  2467. "futures-util",
  2468. "http 0.2.12",
  2469. "indexmap 2.4.0",
  2470. "slab",
  2471. "tokio",
  2472. "tokio-util",
  2473. "tracing",
  2474. ]
  2475. [[package]]
  2476. name = "hash32"
  2477. version = "0.2.1"
  2478. source = "registry+https://github.com/rust-lang/crates.io-index"
  2479. checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
  2480. dependencies = [
  2481. "byteorder",
  2482. ]
  2483. [[package]]
  2484. name = "hashbrown"
  2485. version = "0.12.3"
  2486. source = "registry+https://github.com/rust-lang/crates.io-index"
  2487. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2488. [[package]]
  2489. name = "hashbrown"
  2490. version = "0.13.2"
  2491. source = "registry+https://github.com/rust-lang/crates.io-index"
  2492. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  2493. dependencies = [
  2494. "ahash",
  2495. ]
  2496. [[package]]
  2497. name = "hashbrown"
  2498. version = "0.14.5"
  2499. source = "registry+https://github.com/rust-lang/crates.io-index"
  2500. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  2501. dependencies = [
  2502. "ahash",
  2503. "allocator-api2",
  2504. "serde",
  2505. ]
  2506. [[package]]
  2507. name = "heapless"
  2508. version = "0.7.17"
  2509. source = "registry+https://github.com/rust-lang/crates.io-index"
  2510. checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
  2511. dependencies = [
  2512. "atomic-polyfill",
  2513. "hash32",
  2514. "rustc_version",
  2515. "serde",
  2516. "spin 0.9.8",
  2517. "stable_deref_trait",
  2518. ]
  2519. [[package]]
  2520. name = "heck"
  2521. version = "0.4.1"
  2522. source = "registry+https://github.com/rust-lang/crates.io-index"
  2523. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2524. [[package]]
  2525. name = "heck"
  2526. version = "0.5.0"
  2527. source = "registry+https://github.com/rust-lang/crates.io-index"
  2528. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  2529. [[package]]
  2530. name = "hermit-abi"
  2531. version = "0.3.9"
  2532. source = "registry+https://github.com/rust-lang/crates.io-index"
  2533. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  2534. [[package]]
  2535. name = "hermit-abi"
  2536. version = "0.4.0"
  2537. source = "registry+https://github.com/rust-lang/crates.io-index"
  2538. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  2539. [[package]]
  2540. name = "hex"
  2541. version = "0.4.3"
  2542. source = "registry+https://github.com/rust-lang/crates.io-index"
  2543. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2544. dependencies = [
  2545. "serde",
  2546. ]
  2547. [[package]]
  2548. name = "hex_fmt"
  2549. version = "0.3.0"
  2550. source = "registry+https://github.com/rust-lang/crates.io-index"
  2551. checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  2552. [[package]]
  2553. name = "hickory-proto"
  2554. version = "0.24.1"
  2555. source = "registry+https://github.com/rust-lang/crates.io-index"
  2556. checksum = "07698b8420e2f0d6447a436ba999ec85d8fbf2a398bbd737b82cac4a2e96e512"
  2557. dependencies = [
  2558. "async-trait",
  2559. "cfg-if",
  2560. "data-encoding",
  2561. "enum-as-inner",
  2562. "futures-channel",
  2563. "futures-io",
  2564. "futures-util",
  2565. "idna 0.4.0",
  2566. "ipnet",
  2567. "once_cell",
  2568. "rand",
  2569. "socket2",
  2570. "thiserror",
  2571. "tinyvec",
  2572. "tokio",
  2573. "tracing",
  2574. "url",
  2575. ]
  2576. [[package]]
  2577. name = "hickory-resolver"
  2578. version = "0.24.1"
  2579. source = "registry+https://github.com/rust-lang/crates.io-index"
  2580. checksum = "28757f23aa75c98f254cf0405e6d8c25b831b32921b050a66692427679b1f243"
  2581. dependencies = [
  2582. "cfg-if",
  2583. "futures-util",
  2584. "hickory-proto",
  2585. "ipconfig",
  2586. "lru-cache",
  2587. "once_cell",
  2588. "parking_lot",
  2589. "rand",
  2590. "resolv-conf",
  2591. "smallvec",
  2592. "thiserror",
  2593. "tokio",
  2594. "tracing",
  2595. ]
  2596. [[package]]
  2597. name = "hkdf"
  2598. version = "0.12.4"
  2599. source = "registry+https://github.com/rust-lang/crates.io-index"
  2600. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2601. dependencies = [
  2602. "hmac 0.12.1",
  2603. ]
  2604. [[package]]
  2605. name = "hmac"
  2606. version = "0.8.1"
  2607. source = "registry+https://github.com/rust-lang/crates.io-index"
  2608. checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
  2609. dependencies = [
  2610. "crypto-mac",
  2611. "digest 0.9.0",
  2612. ]
  2613. [[package]]
  2614. name = "hmac"
  2615. version = "0.12.1"
  2616. source = "registry+https://github.com/rust-lang/crates.io-index"
  2617. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2618. dependencies = [
  2619. "digest 0.10.7",
  2620. ]
  2621. [[package]]
  2622. name = "hmac-drbg"
  2623. version = "0.3.0"
  2624. source = "registry+https://github.com/rust-lang/crates.io-index"
  2625. checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
  2626. dependencies = [
  2627. "digest 0.9.0",
  2628. "generic-array",
  2629. "hmac 0.8.1",
  2630. ]
  2631. [[package]]
  2632. name = "home"
  2633. version = "0.5.9"
  2634. source = "registry+https://github.com/rust-lang/crates.io-index"
  2635. checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
  2636. dependencies = [
  2637. "windows-sys 0.52.0",
  2638. ]
  2639. [[package]]
  2640. name = "hostname"
  2641. version = "0.3.1"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  2644. dependencies = [
  2645. "libc",
  2646. "match_cfg",
  2647. "winapi",
  2648. ]
  2649. [[package]]
  2650. name = "http"
  2651. version = "0.2.12"
  2652. source = "registry+https://github.com/rust-lang/crates.io-index"
  2653. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  2654. dependencies = [
  2655. "bytes",
  2656. "fnv",
  2657. "itoa",
  2658. ]
  2659. [[package]]
  2660. name = "http"
  2661. version = "1.1.0"
  2662. source = "registry+https://github.com/rust-lang/crates.io-index"
  2663. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  2664. dependencies = [
  2665. "bytes",
  2666. "fnv",
  2667. "itoa",
  2668. ]
  2669. [[package]]
  2670. name = "http-body"
  2671. version = "0.4.6"
  2672. source = "registry+https://github.com/rust-lang/crates.io-index"
  2673. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  2674. dependencies = [
  2675. "bytes",
  2676. "http 0.2.12",
  2677. "pin-project-lite",
  2678. ]
  2679. [[package]]
  2680. name = "http-range-header"
  2681. version = "0.3.1"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
  2684. [[package]]
  2685. name = "httparse"
  2686. version = "1.9.4"
  2687. source = "registry+https://github.com/rust-lang/crates.io-index"
  2688. checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
  2689. [[package]]
  2690. name = "httpdate"
  2691. version = "1.0.3"
  2692. source = "registry+https://github.com/rust-lang/crates.io-index"
  2693. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  2694. [[package]]
  2695. name = "hyper"
  2696. version = "0.14.30"
  2697. source = "registry+https://github.com/rust-lang/crates.io-index"
  2698. checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
  2699. dependencies = [
  2700. "bytes",
  2701. "futures-channel",
  2702. "futures-core",
  2703. "futures-util",
  2704. "h2",
  2705. "http 0.2.12",
  2706. "http-body",
  2707. "httparse",
  2708. "httpdate",
  2709. "itoa",
  2710. "pin-project-lite",
  2711. "socket2",
  2712. "tokio",
  2713. "tower-service",
  2714. "tracing",
  2715. "want",
  2716. ]
  2717. [[package]]
  2718. name = "hyper-rustls"
  2719. version = "0.24.2"
  2720. source = "registry+https://github.com/rust-lang/crates.io-index"
  2721. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  2722. dependencies = [
  2723. "futures-util",
  2724. "http 0.2.12",
  2725. "hyper",
  2726. "log",
  2727. "rustls 0.21.12",
  2728. "rustls-native-certs",
  2729. "tokio",
  2730. "tokio-rustls",
  2731. "webpki-roots",
  2732. ]
  2733. [[package]]
  2734. name = "hyper-timeout"
  2735. version = "0.4.1"
  2736. source = "registry+https://github.com/rust-lang/crates.io-index"
  2737. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  2738. dependencies = [
  2739. "hyper",
  2740. "pin-project-lite",
  2741. "tokio",
  2742. "tokio-io-timeout",
  2743. ]
  2744. [[package]]
  2745. name = "hyper-tls"
  2746. version = "0.5.0"
  2747. source = "registry+https://github.com/rust-lang/crates.io-index"
  2748. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  2749. dependencies = [
  2750. "bytes",
  2751. "hyper",
  2752. "native-tls",
  2753. "tokio",
  2754. "tokio-native-tls",
  2755. ]
  2756. [[package]]
  2757. name = "iana-time-zone"
  2758. version = "0.1.60"
  2759. source = "registry+https://github.com/rust-lang/crates.io-index"
  2760. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  2761. dependencies = [
  2762. "android_system_properties",
  2763. "core-foundation-sys",
  2764. "iana-time-zone-haiku",
  2765. "js-sys",
  2766. "wasm-bindgen",
  2767. "windows-core 0.52.0",
  2768. ]
  2769. [[package]]
  2770. name = "iana-time-zone-haiku"
  2771. version = "0.1.2"
  2772. source = "registry+https://github.com/rust-lang/crates.io-index"
  2773. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2774. dependencies = [
  2775. "cc",
  2776. ]
  2777. [[package]]
  2778. name = "id-arena"
  2779. version = "2.2.1"
  2780. source = "registry+https://github.com/rust-lang/crates.io-index"
  2781. checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
  2782. [[package]]
  2783. name = "ident_case"
  2784. version = "1.0.1"
  2785. source = "registry+https://github.com/rust-lang/crates.io-index"
  2786. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2787. [[package]]
  2788. name = "idna"
  2789. version = "0.3.0"
  2790. source = "registry+https://github.com/rust-lang/crates.io-index"
  2791. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  2792. dependencies = [
  2793. "unicode-bidi",
  2794. "unicode-normalization",
  2795. ]
  2796. [[package]]
  2797. name = "idna"
  2798. version = "0.4.0"
  2799. source = "registry+https://github.com/rust-lang/crates.io-index"
  2800. checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
  2801. dependencies = [
  2802. "unicode-bidi",
  2803. "unicode-normalization",
  2804. ]
  2805. [[package]]
  2806. name = "idna"
  2807. version = "0.5.0"
  2808. source = "registry+https://github.com/rust-lang/crates.io-index"
  2809. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  2810. dependencies = [
  2811. "unicode-bidi",
  2812. "unicode-normalization",
  2813. ]
  2814. [[package]]
  2815. name = "ieee754"
  2816. version = "0.2.6"
  2817. source = "registry+https://github.com/rust-lang/crates.io-index"
  2818. checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
  2819. [[package]]
  2820. name = "if-addrs"
  2821. version = "0.10.2"
  2822. source = "registry+https://github.com/rust-lang/crates.io-index"
  2823. checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a"
  2824. dependencies = [
  2825. "libc",
  2826. "windows-sys 0.48.0",
  2827. ]
  2828. [[package]]
  2829. name = "if-watch"
  2830. version = "3.2.0"
  2831. source = "registry+https://github.com/rust-lang/crates.io-index"
  2832. checksum = "d6b0422c86d7ce0e97169cc42e04ae643caf278874a7a3c87b8150a220dc7e1e"
  2833. dependencies = [
  2834. "async-io",
  2835. "core-foundation",
  2836. "fnv",
  2837. "futures",
  2838. "if-addrs",
  2839. "ipnet",
  2840. "log",
  2841. "rtnetlink",
  2842. "system-configuration",
  2843. "tokio",
  2844. "windows",
  2845. ]
  2846. [[package]]
  2847. name = "igd-next"
  2848. version = "0.14.3"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "064d90fec10d541084e7b39ead8875a5a80d9114a2b18791565253bae25f49e4"
  2851. dependencies = [
  2852. "async-trait",
  2853. "attohttpc",
  2854. "bytes",
  2855. "futures",
  2856. "http 0.2.12",
  2857. "hyper",
  2858. "log",
  2859. "rand",
  2860. "tokio",
  2861. "url",
  2862. "xmltree",
  2863. ]
  2864. [[package]]
  2865. name = "impl-tools"
  2866. version = "0.10.0"
  2867. source = "registry+https://github.com/rust-lang/crates.io-index"
  2868. checksum = "d82c305b1081f1a99fda262883c788e50ab57d36c00830bdd7e0a82894ad965c"
  2869. dependencies = [
  2870. "autocfg",
  2871. "impl-tools-lib",
  2872. "proc-macro-error",
  2873. "syn 2.0.75",
  2874. ]
  2875. [[package]]
  2876. name = "impl-tools-lib"
  2877. version = "0.10.0"
  2878. source = "registry+https://github.com/rust-lang/crates.io-index"
  2879. checksum = "85d3946d886eaab0702fa0c6585adcced581513223fa9df7ccfabbd9fa331a88"
  2880. dependencies = [
  2881. "proc-macro-error",
  2882. "proc-macro2",
  2883. "quote",
  2884. "syn 2.0.75",
  2885. ]
  2886. [[package]]
  2887. name = "indexmap"
  2888. version = "1.9.3"
  2889. source = "registry+https://github.com/rust-lang/crates.io-index"
  2890. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2891. dependencies = [
  2892. "autocfg",
  2893. "hashbrown 0.12.3",
  2894. "serde",
  2895. ]
  2896. [[package]]
  2897. name = "indexmap"
  2898. version = "2.4.0"
  2899. source = "registry+https://github.com/rust-lang/crates.io-index"
  2900. checksum = "93ead53efc7ea8ed3cfb0c79fc8023fbb782a5432b52830b6518941cebe6505c"
  2901. dependencies = [
  2902. "equivalent",
  2903. "hashbrown 0.14.5",
  2904. "serde",
  2905. ]
  2906. [[package]]
  2907. name = "indicatif"
  2908. version = "0.17.8"
  2909. source = "registry+https://github.com/rust-lang/crates.io-index"
  2910. checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
  2911. dependencies = [
  2912. "console",
  2913. "instant",
  2914. "number_prefix",
  2915. "portable-atomic",
  2916. "unicode-width",
  2917. ]
  2918. [[package]]
  2919. name = "inout"
  2920. version = "0.1.3"
  2921. source = "registry+https://github.com/rust-lang/crates.io-index"
  2922. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2923. dependencies = [
  2924. "generic-array",
  2925. ]
  2926. [[package]]
  2927. name = "instant"
  2928. version = "0.1.13"
  2929. source = "registry+https://github.com/rust-lang/crates.io-index"
  2930. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2931. dependencies = [
  2932. "cfg-if",
  2933. ]
  2934. [[package]]
  2935. name = "ip_network"
  2936. version = "0.4.1"
  2937. source = "registry+https://github.com/rust-lang/crates.io-index"
  2938. checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
  2939. [[package]]
  2940. name = "ipconfig"
  2941. version = "0.3.2"
  2942. source = "registry+https://github.com/rust-lang/crates.io-index"
  2943. checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
  2944. dependencies = [
  2945. "socket2",
  2946. "widestring",
  2947. "windows-sys 0.48.0",
  2948. "winreg",
  2949. ]
  2950. [[package]]
  2951. name = "ipnet"
  2952. version = "2.9.0"
  2953. source = "registry+https://github.com/rust-lang/crates.io-index"
  2954. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  2955. [[package]]
  2956. name = "is_terminal_polyfill"
  2957. version = "1.70.1"
  2958. source = "registry+https://github.com/rust-lang/crates.io-index"
  2959. checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
  2960. [[package]]
  2961. name = "itertools"
  2962. version = "0.10.5"
  2963. source = "registry+https://github.com/rust-lang/crates.io-index"
  2964. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2965. dependencies = [
  2966. "either",
  2967. ]
  2968. [[package]]
  2969. name = "itertools"
  2970. version = "0.12.1"
  2971. source = "registry+https://github.com/rust-lang/crates.io-index"
  2972. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2973. dependencies = [
  2974. "either",
  2975. ]
  2976. [[package]]
  2977. name = "itoa"
  2978. version = "1.0.11"
  2979. source = "registry+https://github.com/rust-lang/crates.io-index"
  2980. checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
  2981. [[package]]
  2982. name = "jobserver"
  2983. version = "0.1.32"
  2984. source = "registry+https://github.com/rust-lang/crates.io-index"
  2985. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  2986. dependencies = [
  2987. "libc",
  2988. ]
  2989. [[package]]
  2990. name = "js-sys"
  2991. version = "0.3.70"
  2992. source = "registry+https://github.com/rust-lang/crates.io-index"
  2993. checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
  2994. dependencies = [
  2995. "wasm-bindgen",
  2996. ]
  2997. [[package]]
  2998. name = "k256"
  2999. version = "0.13.3"
  3000. source = "registry+https://github.com/rust-lang/crates.io-index"
  3001. checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b"
  3002. dependencies = [
  3003. "cfg-if",
  3004. "ecdsa",
  3005. "elliptic-curve",
  3006. "once_cell",
  3007. "sha2 0.10.8",
  3008. "signature",
  3009. ]
  3010. [[package]]
  3011. name = "keccak"
  3012. version = "0.1.5"
  3013. source = "registry+https://github.com/rust-lang/crates.io-index"
  3014. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  3015. dependencies = [
  3016. "cpufeatures",
  3017. ]
  3018. [[package]]
  3019. name = "lazy_static"
  3020. version = "1.5.0"
  3021. source = "registry+https://github.com/rust-lang/crates.io-index"
  3022. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  3023. [[package]]
  3024. name = "leb128"
  3025. version = "0.2.5"
  3026. source = "registry+https://github.com/rust-lang/crates.io-index"
  3027. checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
  3028. [[package]]
  3029. name = "libc"
  3030. version = "0.2.158"
  3031. source = "registry+https://github.com/rust-lang/crates.io-index"
  3032. checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
  3033. [[package]]
  3034. name = "libm"
  3035. version = "0.2.8"
  3036. source = "registry+https://github.com/rust-lang/crates.io-index"
  3037. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  3038. [[package]]
  3039. name = "libp2p"
  3040. version = "0.53.2"
  3041. source = "registry+https://github.com/rust-lang/crates.io-index"
  3042. checksum = "681fb3f183edfbedd7a57d32ebe5dcdc0b9f94061185acf3c30249349cc6fc99"
  3043. dependencies = [
  3044. "bytes",
  3045. "either",
  3046. "futures",
  3047. "futures-timer",
  3048. "getrandom",
  3049. "instant",
  3050. "libp2p-allow-block-list",
  3051. "libp2p-connection-limits",
  3052. "libp2p-core",
  3053. "libp2p-dns",
  3054. "libp2p-gossipsub",
  3055. "libp2p-identify",
  3056. "libp2p-identity",
  3057. "libp2p-kad",
  3058. "libp2p-mdns",
  3059. "libp2p-metrics",
  3060. "libp2p-noise",
  3061. "libp2p-quic",
  3062. "libp2p-request-response",
  3063. "libp2p-swarm",
  3064. "libp2p-tcp",
  3065. "libp2p-upnp",
  3066. "libp2p-websocket",
  3067. "libp2p-yamux",
  3068. "multiaddr",
  3069. "pin-project",
  3070. "rw-stream-sink",
  3071. "thiserror",
  3072. ]
  3073. [[package]]
  3074. name = "libp2p-allow-block-list"
  3075. version = "0.3.0"
  3076. source = "registry+https://github.com/rust-lang/crates.io-index"
  3077. checksum = "107b238b794cb83ab53b74ad5dcf7cca3200899b72fe662840cfb52f5b0a32e6"
  3078. dependencies = [
  3079. "libp2p-core",
  3080. "libp2p-identity",
  3081. "libp2p-swarm",
  3082. "void",
  3083. ]
  3084. [[package]]
  3085. name = "libp2p-connection-limits"
  3086. version = "0.3.1"
  3087. source = "registry+https://github.com/rust-lang/crates.io-index"
  3088. checksum = "c7cd50a78ccfada14de94cbacd3ce4b0138157f376870f13d3a8422cd075b4fd"
  3089. dependencies = [
  3090. "libp2p-core",
  3091. "libp2p-identity",
  3092. "libp2p-swarm",
  3093. "void",
  3094. ]
  3095. [[package]]
  3096. name = "libp2p-core"
  3097. version = "0.41.3"
  3098. source = "registry+https://github.com/rust-lang/crates.io-index"
  3099. checksum = "a5a8920cbd8540059a01950c1e5c96ea8d89eb50c51cd366fc18bdf540a6e48f"
  3100. dependencies = [
  3101. "either",
  3102. "fnv",
  3103. "futures",
  3104. "futures-timer",
  3105. "libp2p-identity",
  3106. "multiaddr",
  3107. "multihash",
  3108. "multistream-select",
  3109. "once_cell",
  3110. "parking_lot",
  3111. "pin-project",
  3112. "quick-protobuf",
  3113. "rand",
  3114. "rw-stream-sink",
  3115. "smallvec",
  3116. "thiserror",
  3117. "tracing",
  3118. "unsigned-varint 0.8.0",
  3119. "void",
  3120. "web-time",
  3121. ]
  3122. [[package]]
  3123. name = "libp2p-dns"
  3124. version = "0.41.1"
  3125. source = "registry+https://github.com/rust-lang/crates.io-index"
  3126. checksum = "d17cbcf7160ff35c3e8e560de4a068fe9d6cb777ea72840e48eb76ff9576c4b6"
  3127. dependencies = [
  3128. "async-trait",
  3129. "futures",
  3130. "hickory-resolver",
  3131. "libp2p-core",
  3132. "libp2p-identity",
  3133. "parking_lot",
  3134. "smallvec",
  3135. "tracing",
  3136. ]
  3137. [[package]]
  3138. name = "libp2p-gossipsub"
  3139. version = "0.46.1"
  3140. source = "registry+https://github.com/rust-lang/crates.io-index"
  3141. checksum = "d665144a616dadebdc5fff186b1233488cdcd8bfb1223218ff084b6d052c94f7"
  3142. dependencies = [
  3143. "asynchronous-codec 0.7.0",
  3144. "base64 0.21.7",
  3145. "byteorder",
  3146. "bytes",
  3147. "either",
  3148. "fnv",
  3149. "futures",
  3150. "futures-ticker",
  3151. "getrandom",
  3152. "hex_fmt",
  3153. "instant",
  3154. "libp2p-core",
  3155. "libp2p-identity",
  3156. "libp2p-swarm",
  3157. "prometheus-client",
  3158. "quick-protobuf",
  3159. "quick-protobuf-codec",
  3160. "rand",
  3161. "regex",
  3162. "sha2 0.10.8",
  3163. "smallvec",
  3164. "tracing",
  3165. "void",
  3166. ]
  3167. [[package]]
  3168. name = "libp2p-identify"
  3169. version = "0.44.2"
  3170. source = "registry+https://github.com/rust-lang/crates.io-index"
  3171. checksum = "b5d635ebea5ca0c3c3e77d414ae9b67eccf2a822be06091b9c1a0d13029a1e2f"
  3172. dependencies = [
  3173. "asynchronous-codec 0.7.0",
  3174. "either",
  3175. "futures",
  3176. "futures-bounded",
  3177. "futures-timer",
  3178. "libp2p-core",
  3179. "libp2p-identity",
  3180. "libp2p-swarm",
  3181. "lru",
  3182. "quick-protobuf",
  3183. "quick-protobuf-codec",
  3184. "smallvec",
  3185. "thiserror",
  3186. "tracing",
  3187. "void",
  3188. ]
  3189. [[package]]
  3190. name = "libp2p-identity"
  3191. version = "0.2.9"
  3192. source = "registry+https://github.com/rust-lang/crates.io-index"
  3193. checksum = "55cca1eb2bc1fd29f099f3daaab7effd01e1a54b7c577d0ed082521034d912e8"
  3194. dependencies = [
  3195. "asn1_der",
  3196. "bs58",
  3197. "ed25519-dalek",
  3198. "hkdf",
  3199. "libsecp256k1",
  3200. "multihash",
  3201. "quick-protobuf",
  3202. "rand",
  3203. "sha2 0.10.8",
  3204. "thiserror",
  3205. "tracing",
  3206. "zeroize",
  3207. ]
  3208. [[package]]
  3209. name = "libp2p-kad"
  3210. version = "0.45.3"
  3211. source = "registry+https://github.com/rust-lang/crates.io-index"
  3212. checksum = "5cc5767727d062c4eac74dd812c998f0e488008e82cce9c33b463d38423f9ad2"
  3213. dependencies = [
  3214. "arrayvec",
  3215. "asynchronous-codec 0.7.0",
  3216. "bytes",
  3217. "either",
  3218. "fnv",
  3219. "futures",
  3220. "futures-bounded",
  3221. "futures-timer",
  3222. "instant",
  3223. "libp2p-core",
  3224. "libp2p-identity",
  3225. "libp2p-swarm",
  3226. "quick-protobuf",
  3227. "quick-protobuf-codec",
  3228. "rand",
  3229. "sha2 0.10.8",
  3230. "smallvec",
  3231. "thiserror",
  3232. "tracing",
  3233. "uint",
  3234. "void",
  3235. ]
  3236. [[package]]
  3237. name = "libp2p-mdns"
  3238. version = "0.45.1"
  3239. source = "registry+https://github.com/rust-lang/crates.io-index"
  3240. checksum = "49007d9a339b3e1d7eeebc4d67c05dbf23d300b7d091193ec2d3f26802d7faf2"
  3241. dependencies = [
  3242. "data-encoding",
  3243. "futures",
  3244. "hickory-proto",
  3245. "if-watch",
  3246. "libp2p-core",
  3247. "libp2p-identity",
  3248. "libp2p-swarm",
  3249. "rand",
  3250. "smallvec",
  3251. "socket2",
  3252. "tokio",
  3253. "tracing",
  3254. "void",
  3255. ]
  3256. [[package]]
  3257. name = "libp2p-metrics"
  3258. version = "0.14.1"
  3259. source = "registry+https://github.com/rust-lang/crates.io-index"
  3260. checksum = "fdac91ae4f291046a3b2660c039a2830c931f84df2ee227989af92f7692d3357"
  3261. dependencies = [
  3262. "futures",
  3263. "instant",
  3264. "libp2p-core",
  3265. "libp2p-gossipsub",
  3266. "libp2p-identify",
  3267. "libp2p-identity",
  3268. "libp2p-kad",
  3269. "libp2p-swarm",
  3270. "pin-project",
  3271. "prometheus-client",
  3272. ]
  3273. [[package]]
  3274. name = "libp2p-mplex"
  3275. version = "0.41.0"
  3276. source = "registry+https://github.com/rust-lang/crates.io-index"
  3277. checksum = "a5e895765e27e30217b25f7cb7ac4686dad1ff80bf2fdeffd1d898566900a924"
  3278. dependencies = [
  3279. "asynchronous-codec 0.6.2",
  3280. "bytes",
  3281. "futures",
  3282. "libp2p-core",
  3283. "libp2p-identity",
  3284. "nohash-hasher",
  3285. "parking_lot",
  3286. "rand",
  3287. "smallvec",
  3288. "tracing",
  3289. "unsigned-varint 0.7.2",
  3290. ]
  3291. [[package]]
  3292. name = "libp2p-noise"
  3293. version = "0.44.0"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "8ecd0545ce077f6ea5434bcb76e8d0fe942693b4380aaad0d34a358c2bd05793"
  3296. dependencies = [
  3297. "asynchronous-codec 0.7.0",
  3298. "bytes",
  3299. "curve25519-dalek",
  3300. "futures",
  3301. "libp2p-core",
  3302. "libp2p-identity",
  3303. "multiaddr",
  3304. "multihash",
  3305. "once_cell",
  3306. "quick-protobuf",
  3307. "rand",
  3308. "sha2 0.10.8",
  3309. "snow",
  3310. "static_assertions",
  3311. "thiserror",
  3312. "tracing",
  3313. "x25519-dalek",
  3314. "zeroize",
  3315. ]
  3316. [[package]]
  3317. name = "libp2p-quic"
  3318. version = "0.10.3"
  3319. source = "registry+https://github.com/rust-lang/crates.io-index"
  3320. checksum = "c67296ad4e092e23f92aea3d2bdb6f24eab79c0929ed816dfb460ea2f4567d2b"
  3321. dependencies = [
  3322. "bytes",
  3323. "futures",
  3324. "futures-timer",
  3325. "if-watch",
  3326. "libp2p-core",
  3327. "libp2p-identity",
  3328. "libp2p-tls",
  3329. "parking_lot",
  3330. "quinn",
  3331. "rand",
  3332. "ring 0.17.8",
  3333. "rustls 0.23.12",
  3334. "socket2",
  3335. "thiserror",
  3336. "tokio",
  3337. "tracing",
  3338. ]
  3339. [[package]]
  3340. name = "libp2p-request-response"
  3341. version = "0.26.3"
  3342. source = "registry+https://github.com/rust-lang/crates.io-index"
  3343. checksum = "c314fe28368da5e3a262553fb0ad575c1c8934c461e10de10265551478163836"
  3344. dependencies = [
  3345. "async-trait",
  3346. "futures",
  3347. "futures-bounded",
  3348. "futures-timer",
  3349. "instant",
  3350. "libp2p-core",
  3351. "libp2p-identity",
  3352. "libp2p-swarm",
  3353. "rand",
  3354. "smallvec",
  3355. "tracing",
  3356. "void",
  3357. ]
  3358. [[package]]
  3359. name = "libp2p-swarm"
  3360. version = "0.44.2"
  3361. source = "registry+https://github.com/rust-lang/crates.io-index"
  3362. checksum = "80cae6cb75f89dbca53862f9ebe0b9f463aa7b302762fcfaafb9e51dcc9b0f7e"
  3363. dependencies = [
  3364. "either",
  3365. "fnv",
  3366. "futures",
  3367. "futures-timer",
  3368. "instant",
  3369. "libp2p-core",
  3370. "libp2p-identity",
  3371. "libp2p-swarm-derive",
  3372. "lru",
  3373. "multistream-select",
  3374. "once_cell",
  3375. "rand",
  3376. "smallvec",
  3377. "tokio",
  3378. "tracing",
  3379. "void",
  3380. ]
  3381. [[package]]
  3382. name = "libp2p-swarm-derive"
  3383. version = "0.34.2"
  3384. source = "registry+https://github.com/rust-lang/crates.io-index"
  3385. checksum = "5daceb9dd908417b6dfcfe8e94098bc4aac54500c282e78120b885dadc09b999"
  3386. dependencies = [
  3387. "heck 0.5.0",
  3388. "proc-macro2",
  3389. "quote",
  3390. "syn 2.0.75",
  3391. ]
  3392. [[package]]
  3393. name = "libp2p-tcp"
  3394. version = "0.41.0"
  3395. source = "registry+https://github.com/rust-lang/crates.io-index"
  3396. checksum = "8b2460fc2748919adff99ecbc1aab296e4579e41f374fb164149bd2c9e529d4c"
  3397. dependencies = [
  3398. "futures",
  3399. "futures-timer",
  3400. "if-watch",
  3401. "libc",
  3402. "libp2p-core",
  3403. "libp2p-identity",
  3404. "socket2",
  3405. "tokio",
  3406. "tracing",
  3407. ]
  3408. [[package]]
  3409. name = "libp2p-tls"
  3410. version = "0.4.1"
  3411. source = "registry+https://github.com/rust-lang/crates.io-index"
  3412. checksum = "72b7b831e55ce2aa6c354e6861a85fdd4dd0a2b97d5e276fabac0e4810a71776"
  3413. dependencies = [
  3414. "futures",
  3415. "futures-rustls",
  3416. "libp2p-core",
  3417. "libp2p-identity",
  3418. "rcgen",
  3419. "ring 0.17.8",
  3420. "rustls 0.23.12",
  3421. "rustls-webpki 0.101.7",
  3422. "thiserror",
  3423. "x509-parser",
  3424. "yasna",
  3425. ]
  3426. [[package]]
  3427. name = "libp2p-upnp"
  3428. version = "0.2.2"
  3429. source = "registry+https://github.com/rust-lang/crates.io-index"
  3430. checksum = "cccf04b0e3ff3de52d07d5fd6c3b061d0e7f908ffc683c32d9638caedce86fc8"
  3431. dependencies = [
  3432. "futures",
  3433. "futures-timer",
  3434. "igd-next",
  3435. "libp2p-core",
  3436. "libp2p-swarm",
  3437. "tokio",
  3438. "tracing",
  3439. "void",
  3440. ]
  3441. [[package]]
  3442. name = "libp2p-websocket"
  3443. version = "0.43.2"
  3444. source = "registry+https://github.com/rust-lang/crates.io-index"
  3445. checksum = "85b953b6803a1f3161a989538974d72511c4e48a4af355337b6fb90723c56c05"
  3446. dependencies = [
  3447. "either",
  3448. "futures",
  3449. "futures-rustls",
  3450. "libp2p-core",
  3451. "libp2p-identity",
  3452. "parking_lot",
  3453. "pin-project-lite",
  3454. "rw-stream-sink",
  3455. "soketto",
  3456. "thiserror",
  3457. "tracing",
  3458. "url",
  3459. "webpki-roots",
  3460. ]
  3461. [[package]]
  3462. name = "libp2p-yamux"
  3463. version = "0.45.2"
  3464. source = "registry+https://github.com/rust-lang/crates.io-index"
  3465. checksum = "ddd5265f6b80f94d48a3963541aad183cc598a645755d2f1805a373e41e0716b"
  3466. dependencies = [
  3467. "either",
  3468. "futures",
  3469. "libp2p-core",
  3470. "thiserror",
  3471. "tracing",
  3472. "yamux 0.12.1",
  3473. "yamux 0.13.3",
  3474. ]
  3475. [[package]]
  3476. name = "libredox"
  3477. version = "0.1.3"
  3478. source = "registry+https://github.com/rust-lang/crates.io-index"
  3479. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  3480. dependencies = [
  3481. "bitflags 2.6.0",
  3482. "libc",
  3483. ]
  3484. [[package]]
  3485. name = "libsecp256k1"
  3486. version = "0.7.1"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1"
  3489. dependencies = [
  3490. "arrayref",
  3491. "base64 0.13.1",
  3492. "digest 0.9.0",
  3493. "hmac-drbg",
  3494. "libsecp256k1-core",
  3495. "libsecp256k1-gen-ecmult",
  3496. "libsecp256k1-gen-genmult",
  3497. "rand",
  3498. "serde",
  3499. "sha2 0.9.9",
  3500. "typenum",
  3501. ]
  3502. [[package]]
  3503. name = "libsecp256k1-core"
  3504. version = "0.3.0"
  3505. source = "registry+https://github.com/rust-lang/crates.io-index"
  3506. checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"
  3507. dependencies = [
  3508. "crunchy",
  3509. "digest 0.9.0",
  3510. "subtle",
  3511. ]
  3512. [[package]]
  3513. name = "libsecp256k1-gen-ecmult"
  3514. version = "0.3.0"
  3515. source = "registry+https://github.com/rust-lang/crates.io-index"
  3516. checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809"
  3517. dependencies = [
  3518. "libsecp256k1-core",
  3519. ]
  3520. [[package]]
  3521. name = "libsecp256k1-gen-genmult"
  3522. version = "0.3.0"
  3523. source = "registry+https://github.com/rust-lang/crates.io-index"
  3524. checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c"
  3525. dependencies = [
  3526. "libsecp256k1-core",
  3527. ]
  3528. [[package]]
  3529. name = "linked-hash-map"
  3530. version = "0.5.6"
  3531. source = "registry+https://github.com/rust-lang/crates.io-index"
  3532. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  3533. [[package]]
  3534. name = "linux-raw-sys"
  3535. version = "0.4.14"
  3536. source = "registry+https://github.com/rust-lang/crates.io-index"
  3537. checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
  3538. [[package]]
  3539. name = "lock_api"
  3540. version = "0.4.12"
  3541. source = "registry+https://github.com/rust-lang/crates.io-index"
  3542. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  3543. dependencies = [
  3544. "autocfg",
  3545. "scopeguard",
  3546. ]
  3547. [[package]]
  3548. name = "log"
  3549. version = "0.4.22"
  3550. source = "registry+https://github.com/rust-lang/crates.io-index"
  3551. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  3552. [[package]]
  3553. name = "lru"
  3554. version = "0.12.4"
  3555. source = "registry+https://github.com/rust-lang/crates.io-index"
  3556. checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
  3557. dependencies = [
  3558. "hashbrown 0.14.5",
  3559. ]
  3560. [[package]]
  3561. name = "lru-cache"
  3562. version = "0.1.2"
  3563. source = "registry+https://github.com/rust-lang/crates.io-index"
  3564. checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  3565. dependencies = [
  3566. "linked-hash-map",
  3567. ]
  3568. [[package]]
  3569. name = "mach2"
  3570. version = "0.4.2"
  3571. source = "registry+https://github.com/rust-lang/crates.io-index"
  3572. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  3573. dependencies = [
  3574. "libc",
  3575. ]
  3576. [[package]]
  3577. name = "match_cfg"
  3578. version = "0.1.0"
  3579. source = "registry+https://github.com/rust-lang/crates.io-index"
  3580. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  3581. [[package]]
  3582. name = "matchit"
  3583. version = "0.5.0"
  3584. source = "registry+https://github.com/rust-lang/crates.io-index"
  3585. checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb"
  3586. [[package]]
  3587. name = "memchr"
  3588. version = "2.7.4"
  3589. source = "registry+https://github.com/rust-lang/crates.io-index"
  3590. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  3591. [[package]]
  3592. name = "memfd"
  3593. version = "0.6.4"
  3594. source = "registry+https://github.com/rust-lang/crates.io-index"
  3595. checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
  3596. dependencies = [
  3597. "rustix",
  3598. ]
  3599. [[package]]
  3600. name = "mime"
  3601. version = "0.3.17"
  3602. source = "registry+https://github.com/rust-lang/crates.io-index"
  3603. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  3604. [[package]]
  3605. name = "minimal-lexical"
  3606. version = "0.2.1"
  3607. source = "registry+https://github.com/rust-lang/crates.io-index"
  3608. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  3609. [[package]]
  3610. name = "miniz_oxide"
  3611. version = "0.7.4"
  3612. source = "registry+https://github.com/rust-lang/crates.io-index"
  3613. checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
  3614. dependencies = [
  3615. "adler",
  3616. ]
  3617. [[package]]
  3618. name = "mio"
  3619. version = "1.0.2"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
  3622. dependencies = [
  3623. "hermit-abi 0.3.9",
  3624. "libc",
  3625. "wasi",
  3626. "windows-sys 0.52.0",
  3627. ]
  3628. [[package]]
  3629. name = "mockall"
  3630. version = "0.11.4"
  3631. source = "registry+https://github.com/rust-lang/crates.io-index"
  3632. checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96"
  3633. dependencies = [
  3634. "cfg-if",
  3635. "downcast",
  3636. "fragile",
  3637. "lazy_static",
  3638. "mockall_derive",
  3639. "predicates",
  3640. "predicates-tree",
  3641. ]
  3642. [[package]]
  3643. name = "mockall_derive"
  3644. version = "0.11.4"
  3645. source = "registry+https://github.com/rust-lang/crates.io-index"
  3646. checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb"
  3647. dependencies = [
  3648. "cfg-if",
  3649. "proc-macro2",
  3650. "quote",
  3651. "syn 1.0.109",
  3652. ]
  3653. [[package]]
  3654. name = "multer"
  3655. version = "3.1.0"
  3656. source = "registry+https://github.com/rust-lang/crates.io-index"
  3657. checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
  3658. dependencies = [
  3659. "bytes",
  3660. "encoding_rs",
  3661. "futures-util",
  3662. "http 1.1.0",
  3663. "httparse",
  3664. "memchr",
  3665. "mime",
  3666. "spin 0.9.8",
  3667. "version_check",
  3668. ]
  3669. [[package]]
  3670. name = "multiaddr"
  3671. version = "0.18.1"
  3672. source = "registry+https://github.com/rust-lang/crates.io-index"
  3673. checksum = "8b852bc02a2da5feed68cd14fa50d0774b92790a5bdbfa932a813926c8472070"
  3674. dependencies = [
  3675. "arrayref",
  3676. "byteorder",
  3677. "data-encoding",
  3678. "libp2p-identity",
  3679. "multibase",
  3680. "multihash",
  3681. "percent-encoding",
  3682. "serde",
  3683. "static_assertions",
  3684. "unsigned-varint 0.7.2",
  3685. "url",
  3686. ]
  3687. [[package]]
  3688. name = "multibase"
  3689. version = "0.9.1"
  3690. source = "registry+https://github.com/rust-lang/crates.io-index"
  3691. checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404"
  3692. dependencies = [
  3693. "base-x",
  3694. "data-encoding",
  3695. "data-encoding-macro",
  3696. ]
  3697. [[package]]
  3698. name = "multihash"
  3699. version = "0.19.1"
  3700. source = "registry+https://github.com/rust-lang/crates.io-index"
  3701. checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492"
  3702. dependencies = [
  3703. "core2",
  3704. "unsigned-varint 0.7.2",
  3705. ]
  3706. [[package]]
  3707. name = "multistream-select"
  3708. version = "0.13.0"
  3709. source = "registry+https://github.com/rust-lang/crates.io-index"
  3710. checksum = "ea0df8e5eec2298a62b326ee4f0d7fe1a6b90a09dfcf9df37b38f947a8c42f19"
  3711. dependencies = [
  3712. "bytes",
  3713. "futures",
  3714. "log",
  3715. "pin-project",
  3716. "smallvec",
  3717. "unsigned-varint 0.7.2",
  3718. ]
  3719. [[package]]
  3720. name = "native-tls"
  3721. version = "0.2.12"
  3722. source = "registry+https://github.com/rust-lang/crates.io-index"
  3723. checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
  3724. dependencies = [
  3725. "libc",
  3726. "log",
  3727. "openssl",
  3728. "openssl-probe",
  3729. "openssl-sys",
  3730. "schannel",
  3731. "security-framework",
  3732. "security-framework-sys",
  3733. "tempfile",
  3734. ]
  3735. [[package]]
  3736. name = "netlink-packet-core"
  3737. version = "0.4.2"
  3738. source = "registry+https://github.com/rust-lang/crates.io-index"
  3739. checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297"
  3740. dependencies = [
  3741. "anyhow",
  3742. "byteorder",
  3743. "libc",
  3744. "netlink-packet-utils",
  3745. ]
  3746. [[package]]
  3747. name = "netlink-packet-route"
  3748. version = "0.12.0"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab"
  3751. dependencies = [
  3752. "anyhow",
  3753. "bitflags 1.3.2",
  3754. "byteorder",
  3755. "libc",
  3756. "netlink-packet-core",
  3757. "netlink-packet-utils",
  3758. ]
  3759. [[package]]
  3760. name = "netlink-packet-utils"
  3761. version = "0.5.2"
  3762. source = "registry+https://github.com/rust-lang/crates.io-index"
  3763. checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34"
  3764. dependencies = [
  3765. "anyhow",
  3766. "byteorder",
  3767. "paste",
  3768. "thiserror",
  3769. ]
  3770. [[package]]
  3771. name = "netlink-proto"
  3772. version = "0.10.0"
  3773. source = "registry+https://github.com/rust-lang/crates.io-index"
  3774. checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
  3775. dependencies = [
  3776. "bytes",
  3777. "futures",
  3778. "log",
  3779. "netlink-packet-core",
  3780. "netlink-sys",
  3781. "thiserror",
  3782. "tokio",
  3783. ]
  3784. [[package]]
  3785. name = "netlink-sys"
  3786. version = "0.8.6"
  3787. source = "registry+https://github.com/rust-lang/crates.io-index"
  3788. checksum = "416060d346fbaf1f23f9512963e3e878f1a78e707cb699ba9215761754244307"
  3789. dependencies = [
  3790. "bytes",
  3791. "futures",
  3792. "libc",
  3793. "log",
  3794. "tokio",
  3795. ]
  3796. [[package]]
  3797. name = "nix"
  3798. version = "0.24.3"
  3799. source = "registry+https://github.com/rust-lang/crates.io-index"
  3800. checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
  3801. dependencies = [
  3802. "bitflags 1.3.2",
  3803. "cfg-if",
  3804. "libc",
  3805. ]
  3806. [[package]]
  3807. name = "nohash-hasher"
  3808. version = "0.2.0"
  3809. source = "registry+https://github.com/rust-lang/crates.io-index"
  3810. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  3811. [[package]]
  3812. name = "nom"
  3813. version = "7.1.3"
  3814. source = "registry+https://github.com/rust-lang/crates.io-index"
  3815. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  3816. dependencies = [
  3817. "memchr",
  3818. "minimal-lexical",
  3819. ]
  3820. [[package]]
  3821. name = "normalize-line-endings"
  3822. version = "0.3.0"
  3823. source = "registry+https://github.com/rust-lang/crates.io-index"
  3824. checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
  3825. [[package]]
  3826. name = "num"
  3827. version = "0.4.3"
  3828. source = "registry+https://github.com/rust-lang/crates.io-index"
  3829. checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
  3830. dependencies = [
  3831. "num-bigint",
  3832. "num-complex",
  3833. "num-integer",
  3834. "num-iter",
  3835. "num-rational",
  3836. "num-traits",
  3837. ]
  3838. [[package]]
  3839. name = "num-bigint"
  3840. version = "0.4.6"
  3841. source = "registry+https://github.com/rust-lang/crates.io-index"
  3842. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  3843. dependencies = [
  3844. "num-integer",
  3845. "num-traits",
  3846. ]
  3847. [[package]]
  3848. name = "num-complex"
  3849. version = "0.4.6"
  3850. source = "registry+https://github.com/rust-lang/crates.io-index"
  3851. checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
  3852. dependencies = [
  3853. "num-traits",
  3854. ]
  3855. [[package]]
  3856. name = "num-conv"
  3857. version = "0.1.0"
  3858. source = "registry+https://github.com/rust-lang/crates.io-index"
  3859. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  3860. [[package]]
  3861. name = "num-integer"
  3862. version = "0.1.46"
  3863. source = "registry+https://github.com/rust-lang/crates.io-index"
  3864. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  3865. dependencies = [
  3866. "num-traits",
  3867. ]
  3868. [[package]]
  3869. name = "num-iter"
  3870. version = "0.1.45"
  3871. source = "registry+https://github.com/rust-lang/crates.io-index"
  3872. checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
  3873. dependencies = [
  3874. "autocfg",
  3875. "num-integer",
  3876. "num-traits",
  3877. ]
  3878. [[package]]
  3879. name = "num-rational"
  3880. version = "0.4.2"
  3881. source = "registry+https://github.com/rust-lang/crates.io-index"
  3882. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  3883. dependencies = [
  3884. "num-bigint",
  3885. "num-integer",
  3886. "num-traits",
  3887. ]
  3888. [[package]]
  3889. name = "num-traits"
  3890. version = "0.2.19"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  3893. dependencies = [
  3894. "autocfg",
  3895. "libm",
  3896. ]
  3897. [[package]]
  3898. name = "num_cpus"
  3899. version = "1.16.0"
  3900. source = "registry+https://github.com/rust-lang/crates.io-index"
  3901. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  3902. dependencies = [
  3903. "hermit-abi 0.3.9",
  3904. "libc",
  3905. ]
  3906. [[package]]
  3907. name = "num_enum"
  3908. version = "0.7.3"
  3909. source = "registry+https://github.com/rust-lang/crates.io-index"
  3910. checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
  3911. dependencies = [
  3912. "num_enum_derive",
  3913. ]
  3914. [[package]]
  3915. name = "num_enum_derive"
  3916. version = "0.7.3"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
  3919. dependencies = [
  3920. "proc-macro-crate 3.1.0",
  3921. "proc-macro2",
  3922. "quote",
  3923. "syn 2.0.75",
  3924. ]
  3925. [[package]]
  3926. name = "number_prefix"
  3927. version = "0.4.0"
  3928. source = "registry+https://github.com/rust-lang/crates.io-index"
  3929. checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
  3930. [[package]]
  3931. name = "object"
  3932. version = "0.36.3"
  3933. source = "registry+https://github.com/rust-lang/crates.io-index"
  3934. checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9"
  3935. dependencies = [
  3936. "crc32fast",
  3937. "hashbrown 0.14.5",
  3938. "indexmap 2.4.0",
  3939. "memchr",
  3940. ]
  3941. [[package]]
  3942. name = "oid-registry"
  3943. version = "0.7.0"
  3944. source = "registry+https://github.com/rust-lang/crates.io-index"
  3945. checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d"
  3946. dependencies = [
  3947. "asn1-rs",
  3948. ]
  3949. [[package]]
  3950. name = "once_cell"
  3951. version = "1.19.0"
  3952. source = "registry+https://github.com/rust-lang/crates.io-index"
  3953. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  3954. [[package]]
  3955. name = "opaque-debug"
  3956. version = "0.3.1"
  3957. source = "registry+https://github.com/rust-lang/crates.io-index"
  3958. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  3959. [[package]]
  3960. name = "openssl"
  3961. version = "0.10.66"
  3962. source = "registry+https://github.com/rust-lang/crates.io-index"
  3963. checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
  3964. dependencies = [
  3965. "bitflags 2.6.0",
  3966. "cfg-if",
  3967. "foreign-types",
  3968. "libc",
  3969. "once_cell",
  3970. "openssl-macros",
  3971. "openssl-sys",
  3972. ]
  3973. [[package]]
  3974. name = "openssl-macros"
  3975. version = "0.1.1"
  3976. source = "registry+https://github.com/rust-lang/crates.io-index"
  3977. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  3978. dependencies = [
  3979. "proc-macro2",
  3980. "quote",
  3981. "syn 2.0.75",
  3982. ]
  3983. [[package]]
  3984. name = "openssl-probe"
  3985. version = "0.1.5"
  3986. source = "registry+https://github.com/rust-lang/crates.io-index"
  3987. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  3988. [[package]]
  3989. name = "openssl-sys"
  3990. version = "0.9.103"
  3991. source = "registry+https://github.com/rust-lang/crates.io-index"
  3992. checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
  3993. dependencies = [
  3994. "cc",
  3995. "libc",
  3996. "pkg-config",
  3997. "vcpkg",
  3998. ]
  3999. [[package]]
  4000. name = "p256"
  4001. version = "0.13.2"
  4002. source = "registry+https://github.com/rust-lang/crates.io-index"
  4003. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  4004. dependencies = [
  4005. "ecdsa",
  4006. "elliptic-curve",
  4007. "primeorder",
  4008. "sha2 0.10.8",
  4009. ]
  4010. [[package]]
  4011. name = "parking"
  4012. version = "2.2.0"
  4013. source = "registry+https://github.com/rust-lang/crates.io-index"
  4014. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  4015. [[package]]
  4016. name = "parking_lot"
  4017. version = "0.12.3"
  4018. source = "registry+https://github.com/rust-lang/crates.io-index"
  4019. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  4020. dependencies = [
  4021. "lock_api",
  4022. "parking_lot_core",
  4023. ]
  4024. [[package]]
  4025. name = "parking_lot_core"
  4026. version = "0.9.10"
  4027. source = "registry+https://github.com/rust-lang/crates.io-index"
  4028. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  4029. dependencies = [
  4030. "cfg-if",
  4031. "libc",
  4032. "redox_syscall",
  4033. "smallvec",
  4034. "windows-targets 0.52.6",
  4035. ]
  4036. [[package]]
  4037. name = "paste"
  4038. version = "1.0.15"
  4039. source = "registry+https://github.com/rust-lang/crates.io-index"
  4040. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  4041. [[package]]
  4042. name = "pbkdf2"
  4043. version = "0.11.0"
  4044. source = "registry+https://github.com/rust-lang/crates.io-index"
  4045. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  4046. dependencies = [
  4047. "digest 0.10.7",
  4048. ]
  4049. [[package]]
  4050. name = "pbkdf2"
  4051. version = "0.12.2"
  4052. source = "registry+https://github.com/rust-lang/crates.io-index"
  4053. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  4054. dependencies = [
  4055. "digest 0.10.7",
  4056. "hmac 0.12.1",
  4057. ]
  4058. [[package]]
  4059. name = "pem"
  4060. version = "3.0.4"
  4061. source = "registry+https://github.com/rust-lang/crates.io-index"
  4062. checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
  4063. dependencies = [
  4064. "base64 0.22.1",
  4065. "serde",
  4066. ]
  4067. [[package]]
  4068. name = "percent-encoding"
  4069. version = "2.3.1"
  4070. source = "registry+https://github.com/rust-lang/crates.io-index"
  4071. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  4072. [[package]]
  4073. name = "pest"
  4074. version = "2.7.11"
  4075. source = "registry+https://github.com/rust-lang/crates.io-index"
  4076. checksum = "cd53dff83f26735fdc1ca837098ccf133605d794cdae66acfc2bfac3ec809d95"
  4077. dependencies = [
  4078. "memchr",
  4079. "thiserror",
  4080. "ucd-trie",
  4081. ]
  4082. [[package]]
  4083. name = "pin-project"
  4084. version = "1.1.5"
  4085. source = "registry+https://github.com/rust-lang/crates.io-index"
  4086. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  4087. dependencies = [
  4088. "pin-project-internal",
  4089. ]
  4090. [[package]]
  4091. name = "pin-project-internal"
  4092. version = "1.1.5"
  4093. source = "registry+https://github.com/rust-lang/crates.io-index"
  4094. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  4095. dependencies = [
  4096. "proc-macro2",
  4097. "quote",
  4098. "syn 2.0.75",
  4099. ]
  4100. [[package]]
  4101. name = "pin-project-lite"
  4102. version = "0.2.14"
  4103. source = "registry+https://github.com/rust-lang/crates.io-index"
  4104. checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
  4105. [[package]]
  4106. name = "pin-utils"
  4107. version = "0.1.0"
  4108. source = "registry+https://github.com/rust-lang/crates.io-index"
  4109. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  4110. [[package]]
  4111. name = "pkcs8"
  4112. version = "0.10.2"
  4113. source = "registry+https://github.com/rust-lang/crates.io-index"
  4114. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  4115. dependencies = [
  4116. "der",
  4117. "spki",
  4118. ]
  4119. [[package]]
  4120. name = "pkg-config"
  4121. version = "0.3.30"
  4122. source = "registry+https://github.com/rust-lang/crates.io-index"
  4123. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  4124. [[package]]
  4125. name = "polling"
  4126. version = "3.7.3"
  4127. source = "registry+https://github.com/rust-lang/crates.io-index"
  4128. checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511"
  4129. dependencies = [
  4130. "cfg-if",
  4131. "concurrent-queue",
  4132. "hermit-abi 0.4.0",
  4133. "pin-project-lite",
  4134. "rustix",
  4135. "tracing",
  4136. "windows-sys 0.59.0",
  4137. ]
  4138. [[package]]
  4139. name = "poly1305"
  4140. version = "0.8.0"
  4141. source = "registry+https://github.com/rust-lang/crates.io-index"
  4142. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  4143. dependencies = [
  4144. "cpufeatures",
  4145. "opaque-debug",
  4146. "universal-hash",
  4147. ]
  4148. [[package]]
  4149. name = "polyval"
  4150. version = "0.6.2"
  4151. source = "registry+https://github.com/rust-lang/crates.io-index"
  4152. checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
  4153. dependencies = [
  4154. "cfg-if",
  4155. "cpufeatures",
  4156. "opaque-debug",
  4157. "universal-hash",
  4158. ]
  4159. [[package]]
  4160. name = "portable-atomic"
  4161. version = "1.7.0"
  4162. source = "registry+https://github.com/rust-lang/crates.io-index"
  4163. checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
  4164. [[package]]
  4165. name = "portpicker"
  4166. version = "0.1.1"
  4167. source = "registry+https://github.com/rust-lang/crates.io-index"
  4168. checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
  4169. dependencies = [
  4170. "rand",
  4171. ]
  4172. [[package]]
  4173. name = "postcard"
  4174. version = "1.0.10"
  4175. source = "registry+https://github.com/rust-lang/crates.io-index"
  4176. checksum = "5f7f0a8d620d71c457dd1d47df76bb18960378da56af4527aaa10f515eee732e"
  4177. dependencies = [
  4178. "cobs",
  4179. "embedded-io 0.4.0",
  4180. "embedded-io 0.6.1",
  4181. "heapless",
  4182. "serde",
  4183. ]
  4184. [[package]]
  4185. name = "powerfmt"
  4186. version = "0.2.0"
  4187. source = "registry+https://github.com/rust-lang/crates.io-index"
  4188. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  4189. [[package]]
  4190. name = "ppv-lite86"
  4191. version = "0.2.20"
  4192. source = "registry+https://github.com/rust-lang/crates.io-index"
  4193. checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
  4194. dependencies = [
  4195. "zerocopy",
  4196. ]
  4197. [[package]]
  4198. name = "predicates"
  4199. version = "2.1.5"
  4200. source = "registry+https://github.com/rust-lang/crates.io-index"
  4201. checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd"
  4202. dependencies = [
  4203. "difflib",
  4204. "float-cmp",
  4205. "itertools 0.10.5",
  4206. "normalize-line-endings",
  4207. "predicates-core",
  4208. "regex",
  4209. ]
  4210. [[package]]
  4211. name = "predicates-core"
  4212. version = "1.0.8"
  4213. source = "registry+https://github.com/rust-lang/crates.io-index"
  4214. checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
  4215. [[package]]
  4216. name = "predicates-tree"
  4217. version = "1.0.11"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
  4220. dependencies = [
  4221. "predicates-core",
  4222. "termtree",
  4223. ]
  4224. [[package]]
  4225. name = "primeorder"
  4226. version = "0.13.6"
  4227. source = "registry+https://github.com/rust-lang/crates.io-index"
  4228. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  4229. dependencies = [
  4230. "elliptic-curve",
  4231. ]
  4232. [[package]]
  4233. name = "primitive-types"
  4234. version = "0.12.2"
  4235. source = "registry+https://github.com/rust-lang/crates.io-index"
  4236. checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
  4237. dependencies = [
  4238. "fixed-hash",
  4239. "uint",
  4240. ]
  4241. [[package]]
  4242. name = "proc-macro-crate"
  4243. version = "0.1.5"
  4244. source = "registry+https://github.com/rust-lang/crates.io-index"
  4245. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  4246. dependencies = [
  4247. "toml 0.5.11",
  4248. ]
  4249. [[package]]
  4250. name = "proc-macro-crate"
  4251. version = "3.1.0"
  4252. source = "registry+https://github.com/rust-lang/crates.io-index"
  4253. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  4254. dependencies = [
  4255. "toml_edit 0.21.1",
  4256. ]
  4257. [[package]]
  4258. name = "proc-macro-error"
  4259. version = "1.0.4"
  4260. source = "registry+https://github.com/rust-lang/crates.io-index"
  4261. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  4262. dependencies = [
  4263. "proc-macro-error-attr",
  4264. "proc-macro2",
  4265. "quote",
  4266. "version_check",
  4267. ]
  4268. [[package]]
  4269. name = "proc-macro-error-attr"
  4270. version = "1.0.4"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  4273. dependencies = [
  4274. "proc-macro2",
  4275. "quote",
  4276. "version_check",
  4277. ]
  4278. [[package]]
  4279. name = "proc-macro2"
  4280. version = "1.0.86"
  4281. source = "registry+https://github.com/rust-lang/crates.io-index"
  4282. checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
  4283. dependencies = [
  4284. "unicode-ident",
  4285. ]
  4286. [[package]]
  4287. name = "prometheus-client"
  4288. version = "0.22.3"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca"
  4291. dependencies = [
  4292. "dtoa",
  4293. "itoa",
  4294. "parking_lot",
  4295. "prometheus-client-derive-encode",
  4296. ]
  4297. [[package]]
  4298. name = "prometheus-client-derive-encode"
  4299. version = "0.4.2"
  4300. source = "registry+https://github.com/rust-lang/crates.io-index"
  4301. checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8"
  4302. dependencies = [
  4303. "proc-macro2",
  4304. "quote",
  4305. "syn 2.0.75",
  4306. ]
  4307. [[package]]
  4308. name = "proptest"
  4309. version = "1.5.0"
  4310. source = "registry+https://github.com/rust-lang/crates.io-index"
  4311. checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d"
  4312. dependencies = [
  4313. "bit-set",
  4314. "bit-vec",
  4315. "bitflags 2.6.0",
  4316. "lazy_static",
  4317. "num-traits",
  4318. "rand",
  4319. "rand_chacha",
  4320. "rand_xorshift",
  4321. "regex-syntax",
  4322. "rusty-fork",
  4323. "tempfile",
  4324. "unarray",
  4325. ]
  4326. [[package]]
  4327. name = "psl-types"
  4328. version = "2.0.11"
  4329. source = "registry+https://github.com/rust-lang/crates.io-index"
  4330. checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
  4331. [[package]]
  4332. name = "psm"
  4333. version = "0.1.21"
  4334. source = "registry+https://github.com/rust-lang/crates.io-index"
  4335. checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
  4336. dependencies = [
  4337. "cc",
  4338. ]
  4339. [[package]]
  4340. name = "publicsuffix"
  4341. version = "2.2.3"
  4342. source = "registry+https://github.com/rust-lang/crates.io-index"
  4343. checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
  4344. dependencies = [
  4345. "idna 0.3.0",
  4346. "psl-types",
  4347. ]
  4348. [[package]]
  4349. name = "pyth_sdk"
  4350. version = "0.1.0"
  4351. dependencies = [
  4352. "base64 0.22.1",
  4353. "dotenv",
  4354. "fuels",
  4355. "hex",
  4356. "libsecp256k1",
  4357. "pythnet-sdk",
  4358. "rand",
  4359. "reqwest",
  4360. "serde",
  4361. "serde_json",
  4362. "serde_wormhole",
  4363. "sha3",
  4364. "tokio",
  4365. "wormhole-vaas-serde",
  4366. ]
  4367. [[package]]
  4368. name = "pythnet-sdk"
  4369. version = "2.3.0"
  4370. dependencies = [
  4371. "bincode",
  4372. "borsh",
  4373. "bytemuck",
  4374. "byteorder",
  4375. "fast-math",
  4376. "hex",
  4377. "libsecp256k1",
  4378. "rand",
  4379. "rustc_version",
  4380. "serde",
  4381. "serde_wormhole",
  4382. "sha3",
  4383. "slow_primes",
  4384. "thiserror",
  4385. "wormhole-vaas-serde",
  4386. ]
  4387. [[package]]
  4388. name = "quick-error"
  4389. version = "1.2.3"
  4390. source = "registry+https://github.com/rust-lang/crates.io-index"
  4391. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  4392. [[package]]
  4393. name = "quick-protobuf"
  4394. version = "0.8.1"
  4395. source = "registry+https://github.com/rust-lang/crates.io-index"
  4396. checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f"
  4397. dependencies = [
  4398. "byteorder",
  4399. ]
  4400. [[package]]
  4401. name = "quick-protobuf-codec"
  4402. version = "0.3.1"
  4403. source = "registry+https://github.com/rust-lang/crates.io-index"
  4404. checksum = "15a0580ab32b169745d7a39db2ba969226ca16738931be152a3209b409de2474"
  4405. dependencies = [
  4406. "asynchronous-codec 0.7.0",
  4407. "bytes",
  4408. "quick-protobuf",
  4409. "thiserror",
  4410. "unsigned-varint 0.8.0",
  4411. ]
  4412. [[package]]
  4413. name = "quinn"
  4414. version = "0.11.3"
  4415. source = "registry+https://github.com/rust-lang/crates.io-index"
  4416. checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
  4417. dependencies = [
  4418. "bytes",
  4419. "futures-io",
  4420. "pin-project-lite",
  4421. "quinn-proto",
  4422. "quinn-udp",
  4423. "rustc-hash 2.0.0",
  4424. "rustls 0.23.12",
  4425. "socket2",
  4426. "thiserror",
  4427. "tokio",
  4428. "tracing",
  4429. ]
  4430. [[package]]
  4431. name = "quinn-proto"
  4432. version = "0.11.6"
  4433. source = "registry+https://github.com/rust-lang/crates.io-index"
  4434. checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
  4435. dependencies = [
  4436. "bytes",
  4437. "rand",
  4438. "ring 0.17.8",
  4439. "rustc-hash 2.0.0",
  4440. "rustls 0.23.12",
  4441. "slab",
  4442. "thiserror",
  4443. "tinyvec",
  4444. "tracing",
  4445. ]
  4446. [[package]]
  4447. name = "quinn-udp"
  4448. version = "0.5.4"
  4449. source = "registry+https://github.com/rust-lang/crates.io-index"
  4450. checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
  4451. dependencies = [
  4452. "libc",
  4453. "once_cell",
  4454. "socket2",
  4455. "tracing",
  4456. "windows-sys 0.52.0",
  4457. ]
  4458. [[package]]
  4459. name = "quote"
  4460. version = "1.0.36"
  4461. source = "registry+https://github.com/rust-lang/crates.io-index"
  4462. checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
  4463. dependencies = [
  4464. "proc-macro2",
  4465. ]
  4466. [[package]]
  4467. name = "radium"
  4468. version = "0.7.0"
  4469. source = "registry+https://github.com/rust-lang/crates.io-index"
  4470. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  4471. [[package]]
  4472. name = "rand"
  4473. version = "0.8.5"
  4474. source = "registry+https://github.com/rust-lang/crates.io-index"
  4475. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  4476. dependencies = [
  4477. "libc",
  4478. "rand_chacha",
  4479. "rand_core",
  4480. ]
  4481. [[package]]
  4482. name = "rand_chacha"
  4483. version = "0.3.1"
  4484. source = "registry+https://github.com/rust-lang/crates.io-index"
  4485. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  4486. dependencies = [
  4487. "ppv-lite86",
  4488. "rand_core",
  4489. ]
  4490. [[package]]
  4491. name = "rand_core"
  4492. version = "0.6.4"
  4493. source = "registry+https://github.com/rust-lang/crates.io-index"
  4494. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  4495. dependencies = [
  4496. "getrandom",
  4497. ]
  4498. [[package]]
  4499. name = "rand_xorshift"
  4500. version = "0.3.0"
  4501. source = "registry+https://github.com/rust-lang/crates.io-index"
  4502. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  4503. dependencies = [
  4504. "rand_core",
  4505. ]
  4506. [[package]]
  4507. name = "rayon"
  4508. version = "1.10.0"
  4509. source = "registry+https://github.com/rust-lang/crates.io-index"
  4510. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  4511. dependencies = [
  4512. "either",
  4513. "rayon-core",
  4514. ]
  4515. [[package]]
  4516. name = "rayon-core"
  4517. version = "1.12.1"
  4518. source = "registry+https://github.com/rust-lang/crates.io-index"
  4519. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  4520. dependencies = [
  4521. "crossbeam-deque",
  4522. "crossbeam-utils",
  4523. ]
  4524. [[package]]
  4525. name = "rcgen"
  4526. version = "0.11.3"
  4527. source = "registry+https://github.com/rust-lang/crates.io-index"
  4528. checksum = "52c4f3084aa3bc7dfbba4eff4fab2a54db4324965d8872ab933565e6fbd83bc6"
  4529. dependencies = [
  4530. "pem",
  4531. "ring 0.16.20",
  4532. "time",
  4533. "yasna",
  4534. ]
  4535. [[package]]
  4536. name = "redox_syscall"
  4537. version = "0.5.3"
  4538. source = "registry+https://github.com/rust-lang/crates.io-index"
  4539. checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
  4540. dependencies = [
  4541. "bitflags 2.6.0",
  4542. ]
  4543. [[package]]
  4544. name = "redox_users"
  4545. version = "0.4.6"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  4548. dependencies = [
  4549. "getrandom",
  4550. "libredox",
  4551. "thiserror",
  4552. ]
  4553. [[package]]
  4554. name = "regalloc2"
  4555. version = "0.9.3"
  4556. source = "registry+https://github.com/rust-lang/crates.io-index"
  4557. checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6"
  4558. dependencies = [
  4559. "hashbrown 0.13.2",
  4560. "log",
  4561. "rustc-hash 1.1.0",
  4562. "slice-group-by",
  4563. "smallvec",
  4564. ]
  4565. [[package]]
  4566. name = "regex"
  4567. version = "1.10.6"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
  4570. dependencies = [
  4571. "aho-corasick",
  4572. "memchr",
  4573. "regex-automata",
  4574. "regex-syntax",
  4575. ]
  4576. [[package]]
  4577. name = "regex-automata"
  4578. version = "0.4.7"
  4579. source = "registry+https://github.com/rust-lang/crates.io-index"
  4580. checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
  4581. dependencies = [
  4582. "aho-corasick",
  4583. "memchr",
  4584. "regex-syntax",
  4585. ]
  4586. [[package]]
  4587. name = "regex-syntax"
  4588. version = "0.8.4"
  4589. source = "registry+https://github.com/rust-lang/crates.io-index"
  4590. checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
  4591. [[package]]
  4592. name = "reqwest"
  4593. version = "0.11.27"
  4594. source = "registry+https://github.com/rust-lang/crates.io-index"
  4595. checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
  4596. dependencies = [
  4597. "base64 0.21.7",
  4598. "bytes",
  4599. "cookie",
  4600. "cookie_store",
  4601. "encoding_rs",
  4602. "futures-core",
  4603. "futures-util",
  4604. "h2",
  4605. "http 0.2.12",
  4606. "http-body",
  4607. "hyper",
  4608. "hyper-rustls",
  4609. "hyper-tls",
  4610. "ipnet",
  4611. "js-sys",
  4612. "log",
  4613. "mime",
  4614. "native-tls",
  4615. "once_cell",
  4616. "percent-encoding",
  4617. "pin-project-lite",
  4618. "rustls 0.21.12",
  4619. "rustls-pemfile",
  4620. "serde",
  4621. "serde_json",
  4622. "serde_urlencoded",
  4623. "sync_wrapper",
  4624. "system-configuration",
  4625. "tokio",
  4626. "tokio-native-tls",
  4627. "tokio-rustls",
  4628. "tower-service",
  4629. "url",
  4630. "wasm-bindgen",
  4631. "wasm-bindgen-futures",
  4632. "web-sys",
  4633. "webpki-roots",
  4634. "winreg",
  4635. ]
  4636. [[package]]
  4637. name = "resolv-conf"
  4638. version = "0.7.0"
  4639. source = "registry+https://github.com/rust-lang/crates.io-index"
  4640. checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
  4641. dependencies = [
  4642. "hostname",
  4643. "quick-error",
  4644. ]
  4645. [[package]]
  4646. name = "rfc6979"
  4647. version = "0.4.0"
  4648. source = "registry+https://github.com/rust-lang/crates.io-index"
  4649. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  4650. dependencies = [
  4651. "hmac 0.12.1",
  4652. "subtle",
  4653. ]
  4654. [[package]]
  4655. name = "ring"
  4656. version = "0.16.20"
  4657. source = "registry+https://github.com/rust-lang/crates.io-index"
  4658. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  4659. dependencies = [
  4660. "cc",
  4661. "libc",
  4662. "once_cell",
  4663. "spin 0.5.2",
  4664. "untrusted 0.7.1",
  4665. "web-sys",
  4666. "winapi",
  4667. ]
  4668. [[package]]
  4669. name = "ring"
  4670. version = "0.17.8"
  4671. source = "registry+https://github.com/rust-lang/crates.io-index"
  4672. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  4673. dependencies = [
  4674. "cc",
  4675. "cfg-if",
  4676. "getrandom",
  4677. "libc",
  4678. "spin 0.9.8",
  4679. "untrusted 0.9.0",
  4680. "windows-sys 0.52.0",
  4681. ]
  4682. [[package]]
  4683. name = "ripemd"
  4684. version = "0.1.3"
  4685. source = "registry+https://github.com/rust-lang/crates.io-index"
  4686. checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
  4687. dependencies = [
  4688. "digest 0.10.7",
  4689. ]
  4690. [[package]]
  4691. name = "rtnetlink"
  4692. version = "0.10.1"
  4693. source = "registry+https://github.com/rust-lang/crates.io-index"
  4694. checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
  4695. dependencies = [
  4696. "futures",
  4697. "log",
  4698. "netlink-packet-route",
  4699. "netlink-proto",
  4700. "nix",
  4701. "thiserror",
  4702. "tokio",
  4703. ]
  4704. [[package]]
  4705. name = "rustc-demangle"
  4706. version = "0.1.24"
  4707. source = "registry+https://github.com/rust-lang/crates.io-index"
  4708. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  4709. [[package]]
  4710. name = "rustc-hash"
  4711. version = "1.1.0"
  4712. source = "registry+https://github.com/rust-lang/crates.io-index"
  4713. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  4714. [[package]]
  4715. name = "rustc-hash"
  4716. version = "2.0.0"
  4717. source = "registry+https://github.com/rust-lang/crates.io-index"
  4718. checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
  4719. [[package]]
  4720. name = "rustc_version"
  4721. version = "0.4.0"
  4722. source = "registry+https://github.com/rust-lang/crates.io-index"
  4723. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  4724. dependencies = [
  4725. "semver",
  4726. ]
  4727. [[package]]
  4728. name = "rusticata-macros"
  4729. version = "4.1.0"
  4730. source = "registry+https://github.com/rust-lang/crates.io-index"
  4731. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  4732. dependencies = [
  4733. "nom",
  4734. ]
  4735. [[package]]
  4736. name = "rustix"
  4737. version = "0.38.34"
  4738. source = "registry+https://github.com/rust-lang/crates.io-index"
  4739. checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
  4740. dependencies = [
  4741. "bitflags 2.6.0",
  4742. "errno",
  4743. "libc",
  4744. "linux-raw-sys",
  4745. "windows-sys 0.52.0",
  4746. ]
  4747. [[package]]
  4748. name = "rustls"
  4749. version = "0.21.12"
  4750. source = "registry+https://github.com/rust-lang/crates.io-index"
  4751. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  4752. dependencies = [
  4753. "log",
  4754. "ring 0.17.8",
  4755. "rustls-webpki 0.101.7",
  4756. "sct",
  4757. ]
  4758. [[package]]
  4759. name = "rustls"
  4760. version = "0.23.12"
  4761. source = "registry+https://github.com/rust-lang/crates.io-index"
  4762. checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
  4763. dependencies = [
  4764. "once_cell",
  4765. "ring 0.17.8",
  4766. "rustls-pki-types",
  4767. "rustls-webpki 0.102.6",
  4768. "subtle",
  4769. "zeroize",
  4770. ]
  4771. [[package]]
  4772. name = "rustls-native-certs"
  4773. version = "0.6.3"
  4774. source = "registry+https://github.com/rust-lang/crates.io-index"
  4775. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  4776. dependencies = [
  4777. "openssl-probe",
  4778. "rustls-pemfile",
  4779. "schannel",
  4780. "security-framework",
  4781. ]
  4782. [[package]]
  4783. name = "rustls-pemfile"
  4784. version = "1.0.4"
  4785. source = "registry+https://github.com/rust-lang/crates.io-index"
  4786. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  4787. dependencies = [
  4788. "base64 0.21.7",
  4789. ]
  4790. [[package]]
  4791. name = "rustls-pki-types"
  4792. version = "1.8.0"
  4793. source = "registry+https://github.com/rust-lang/crates.io-index"
  4794. checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
  4795. [[package]]
  4796. name = "rustls-webpki"
  4797. version = "0.101.7"
  4798. source = "registry+https://github.com/rust-lang/crates.io-index"
  4799. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  4800. dependencies = [
  4801. "ring 0.17.8",
  4802. "untrusted 0.9.0",
  4803. ]
  4804. [[package]]
  4805. name = "rustls-webpki"
  4806. version = "0.102.6"
  4807. source = "registry+https://github.com/rust-lang/crates.io-index"
  4808. checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
  4809. dependencies = [
  4810. "ring 0.17.8",
  4811. "rustls-pki-types",
  4812. "untrusted 0.9.0",
  4813. ]
  4814. [[package]]
  4815. name = "rustversion"
  4816. version = "1.0.17"
  4817. source = "registry+https://github.com/rust-lang/crates.io-index"
  4818. checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
  4819. [[package]]
  4820. name = "rusty-fork"
  4821. version = "0.3.0"
  4822. source = "registry+https://github.com/rust-lang/crates.io-index"
  4823. checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
  4824. dependencies = [
  4825. "fnv",
  4826. "quick-error",
  4827. "tempfile",
  4828. "wait-timeout",
  4829. ]
  4830. [[package]]
  4831. name = "rw-stream-sink"
  4832. version = "0.4.0"
  4833. source = "registry+https://github.com/rust-lang/crates.io-index"
  4834. checksum = "d8c9026ff5d2f23da5e45bbc283f156383001bfb09c4e44256d02c1a685fe9a1"
  4835. dependencies = [
  4836. "futures",
  4837. "pin-project",
  4838. "static_assertions",
  4839. ]
  4840. [[package]]
  4841. name = "ryu"
  4842. version = "1.0.18"
  4843. source = "registry+https://github.com/rust-lang/crates.io-index"
  4844. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  4845. [[package]]
  4846. name = "salsa20"
  4847. version = "0.10.2"
  4848. source = "registry+https://github.com/rust-lang/crates.io-index"
  4849. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  4850. dependencies = [
  4851. "cipher",
  4852. ]
  4853. [[package]]
  4854. name = "schannel"
  4855. version = "0.1.23"
  4856. source = "registry+https://github.com/rust-lang/crates.io-index"
  4857. checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
  4858. dependencies = [
  4859. "windows-sys 0.52.0",
  4860. ]
  4861. [[package]]
  4862. name = "schemafy_core"
  4863. version = "0.5.2"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "41781ae092f4fd52c9287efb74456aea0d3b90032d2ecad272bd14dbbcb0511b"
  4866. dependencies = [
  4867. "serde",
  4868. "serde_json",
  4869. ]
  4870. [[package]]
  4871. name = "schemafy_lib"
  4872. version = "0.5.2"
  4873. source = "registry+https://github.com/rust-lang/crates.io-index"
  4874. checksum = "e953db32579999ca98c451d80801b6f6a7ecba6127196c5387ec0774c528befa"
  4875. dependencies = [
  4876. "Inflector",
  4877. "proc-macro2",
  4878. "quote",
  4879. "schemafy_core",
  4880. "serde",
  4881. "serde_derive",
  4882. "serde_json",
  4883. "syn 1.0.109",
  4884. ]
  4885. [[package]]
  4886. name = "schemars"
  4887. version = "0.8.21"
  4888. source = "registry+https://github.com/rust-lang/crates.io-index"
  4889. checksum = "09c024468a378b7e36765cd36702b7a90cc3cba11654f6685c8f233408e89e92"
  4890. dependencies = [
  4891. "dyn-clone",
  4892. "schemars_derive",
  4893. "serde",
  4894. "serde_json",
  4895. ]
  4896. [[package]]
  4897. name = "schemars_derive"
  4898. version = "0.8.21"
  4899. source = "registry+https://github.com/rust-lang/crates.io-index"
  4900. checksum = "b1eee588578aff73f856ab961cd2f79e36bc45d7ded33a7562adba4667aecc0e"
  4901. dependencies = [
  4902. "proc-macro2",
  4903. "quote",
  4904. "serde_derive_internals",
  4905. "syn 2.0.75",
  4906. ]
  4907. [[package]]
  4908. name = "scopeguard"
  4909. version = "1.2.0"
  4910. source = "registry+https://github.com/rust-lang/crates.io-index"
  4911. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4912. [[package]]
  4913. name = "scrypt"
  4914. version = "0.10.0"
  4915. source = "registry+https://github.com/rust-lang/crates.io-index"
  4916. checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d"
  4917. dependencies = [
  4918. "hmac 0.12.1",
  4919. "pbkdf2 0.11.0",
  4920. "salsa20",
  4921. "sha2 0.10.8",
  4922. ]
  4923. [[package]]
  4924. name = "sct"
  4925. version = "0.7.1"
  4926. source = "registry+https://github.com/rust-lang/crates.io-index"
  4927. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  4928. dependencies = [
  4929. "ring 0.17.8",
  4930. "untrusted 0.9.0",
  4931. ]
  4932. [[package]]
  4933. name = "sec1"
  4934. version = "0.7.3"
  4935. source = "registry+https://github.com/rust-lang/crates.io-index"
  4936. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  4937. dependencies = [
  4938. "base16ct",
  4939. "der",
  4940. "generic-array",
  4941. "pkcs8",
  4942. "subtle",
  4943. "zeroize",
  4944. ]
  4945. [[package]]
  4946. name = "secp256k1"
  4947. version = "0.26.0"
  4948. source = "registry+https://github.com/rust-lang/crates.io-index"
  4949. checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894"
  4950. dependencies = [
  4951. "rand",
  4952. "secp256k1-sys",
  4953. ]
  4954. [[package]]
  4955. name = "secp256k1-sys"
  4956. version = "0.8.1"
  4957. source = "registry+https://github.com/rust-lang/crates.io-index"
  4958. checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
  4959. dependencies = [
  4960. "cc",
  4961. ]
  4962. [[package]]
  4963. name = "secrecy"
  4964. version = "0.8.0"
  4965. source = "registry+https://github.com/rust-lang/crates.io-index"
  4966. checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
  4967. dependencies = [
  4968. "zeroize",
  4969. ]
  4970. [[package]]
  4971. name = "security-framework"
  4972. version = "2.11.1"
  4973. source = "registry+https://github.com/rust-lang/crates.io-index"
  4974. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  4975. dependencies = [
  4976. "bitflags 2.6.0",
  4977. "core-foundation",
  4978. "core-foundation-sys",
  4979. "libc",
  4980. "security-framework-sys",
  4981. ]
  4982. [[package]]
  4983. name = "security-framework-sys"
  4984. version = "2.11.1"
  4985. source = "registry+https://github.com/rust-lang/crates.io-index"
  4986. checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
  4987. dependencies = [
  4988. "core-foundation-sys",
  4989. "libc",
  4990. ]
  4991. [[package]]
  4992. name = "semver"
  4993. version = "1.0.23"
  4994. source = "registry+https://github.com/rust-lang/crates.io-index"
  4995. checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
  4996. [[package]]
  4997. name = "serde"
  4998. version = "1.0.208"
  4999. source = "registry+https://github.com/rust-lang/crates.io-index"
  5000. checksum = "cff085d2cb684faa248efb494c39b68e522822ac0de72ccf08109abde717cfb2"
  5001. dependencies = [
  5002. "serde_derive",
  5003. ]
  5004. [[package]]
  5005. name = "serde_bytes"
  5006. version = "0.11.15"
  5007. source = "registry+https://github.com/rust-lang/crates.io-index"
  5008. checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
  5009. dependencies = [
  5010. "serde",
  5011. ]
  5012. [[package]]
  5013. name = "serde_derive"
  5014. version = "1.0.208"
  5015. source = "registry+https://github.com/rust-lang/crates.io-index"
  5016. checksum = "24008e81ff7613ed8e5ba0cfaf24e2c2f1e5b8a0495711e44fcd4882fca62bcf"
  5017. dependencies = [
  5018. "proc-macro2",
  5019. "quote",
  5020. "syn 2.0.75",
  5021. ]
  5022. [[package]]
  5023. name = "serde_derive_internals"
  5024. version = "0.29.1"
  5025. source = "registry+https://github.com/rust-lang/crates.io-index"
  5026. checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
  5027. dependencies = [
  5028. "proc-macro2",
  5029. "quote",
  5030. "syn 2.0.75",
  5031. ]
  5032. [[package]]
  5033. name = "serde_json"
  5034. version = "1.0.125"
  5035. source = "registry+https://github.com/rust-lang/crates.io-index"
  5036. checksum = "83c8e735a073ccf5be70aa8066aa984eaf2fa000db6c8d0100ae605b366d31ed"
  5037. dependencies = [
  5038. "itoa",
  5039. "memchr",
  5040. "ryu",
  5041. "serde",
  5042. ]
  5043. [[package]]
  5044. name = "serde_spanned"
  5045. version = "0.6.7"
  5046. source = "registry+https://github.com/rust-lang/crates.io-index"
  5047. checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
  5048. dependencies = [
  5049. "serde",
  5050. ]
  5051. [[package]]
  5052. name = "serde_urlencoded"
  5053. version = "0.7.1"
  5054. source = "registry+https://github.com/rust-lang/crates.io-index"
  5055. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  5056. dependencies = [
  5057. "form_urlencoded",
  5058. "itoa",
  5059. "ryu",
  5060. "serde",
  5061. ]
  5062. [[package]]
  5063. name = "serde_with"
  5064. version = "3.9.0"
  5065. source = "registry+https://github.com/rust-lang/crates.io-index"
  5066. checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
  5067. dependencies = [
  5068. "base64 0.22.1",
  5069. "chrono",
  5070. "hex",
  5071. "indexmap 1.9.3",
  5072. "indexmap 2.4.0",
  5073. "serde",
  5074. "serde_derive",
  5075. "serde_json",
  5076. "serde_with_macros",
  5077. "time",
  5078. ]
  5079. [[package]]
  5080. name = "serde_with_macros"
  5081. version = "3.9.0"
  5082. source = "registry+https://github.com/rust-lang/crates.io-index"
  5083. checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
  5084. dependencies = [
  5085. "darling 0.20.10",
  5086. "proc-macro2",
  5087. "quote",
  5088. "syn 2.0.75",
  5089. ]
  5090. [[package]]
  5091. name = "serde_wormhole"
  5092. version = "0.1.0"
  5093. source = "registry+https://github.com/rust-lang/crates.io-index"
  5094. checksum = "24b022bf813578a06341fd453c3fd6e64945d9975191193d5d45e8dbd97d1d84"
  5095. dependencies = [
  5096. "base64 0.13.1",
  5097. "itoa",
  5098. "serde",
  5099. "serde_bytes",
  5100. "thiserror",
  5101. ]
  5102. [[package]]
  5103. name = "sha1"
  5104. version = "0.10.6"
  5105. source = "registry+https://github.com/rust-lang/crates.io-index"
  5106. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  5107. dependencies = [
  5108. "cfg-if",
  5109. "cpufeatures",
  5110. "digest 0.10.7",
  5111. ]
  5112. [[package]]
  5113. name = "sha2"
  5114. version = "0.9.9"
  5115. source = "registry+https://github.com/rust-lang/crates.io-index"
  5116. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  5117. dependencies = [
  5118. "block-buffer 0.9.0",
  5119. "cfg-if",
  5120. "cpufeatures",
  5121. "digest 0.9.0",
  5122. "opaque-debug",
  5123. ]
  5124. [[package]]
  5125. name = "sha2"
  5126. version = "0.10.8"
  5127. source = "registry+https://github.com/rust-lang/crates.io-index"
  5128. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  5129. dependencies = [
  5130. "cfg-if",
  5131. "cpufeatures",
  5132. "digest 0.10.7",
  5133. ]
  5134. [[package]]
  5135. name = "sha3"
  5136. version = "0.10.8"
  5137. source = "registry+https://github.com/rust-lang/crates.io-index"
  5138. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  5139. dependencies = [
  5140. "digest 0.10.7",
  5141. "keccak",
  5142. ]
  5143. [[package]]
  5144. name = "shlex"
  5145. version = "1.3.0"
  5146. source = "registry+https://github.com/rust-lang/crates.io-index"
  5147. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  5148. [[package]]
  5149. name = "signal-hook-registry"
  5150. version = "1.4.2"
  5151. source = "registry+https://github.com/rust-lang/crates.io-index"
  5152. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  5153. dependencies = [
  5154. "libc",
  5155. ]
  5156. [[package]]
  5157. name = "signature"
  5158. version = "2.2.0"
  5159. source = "registry+https://github.com/rust-lang/crates.io-index"
  5160. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  5161. dependencies = [
  5162. "digest 0.10.7",
  5163. "rand_core",
  5164. ]
  5165. [[package]]
  5166. name = "slab"
  5167. version = "0.4.9"
  5168. source = "registry+https://github.com/rust-lang/crates.io-index"
  5169. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  5170. dependencies = [
  5171. "autocfg",
  5172. ]
  5173. [[package]]
  5174. name = "slice-group-by"
  5175. version = "0.3.1"
  5176. source = "registry+https://github.com/rust-lang/crates.io-index"
  5177. checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
  5178. [[package]]
  5179. name = "slow_primes"
  5180. version = "0.1.14"
  5181. source = "registry+https://github.com/rust-lang/crates.io-index"
  5182. checksum = "58267dd2fbaa6dceecba9e3e106d2d90a2b02497c0e8b01b8759beccf5113938"
  5183. dependencies = [
  5184. "num",
  5185. ]
  5186. [[package]]
  5187. name = "smallvec"
  5188. version = "1.13.2"
  5189. source = "registry+https://github.com/rust-lang/crates.io-index"
  5190. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  5191. dependencies = [
  5192. "serde",
  5193. ]
  5194. [[package]]
  5195. name = "snow"
  5196. version = "0.9.6"
  5197. source = "registry+https://github.com/rust-lang/crates.io-index"
  5198. checksum = "850948bee068e713b8ab860fe1adc4d109676ab4c3b621fd8147f06b261f2f85"
  5199. dependencies = [
  5200. "aes-gcm",
  5201. "blake2",
  5202. "chacha20poly1305",
  5203. "curve25519-dalek",
  5204. "rand_core",
  5205. "ring 0.17.8",
  5206. "rustc_version",
  5207. "sha2 0.10.8",
  5208. "subtle",
  5209. ]
  5210. [[package]]
  5211. name = "socket2"
  5212. version = "0.5.7"
  5213. source = "registry+https://github.com/rust-lang/crates.io-index"
  5214. checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
  5215. dependencies = [
  5216. "libc",
  5217. "windows-sys 0.52.0",
  5218. ]
  5219. [[package]]
  5220. name = "soketto"
  5221. version = "0.8.0"
  5222. source = "registry+https://github.com/rust-lang/crates.io-index"
  5223. checksum = "37468c595637c10857701c990f93a40ce0e357cedb0953d1c26c8d8027f9bb53"
  5224. dependencies = [
  5225. "base64 0.22.1",
  5226. "bytes",
  5227. "futures",
  5228. "httparse",
  5229. "log",
  5230. "rand",
  5231. "sha1",
  5232. ]
  5233. [[package]]
  5234. name = "spin"
  5235. version = "0.5.2"
  5236. source = "registry+https://github.com/rust-lang/crates.io-index"
  5237. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  5238. [[package]]
  5239. name = "spin"
  5240. version = "0.9.8"
  5241. source = "registry+https://github.com/rust-lang/crates.io-index"
  5242. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  5243. dependencies = [
  5244. "lock_api",
  5245. ]
  5246. [[package]]
  5247. name = "spki"
  5248. version = "0.7.3"
  5249. source = "registry+https://github.com/rust-lang/crates.io-index"
  5250. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  5251. dependencies = [
  5252. "base64ct",
  5253. "der",
  5254. ]
  5255. [[package]]
  5256. name = "sptr"
  5257. version = "0.3.2"
  5258. source = "registry+https://github.com/rust-lang/crates.io-index"
  5259. checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
  5260. [[package]]
  5261. name = "stable_deref_trait"
  5262. version = "1.2.0"
  5263. source = "registry+https://github.com/rust-lang/crates.io-index"
  5264. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  5265. [[package]]
  5266. name = "static_assertions"
  5267. version = "1.1.0"
  5268. source = "registry+https://github.com/rust-lang/crates.io-index"
  5269. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  5270. [[package]]
  5271. name = "static_assertions_next"
  5272. version = "1.1.2"
  5273. source = "registry+https://github.com/rust-lang/crates.io-index"
  5274. checksum = "d7beae5182595e9a8b683fa98c4317f956c9a2dec3b9716990d20023cc60c766"
  5275. [[package]]
  5276. name = "strsim"
  5277. version = "0.10.0"
  5278. source = "registry+https://github.com/rust-lang/crates.io-index"
  5279. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  5280. [[package]]
  5281. name = "strsim"
  5282. version = "0.11.1"
  5283. source = "registry+https://github.com/rust-lang/crates.io-index"
  5284. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  5285. [[package]]
  5286. name = "strum"
  5287. version = "0.24.1"
  5288. source = "registry+https://github.com/rust-lang/crates.io-index"
  5289. checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
  5290. dependencies = [
  5291. "strum_macros 0.24.3",
  5292. ]
  5293. [[package]]
  5294. name = "strum"
  5295. version = "0.25.0"
  5296. source = "registry+https://github.com/rust-lang/crates.io-index"
  5297. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  5298. dependencies = [
  5299. "strum_macros 0.25.3",
  5300. ]
  5301. [[package]]
  5302. name = "strum"
  5303. version = "0.26.3"
  5304. source = "registry+https://github.com/rust-lang/crates.io-index"
  5305. checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
  5306. dependencies = [
  5307. "strum_macros 0.26.4",
  5308. ]
  5309. [[package]]
  5310. name = "strum_macros"
  5311. version = "0.24.3"
  5312. source = "registry+https://github.com/rust-lang/crates.io-index"
  5313. checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
  5314. dependencies = [
  5315. "heck 0.4.1",
  5316. "proc-macro2",
  5317. "quote",
  5318. "rustversion",
  5319. "syn 1.0.109",
  5320. ]
  5321. [[package]]
  5322. name = "strum_macros"
  5323. version = "0.25.3"
  5324. source = "registry+https://github.com/rust-lang/crates.io-index"
  5325. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  5326. dependencies = [
  5327. "heck 0.4.1",
  5328. "proc-macro2",
  5329. "quote",
  5330. "rustversion",
  5331. "syn 2.0.75",
  5332. ]
  5333. [[package]]
  5334. name = "strum_macros"
  5335. version = "0.26.4"
  5336. source = "registry+https://github.com/rust-lang/crates.io-index"
  5337. checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
  5338. dependencies = [
  5339. "heck 0.5.0",
  5340. "proc-macro2",
  5341. "quote",
  5342. "rustversion",
  5343. "syn 2.0.75",
  5344. ]
  5345. [[package]]
  5346. name = "subtle"
  5347. version = "2.6.1"
  5348. source = "registry+https://github.com/rust-lang/crates.io-index"
  5349. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  5350. [[package]]
  5351. name = "syn"
  5352. version = "1.0.109"
  5353. source = "registry+https://github.com/rust-lang/crates.io-index"
  5354. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  5355. dependencies = [
  5356. "proc-macro2",
  5357. "quote",
  5358. "unicode-ident",
  5359. ]
  5360. [[package]]
  5361. name = "syn"
  5362. version = "2.0.75"
  5363. source = "registry+https://github.com/rust-lang/crates.io-index"
  5364. checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9"
  5365. dependencies = [
  5366. "proc-macro2",
  5367. "quote",
  5368. "unicode-ident",
  5369. ]
  5370. [[package]]
  5371. name = "sync_wrapper"
  5372. version = "0.1.2"
  5373. source = "registry+https://github.com/rust-lang/crates.io-index"
  5374. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  5375. [[package]]
  5376. name = "synstructure"
  5377. version = "0.13.1"
  5378. source = "registry+https://github.com/rust-lang/crates.io-index"
  5379. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  5380. dependencies = [
  5381. "proc-macro2",
  5382. "quote",
  5383. "syn 2.0.75",
  5384. ]
  5385. [[package]]
  5386. name = "system-configuration"
  5387. version = "0.5.1"
  5388. source = "registry+https://github.com/rust-lang/crates.io-index"
  5389. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  5390. dependencies = [
  5391. "bitflags 1.3.2",
  5392. "core-foundation",
  5393. "system-configuration-sys",
  5394. ]
  5395. [[package]]
  5396. name = "system-configuration-sys"
  5397. version = "0.5.0"
  5398. source = "registry+https://github.com/rust-lang/crates.io-index"
  5399. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  5400. dependencies = [
  5401. "core-foundation-sys",
  5402. "libc",
  5403. ]
  5404. [[package]]
  5405. name = "tai64"
  5406. version = "4.0.0"
  5407. source = "registry+https://github.com/rust-lang/crates.io-index"
  5408. checksum = "ed7401421025f4132e6c1f7af5e7f8287383969f36e6628016cd509b8d3da9dc"
  5409. dependencies = [
  5410. "serde",
  5411. ]
  5412. [[package]]
  5413. name = "tap"
  5414. version = "1.0.1"
  5415. source = "registry+https://github.com/rust-lang/crates.io-index"
  5416. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  5417. [[package]]
  5418. name = "target-lexicon"
  5419. version = "0.12.16"
  5420. source = "registry+https://github.com/rust-lang/crates.io-index"
  5421. checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
  5422. [[package]]
  5423. name = "tempfile"
  5424. version = "3.12.0"
  5425. source = "registry+https://github.com/rust-lang/crates.io-index"
  5426. checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
  5427. dependencies = [
  5428. "cfg-if",
  5429. "fastrand",
  5430. "once_cell",
  5431. "rustix",
  5432. "windows-sys 0.59.0",
  5433. ]
  5434. [[package]]
  5435. name = "termcolor"
  5436. version = "1.4.1"
  5437. source = "registry+https://github.com/rust-lang/crates.io-index"
  5438. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  5439. dependencies = [
  5440. "winapi-util",
  5441. ]
  5442. [[package]]
  5443. name = "termtree"
  5444. version = "0.4.1"
  5445. source = "registry+https://github.com/rust-lang/crates.io-index"
  5446. checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
  5447. [[package]]
  5448. name = "thiserror"
  5449. version = "1.0.63"
  5450. source = "registry+https://github.com/rust-lang/crates.io-index"
  5451. checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
  5452. dependencies = [
  5453. "thiserror-impl",
  5454. ]
  5455. [[package]]
  5456. name = "thiserror-impl"
  5457. version = "1.0.63"
  5458. source = "registry+https://github.com/rust-lang/crates.io-index"
  5459. checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
  5460. dependencies = [
  5461. "proc-macro2",
  5462. "quote",
  5463. "syn 2.0.75",
  5464. ]
  5465. [[package]]
  5466. name = "time"
  5467. version = "0.3.36"
  5468. source = "registry+https://github.com/rust-lang/crates.io-index"
  5469. checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
  5470. dependencies = [
  5471. "deranged",
  5472. "itoa",
  5473. "num-conv",
  5474. "powerfmt",
  5475. "serde",
  5476. "time-core",
  5477. "time-macros",
  5478. ]
  5479. [[package]]
  5480. name = "time-core"
  5481. version = "0.1.2"
  5482. source = "registry+https://github.com/rust-lang/crates.io-index"
  5483. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  5484. [[package]]
  5485. name = "time-macros"
  5486. version = "0.2.18"
  5487. source = "registry+https://github.com/rust-lang/crates.io-index"
  5488. checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
  5489. dependencies = [
  5490. "num-conv",
  5491. "time-core",
  5492. ]
  5493. [[package]]
  5494. name = "tinyvec"
  5495. version = "1.8.0"
  5496. source = "registry+https://github.com/rust-lang/crates.io-index"
  5497. checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
  5498. dependencies = [
  5499. "tinyvec_macros",
  5500. ]
  5501. [[package]]
  5502. name = "tinyvec_macros"
  5503. version = "0.1.1"
  5504. source = "registry+https://github.com/rust-lang/crates.io-index"
  5505. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  5506. [[package]]
  5507. name = "tokio"
  5508. version = "1.39.3"
  5509. source = "registry+https://github.com/rust-lang/crates.io-index"
  5510. checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5"
  5511. dependencies = [
  5512. "backtrace",
  5513. "bytes",
  5514. "libc",
  5515. "mio",
  5516. "parking_lot",
  5517. "pin-project-lite",
  5518. "signal-hook-registry",
  5519. "socket2",
  5520. "tokio-macros",
  5521. "windows-sys 0.52.0",
  5522. ]
  5523. [[package]]
  5524. name = "tokio-io-timeout"
  5525. version = "1.2.0"
  5526. source = "registry+https://github.com/rust-lang/crates.io-index"
  5527. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  5528. dependencies = [
  5529. "pin-project-lite",
  5530. "tokio",
  5531. ]
  5532. [[package]]
  5533. name = "tokio-macros"
  5534. version = "2.4.0"
  5535. source = "registry+https://github.com/rust-lang/crates.io-index"
  5536. checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
  5537. dependencies = [
  5538. "proc-macro2",
  5539. "quote",
  5540. "syn 2.0.75",
  5541. ]
  5542. [[package]]
  5543. name = "tokio-native-tls"
  5544. version = "0.3.1"
  5545. source = "registry+https://github.com/rust-lang/crates.io-index"
  5546. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  5547. dependencies = [
  5548. "native-tls",
  5549. "tokio",
  5550. ]
  5551. [[package]]
  5552. name = "tokio-rayon"
  5553. version = "2.1.0"
  5554. source = "registry+https://github.com/rust-lang/crates.io-index"
  5555. checksum = "7cf33a76e0b1dd03b778f83244137bd59887abf25c0e87bc3e7071105f457693"
  5556. dependencies = [
  5557. "rayon",
  5558. "tokio",
  5559. ]
  5560. [[package]]
  5561. name = "tokio-rustls"
  5562. version = "0.24.1"
  5563. source = "registry+https://github.com/rust-lang/crates.io-index"
  5564. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  5565. dependencies = [
  5566. "rustls 0.21.12",
  5567. "tokio",
  5568. ]
  5569. [[package]]
  5570. name = "tokio-stream"
  5571. version = "0.1.15"
  5572. source = "registry+https://github.com/rust-lang/crates.io-index"
  5573. checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
  5574. dependencies = [
  5575. "futures-core",
  5576. "pin-project-lite",
  5577. "tokio",
  5578. "tokio-util",
  5579. ]
  5580. [[package]]
  5581. name = "tokio-util"
  5582. version = "0.7.11"
  5583. source = "registry+https://github.com/rust-lang/crates.io-index"
  5584. checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
  5585. dependencies = [
  5586. "bytes",
  5587. "futures-core",
  5588. "futures-sink",
  5589. "pin-project-lite",
  5590. "tokio",
  5591. ]
  5592. [[package]]
  5593. name = "toml"
  5594. version = "0.5.11"
  5595. source = "registry+https://github.com/rust-lang/crates.io-index"
  5596. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  5597. dependencies = [
  5598. "serde",
  5599. ]
  5600. [[package]]
  5601. name = "toml"
  5602. version = "0.8.19"
  5603. source = "registry+https://github.com/rust-lang/crates.io-index"
  5604. checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
  5605. dependencies = [
  5606. "serde",
  5607. "serde_spanned",
  5608. "toml_datetime",
  5609. "toml_edit 0.22.20",
  5610. ]
  5611. [[package]]
  5612. name = "toml_datetime"
  5613. version = "0.6.8"
  5614. source = "registry+https://github.com/rust-lang/crates.io-index"
  5615. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  5616. dependencies = [
  5617. "serde",
  5618. ]
  5619. [[package]]
  5620. name = "toml_edit"
  5621. version = "0.21.1"
  5622. source = "registry+https://github.com/rust-lang/crates.io-index"
  5623. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  5624. dependencies = [
  5625. "indexmap 2.4.0",
  5626. "toml_datetime",
  5627. "winnow 0.5.40",
  5628. ]
  5629. [[package]]
  5630. name = "toml_edit"
  5631. version = "0.22.20"
  5632. source = "registry+https://github.com/rust-lang/crates.io-index"
  5633. checksum = "583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d"
  5634. dependencies = [
  5635. "indexmap 2.4.0",
  5636. "serde",
  5637. "serde_spanned",
  5638. "toml_datetime",
  5639. "winnow 0.6.18",
  5640. ]
  5641. [[package]]
  5642. name = "tower"
  5643. version = "0.4.13"
  5644. source = "registry+https://github.com/rust-lang/crates.io-index"
  5645. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  5646. dependencies = [
  5647. "futures-core",
  5648. "futures-util",
  5649. "pin-project",
  5650. "pin-project-lite",
  5651. "tokio",
  5652. "tower-layer",
  5653. "tower-service",
  5654. "tracing",
  5655. ]
  5656. [[package]]
  5657. name = "tower-http"
  5658. version = "0.3.5"
  5659. source = "registry+https://github.com/rust-lang/crates.io-index"
  5660. checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
  5661. dependencies = [
  5662. "bitflags 1.3.2",
  5663. "bytes",
  5664. "futures-core",
  5665. "futures-util",
  5666. "http 0.2.12",
  5667. "http-body",
  5668. "http-range-header",
  5669. "pin-project-lite",
  5670. "tokio",
  5671. "tower",
  5672. "tower-layer",
  5673. "tower-service",
  5674. "tracing",
  5675. ]
  5676. [[package]]
  5677. name = "tower-layer"
  5678. version = "0.3.3"
  5679. source = "registry+https://github.com/rust-lang/crates.io-index"
  5680. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  5681. [[package]]
  5682. name = "tower-service"
  5683. version = "0.3.3"
  5684. source = "registry+https://github.com/rust-lang/crates.io-index"
  5685. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  5686. [[package]]
  5687. name = "tracing"
  5688. version = "0.1.40"
  5689. source = "registry+https://github.com/rust-lang/crates.io-index"
  5690. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  5691. dependencies = [
  5692. "log",
  5693. "pin-project-lite",
  5694. "tracing-attributes",
  5695. "tracing-core",
  5696. ]
  5697. [[package]]
  5698. name = "tracing-attributes"
  5699. version = "0.1.27"
  5700. source = "registry+https://github.com/rust-lang/crates.io-index"
  5701. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  5702. dependencies = [
  5703. "proc-macro2",
  5704. "quote",
  5705. "syn 2.0.75",
  5706. ]
  5707. [[package]]
  5708. name = "tracing-core"
  5709. version = "0.1.32"
  5710. source = "registry+https://github.com/rust-lang/crates.io-index"
  5711. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  5712. dependencies = [
  5713. "once_cell",
  5714. ]
  5715. [[package]]
  5716. name = "tracing-futures"
  5717. version = "0.2.5"
  5718. source = "registry+https://github.com/rust-lang/crates.io-index"
  5719. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  5720. dependencies = [
  5721. "futures",
  5722. "futures-task",
  5723. "pin-project",
  5724. "tracing",
  5725. ]
  5726. [[package]]
  5727. name = "try-lock"
  5728. version = "0.2.5"
  5729. source = "registry+https://github.com/rust-lang/crates.io-index"
  5730. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  5731. [[package]]
  5732. name = "typenum"
  5733. version = "1.17.0"
  5734. source = "registry+https://github.com/rust-lang/crates.io-index"
  5735. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  5736. [[package]]
  5737. name = "ucd-trie"
  5738. version = "0.1.6"
  5739. source = "registry+https://github.com/rust-lang/crates.io-index"
  5740. checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
  5741. [[package]]
  5742. name = "uint"
  5743. version = "0.9.5"
  5744. source = "registry+https://github.com/rust-lang/crates.io-index"
  5745. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5746. dependencies = [
  5747. "byteorder",
  5748. "crunchy",
  5749. "hex",
  5750. "static_assertions",
  5751. ]
  5752. [[package]]
  5753. name = "unarray"
  5754. version = "0.1.4"
  5755. source = "registry+https://github.com/rust-lang/crates.io-index"
  5756. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  5757. [[package]]
  5758. name = "unicode-bidi"
  5759. version = "0.3.15"
  5760. source = "registry+https://github.com/rust-lang/crates.io-index"
  5761. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  5762. [[package]]
  5763. name = "unicode-ident"
  5764. version = "1.0.12"
  5765. source = "registry+https://github.com/rust-lang/crates.io-index"
  5766. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  5767. [[package]]
  5768. name = "unicode-normalization"
  5769. version = "0.1.23"
  5770. source = "registry+https://github.com/rust-lang/crates.io-index"
  5771. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  5772. dependencies = [
  5773. "tinyvec",
  5774. ]
  5775. [[package]]
  5776. name = "unicode-width"
  5777. version = "0.1.13"
  5778. source = "registry+https://github.com/rust-lang/crates.io-index"
  5779. checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
  5780. [[package]]
  5781. name = "unicode-xid"
  5782. version = "0.2.5"
  5783. source = "registry+https://github.com/rust-lang/crates.io-index"
  5784. checksum = "229730647fbc343e3a80e463c1db7f78f3855d3f3739bee0dda773c9a037c90a"
  5785. [[package]]
  5786. name = "universal-hash"
  5787. version = "0.5.1"
  5788. source = "registry+https://github.com/rust-lang/crates.io-index"
  5789. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  5790. dependencies = [
  5791. "crypto-common",
  5792. "subtle",
  5793. ]
  5794. [[package]]
  5795. name = "unreachable"
  5796. version = "1.0.0"
  5797. source = "registry+https://github.com/rust-lang/crates.io-index"
  5798. checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
  5799. dependencies = [
  5800. "void",
  5801. ]
  5802. [[package]]
  5803. name = "unsigned-varint"
  5804. version = "0.7.2"
  5805. source = "registry+https://github.com/rust-lang/crates.io-index"
  5806. checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105"
  5807. dependencies = [
  5808. "asynchronous-codec 0.6.2",
  5809. "bytes",
  5810. ]
  5811. [[package]]
  5812. name = "unsigned-varint"
  5813. version = "0.8.0"
  5814. source = "registry+https://github.com/rust-lang/crates.io-index"
  5815. checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
  5816. [[package]]
  5817. name = "untrusted"
  5818. version = "0.7.1"
  5819. source = "registry+https://github.com/rust-lang/crates.io-index"
  5820. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  5821. [[package]]
  5822. name = "untrusted"
  5823. version = "0.9.0"
  5824. source = "registry+https://github.com/rust-lang/crates.io-index"
  5825. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5826. [[package]]
  5827. name = "url"
  5828. version = "2.5.2"
  5829. source = "registry+https://github.com/rust-lang/crates.io-index"
  5830. checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
  5831. dependencies = [
  5832. "form_urlencoded",
  5833. "idna 0.5.0",
  5834. "percent-encoding",
  5835. ]
  5836. [[package]]
  5837. name = "utf8parse"
  5838. version = "0.2.2"
  5839. source = "registry+https://github.com/rust-lang/crates.io-index"
  5840. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  5841. [[package]]
  5842. name = "uuid"
  5843. version = "0.8.2"
  5844. source = "registry+https://github.com/rust-lang/crates.io-index"
  5845. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  5846. dependencies = [
  5847. "getrandom",
  5848. "serde",
  5849. ]
  5850. [[package]]
  5851. name = "uuid"
  5852. version = "1.10.0"
  5853. source = "registry+https://github.com/rust-lang/crates.io-index"
  5854. checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
  5855. dependencies = [
  5856. "getrandom",
  5857. ]
  5858. [[package]]
  5859. name = "vcpkg"
  5860. version = "0.2.15"
  5861. source = "registry+https://github.com/rust-lang/crates.io-index"
  5862. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5863. [[package]]
  5864. name = "version_check"
  5865. version = "0.9.5"
  5866. source = "registry+https://github.com/rust-lang/crates.io-index"
  5867. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  5868. [[package]]
  5869. name = "void"
  5870. version = "1.0.2"
  5871. source = "registry+https://github.com/rust-lang/crates.io-index"
  5872. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5873. [[package]]
  5874. name = "wait-timeout"
  5875. version = "0.2.0"
  5876. source = "registry+https://github.com/rust-lang/crates.io-index"
  5877. checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
  5878. dependencies = [
  5879. "libc",
  5880. ]
  5881. [[package]]
  5882. name = "want"
  5883. version = "0.3.1"
  5884. source = "registry+https://github.com/rust-lang/crates.io-index"
  5885. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  5886. dependencies = [
  5887. "try-lock",
  5888. ]
  5889. [[package]]
  5890. name = "wasi"
  5891. version = "0.11.0+wasi-snapshot-preview1"
  5892. source = "registry+https://github.com/rust-lang/crates.io-index"
  5893. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5894. [[package]]
  5895. name = "wasm-bindgen"
  5896. version = "0.2.93"
  5897. source = "registry+https://github.com/rust-lang/crates.io-index"
  5898. checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
  5899. dependencies = [
  5900. "cfg-if",
  5901. "once_cell",
  5902. "wasm-bindgen-macro",
  5903. ]
  5904. [[package]]
  5905. name = "wasm-bindgen-backend"
  5906. version = "0.2.93"
  5907. source = "registry+https://github.com/rust-lang/crates.io-index"
  5908. checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
  5909. dependencies = [
  5910. "bumpalo",
  5911. "log",
  5912. "once_cell",
  5913. "proc-macro2",
  5914. "quote",
  5915. "syn 2.0.75",
  5916. "wasm-bindgen-shared",
  5917. ]
  5918. [[package]]
  5919. name = "wasm-bindgen-futures"
  5920. version = "0.4.43"
  5921. source = "registry+https://github.com/rust-lang/crates.io-index"
  5922. checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
  5923. dependencies = [
  5924. "cfg-if",
  5925. "js-sys",
  5926. "wasm-bindgen",
  5927. "web-sys",
  5928. ]
  5929. [[package]]
  5930. name = "wasm-bindgen-macro"
  5931. version = "0.2.93"
  5932. source = "registry+https://github.com/rust-lang/crates.io-index"
  5933. checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
  5934. dependencies = [
  5935. "quote",
  5936. "wasm-bindgen-macro-support",
  5937. ]
  5938. [[package]]
  5939. name = "wasm-bindgen-macro-support"
  5940. version = "0.2.93"
  5941. source = "registry+https://github.com/rust-lang/crates.io-index"
  5942. checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
  5943. dependencies = [
  5944. "proc-macro2",
  5945. "quote",
  5946. "syn 2.0.75",
  5947. "wasm-bindgen-backend",
  5948. "wasm-bindgen-shared",
  5949. ]
  5950. [[package]]
  5951. name = "wasm-bindgen-shared"
  5952. version = "0.2.93"
  5953. source = "registry+https://github.com/rust-lang/crates.io-index"
  5954. checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
  5955. [[package]]
  5956. name = "wasm-encoder"
  5957. version = "0.212.0"
  5958. source = "registry+https://github.com/rust-lang/crates.io-index"
  5959. checksum = "501940df4418b8929eb6d52f1aade1fdd15a5b86c92453cb696e3c906bd3fc33"
  5960. dependencies = [
  5961. "leb128",
  5962. ]
  5963. [[package]]
  5964. name = "wasmparser"
  5965. version = "0.212.0"
  5966. source = "registry+https://github.com/rust-lang/crates.io-index"
  5967. checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8"
  5968. dependencies = [
  5969. "ahash",
  5970. "bitflags 2.6.0",
  5971. "hashbrown 0.14.5",
  5972. "indexmap 2.4.0",
  5973. "semver",
  5974. "serde",
  5975. ]
  5976. [[package]]
  5977. name = "wasmprinter"
  5978. version = "0.212.0"
  5979. source = "registry+https://github.com/rust-lang/crates.io-index"
  5980. checksum = "dfac65326cc561112af88c3028f6dfdb140acff67ede33a8e86be2dc6b8956f7"
  5981. dependencies = [
  5982. "anyhow",
  5983. "termcolor",
  5984. "wasmparser",
  5985. ]
  5986. [[package]]
  5987. name = "wasmtime"
  5988. version = "23.0.2"
  5989. source = "registry+https://github.com/rust-lang/crates.io-index"
  5990. checksum = "07232e0b473af36112da7348f51e73fa8b11047a6cb546096da3812930b7c93a"
  5991. dependencies = [
  5992. "anyhow",
  5993. "bitflags 2.6.0",
  5994. "bumpalo",
  5995. "cc",
  5996. "cfg-if",
  5997. "hashbrown 0.14.5",
  5998. "indexmap 2.4.0",
  5999. "libc",
  6000. "libm",
  6001. "log",
  6002. "mach2",
  6003. "memfd",
  6004. "object",
  6005. "once_cell",
  6006. "paste",
  6007. "postcard",
  6008. "psm",
  6009. "rayon",
  6010. "rustix",
  6011. "serde",
  6012. "serde_derive",
  6013. "smallvec",
  6014. "sptr",
  6015. "target-lexicon",
  6016. "wasmparser",
  6017. "wasmtime-asm-macros",
  6018. "wasmtime-cache",
  6019. "wasmtime-component-macro",
  6020. "wasmtime-cranelift",
  6021. "wasmtime-environ",
  6022. "wasmtime-jit-icache-coherence",
  6023. "wasmtime-slab",
  6024. "wasmtime-versioned-export-macros",
  6025. "windows-sys 0.52.0",
  6026. ]
  6027. [[package]]
  6028. name = "wasmtime-asm-macros"
  6029. version = "23.0.2"
  6030. source = "registry+https://github.com/rust-lang/crates.io-index"
  6031. checksum = "e5a9c42562d879c749288d9a26acc0d95d2ca069e30c2ec2efce84461c4d62b3"
  6032. dependencies = [
  6033. "cfg-if",
  6034. ]
  6035. [[package]]
  6036. name = "wasmtime-cache"
  6037. version = "23.0.2"
  6038. source = "registry+https://github.com/rust-lang/crates.io-index"
  6039. checksum = "38d5d5aac98c8ae87cf5244495da7722e3fa022aa6f3f4fcd5e3d6e5699ce422"
  6040. dependencies = [
  6041. "anyhow",
  6042. "base64 0.21.7",
  6043. "directories-next",
  6044. "log",
  6045. "postcard",
  6046. "rustix",
  6047. "serde",
  6048. "serde_derive",
  6049. "sha2 0.10.8",
  6050. "toml 0.8.19",
  6051. "windows-sys 0.52.0",
  6052. "zstd",
  6053. ]
  6054. [[package]]
  6055. name = "wasmtime-component-macro"
  6056. version = "23.0.2"
  6057. source = "registry+https://github.com/rust-lang/crates.io-index"
  6058. checksum = "c0c3f57c4bc96f9b4a6ff4d6cb6e837913eff32e98d09e2b6d79b5c4647b415b"
  6059. dependencies = [
  6060. "anyhow",
  6061. "proc-macro2",
  6062. "quote",
  6063. "syn 2.0.75",
  6064. "wasmtime-component-util",
  6065. "wasmtime-wit-bindgen",
  6066. "wit-parser",
  6067. ]
  6068. [[package]]
  6069. name = "wasmtime-component-util"
  6070. version = "23.0.2"
  6071. source = "registry+https://github.com/rust-lang/crates.io-index"
  6072. checksum = "1da707969bc31a565da9b32d087eb2370c95c6f2087c5539a15f2e3b27e77203"
  6073. [[package]]
  6074. name = "wasmtime-cranelift"
  6075. version = "23.0.2"
  6076. source = "registry+https://github.com/rust-lang/crates.io-index"
  6077. checksum = "62cb6135ec46994299be711b78b03acaa9480de3715f827d450f0c947a84977c"
  6078. dependencies = [
  6079. "anyhow",
  6080. "cfg-if",
  6081. "cranelift-codegen",
  6082. "cranelift-control",
  6083. "cranelift-entity",
  6084. "cranelift-frontend",
  6085. "cranelift-native",
  6086. "cranelift-wasm",
  6087. "gimli 0.28.1",
  6088. "log",
  6089. "object",
  6090. "target-lexicon",
  6091. "thiserror",
  6092. "wasmparser",
  6093. "wasmtime-environ",
  6094. "wasmtime-versioned-export-macros",
  6095. ]
  6096. [[package]]
  6097. name = "wasmtime-environ"
  6098. version = "23.0.2"
  6099. source = "registry+https://github.com/rust-lang/crates.io-index"
  6100. checksum = "9bcaa3b42a0718e9123da7fb75e8e13fc95df7db2a7e32e2f2f4f0d3333b7d6f"
  6101. dependencies = [
  6102. "anyhow",
  6103. "cranelift-bitset",
  6104. "cranelift-entity",
  6105. "gimli 0.28.1",
  6106. "indexmap 2.4.0",
  6107. "log",
  6108. "object",
  6109. "postcard",
  6110. "serde",
  6111. "serde_derive",
  6112. "target-lexicon",
  6113. "wasm-encoder",
  6114. "wasmparser",
  6115. "wasmprinter",
  6116. "wasmtime-types",
  6117. ]
  6118. [[package]]
  6119. name = "wasmtime-jit-icache-coherence"
  6120. version = "23.0.2"
  6121. source = "registry+https://github.com/rust-lang/crates.io-index"
  6122. checksum = "2cfee42dac5148fc2664ab1f5cb8d7fa77a28d1a2cf1d9483abc2c3d751a58b9"
  6123. dependencies = [
  6124. "anyhow",
  6125. "cfg-if",
  6126. "libc",
  6127. "windows-sys 0.52.0",
  6128. ]
  6129. [[package]]
  6130. name = "wasmtime-slab"
  6131. version = "23.0.2"
  6132. source = "registry+https://github.com/rust-lang/crates.io-index"
  6133. checksum = "42eb8f6515708ec67974998c3e644101db4186308985f5ef7c2ef324ff33c948"
  6134. [[package]]
  6135. name = "wasmtime-types"
  6136. version = "23.0.2"
  6137. source = "registry+https://github.com/rust-lang/crates.io-index"
  6138. checksum = "046873fb8fb3e9652f3fd76fe99c8c8129007695c3d73b2e307fdae40f6e324c"
  6139. dependencies = [
  6140. "anyhow",
  6141. "cranelift-entity",
  6142. "serde",
  6143. "serde_derive",
  6144. "smallvec",
  6145. "wasmparser",
  6146. ]
  6147. [[package]]
  6148. name = "wasmtime-versioned-export-macros"
  6149. version = "23.0.2"
  6150. source = "registry+https://github.com/rust-lang/crates.io-index"
  6151. checksum = "99c02af2e9dbeb427304d1a08787d70ed0dbfec1af2236616f84c9f1f03e7969"
  6152. dependencies = [
  6153. "proc-macro2",
  6154. "quote",
  6155. "syn 2.0.75",
  6156. ]
  6157. [[package]]
  6158. name = "wasmtime-wit-bindgen"
  6159. version = "23.0.2"
  6160. source = "registry+https://github.com/rust-lang/crates.io-index"
  6161. checksum = "75f528f8b8a2376a3dacaf497d960216dd466d324425361e1e00e26de0a7705c"
  6162. dependencies = [
  6163. "anyhow",
  6164. "heck 0.4.1",
  6165. "indexmap 2.4.0",
  6166. "wit-parser",
  6167. ]
  6168. [[package]]
  6169. name = "web-sys"
  6170. version = "0.3.70"
  6171. source = "registry+https://github.com/rust-lang/crates.io-index"
  6172. checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
  6173. dependencies = [
  6174. "js-sys",
  6175. "wasm-bindgen",
  6176. ]
  6177. [[package]]
  6178. name = "web-time"
  6179. version = "1.1.0"
  6180. source = "registry+https://github.com/rust-lang/crates.io-index"
  6181. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  6182. dependencies = [
  6183. "js-sys",
  6184. "wasm-bindgen",
  6185. ]
  6186. [[package]]
  6187. name = "webpki-roots"
  6188. version = "0.25.4"
  6189. source = "registry+https://github.com/rust-lang/crates.io-index"
  6190. checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
  6191. [[package]]
  6192. name = "which"
  6193. version = "6.0.3"
  6194. source = "registry+https://github.com/rust-lang/crates.io-index"
  6195. checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
  6196. dependencies = [
  6197. "either",
  6198. "home",
  6199. "rustix",
  6200. "winsafe",
  6201. ]
  6202. [[package]]
  6203. name = "widestring"
  6204. version = "1.1.0"
  6205. source = "registry+https://github.com/rust-lang/crates.io-index"
  6206. checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
  6207. [[package]]
  6208. name = "winapi"
  6209. version = "0.3.9"
  6210. source = "registry+https://github.com/rust-lang/crates.io-index"
  6211. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6212. dependencies = [
  6213. "winapi-i686-pc-windows-gnu",
  6214. "winapi-x86_64-pc-windows-gnu",
  6215. ]
  6216. [[package]]
  6217. name = "winapi-i686-pc-windows-gnu"
  6218. version = "0.4.0"
  6219. source = "registry+https://github.com/rust-lang/crates.io-index"
  6220. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6221. [[package]]
  6222. name = "winapi-util"
  6223. version = "0.1.9"
  6224. source = "registry+https://github.com/rust-lang/crates.io-index"
  6225. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  6226. dependencies = [
  6227. "windows-sys 0.59.0",
  6228. ]
  6229. [[package]]
  6230. name = "winapi-x86_64-pc-windows-gnu"
  6231. version = "0.4.0"
  6232. source = "registry+https://github.com/rust-lang/crates.io-index"
  6233. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6234. [[package]]
  6235. name = "windows"
  6236. version = "0.51.1"
  6237. source = "registry+https://github.com/rust-lang/crates.io-index"
  6238. checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
  6239. dependencies = [
  6240. "windows-core 0.51.1",
  6241. "windows-targets 0.48.5",
  6242. ]
  6243. [[package]]
  6244. name = "windows-core"
  6245. version = "0.51.1"
  6246. source = "registry+https://github.com/rust-lang/crates.io-index"
  6247. checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
  6248. dependencies = [
  6249. "windows-targets 0.48.5",
  6250. ]
  6251. [[package]]
  6252. name = "windows-core"
  6253. version = "0.52.0"
  6254. source = "registry+https://github.com/rust-lang/crates.io-index"
  6255. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  6256. dependencies = [
  6257. "windows-targets 0.52.6",
  6258. ]
  6259. [[package]]
  6260. name = "windows-sys"
  6261. version = "0.48.0"
  6262. source = "registry+https://github.com/rust-lang/crates.io-index"
  6263. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6264. dependencies = [
  6265. "windows-targets 0.48.5",
  6266. ]
  6267. [[package]]
  6268. name = "windows-sys"
  6269. version = "0.52.0"
  6270. source = "registry+https://github.com/rust-lang/crates.io-index"
  6271. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  6272. dependencies = [
  6273. "windows-targets 0.52.6",
  6274. ]
  6275. [[package]]
  6276. name = "windows-sys"
  6277. version = "0.59.0"
  6278. source = "registry+https://github.com/rust-lang/crates.io-index"
  6279. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  6280. dependencies = [
  6281. "windows-targets 0.52.6",
  6282. ]
  6283. [[package]]
  6284. name = "windows-targets"
  6285. version = "0.48.5"
  6286. source = "registry+https://github.com/rust-lang/crates.io-index"
  6287. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  6288. dependencies = [
  6289. "windows_aarch64_gnullvm 0.48.5",
  6290. "windows_aarch64_msvc 0.48.5",
  6291. "windows_i686_gnu 0.48.5",
  6292. "windows_i686_msvc 0.48.5",
  6293. "windows_x86_64_gnu 0.48.5",
  6294. "windows_x86_64_gnullvm 0.48.5",
  6295. "windows_x86_64_msvc 0.48.5",
  6296. ]
  6297. [[package]]
  6298. name = "windows-targets"
  6299. version = "0.52.6"
  6300. source = "registry+https://github.com/rust-lang/crates.io-index"
  6301. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  6302. dependencies = [
  6303. "windows_aarch64_gnullvm 0.52.6",
  6304. "windows_aarch64_msvc 0.52.6",
  6305. "windows_i686_gnu 0.52.6",
  6306. "windows_i686_gnullvm",
  6307. "windows_i686_msvc 0.52.6",
  6308. "windows_x86_64_gnu 0.52.6",
  6309. "windows_x86_64_gnullvm 0.52.6",
  6310. "windows_x86_64_msvc 0.52.6",
  6311. ]
  6312. [[package]]
  6313. name = "windows_aarch64_gnullvm"
  6314. version = "0.48.5"
  6315. source = "registry+https://github.com/rust-lang/crates.io-index"
  6316. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  6317. [[package]]
  6318. name = "windows_aarch64_gnullvm"
  6319. version = "0.52.6"
  6320. source = "registry+https://github.com/rust-lang/crates.io-index"
  6321. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  6322. [[package]]
  6323. name = "windows_aarch64_msvc"
  6324. version = "0.48.5"
  6325. source = "registry+https://github.com/rust-lang/crates.io-index"
  6326. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  6327. [[package]]
  6328. name = "windows_aarch64_msvc"
  6329. version = "0.52.6"
  6330. source = "registry+https://github.com/rust-lang/crates.io-index"
  6331. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  6332. [[package]]
  6333. name = "windows_i686_gnu"
  6334. version = "0.48.5"
  6335. source = "registry+https://github.com/rust-lang/crates.io-index"
  6336. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  6337. [[package]]
  6338. name = "windows_i686_gnu"
  6339. version = "0.52.6"
  6340. source = "registry+https://github.com/rust-lang/crates.io-index"
  6341. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  6342. [[package]]
  6343. name = "windows_i686_gnullvm"
  6344. version = "0.52.6"
  6345. source = "registry+https://github.com/rust-lang/crates.io-index"
  6346. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  6347. [[package]]
  6348. name = "windows_i686_msvc"
  6349. version = "0.48.5"
  6350. source = "registry+https://github.com/rust-lang/crates.io-index"
  6351. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  6352. [[package]]
  6353. name = "windows_i686_msvc"
  6354. version = "0.52.6"
  6355. source = "registry+https://github.com/rust-lang/crates.io-index"
  6356. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  6357. [[package]]
  6358. name = "windows_x86_64_gnu"
  6359. version = "0.48.5"
  6360. source = "registry+https://github.com/rust-lang/crates.io-index"
  6361. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  6362. [[package]]
  6363. name = "windows_x86_64_gnu"
  6364. version = "0.52.6"
  6365. source = "registry+https://github.com/rust-lang/crates.io-index"
  6366. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  6367. [[package]]
  6368. name = "windows_x86_64_gnullvm"
  6369. version = "0.48.5"
  6370. source = "registry+https://github.com/rust-lang/crates.io-index"
  6371. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  6372. [[package]]
  6373. name = "windows_x86_64_gnullvm"
  6374. version = "0.52.6"
  6375. source = "registry+https://github.com/rust-lang/crates.io-index"
  6376. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  6377. [[package]]
  6378. name = "windows_x86_64_msvc"
  6379. version = "0.48.5"
  6380. source = "registry+https://github.com/rust-lang/crates.io-index"
  6381. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  6382. [[package]]
  6383. name = "windows_x86_64_msvc"
  6384. version = "0.52.6"
  6385. source = "registry+https://github.com/rust-lang/crates.io-index"
  6386. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  6387. [[package]]
  6388. name = "winnow"
  6389. version = "0.5.40"
  6390. source = "registry+https://github.com/rust-lang/crates.io-index"
  6391. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  6392. dependencies = [
  6393. "memchr",
  6394. ]
  6395. [[package]]
  6396. name = "winnow"
  6397. version = "0.6.18"
  6398. source = "registry+https://github.com/rust-lang/crates.io-index"
  6399. checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
  6400. dependencies = [
  6401. "memchr",
  6402. ]
  6403. [[package]]
  6404. name = "winreg"
  6405. version = "0.50.0"
  6406. source = "registry+https://github.com/rust-lang/crates.io-index"
  6407. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  6408. dependencies = [
  6409. "cfg-if",
  6410. "windows-sys 0.48.0",
  6411. ]
  6412. [[package]]
  6413. name = "winsafe"
  6414. version = "0.0.19"
  6415. source = "registry+https://github.com/rust-lang/crates.io-index"
  6416. checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
  6417. [[package]]
  6418. name = "wit-parser"
  6419. version = "0.212.0"
  6420. source = "registry+https://github.com/rust-lang/crates.io-index"
  6421. checksum = "ceeb0424aa8679f3fcf2d6e3cfa381f3d6fa6179976a2c05a6249dd2bb426716"
  6422. dependencies = [
  6423. "anyhow",
  6424. "id-arena",
  6425. "indexmap 2.4.0",
  6426. "log",
  6427. "semver",
  6428. "serde",
  6429. "serde_derive",
  6430. "serde_json",
  6431. "unicode-xid",
  6432. "wasmparser",
  6433. ]
  6434. [[package]]
  6435. name = "wormhole-supported-chains"
  6436. version = "0.1.0"
  6437. source = "registry+https://github.com/rust-lang/crates.io-index"
  6438. checksum = "3f42a80a24212937cc7d7b0ab8115bb87d82f949a1a42f75d500807072c94ba4"
  6439. dependencies = [
  6440. "serde",
  6441. "thiserror",
  6442. ]
  6443. [[package]]
  6444. name = "wormhole-vaas-serde"
  6445. version = "0.1.0"
  6446. source = "registry+https://github.com/rust-lang/crates.io-index"
  6447. checksum = "240c5a6136dc66ecc65097bb6d159e849b5df4ecbbbb220868d0edbdcc568ed3"
  6448. dependencies = [
  6449. "anyhow",
  6450. "bstr",
  6451. "schemars",
  6452. "serde",
  6453. "serde_wormhole",
  6454. "sha3",
  6455. "thiserror",
  6456. "wormhole-supported-chains",
  6457. ]
  6458. [[package]]
  6459. name = "wyz"
  6460. version = "0.5.1"
  6461. source = "registry+https://github.com/rust-lang/crates.io-index"
  6462. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6463. dependencies = [
  6464. "tap",
  6465. ]
  6466. [[package]]
  6467. name = "x25519-dalek"
  6468. version = "2.0.1"
  6469. source = "registry+https://github.com/rust-lang/crates.io-index"
  6470. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  6471. dependencies = [
  6472. "curve25519-dalek",
  6473. "rand_core",
  6474. "serde",
  6475. "zeroize",
  6476. ]
  6477. [[package]]
  6478. name = "x509-parser"
  6479. version = "0.16.0"
  6480. source = "registry+https://github.com/rust-lang/crates.io-index"
  6481. checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
  6482. dependencies = [
  6483. "asn1-rs",
  6484. "data-encoding",
  6485. "der-parser",
  6486. "lazy_static",
  6487. "nom",
  6488. "oid-registry",
  6489. "rusticata-macros",
  6490. "thiserror",
  6491. "time",
  6492. ]
  6493. [[package]]
  6494. name = "xml-rs"
  6495. version = "0.8.21"
  6496. source = "registry+https://github.com/rust-lang/crates.io-index"
  6497. checksum = "539a77ee7c0de333dcc6da69b177380a0b81e0dacfa4f7344c465a36871ee601"
  6498. [[package]]
  6499. name = "xmltree"
  6500. version = "0.10.3"
  6501. source = "registry+https://github.com/rust-lang/crates.io-index"
  6502. checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
  6503. dependencies = [
  6504. "xml-rs",
  6505. ]
  6506. [[package]]
  6507. name = "yamux"
  6508. version = "0.12.1"
  6509. source = "registry+https://github.com/rust-lang/crates.io-index"
  6510. checksum = "9ed0164ae619f2dc144909a9f082187ebb5893693d8c0196e8085283ccd4b776"
  6511. dependencies = [
  6512. "futures",
  6513. "log",
  6514. "nohash-hasher",
  6515. "parking_lot",
  6516. "pin-project",
  6517. "rand",
  6518. "static_assertions",
  6519. ]
  6520. [[package]]
  6521. name = "yamux"
  6522. version = "0.13.3"
  6523. source = "registry+https://github.com/rust-lang/crates.io-index"
  6524. checksum = "a31b5e376a8b012bee9c423acdbb835fc34d45001cfa3106236a624e4b738028"
  6525. dependencies = [
  6526. "futures",
  6527. "log",
  6528. "nohash-hasher",
  6529. "parking_lot",
  6530. "pin-project",
  6531. "rand",
  6532. "static_assertions",
  6533. "web-time",
  6534. ]
  6535. [[package]]
  6536. name = "yasna"
  6537. version = "0.5.2"
  6538. source = "registry+https://github.com/rust-lang/crates.io-index"
  6539. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6540. dependencies = [
  6541. "time",
  6542. ]
  6543. [[package]]
  6544. name = "zerocopy"
  6545. version = "0.7.35"
  6546. source = "registry+https://github.com/rust-lang/crates.io-index"
  6547. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  6548. dependencies = [
  6549. "byteorder",
  6550. "zerocopy-derive",
  6551. ]
  6552. [[package]]
  6553. name = "zerocopy-derive"
  6554. version = "0.7.35"
  6555. source = "registry+https://github.com/rust-lang/crates.io-index"
  6556. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  6557. dependencies = [
  6558. "proc-macro2",
  6559. "quote",
  6560. "syn 2.0.75",
  6561. ]
  6562. [[package]]
  6563. name = "zeroize"
  6564. version = "1.8.1"
  6565. source = "registry+https://github.com/rust-lang/crates.io-index"
  6566. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  6567. dependencies = [
  6568. "zeroize_derive",
  6569. ]
  6570. [[package]]
  6571. name = "zeroize_derive"
  6572. version = "1.4.2"
  6573. source = "registry+https://github.com/rust-lang/crates.io-index"
  6574. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6575. dependencies = [
  6576. "proc-macro2",
  6577. "quote",
  6578. "syn 2.0.75",
  6579. ]
  6580. [[package]]
  6581. name = "zstd"
  6582. version = "0.13.2"
  6583. source = "registry+https://github.com/rust-lang/crates.io-index"
  6584. checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
  6585. dependencies = [
  6586. "zstd-safe",
  6587. ]
  6588. [[package]]
  6589. name = "zstd-safe"
  6590. version = "7.2.1"
  6591. source = "registry+https://github.com/rust-lang/crates.io-index"
  6592. checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
  6593. dependencies = [
  6594. "zstd-sys",
  6595. ]
  6596. [[package]]
  6597. name = "zstd-sys"
  6598. version = "2.0.13+zstd.1.5.6"
  6599. source = "registry+https://github.com/rust-lang/crates.io-index"
  6600. checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
  6601. dependencies = [
  6602. "cc",
  6603. "pkg-config",
  6604. ]