Cargo.lock 163 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072
  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.21.0"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
  18. dependencies = [
  19. "gimli",
  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 = "aes"
  28. version = "0.8.4"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher",
  34. "cpufeatures",
  35. "zeroize",
  36. ]
  37. [[package]]
  38. name = "ahash"
  39. version = "0.8.11"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  42. dependencies = [
  43. "cfg-if",
  44. "once_cell",
  45. "version_check",
  46. "zerocopy",
  47. ]
  48. [[package]]
  49. name = "aho-corasick"
  50. version = "1.1.3"
  51. source = "registry+https://github.com/rust-lang/crates.io-index"
  52. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  53. dependencies = [
  54. "memchr",
  55. ]
  56. [[package]]
  57. name = "allocator-api2"
  58. version = "0.2.16"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
  61. [[package]]
  62. name = "amplify"
  63. version = "4.6.0"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "9e711289a6cb28171b4f0e6c8019c69ff9476050508dc082167575d458ff74d0"
  66. dependencies = [
  67. "amplify_derive",
  68. "amplify_num",
  69. "ascii",
  70. "wasm-bindgen",
  71. ]
  72. [[package]]
  73. name = "amplify_derive"
  74. version = "4.0.0"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "759dcbfaf94d838367a86d493ec34ccc8aa6fe365cb7880d6bf89006de24d9c1"
  77. dependencies = [
  78. "amplify_syn",
  79. "proc-macro2",
  80. "quote",
  81. "syn 1.0.109",
  82. ]
  83. [[package]]
  84. name = "amplify_num"
  85. version = "0.5.2"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "04c009c5c4de814911b177e2ea59e4930bb918978ed3cce4900d846a6ceb0838"
  88. dependencies = [
  89. "wasm-bindgen",
  90. ]
  91. [[package]]
  92. name = "amplify_syn"
  93. version = "2.0.1"
  94. source = "registry+https://github.com/rust-lang/crates.io-index"
  95. checksum = "7736fb8d473c0d83098b5bac44df6a561e20470375cd8bcae30516dc889fd62a"
  96. dependencies = [
  97. "proc-macro2",
  98. "quote",
  99. "syn 1.0.109",
  100. ]
  101. [[package]]
  102. name = "android-tzdata"
  103. version = "0.1.1"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  106. [[package]]
  107. name = "android_system_properties"
  108. version = "0.1.5"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  111. dependencies = [
  112. "libc",
  113. ]
  114. [[package]]
  115. name = "ansi_term"
  116. version = "0.12.1"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  119. dependencies = [
  120. "winapi",
  121. ]
  122. [[package]]
  123. name = "anyhow"
  124. version = "1.0.81"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
  127. [[package]]
  128. name = "arrayvec"
  129. version = "0.7.4"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
  132. [[package]]
  133. name = "arti-client"
  134. version = "0.14.1"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "e1e5ce0af09766442f95df8b66e26498a9270ba613f2a31cb30dc79d301bdae6"
  137. dependencies = [
  138. "cfg-if",
  139. "derive_builder_fork_arti",
  140. "derive_more",
  141. "directories",
  142. "educe",
  143. "fs-mistrust",
  144. "futures",
  145. "hostname-validator",
  146. "humantime-serde",
  147. "libc",
  148. "pin-project",
  149. "postage",
  150. "safelog",
  151. "serde",
  152. "thiserror",
  153. "tor-async-utils",
  154. "tor-basic-utils",
  155. "tor-cell",
  156. "tor-chanmgr",
  157. "tor-checkable",
  158. "tor-circmgr",
  159. "tor-config",
  160. "tor-dirmgr",
  161. "tor-error",
  162. "tor-guardmgr",
  163. "tor-hsclient",
  164. "tor-hscrypto",
  165. "tor-hsservice",
  166. "tor-keymgr",
  167. "tor-linkspec",
  168. "tor-llcrypto",
  169. "tor-netdir",
  170. "tor-netdoc",
  171. "tor-persist",
  172. "tor-proto",
  173. "tor-rtcompat",
  174. "tracing",
  175. "void",
  176. ]
  177. [[package]]
  178. name = "ascii"
  179. version = "1.1.0"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
  182. [[package]]
  183. name = "ascii-canvas"
  184. version = "3.0.0"
  185. source = "registry+https://github.com/rust-lang/crates.io-index"
  186. checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
  187. dependencies = [
  188. "term",
  189. ]
  190. [[package]]
  191. name = "asn1-rs"
  192. version = "0.6.1"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "22ad1373757efa0f70ec53939aabc7152e1591cb485208052993070ac8d2429d"
  195. dependencies = [
  196. "asn1-rs-derive",
  197. "asn1-rs-impl",
  198. "displaydoc",
  199. "nom",
  200. "num-traits",
  201. "rusticata-macros",
  202. "thiserror",
  203. "time",
  204. ]
  205. [[package]]
  206. name = "asn1-rs-derive"
  207. version = "0.5.0"
  208. source = "registry+https://github.com/rust-lang/crates.io-index"
  209. checksum = "7378575ff571966e99a744addeff0bff98b8ada0dedf1956d59e634db95eaac1"
  210. dependencies = [
  211. "proc-macro2",
  212. "quote",
  213. "syn 2.0.53",
  214. "synstructure",
  215. ]
  216. [[package]]
  217. name = "asn1-rs-impl"
  218. version = "0.2.0"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
  221. dependencies = [
  222. "proc-macro2",
  223. "quote",
  224. "syn 2.0.53",
  225. ]
  226. [[package]]
  227. name = "async-attributes"
  228. version = "1.1.2"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
  231. dependencies = [
  232. "quote",
  233. "syn 1.0.109",
  234. ]
  235. [[package]]
  236. name = "async-channel"
  237. version = "1.9.0"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
  240. dependencies = [
  241. "concurrent-queue",
  242. "event-listener 2.5.3",
  243. "futures-core",
  244. ]
  245. [[package]]
  246. name = "async-channel"
  247. version = "2.2.0"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3"
  250. dependencies = [
  251. "concurrent-queue",
  252. "event-listener 5.2.0",
  253. "event-listener-strategy 0.5.0",
  254. "futures-core",
  255. "pin-project-lite",
  256. ]
  257. [[package]]
  258. name = "async-compression"
  259. version = "0.4.6"
  260. source = "registry+https://github.com/rust-lang/crates.io-index"
  261. checksum = "a116f46a969224200a0a97f29cfd4c50e7534e4b4826bd23ea2c3c533039c82c"
  262. dependencies = [
  263. "flate2",
  264. "futures-core",
  265. "futures-io",
  266. "memchr",
  267. "pin-project-lite",
  268. "xz2",
  269. "zstd 0.13.0",
  270. "zstd-safe 7.0.0",
  271. ]
  272. [[package]]
  273. name = "async-executor"
  274. version = "1.8.0"
  275. source = "registry+https://github.com/rust-lang/crates.io-index"
  276. checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
  277. dependencies = [
  278. "async-lock 3.3.0",
  279. "async-task",
  280. "concurrent-queue",
  281. "fastrand 2.0.1",
  282. "futures-lite 2.3.0",
  283. "slab",
  284. ]
  285. [[package]]
  286. name = "async-fs"
  287. version = "1.6.0"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
  290. dependencies = [
  291. "async-lock 2.8.0",
  292. "autocfg",
  293. "blocking",
  294. "futures-lite 1.13.0",
  295. ]
  296. [[package]]
  297. name = "async-global-executor"
  298. version = "2.4.1"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
  301. dependencies = [
  302. "async-channel 2.2.0",
  303. "async-executor",
  304. "async-io 2.3.2",
  305. "async-lock 3.3.0",
  306. "blocking",
  307. "futures-lite 2.3.0",
  308. "once_cell",
  309. "tokio",
  310. ]
  311. [[package]]
  312. name = "async-io"
  313. version = "1.13.0"
  314. source = "registry+https://github.com/rust-lang/crates.io-index"
  315. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  316. dependencies = [
  317. "async-lock 2.8.0",
  318. "autocfg",
  319. "cfg-if",
  320. "concurrent-queue",
  321. "futures-lite 1.13.0",
  322. "log",
  323. "parking",
  324. "polling 2.8.0",
  325. "rustix 0.37.27",
  326. "slab",
  327. "socket2 0.4.10",
  328. "waker-fn",
  329. ]
  330. [[package]]
  331. name = "async-io"
  332. version = "2.3.2"
  333. source = "registry+https://github.com/rust-lang/crates.io-index"
  334. checksum = "dcccb0f599cfa2f8ace422d3555572f47424da5648a4382a9dd0310ff8210884"
  335. dependencies = [
  336. "async-lock 3.3.0",
  337. "cfg-if",
  338. "concurrent-queue",
  339. "futures-io",
  340. "futures-lite 2.3.0",
  341. "parking",
  342. "polling 3.5.0",
  343. "rustix 0.38.32",
  344. "slab",
  345. "tracing",
  346. "windows-sys 0.52.0",
  347. ]
  348. [[package]]
  349. name = "async-lock"
  350. version = "2.8.0"
  351. source = "registry+https://github.com/rust-lang/crates.io-index"
  352. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  353. dependencies = [
  354. "event-listener 2.5.3",
  355. ]
  356. [[package]]
  357. name = "async-lock"
  358. version = "3.3.0"
  359. source = "registry+https://github.com/rust-lang/crates.io-index"
  360. checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
  361. dependencies = [
  362. "event-listener 4.0.3",
  363. "event-listener-strategy 0.4.0",
  364. "pin-project-lite",
  365. ]
  366. [[package]]
  367. name = "async-net"
  368. version = "1.8.0"
  369. source = "registry+https://github.com/rust-lang/crates.io-index"
  370. checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
  371. dependencies = [
  372. "async-io 1.13.0",
  373. "blocking",
  374. "futures-lite 1.13.0",
  375. ]
  376. [[package]]
  377. name = "async-process"
  378. version = "1.8.1"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
  381. dependencies = [
  382. "async-io 1.13.0",
  383. "async-lock 2.8.0",
  384. "async-signal",
  385. "blocking",
  386. "cfg-if",
  387. "event-listener 3.1.0",
  388. "futures-lite 1.13.0",
  389. "rustix 0.38.32",
  390. "windows-sys 0.48.0",
  391. ]
  392. [[package]]
  393. name = "async-signal"
  394. version = "0.2.5"
  395. source = "registry+https://github.com/rust-lang/crates.io-index"
  396. checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
  397. dependencies = [
  398. "async-io 2.3.2",
  399. "async-lock 2.8.0",
  400. "atomic-waker",
  401. "cfg-if",
  402. "futures-core",
  403. "futures-io",
  404. "rustix 0.38.32",
  405. "signal-hook-registry",
  406. "slab",
  407. "windows-sys 0.48.0",
  408. ]
  409. [[package]]
  410. name = "async-std"
  411. version = "1.12.0"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
  414. dependencies = [
  415. "async-attributes",
  416. "async-channel 1.9.0",
  417. "async-global-executor",
  418. "async-io 1.13.0",
  419. "async-lock 2.8.0",
  420. "async-process",
  421. "crossbeam-utils",
  422. "futures-channel",
  423. "futures-core",
  424. "futures-io",
  425. "futures-lite 1.13.0",
  426. "gloo-timers",
  427. "kv-log-macro",
  428. "log",
  429. "memchr",
  430. "once_cell",
  431. "pin-project-lite",
  432. "pin-utils",
  433. "slab",
  434. "wasm-bindgen-futures",
  435. ]
  436. [[package]]
  437. name = "async-task"
  438. version = "4.7.0"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
  441. [[package]]
  442. name = "async-trait"
  443. version = "0.1.78"
  444. source = "registry+https://github.com/rust-lang/crates.io-index"
  445. checksum = "461abc97219de0eaaf81fe3ef974a540158f3d079c2ab200f891f1a2ef201e85"
  446. dependencies = [
  447. "proc-macro2",
  448. "quote",
  449. "syn 2.0.53",
  450. ]
  451. [[package]]
  452. name = "async-watch"
  453. version = "0.3.1"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. checksum = "a078faf4e27c0c6cc0efb20e5da59dcccc04968ebf2801d8e0b2195124cdcdb2"
  456. dependencies = [
  457. "event-listener 2.5.3",
  458. ]
  459. [[package]]
  460. name = "async_executors"
  461. version = "0.7.0"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "a982d2f86de6137cc05c9db9a915a19886c97911f9790d04f174cede74be01a5"
  464. dependencies = [
  465. "async-std",
  466. "blanket",
  467. "futures-core",
  468. "futures-task",
  469. "futures-util",
  470. "pin-project",
  471. "rustc_version",
  472. ]
  473. [[package]]
  474. name = "async_io_stream"
  475. version = "0.3.3"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
  478. dependencies = [
  479. "futures",
  480. "pharos",
  481. "rustc_version",
  482. ]
  483. [[package]]
  484. name = "asynchronous-codec"
  485. version = "0.7.0"
  486. source = "registry+https://github.com/rust-lang/crates.io-index"
  487. checksum = "a860072022177f903e59730004fb5dc13db9275b79bb2aef7ba8ce831956c233"
  488. dependencies = [
  489. "bytes",
  490. "futures-sink",
  491. "futures-util",
  492. "memchr",
  493. "pin-project-lite",
  494. ]
  495. [[package]]
  496. name = "atomic"
  497. version = "0.5.3"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
  500. [[package]]
  501. name = "atomic-waker"
  502. version = "1.1.2"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
  505. [[package]]
  506. name = "atty"
  507. version = "0.2.14"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  510. dependencies = [
  511. "hermit-abi 0.1.19",
  512. "libc",
  513. "winapi",
  514. ]
  515. [[package]]
  516. name = "auto_impl"
  517. version = "1.2.0"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42"
  520. dependencies = [
  521. "proc-macro2",
  522. "quote",
  523. "syn 2.0.53",
  524. ]
  525. [[package]]
  526. name = "autocfg"
  527. version = "1.1.0"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  530. [[package]]
  531. name = "backtrace"
  532. version = "0.3.69"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
  535. dependencies = [
  536. "addr2line",
  537. "cc",
  538. "cfg-if",
  539. "libc",
  540. "miniz_oxide",
  541. "object",
  542. "rustc-demangle",
  543. ]
  544. [[package]]
  545. name = "base16ct"
  546. version = "0.2.0"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
  549. [[package]]
  550. name = "base64"
  551. version = "0.13.1"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  554. [[package]]
  555. name = "base64"
  556. version = "0.21.7"
  557. source = "registry+https://github.com/rust-lang/crates.io-index"
  558. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  559. [[package]]
  560. name = "base64ct"
  561. version = "1.6.0"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  564. [[package]]
  565. name = "bech32"
  566. version = "0.9.1"
  567. source = "registry+https://github.com/rust-lang/crates.io-index"
  568. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  569. [[package]]
  570. name = "bit-set"
  571. version = "0.5.3"
  572. source = "registry+https://github.com/rust-lang/crates.io-index"
  573. checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
  574. dependencies = [
  575. "bit-vec",
  576. ]
  577. [[package]]
  578. name = "bit-vec"
  579. version = "0.6.3"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
  582. [[package]]
  583. name = "bitflags"
  584. version = "1.3.2"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  587. [[package]]
  588. name = "bitflags"
  589. version = "2.5.0"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
  592. [[package]]
  593. name = "bitvec"
  594. version = "1.0.1"
  595. source = "registry+https://github.com/rust-lang/crates.io-index"
  596. checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
  597. dependencies = [
  598. "funty",
  599. "radium",
  600. "tap",
  601. "wyz",
  602. ]
  603. [[package]]
  604. name = "blanket"
  605. version = "0.3.0"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "e0b121a9fe0df916e362fb3271088d071159cdf11db0e4182d02152850756eff"
  608. dependencies = [
  609. "proc-macro2",
  610. "quote",
  611. "syn 2.0.53",
  612. ]
  613. [[package]]
  614. name = "block-buffer"
  615. version = "0.10.4"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  618. dependencies = [
  619. "generic-array",
  620. ]
  621. [[package]]
  622. name = "blocking"
  623. version = "1.5.1"
  624. source = "registry+https://github.com/rust-lang/crates.io-index"
  625. checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
  626. dependencies = [
  627. "async-channel 2.2.0",
  628. "async-lock 3.3.0",
  629. "async-task",
  630. "fastrand 2.0.1",
  631. "futures-io",
  632. "futures-lite 2.3.0",
  633. "piper",
  634. "tracing",
  635. ]
  636. [[package]]
  637. name = "bounded-vec-deque"
  638. version = "0.1.1"
  639. source = "registry+https://github.com/rust-lang/crates.io-index"
  640. checksum = "2225b558afc76c596898f5f1b3fc35cfce0eb1b13635cbd7d1b2a7177dc10ccd"
  641. [[package]]
  642. name = "bs58"
  643. version = "0.5.1"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  646. dependencies = [
  647. "sha2",
  648. "tinyvec",
  649. ]
  650. [[package]]
  651. name = "bumpalo"
  652. version = "3.15.4"
  653. source = "registry+https://github.com/rust-lang/crates.io-index"
  654. checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa"
  655. [[package]]
  656. name = "by_address"
  657. version = "1.1.0"
  658. source = "registry+https://github.com/rust-lang/crates.io-index"
  659. checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0"
  660. [[package]]
  661. name = "byte-slice-cast"
  662. version = "1.2.2"
  663. source = "registry+https://github.com/rust-lang/crates.io-index"
  664. checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c"
  665. [[package]]
  666. name = "bytecount"
  667. version = "0.6.7"
  668. source = "registry+https://github.com/rust-lang/crates.io-index"
  669. checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
  670. [[package]]
  671. name = "byteorder"
  672. version = "1.5.0"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  675. [[package]]
  676. name = "bytes"
  677. version = "1.5.0"
  678. source = "registry+https://github.com/rust-lang/crates.io-index"
  679. checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
  680. dependencies = [
  681. "serde",
  682. ]
  683. [[package]]
  684. name = "bzip2"
  685. version = "0.4.4"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
  688. dependencies = [
  689. "bzip2-sys",
  690. "libc",
  691. ]
  692. [[package]]
  693. name = "bzip2-sys"
  694. version = "0.1.11+1.0.8"
  695. source = "registry+https://github.com/rust-lang/crates.io-index"
  696. checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
  697. dependencies = [
  698. "cc",
  699. "libc",
  700. "pkg-config",
  701. ]
  702. [[package]]
  703. name = "camino"
  704. version = "1.1.6"
  705. source = "registry+https://github.com/rust-lang/crates.io-index"
  706. checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
  707. dependencies = [
  708. "serde",
  709. ]
  710. [[package]]
  711. name = "caret"
  712. version = "0.4.4"
  713. source = "registry+https://github.com/rust-lang/crates.io-index"
  714. checksum = "7a472d18b7a8b73ecefb280476c3d2b832ac4920dfd0928f3fab94c46b659c4a"
  715. [[package]]
  716. name = "cargo-platform"
  717. version = "0.1.7"
  718. source = "registry+https://github.com/rust-lang/crates.io-index"
  719. checksum = "694c8807f2ae16faecc43dc17d74b3eb042482789fd0eb64b39a2e04e087053f"
  720. dependencies = [
  721. "serde",
  722. ]
  723. [[package]]
  724. name = "cargo_metadata"
  725. version = "0.14.2"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  728. dependencies = [
  729. "camino",
  730. "cargo-platform",
  731. "semver",
  732. "serde",
  733. "serde_json",
  734. ]
  735. [[package]]
  736. name = "cargo_metadata"
  737. version = "0.18.1"
  738. source = "registry+https://github.com/rust-lang/crates.io-index"
  739. checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
  740. dependencies = [
  741. "camino",
  742. "cargo-platform",
  743. "semver",
  744. "serde",
  745. "serde_json",
  746. "thiserror",
  747. ]
  748. [[package]]
  749. name = "cc"
  750. version = "1.0.90"
  751. source = "registry+https://github.com/rust-lang/crates.io-index"
  752. checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
  753. dependencies = [
  754. "jobserver",
  755. "libc",
  756. ]
  757. [[package]]
  758. name = "cfg-if"
  759. version = "1.0.0"
  760. source = "registry+https://github.com/rust-lang/crates.io-index"
  761. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  762. [[package]]
  763. name = "chrono"
  764. version = "0.4.35"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. checksum = "8eaf5903dcbc0a39312feb77df2ff4c76387d591b9fc7b04a238dcf8bb62639a"
  767. dependencies = [
  768. "android-tzdata",
  769. "iana-time-zone",
  770. "num-traits",
  771. "serde",
  772. "windows-targets 0.52.4",
  773. ]
  774. [[package]]
  775. name = "cipher"
  776. version = "0.4.4"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  779. dependencies = [
  780. "crypto-common",
  781. "inout",
  782. "zeroize",
  783. ]
  784. [[package]]
  785. name = "clap"
  786. version = "2.34.0"
  787. source = "registry+https://github.com/rust-lang/crates.io-index"
  788. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  789. dependencies = [
  790. "ansi_term",
  791. "atty",
  792. "bitflags 1.3.2",
  793. "strsim 0.8.0",
  794. "textwrap",
  795. "unicode-width",
  796. "vec_map",
  797. ]
  798. [[package]]
  799. name = "coarsetime"
  800. version = "0.1.34"
  801. source = "registry+https://github.com/rust-lang/crates.io-index"
  802. checksum = "13b3839cf01bb7960114be3ccf2340f541b6d0c81f8690b007b2b39f750f7e5d"
  803. dependencies = [
  804. "libc",
  805. "wasix",
  806. "wasm-bindgen",
  807. ]
  808. [[package]]
  809. name = "coins-bip32"
  810. version = "0.8.7"
  811. source = "registry+https://github.com/rust-lang/crates.io-index"
  812. checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3"
  813. dependencies = [
  814. "bs58",
  815. "coins-core",
  816. "digest",
  817. "hmac",
  818. "k256",
  819. "serde",
  820. "sha2",
  821. "thiserror",
  822. ]
  823. [[package]]
  824. name = "coins-bip39"
  825. version = "0.8.7"
  826. source = "registry+https://github.com/rust-lang/crates.io-index"
  827. checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528"
  828. dependencies = [
  829. "bitvec",
  830. "coins-bip32",
  831. "hmac",
  832. "once_cell",
  833. "pbkdf2 0.12.2",
  834. "rand",
  835. "sha2",
  836. "thiserror",
  837. ]
  838. [[package]]
  839. name = "coins-core"
  840. version = "0.8.7"
  841. source = "registry+https://github.com/rust-lang/crates.io-index"
  842. checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979"
  843. dependencies = [
  844. "base64 0.21.7",
  845. "bech32",
  846. "bs58",
  847. "digest",
  848. "generic-array",
  849. "hex",
  850. "ripemd",
  851. "serde",
  852. "serde_derive",
  853. "sha2",
  854. "sha3",
  855. "thiserror",
  856. ]
  857. [[package]]
  858. name = "concurrent-queue"
  859. version = "2.4.0"
  860. source = "registry+https://github.com/rust-lang/crates.io-index"
  861. checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
  862. dependencies = [
  863. "crossbeam-utils",
  864. ]
  865. [[package]]
  866. name = "config"
  867. version = "0.14.0"
  868. source = "registry+https://github.com/rust-lang/crates.io-index"
  869. checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be"
  870. dependencies = [
  871. "lazy_static",
  872. "nom",
  873. "pathdiff",
  874. "serde",
  875. "toml 0.8.12",
  876. ]
  877. [[package]]
  878. name = "const-hex"
  879. version = "1.11.3"
  880. source = "registry+https://github.com/rust-lang/crates.io-index"
  881. checksum = "5ba00838774b4ab0233e355d26710fbfc8327a05c017f6dc4873f876d1f79f78"
  882. dependencies = [
  883. "cfg-if",
  884. "cpufeatures",
  885. "hex",
  886. "proptest",
  887. "serde",
  888. ]
  889. [[package]]
  890. name = "const-oid"
  891. version = "0.9.6"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
  894. [[package]]
  895. name = "constant_time_eq"
  896. version = "0.1.5"
  897. source = "registry+https://github.com/rust-lang/crates.io-index"
  898. checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
  899. [[package]]
  900. name = "convert_case"
  901. version = "0.4.0"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  904. [[package]]
  905. name = "core-foundation"
  906. version = "0.9.4"
  907. source = "registry+https://github.com/rust-lang/crates.io-index"
  908. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  909. dependencies = [
  910. "core-foundation-sys",
  911. "libc",
  912. ]
  913. [[package]]
  914. name = "core-foundation-sys"
  915. version = "0.8.6"
  916. source = "registry+https://github.com/rust-lang/crates.io-index"
  917. checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
  918. [[package]]
  919. name = "cpufeatures"
  920. version = "0.2.12"
  921. source = "registry+https://github.com/rust-lang/crates.io-index"
  922. checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
  923. dependencies = [
  924. "libc",
  925. ]
  926. [[package]]
  927. name = "crc32fast"
  928. version = "1.4.0"
  929. source = "registry+https://github.com/rust-lang/crates.io-index"
  930. checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
  931. dependencies = [
  932. "cfg-if",
  933. ]
  934. [[package]]
  935. name = "crossbeam-deque"
  936. version = "0.8.5"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
  939. dependencies = [
  940. "crossbeam-epoch",
  941. "crossbeam-utils",
  942. ]
  943. [[package]]
  944. name = "crossbeam-epoch"
  945. version = "0.9.18"
  946. source = "registry+https://github.com/rust-lang/crates.io-index"
  947. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  948. dependencies = [
  949. "crossbeam-utils",
  950. ]
  951. [[package]]
  952. name = "crossbeam-queue"
  953. version = "0.3.11"
  954. source = "registry+https://github.com/rust-lang/crates.io-index"
  955. checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
  956. dependencies = [
  957. "crossbeam-utils",
  958. ]
  959. [[package]]
  960. name = "crossbeam-utils"
  961. version = "0.8.19"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
  964. [[package]]
  965. name = "crunchy"
  966. version = "0.2.2"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  969. [[package]]
  970. name = "crypto-bigint"
  971. version = "0.5.5"
  972. source = "registry+https://github.com/rust-lang/crates.io-index"
  973. checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
  974. dependencies = [
  975. "generic-array",
  976. "rand_core",
  977. "subtle",
  978. "zeroize",
  979. ]
  980. [[package]]
  981. name = "crypto-common"
  982. version = "0.1.6"
  983. source = "registry+https://github.com/rust-lang/crates.io-index"
  984. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  985. dependencies = [
  986. "generic-array",
  987. "typenum",
  988. ]
  989. [[package]]
  990. name = "ct-codecs"
  991. version = "1.1.1"
  992. source = "registry+https://github.com/rust-lang/crates.io-index"
  993. checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
  994. [[package]]
  995. name = "ctr"
  996. version = "0.9.2"
  997. source = "registry+https://github.com/rust-lang/crates.io-index"
  998. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  999. dependencies = [
  1000. "cipher",
  1001. ]
  1002. [[package]]
  1003. name = "curve25519-dalek"
  1004. version = "4.1.2"
  1005. source = "registry+https://github.com/rust-lang/crates.io-index"
  1006. checksum = "0a677b8922c94e01bdbb12126b0bc852f00447528dee1782229af9c720c3f348"
  1007. dependencies = [
  1008. "cfg-if",
  1009. "cpufeatures",
  1010. "curve25519-dalek-derive",
  1011. "digest",
  1012. "fiat-crypto",
  1013. "platforms",
  1014. "rustc_version",
  1015. "subtle",
  1016. "zeroize",
  1017. ]
  1018. [[package]]
  1019. name = "curve25519-dalek-derive"
  1020. version = "0.1.1"
  1021. source = "registry+https://github.com/rust-lang/crates.io-index"
  1022. checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
  1023. dependencies = [
  1024. "proc-macro2",
  1025. "quote",
  1026. "syn 2.0.53",
  1027. ]
  1028. [[package]]
  1029. name = "darkfi"
  1030. version = "0.4.1"
  1031. source = "git+https://github.com/darkrenaissance/darkfi#f7d0b7a5ac5c9f158c61781230076f3fe616c940"
  1032. dependencies = [
  1033. "arti-client",
  1034. "async-trait",
  1035. "darkfi-serial",
  1036. "ed25519-compact",
  1037. "futures",
  1038. "futures-rustls",
  1039. "libc",
  1040. "libsqlite3-sys",
  1041. "log",
  1042. "pin-project-lite",
  1043. "rand",
  1044. "rcgen",
  1045. "rustls-pemfile 2.1.1",
  1046. "semver",
  1047. "serde",
  1048. "simplelog",
  1049. "sled",
  1050. "smol",
  1051. "socket2 0.5.6",
  1052. "structopt",
  1053. "structopt-toml",
  1054. "thiserror",
  1055. "tinyjson",
  1056. "tor-error",
  1057. "tor-hscrypto",
  1058. "tor-rtcompat",
  1059. "url",
  1060. "x509-parser",
  1061. ]
  1062. [[package]]
  1063. name = "darkfi-derive"
  1064. version = "0.4.1"
  1065. source = "git+https://github.com/darkrenaissance/darkfi#f7d0b7a5ac5c9f158c61781230076f3fe616c940"
  1066. dependencies = [
  1067. "darkfi-derive-internal",
  1068. "proc-macro-crate 3.1.0",
  1069. "proc-macro2",
  1070. "quote",
  1071. "syn 2.0.53",
  1072. ]
  1073. [[package]]
  1074. name = "darkfi-derive-internal"
  1075. version = "0.4.1"
  1076. source = "git+https://github.com/darkrenaissance/darkfi#f7d0b7a5ac5c9f158c61781230076f3fe616c940"
  1077. dependencies = [
  1078. "proc-macro2",
  1079. "quote",
  1080. "syn 2.0.53",
  1081. ]
  1082. [[package]]
  1083. name = "darkfi-serial"
  1084. version = "0.4.1"
  1085. source = "git+https://github.com/darkrenaissance/darkfi#f7d0b7a5ac5c9f158c61781230076f3fe616c940"
  1086. dependencies = [
  1087. "async-trait",
  1088. "darkfi-derive",
  1089. "futures-lite 2.3.0",
  1090. "semver",
  1091. "url",
  1092. ]
  1093. [[package]]
  1094. name = "darling"
  1095. version = "0.14.4"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
  1098. dependencies = [
  1099. "darling_core 0.14.4",
  1100. "darling_macro 0.14.4",
  1101. ]
  1102. [[package]]
  1103. name = "darling"
  1104. version = "0.20.8"
  1105. source = "registry+https://github.com/rust-lang/crates.io-index"
  1106. checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
  1107. dependencies = [
  1108. "darling_core 0.20.8",
  1109. "darling_macro 0.20.8",
  1110. ]
  1111. [[package]]
  1112. name = "darling_core"
  1113. version = "0.14.4"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
  1116. dependencies = [
  1117. "fnv",
  1118. "ident_case",
  1119. "proc-macro2",
  1120. "quote",
  1121. "strsim 0.10.0",
  1122. "syn 1.0.109",
  1123. ]
  1124. [[package]]
  1125. name = "darling_core"
  1126. version = "0.20.8"
  1127. source = "registry+https://github.com/rust-lang/crates.io-index"
  1128. checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
  1129. dependencies = [
  1130. "fnv",
  1131. "ident_case",
  1132. "proc-macro2",
  1133. "quote",
  1134. "strsim 0.10.0",
  1135. "syn 2.0.53",
  1136. ]
  1137. [[package]]
  1138. name = "darling_macro"
  1139. version = "0.14.4"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
  1142. dependencies = [
  1143. "darling_core 0.14.4",
  1144. "quote",
  1145. "syn 1.0.109",
  1146. ]
  1147. [[package]]
  1148. name = "darling_macro"
  1149. version = "0.20.8"
  1150. source = "registry+https://github.com/rust-lang/crates.io-index"
  1151. checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
  1152. dependencies = [
  1153. "darling_core 0.20.8",
  1154. "quote",
  1155. "syn 2.0.53",
  1156. ]
  1157. [[package]]
  1158. name = "data-encoding"
  1159. version = "2.5.0"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
  1162. [[package]]
  1163. name = "der"
  1164. version = "0.7.8"
  1165. source = "registry+https://github.com/rust-lang/crates.io-index"
  1166. checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
  1167. dependencies = [
  1168. "const-oid",
  1169. "pem-rfc7468",
  1170. "zeroize",
  1171. ]
  1172. [[package]]
  1173. name = "der-parser"
  1174. version = "9.0.0"
  1175. source = "registry+https://github.com/rust-lang/crates.io-index"
  1176. checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
  1177. dependencies = [
  1178. "asn1-rs",
  1179. "displaydoc",
  1180. "nom",
  1181. "num-bigint",
  1182. "num-traits",
  1183. "rusticata-macros",
  1184. ]
  1185. [[package]]
  1186. name = "deranged"
  1187. version = "0.3.11"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1190. dependencies = [
  1191. "powerfmt",
  1192. "serde",
  1193. ]
  1194. [[package]]
  1195. name = "derive-adhoc"
  1196. version = "0.7.3"
  1197. source = "registry+https://github.com/rust-lang/crates.io-index"
  1198. checksum = "5283ac2881753c76c0892406705553f0d9ab30649f81e18964d3408f4501edb8"
  1199. dependencies = [
  1200. "derive-adhoc-macros 0.7.3",
  1201. "heck 0.4.1",
  1202. ]
  1203. [[package]]
  1204. name = "derive-adhoc"
  1205. version = "0.8.2"
  1206. source = "registry+https://github.com/rust-lang/crates.io-index"
  1207. checksum = "57ca5c68cf8568ff97903eeea4d54a7ab8b15f71ac439a3eff1cbdb2a707fd62"
  1208. dependencies = [
  1209. "derive-adhoc-macros 0.8.2",
  1210. "heck 0.4.1",
  1211. ]
  1212. [[package]]
  1213. name = "derive-adhoc-macros"
  1214. version = "0.7.3"
  1215. source = "registry+https://github.com/rust-lang/crates.io-index"
  1216. checksum = "c21b673a9b8c78c34908e6fcb42b922e11c4df2de5237f1c3f58d3285904a84b"
  1217. dependencies = [
  1218. "heck 0.4.1",
  1219. "itertools 0.11.0",
  1220. "proc-macro-crate 1.3.1",
  1221. "proc-macro2",
  1222. "quote",
  1223. "sha3",
  1224. "strum 0.25.0",
  1225. "syn 1.0.109",
  1226. "void",
  1227. ]
  1228. [[package]]
  1229. name = "derive-adhoc-macros"
  1230. version = "0.8.2"
  1231. source = "registry+https://github.com/rust-lang/crates.io-index"
  1232. checksum = "6f35abdabee572dec7fba2cad5e21a47ba99fe75347c8cad233a39890a5b2807"
  1233. dependencies = [
  1234. "heck 0.4.1",
  1235. "itertools 0.12.1",
  1236. "proc-macro-crate 2.0.0",
  1237. "proc-macro2",
  1238. "quote",
  1239. "sha3",
  1240. "strum 0.25.0",
  1241. "syn 2.0.53",
  1242. "void",
  1243. ]
  1244. [[package]]
  1245. name = "derive_builder_core_fork_arti"
  1246. version = "0.11.2"
  1247. source = "registry+https://github.com/rust-lang/crates.io-index"
  1248. checksum = "24c1b715c79be6328caa9a5e1a387a196ea503740f0722ec3dd8f67a9e72314d"
  1249. dependencies = [
  1250. "darling 0.14.4",
  1251. "proc-macro2",
  1252. "quote",
  1253. "syn 1.0.109",
  1254. ]
  1255. [[package]]
  1256. name = "derive_builder_fork_arti"
  1257. version = "0.11.2"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "c3eae24d595f4d0ecc90a9a5a6d11c2bd8dafe2375ec4a1ec63250e5ade7d228"
  1260. dependencies = [
  1261. "derive_builder_macro_fork_arti",
  1262. ]
  1263. [[package]]
  1264. name = "derive_builder_macro_fork_arti"
  1265. version = "0.11.2"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "69887769a2489cd946bf782eb2b1bb2cb7bc88551440c94a765d4f040c08ebf3"
  1268. dependencies = [
  1269. "derive_builder_core_fork_arti",
  1270. "syn 1.0.109",
  1271. ]
  1272. [[package]]
  1273. name = "derive_more"
  1274. version = "0.99.17"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  1277. dependencies = [
  1278. "convert_case",
  1279. "proc-macro2",
  1280. "quote",
  1281. "rustc_version",
  1282. "syn 1.0.109",
  1283. ]
  1284. [[package]]
  1285. name = "digest"
  1286. version = "0.10.7"
  1287. source = "registry+https://github.com/rust-lang/crates.io-index"
  1288. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1289. dependencies = [
  1290. "block-buffer",
  1291. "const-oid",
  1292. "crypto-common",
  1293. "subtle",
  1294. ]
  1295. [[package]]
  1296. name = "directories"
  1297. version = "5.0.1"
  1298. source = "registry+https://github.com/rust-lang/crates.io-index"
  1299. checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
  1300. dependencies = [
  1301. "dirs-sys",
  1302. ]
  1303. [[package]]
  1304. name = "dirs"
  1305. version = "5.0.1"
  1306. source = "registry+https://github.com/rust-lang/crates.io-index"
  1307. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1308. dependencies = [
  1309. "dirs-sys",
  1310. ]
  1311. [[package]]
  1312. name = "dirs-next"
  1313. version = "2.0.0"
  1314. source = "registry+https://github.com/rust-lang/crates.io-index"
  1315. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  1316. dependencies = [
  1317. "cfg-if",
  1318. "dirs-sys-next",
  1319. ]
  1320. [[package]]
  1321. name = "dirs-sys"
  1322. version = "0.4.1"
  1323. source = "registry+https://github.com/rust-lang/crates.io-index"
  1324. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1325. dependencies = [
  1326. "libc",
  1327. "option-ext",
  1328. "redox_users",
  1329. "windows-sys 0.48.0",
  1330. ]
  1331. [[package]]
  1332. name = "dirs-sys-next"
  1333. version = "0.1.2"
  1334. source = "registry+https://github.com/rust-lang/crates.io-index"
  1335. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  1336. dependencies = [
  1337. "libc",
  1338. "redox_users",
  1339. "winapi",
  1340. ]
  1341. [[package]]
  1342. name = "displaydoc"
  1343. version = "0.2.4"
  1344. source = "registry+https://github.com/rust-lang/crates.io-index"
  1345. checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
  1346. dependencies = [
  1347. "proc-macro2",
  1348. "quote",
  1349. "syn 2.0.53",
  1350. ]
  1351. [[package]]
  1352. name = "downcast-rs"
  1353. version = "1.2.0"
  1354. source = "registry+https://github.com/rust-lang/crates.io-index"
  1355. checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
  1356. [[package]]
  1357. name = "dunce"
  1358. version = "1.0.4"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
  1361. [[package]]
  1362. name = "dyn-clone"
  1363. version = "1.0.17"
  1364. source = "registry+https://github.com/rust-lang/crates.io-index"
  1365. checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
  1366. [[package]]
  1367. name = "easy-parallel"
  1368. version = "3.3.1"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "2afbb9b0aef60e4f0d2b18129b6c0dff035a6f7dbbd17c2f38c1432102ee223c"
  1371. [[package]]
  1372. name = "ecdsa"
  1373. version = "0.16.9"
  1374. source = "registry+https://github.com/rust-lang/crates.io-index"
  1375. checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
  1376. dependencies = [
  1377. "der",
  1378. "digest",
  1379. "elliptic-curve",
  1380. "rfc6979",
  1381. "signature",
  1382. "spki",
  1383. ]
  1384. [[package]]
  1385. name = "ed25519"
  1386. version = "2.2.3"
  1387. source = "registry+https://github.com/rust-lang/crates.io-index"
  1388. checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
  1389. dependencies = [
  1390. "pkcs8",
  1391. "signature",
  1392. ]
  1393. [[package]]
  1394. name = "ed25519-compact"
  1395. version = "2.1.1"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "e9b3460f44bea8cd47f45a0c70892f1eff856d97cd55358b2f73f663789f6190"
  1398. dependencies = [
  1399. "ct-codecs",
  1400. "getrandom",
  1401. ]
  1402. [[package]]
  1403. name = "ed25519-dalek"
  1404. version = "2.1.1"
  1405. source = "registry+https://github.com/rust-lang/crates.io-index"
  1406. checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
  1407. dependencies = [
  1408. "curve25519-dalek",
  1409. "ed25519",
  1410. "merlin",
  1411. "rand_core",
  1412. "serde",
  1413. "sha2",
  1414. "subtle",
  1415. "zeroize",
  1416. ]
  1417. [[package]]
  1418. name = "educe"
  1419. version = "0.4.23"
  1420. source = "registry+https://github.com/rust-lang/crates.io-index"
  1421. checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
  1422. dependencies = [
  1423. "enum-ordinalize",
  1424. "proc-macro2",
  1425. "quote",
  1426. "syn 1.0.109",
  1427. ]
  1428. [[package]]
  1429. name = "either"
  1430. version = "1.10.0"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
  1433. [[package]]
  1434. name = "elliptic-curve"
  1435. version = "0.13.8"
  1436. source = "registry+https://github.com/rust-lang/crates.io-index"
  1437. checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
  1438. dependencies = [
  1439. "base16ct",
  1440. "crypto-bigint",
  1441. "digest",
  1442. "ff",
  1443. "generic-array",
  1444. "group",
  1445. "pkcs8",
  1446. "rand_core",
  1447. "sec1",
  1448. "subtle",
  1449. "zeroize",
  1450. ]
  1451. [[package]]
  1452. name = "ena"
  1453. version = "0.14.2"
  1454. source = "registry+https://github.com/rust-lang/crates.io-index"
  1455. checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1"
  1456. dependencies = [
  1457. "log",
  1458. ]
  1459. [[package]]
  1460. name = "encoding_rs"
  1461. version = "0.8.33"
  1462. source = "registry+https://github.com/rust-lang/crates.io-index"
  1463. checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
  1464. dependencies = [
  1465. "cfg-if",
  1466. ]
  1467. [[package]]
  1468. name = "enr"
  1469. version = "0.10.0"
  1470. source = "registry+https://github.com/rust-lang/crates.io-index"
  1471. checksum = "2a3d8dc56e02f954cac8eb489772c552c473346fc34f67412bb6244fd647f7e4"
  1472. dependencies = [
  1473. "base64 0.21.7",
  1474. "bytes",
  1475. "hex",
  1476. "k256",
  1477. "log",
  1478. "rand",
  1479. "rlp",
  1480. "serde",
  1481. "sha3",
  1482. "zeroize",
  1483. ]
  1484. [[package]]
  1485. name = "enum-ordinalize"
  1486. version = "3.1.15"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
  1489. dependencies = [
  1490. "num-bigint",
  1491. "num-traits",
  1492. "proc-macro2",
  1493. "quote",
  1494. "syn 2.0.53",
  1495. ]
  1496. [[package]]
  1497. name = "equivalent"
  1498. version = "1.0.1"
  1499. source = "registry+https://github.com/rust-lang/crates.io-index"
  1500. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  1501. [[package]]
  1502. name = "errno"
  1503. version = "0.3.8"
  1504. source = "registry+https://github.com/rust-lang/crates.io-index"
  1505. checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
  1506. dependencies = [
  1507. "libc",
  1508. "windows-sys 0.52.0",
  1509. ]
  1510. [[package]]
  1511. name = "error-chain"
  1512. version = "0.12.4"
  1513. source = "registry+https://github.com/rust-lang/crates.io-index"
  1514. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1515. dependencies = [
  1516. "version_check",
  1517. ]
  1518. [[package]]
  1519. name = "eth-keystore"
  1520. version = "0.5.0"
  1521. source = "registry+https://github.com/rust-lang/crates.io-index"
  1522. checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab"
  1523. dependencies = [
  1524. "aes",
  1525. "ctr",
  1526. "digest",
  1527. "hex",
  1528. "hmac",
  1529. "pbkdf2 0.11.0",
  1530. "rand",
  1531. "scrypt",
  1532. "serde",
  1533. "serde_json",
  1534. "sha2",
  1535. "sha3",
  1536. "thiserror",
  1537. "uuid",
  1538. ]
  1539. [[package]]
  1540. name = "ethabi"
  1541. version = "18.0.0"
  1542. source = "registry+https://github.com/rust-lang/crates.io-index"
  1543. checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898"
  1544. dependencies = [
  1545. "ethereum-types",
  1546. "hex",
  1547. "once_cell",
  1548. "regex",
  1549. "serde",
  1550. "serde_json",
  1551. "sha3",
  1552. "thiserror",
  1553. "uint",
  1554. ]
  1555. [[package]]
  1556. name = "ethbloom"
  1557. version = "0.13.0"
  1558. source = "registry+https://github.com/rust-lang/crates.io-index"
  1559. checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60"
  1560. dependencies = [
  1561. "crunchy",
  1562. "fixed-hash",
  1563. "impl-codec",
  1564. "impl-rlp",
  1565. "impl-serde",
  1566. "scale-info",
  1567. "tiny-keccak",
  1568. ]
  1569. [[package]]
  1570. name = "ethereum-types"
  1571. version = "0.14.1"
  1572. source = "registry+https://github.com/rust-lang/crates.io-index"
  1573. checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee"
  1574. dependencies = [
  1575. "ethbloom",
  1576. "fixed-hash",
  1577. "impl-codec",
  1578. "impl-rlp",
  1579. "impl-serde",
  1580. "primitive-types",
  1581. "scale-info",
  1582. "uint",
  1583. ]
  1584. [[package]]
  1585. name = "ethers"
  1586. version = "2.0.14"
  1587. source = "registry+https://github.com/rust-lang/crates.io-index"
  1588. checksum = "816841ea989f0c69e459af1cf23a6b0033b19a55424a1ea3a30099becdb8dec0"
  1589. dependencies = [
  1590. "ethers-addressbook",
  1591. "ethers-contract",
  1592. "ethers-core",
  1593. "ethers-etherscan",
  1594. "ethers-middleware",
  1595. "ethers-providers",
  1596. "ethers-signers",
  1597. "ethers-solc",
  1598. ]
  1599. [[package]]
  1600. name = "ethers-addressbook"
  1601. version = "2.0.14"
  1602. source = "registry+https://github.com/rust-lang/crates.io-index"
  1603. checksum = "5495afd16b4faa556c3bba1f21b98b4983e53c1755022377051a975c3b021759"
  1604. dependencies = [
  1605. "ethers-core",
  1606. "once_cell",
  1607. "serde",
  1608. "serde_json",
  1609. ]
  1610. [[package]]
  1611. name = "ethers-contract"
  1612. version = "2.0.14"
  1613. source = "registry+https://github.com/rust-lang/crates.io-index"
  1614. checksum = "6fceafa3578c836eeb874af87abacfb041f92b4da0a78a5edd042564b8ecdaaa"
  1615. dependencies = [
  1616. "const-hex",
  1617. "ethers-contract-abigen",
  1618. "ethers-contract-derive",
  1619. "ethers-core",
  1620. "ethers-providers",
  1621. "futures-util",
  1622. "once_cell",
  1623. "pin-project",
  1624. "serde",
  1625. "serde_json",
  1626. "thiserror",
  1627. ]
  1628. [[package]]
  1629. name = "ethers-contract-abigen"
  1630. version = "2.0.14"
  1631. source = "registry+https://github.com/rust-lang/crates.io-index"
  1632. checksum = "04ba01fbc2331a38c429eb95d4a570166781f14290ef9fdb144278a90b5a739b"
  1633. dependencies = [
  1634. "Inflector",
  1635. "const-hex",
  1636. "dunce",
  1637. "ethers-core",
  1638. "ethers-etherscan",
  1639. "eyre",
  1640. "prettyplease",
  1641. "proc-macro2",
  1642. "quote",
  1643. "regex",
  1644. "reqwest",
  1645. "serde",
  1646. "serde_json",
  1647. "syn 2.0.53",
  1648. "toml 0.8.12",
  1649. "walkdir",
  1650. ]
  1651. [[package]]
  1652. name = "ethers-contract-derive"
  1653. version = "2.0.14"
  1654. source = "registry+https://github.com/rust-lang/crates.io-index"
  1655. checksum = "87689dcabc0051cde10caaade298f9e9093d65f6125c14575db3fd8c669a168f"
  1656. dependencies = [
  1657. "Inflector",
  1658. "const-hex",
  1659. "ethers-contract-abigen",
  1660. "ethers-core",
  1661. "proc-macro2",
  1662. "quote",
  1663. "serde_json",
  1664. "syn 2.0.53",
  1665. ]
  1666. [[package]]
  1667. name = "ethers-core"
  1668. version = "2.0.14"
  1669. source = "registry+https://github.com/rust-lang/crates.io-index"
  1670. checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f"
  1671. dependencies = [
  1672. "arrayvec",
  1673. "bytes",
  1674. "cargo_metadata 0.18.1",
  1675. "chrono",
  1676. "const-hex",
  1677. "elliptic-curve",
  1678. "ethabi",
  1679. "generic-array",
  1680. "k256",
  1681. "num_enum",
  1682. "once_cell",
  1683. "open-fastrlp",
  1684. "rand",
  1685. "rlp",
  1686. "serde",
  1687. "serde_json",
  1688. "strum 0.26.2",
  1689. "syn 2.0.53",
  1690. "tempfile",
  1691. "thiserror",
  1692. "tiny-keccak",
  1693. "unicode-xid",
  1694. ]
  1695. [[package]]
  1696. name = "ethers-etherscan"
  1697. version = "2.0.14"
  1698. source = "registry+https://github.com/rust-lang/crates.io-index"
  1699. checksum = "e79e5973c26d4baf0ce55520bd732314328cabe53193286671b47144145b9649"
  1700. dependencies = [
  1701. "chrono",
  1702. "ethers-core",
  1703. "ethers-solc",
  1704. "reqwest",
  1705. "semver",
  1706. "serde",
  1707. "serde_json",
  1708. "thiserror",
  1709. "tracing",
  1710. ]
  1711. [[package]]
  1712. name = "ethers-middleware"
  1713. version = "2.0.14"
  1714. source = "registry+https://github.com/rust-lang/crates.io-index"
  1715. checksum = "48f9fdf09aec667c099909d91908d5eaf9be1bd0e2500ba4172c1d28bfaa43de"
  1716. dependencies = [
  1717. "async-trait",
  1718. "auto_impl",
  1719. "ethers-contract",
  1720. "ethers-core",
  1721. "ethers-etherscan",
  1722. "ethers-providers",
  1723. "ethers-signers",
  1724. "futures-channel",
  1725. "futures-locks",
  1726. "futures-util",
  1727. "instant",
  1728. "reqwest",
  1729. "serde",
  1730. "serde_json",
  1731. "thiserror",
  1732. "tokio",
  1733. "tracing",
  1734. "tracing-futures",
  1735. "url",
  1736. ]
  1737. [[package]]
  1738. name = "ethers-providers"
  1739. version = "2.0.14"
  1740. source = "registry+https://github.com/rust-lang/crates.io-index"
  1741. checksum = "6434c9a33891f1effc9c75472e12666db2fa5a0fec4b29af6221680a6fe83ab2"
  1742. dependencies = [
  1743. "async-trait",
  1744. "auto_impl",
  1745. "base64 0.21.7",
  1746. "bytes",
  1747. "const-hex",
  1748. "enr",
  1749. "ethers-core",
  1750. "futures-channel",
  1751. "futures-core",
  1752. "futures-timer",
  1753. "futures-util",
  1754. "hashers",
  1755. "http 0.2.12",
  1756. "instant",
  1757. "jsonwebtoken",
  1758. "once_cell",
  1759. "pin-project",
  1760. "reqwest",
  1761. "serde",
  1762. "serde_json",
  1763. "thiserror",
  1764. "tokio",
  1765. "tokio-tungstenite",
  1766. "tracing",
  1767. "tracing-futures",
  1768. "url",
  1769. "wasm-bindgen",
  1770. "wasm-bindgen-futures",
  1771. "web-sys",
  1772. "ws_stream_wasm",
  1773. ]
  1774. [[package]]
  1775. name = "ethers-signers"
  1776. version = "2.0.14"
  1777. source = "registry+https://github.com/rust-lang/crates.io-index"
  1778. checksum = "228875491c782ad851773b652dd8ecac62cda8571d3bc32a5853644dd26766c2"
  1779. dependencies = [
  1780. "async-trait",
  1781. "coins-bip32",
  1782. "coins-bip39",
  1783. "const-hex",
  1784. "elliptic-curve",
  1785. "eth-keystore",
  1786. "ethers-core",
  1787. "rand",
  1788. "sha2",
  1789. "thiserror",
  1790. "tracing",
  1791. ]
  1792. [[package]]
  1793. name = "ethers-solc"
  1794. version = "2.0.14"
  1795. source = "registry+https://github.com/rust-lang/crates.io-index"
  1796. checksum = "66244a771d9163282646dbeffe0e6eca4dda4146b6498644e678ac6089b11edd"
  1797. dependencies = [
  1798. "cfg-if",
  1799. "const-hex",
  1800. "dirs",
  1801. "dunce",
  1802. "ethers-core",
  1803. "glob",
  1804. "home",
  1805. "md-5",
  1806. "num_cpus",
  1807. "once_cell",
  1808. "path-slash",
  1809. "rayon",
  1810. "regex",
  1811. "semver",
  1812. "serde",
  1813. "serde_json",
  1814. "solang-parser",
  1815. "svm-rs",
  1816. "thiserror",
  1817. "tiny-keccak",
  1818. "tokio",
  1819. "tracing",
  1820. "walkdir",
  1821. "yansi",
  1822. ]
  1823. [[package]]
  1824. name = "event-listener"
  1825. version = "2.5.3"
  1826. source = "registry+https://github.com/rust-lang/crates.io-index"
  1827. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1828. [[package]]
  1829. name = "event-listener"
  1830. version = "3.1.0"
  1831. source = "registry+https://github.com/rust-lang/crates.io-index"
  1832. checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
  1833. dependencies = [
  1834. "concurrent-queue",
  1835. "parking",
  1836. "pin-project-lite",
  1837. ]
  1838. [[package]]
  1839. name = "event-listener"
  1840. version = "4.0.3"
  1841. source = "registry+https://github.com/rust-lang/crates.io-index"
  1842. checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
  1843. dependencies = [
  1844. "concurrent-queue",
  1845. "parking",
  1846. "pin-project-lite",
  1847. ]
  1848. [[package]]
  1849. name = "event-listener"
  1850. version = "5.2.0"
  1851. source = "registry+https://github.com/rust-lang/crates.io-index"
  1852. checksum = "2b5fb89194fa3cad959b833185b3063ba881dbfc7030680b314250779fb4cc91"
  1853. dependencies = [
  1854. "concurrent-queue",
  1855. "parking",
  1856. "pin-project-lite",
  1857. ]
  1858. [[package]]
  1859. name = "event-listener-strategy"
  1860. version = "0.4.0"
  1861. source = "registry+https://github.com/rust-lang/crates.io-index"
  1862. checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
  1863. dependencies = [
  1864. "event-listener 4.0.3",
  1865. "pin-project-lite",
  1866. ]
  1867. [[package]]
  1868. name = "event-listener-strategy"
  1869. version = "0.5.0"
  1870. source = "registry+https://github.com/rust-lang/crates.io-index"
  1871. checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291"
  1872. dependencies = [
  1873. "event-listener 5.2.0",
  1874. "pin-project-lite",
  1875. ]
  1876. [[package]]
  1877. name = "eyre"
  1878. version = "0.6.12"
  1879. source = "registry+https://github.com/rust-lang/crates.io-index"
  1880. checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
  1881. dependencies = [
  1882. "indenter",
  1883. "once_cell",
  1884. ]
  1885. [[package]]
  1886. name = "fallible-iterator"
  1887. version = "0.3.0"
  1888. source = "registry+https://github.com/rust-lang/crates.io-index"
  1889. checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
  1890. [[package]]
  1891. name = "fallible-streaming-iterator"
  1892. version = "0.1.9"
  1893. source = "registry+https://github.com/rust-lang/crates.io-index"
  1894. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  1895. [[package]]
  1896. name = "fastrand"
  1897. version = "1.9.0"
  1898. source = "registry+https://github.com/rust-lang/crates.io-index"
  1899. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1900. dependencies = [
  1901. "instant",
  1902. ]
  1903. [[package]]
  1904. name = "fastrand"
  1905. version = "2.0.1"
  1906. source = "registry+https://github.com/rust-lang/crates.io-index"
  1907. checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
  1908. [[package]]
  1909. name = "ff"
  1910. version = "0.13.0"
  1911. source = "registry+https://github.com/rust-lang/crates.io-index"
  1912. checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
  1913. dependencies = [
  1914. "rand_core",
  1915. "subtle",
  1916. ]
  1917. [[package]]
  1918. name = "fiat-crypto"
  1919. version = "0.2.7"
  1920. source = "registry+https://github.com/rust-lang/crates.io-index"
  1921. checksum = "c007b1ae3abe1cb6f85a16305acd418b7ca6343b953633fee2b76d8f108b830f"
  1922. [[package]]
  1923. name = "filetime"
  1924. version = "0.2.23"
  1925. source = "registry+https://github.com/rust-lang/crates.io-index"
  1926. checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
  1927. dependencies = [
  1928. "cfg-if",
  1929. "libc",
  1930. "redox_syscall 0.4.1",
  1931. "windows-sys 0.52.0",
  1932. ]
  1933. [[package]]
  1934. name = "fixed-hash"
  1935. version = "0.8.0"
  1936. source = "registry+https://github.com/rust-lang/crates.io-index"
  1937. checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
  1938. dependencies = [
  1939. "byteorder",
  1940. "rand",
  1941. "rustc-hex",
  1942. "static_assertions",
  1943. ]
  1944. [[package]]
  1945. name = "fixedbitset"
  1946. version = "0.4.2"
  1947. source = "registry+https://github.com/rust-lang/crates.io-index"
  1948. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  1949. [[package]]
  1950. name = "flate2"
  1951. version = "1.0.28"
  1952. source = "registry+https://github.com/rust-lang/crates.io-index"
  1953. checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
  1954. dependencies = [
  1955. "crc32fast",
  1956. "miniz_oxide",
  1957. ]
  1958. [[package]]
  1959. name = "fluid-let"
  1960. version = "1.0.0"
  1961. source = "registry+https://github.com/rust-lang/crates.io-index"
  1962. checksum = "749cff877dc1af878a0b31a41dd221a753634401ea0ef2f87b62d3171522485a"
  1963. [[package]]
  1964. name = "fnv"
  1965. version = "1.0.7"
  1966. source = "registry+https://github.com/rust-lang/crates.io-index"
  1967. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1968. [[package]]
  1969. name = "foreign-types"
  1970. version = "0.3.2"
  1971. source = "registry+https://github.com/rust-lang/crates.io-index"
  1972. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1973. dependencies = [
  1974. "foreign-types-shared",
  1975. ]
  1976. [[package]]
  1977. name = "foreign-types-shared"
  1978. version = "0.1.1"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1981. [[package]]
  1982. name = "form_urlencoded"
  1983. version = "1.2.1"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1986. dependencies = [
  1987. "percent-encoding",
  1988. ]
  1989. [[package]]
  1990. name = "fs-mistrust"
  1991. version = "0.7.8"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. checksum = "0af38a7e00ec1cc0cae8002d3cc9738ebb97d623bc519ca8a9b471e9bc8cdb75"
  1994. dependencies = [
  1995. "derive_builder_fork_arti",
  1996. "dirs",
  1997. "educe",
  1998. "libc",
  1999. "once_cell",
  2000. "pwd-grp",
  2001. "serde",
  2002. "thiserror",
  2003. "walkdir",
  2004. ]
  2005. [[package]]
  2006. name = "fs2"
  2007. version = "0.4.3"
  2008. source = "registry+https://github.com/rust-lang/crates.io-index"
  2009. checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
  2010. dependencies = [
  2011. "libc",
  2012. "winapi",
  2013. ]
  2014. [[package]]
  2015. name = "fslock"
  2016. version = "0.2.1"
  2017. source = "registry+https://github.com/rust-lang/crates.io-index"
  2018. checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
  2019. dependencies = [
  2020. "libc",
  2021. "winapi",
  2022. ]
  2023. [[package]]
  2024. name = "fslock-arti-fork"
  2025. version = "0.2.0"
  2026. source = "registry+https://github.com/rust-lang/crates.io-index"
  2027. checksum = "8b21bd626aaab7b904b20bef6d9e06298914a0c8d9fb8b010483766b2e532791"
  2028. dependencies = [
  2029. "libc",
  2030. "winapi",
  2031. ]
  2032. [[package]]
  2033. name = "fslock-guard"
  2034. version = "0.1.1"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "b2a8cb6a456f2340bca9a2934857b531c107311d5d271e8b57be43ac87a87489"
  2037. dependencies = [
  2038. "fslock-arti-fork",
  2039. "thiserror",
  2040. "winapi",
  2041. ]
  2042. [[package]]
  2043. name = "funty"
  2044. version = "2.0.0"
  2045. source = "registry+https://github.com/rust-lang/crates.io-index"
  2046. checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
  2047. [[package]]
  2048. name = "futures"
  2049. version = "0.3.30"
  2050. source = "registry+https://github.com/rust-lang/crates.io-index"
  2051. checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
  2052. dependencies = [
  2053. "futures-channel",
  2054. "futures-core",
  2055. "futures-executor",
  2056. "futures-io",
  2057. "futures-sink",
  2058. "futures-task",
  2059. "futures-util",
  2060. ]
  2061. [[package]]
  2062. name = "futures-channel"
  2063. version = "0.3.30"
  2064. source = "registry+https://github.com/rust-lang/crates.io-index"
  2065. checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
  2066. dependencies = [
  2067. "futures-core",
  2068. "futures-sink",
  2069. ]
  2070. [[package]]
  2071. name = "futures-core"
  2072. version = "0.3.30"
  2073. source = "registry+https://github.com/rust-lang/crates.io-index"
  2074. checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
  2075. [[package]]
  2076. name = "futures-executor"
  2077. version = "0.3.30"
  2078. source = "registry+https://github.com/rust-lang/crates.io-index"
  2079. checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
  2080. dependencies = [
  2081. "futures-core",
  2082. "futures-task",
  2083. "futures-util",
  2084. ]
  2085. [[package]]
  2086. name = "futures-io"
  2087. version = "0.3.30"
  2088. source = "registry+https://github.com/rust-lang/crates.io-index"
  2089. checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
  2090. [[package]]
  2091. name = "futures-lite"
  2092. version = "1.13.0"
  2093. source = "registry+https://github.com/rust-lang/crates.io-index"
  2094. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  2095. dependencies = [
  2096. "fastrand 1.9.0",
  2097. "futures-core",
  2098. "futures-io",
  2099. "memchr",
  2100. "parking",
  2101. "pin-project-lite",
  2102. "waker-fn",
  2103. ]
  2104. [[package]]
  2105. name = "futures-lite"
  2106. version = "2.3.0"
  2107. source = "registry+https://github.com/rust-lang/crates.io-index"
  2108. checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5"
  2109. dependencies = [
  2110. "fastrand 2.0.1",
  2111. "futures-core",
  2112. "futures-io",
  2113. "parking",
  2114. "pin-project-lite",
  2115. ]
  2116. [[package]]
  2117. name = "futures-locks"
  2118. version = "0.7.1"
  2119. source = "registry+https://github.com/rust-lang/crates.io-index"
  2120. checksum = "45ec6fe3675af967e67c5536c0b9d44e34e6c52f86bedc4ea49c5317b8e94d06"
  2121. dependencies = [
  2122. "futures-channel",
  2123. "futures-task",
  2124. ]
  2125. [[package]]
  2126. name = "futures-macro"
  2127. version = "0.3.30"
  2128. source = "registry+https://github.com/rust-lang/crates.io-index"
  2129. checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
  2130. dependencies = [
  2131. "proc-macro2",
  2132. "quote",
  2133. "syn 2.0.53",
  2134. ]
  2135. [[package]]
  2136. name = "futures-rustls"
  2137. version = "0.25.1"
  2138. source = "registry+https://github.com/rust-lang/crates.io-index"
  2139. checksum = "c8d8a2499f0fecc0492eb3e47eab4e92da7875e1028ad2528f214ac3346ca04e"
  2140. dependencies = [
  2141. "futures-io",
  2142. "rustls 0.22.2",
  2143. "rustls-pki-types",
  2144. ]
  2145. [[package]]
  2146. name = "futures-sink"
  2147. version = "0.3.30"
  2148. source = "registry+https://github.com/rust-lang/crates.io-index"
  2149. checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
  2150. [[package]]
  2151. name = "futures-task"
  2152. version = "0.3.30"
  2153. source = "registry+https://github.com/rust-lang/crates.io-index"
  2154. checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
  2155. [[package]]
  2156. name = "futures-timer"
  2157. version = "3.0.3"
  2158. source = "registry+https://github.com/rust-lang/crates.io-index"
  2159. checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
  2160. dependencies = [
  2161. "gloo-timers",
  2162. "send_wrapper 0.4.0",
  2163. ]
  2164. [[package]]
  2165. name = "futures-util"
  2166. version = "0.3.30"
  2167. source = "registry+https://github.com/rust-lang/crates.io-index"
  2168. checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
  2169. dependencies = [
  2170. "futures-channel",
  2171. "futures-core",
  2172. "futures-io",
  2173. "futures-macro",
  2174. "futures-sink",
  2175. "futures-task",
  2176. "memchr",
  2177. "pin-project-lite",
  2178. "pin-utils",
  2179. "slab",
  2180. ]
  2181. [[package]]
  2182. name = "fxhash"
  2183. version = "0.2.1"
  2184. source = "registry+https://github.com/rust-lang/crates.io-index"
  2185. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  2186. dependencies = [
  2187. "byteorder",
  2188. ]
  2189. [[package]]
  2190. name = "generic-array"
  2191. version = "0.14.7"
  2192. source = "registry+https://github.com/rust-lang/crates.io-index"
  2193. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  2194. dependencies = [
  2195. "typenum",
  2196. "version_check",
  2197. "zeroize",
  2198. ]
  2199. [[package]]
  2200. name = "getrandom"
  2201. version = "0.2.12"
  2202. source = "registry+https://github.com/rust-lang/crates.io-index"
  2203. checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
  2204. dependencies = [
  2205. "cfg-if",
  2206. "js-sys",
  2207. "libc",
  2208. "wasi",
  2209. "wasm-bindgen",
  2210. ]
  2211. [[package]]
  2212. name = "gimli"
  2213. version = "0.28.1"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
  2216. [[package]]
  2217. name = "glob"
  2218. version = "0.3.1"
  2219. source = "registry+https://github.com/rust-lang/crates.io-index"
  2220. checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
  2221. [[package]]
  2222. name = "glob-match"
  2223. version = "0.2.1"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d"
  2226. [[package]]
  2227. name = "gloo-timers"
  2228. version = "0.2.6"
  2229. source = "registry+https://github.com/rust-lang/crates.io-index"
  2230. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  2231. dependencies = [
  2232. "futures-channel",
  2233. "futures-core",
  2234. "js-sys",
  2235. "wasm-bindgen",
  2236. ]
  2237. [[package]]
  2238. name = "group"
  2239. version = "0.13.0"
  2240. source = "registry+https://github.com/rust-lang/crates.io-index"
  2241. checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
  2242. dependencies = [
  2243. "ff",
  2244. "rand_core",
  2245. "subtle",
  2246. ]
  2247. [[package]]
  2248. name = "growable-bloom-filter"
  2249. version = "2.1.0"
  2250. source = "registry+https://github.com/rust-lang/crates.io-index"
  2251. checksum = "c669fa03050eb3445343f215d62fc1ab831e8098bc9a55f26e9724faff11075c"
  2252. dependencies = [
  2253. "serde",
  2254. "serde_bytes",
  2255. "serde_derive",
  2256. "xxhash-rust",
  2257. ]
  2258. [[package]]
  2259. name = "h2"
  2260. version = "0.3.25"
  2261. source = "registry+https://github.com/rust-lang/crates.io-index"
  2262. checksum = "4fbd2820c5e49886948654ab546d0688ff24530286bdcf8fca3cefb16d4618eb"
  2263. dependencies = [
  2264. "bytes",
  2265. "fnv",
  2266. "futures-core",
  2267. "futures-sink",
  2268. "futures-util",
  2269. "http 0.2.12",
  2270. "indexmap 2.2.5",
  2271. "slab",
  2272. "tokio",
  2273. "tokio-util",
  2274. "tracing",
  2275. ]
  2276. [[package]]
  2277. name = "hashbrown"
  2278. version = "0.12.3"
  2279. source = "registry+https://github.com/rust-lang/crates.io-index"
  2280. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  2281. [[package]]
  2282. name = "hashbrown"
  2283. version = "0.14.3"
  2284. source = "registry+https://github.com/rust-lang/crates.io-index"
  2285. checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
  2286. dependencies = [
  2287. "ahash",
  2288. "allocator-api2",
  2289. ]
  2290. [[package]]
  2291. name = "hashers"
  2292. version = "1.0.1"
  2293. source = "registry+https://github.com/rust-lang/crates.io-index"
  2294. checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30"
  2295. dependencies = [
  2296. "fxhash",
  2297. ]
  2298. [[package]]
  2299. name = "hashlink"
  2300. version = "0.9.0"
  2301. source = "registry+https://github.com/rust-lang/crates.io-index"
  2302. checksum = "692eaaf7f7607518dd3cef090f1474b61edc5301d8012f09579920df68b725ee"
  2303. dependencies = [
  2304. "hashbrown 0.14.3",
  2305. ]
  2306. [[package]]
  2307. name = "heck"
  2308. version = "0.3.3"
  2309. source = "registry+https://github.com/rust-lang/crates.io-index"
  2310. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  2311. dependencies = [
  2312. "unicode-segmentation",
  2313. ]
  2314. [[package]]
  2315. name = "heck"
  2316. version = "0.4.1"
  2317. source = "registry+https://github.com/rust-lang/crates.io-index"
  2318. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  2319. [[package]]
  2320. name = "hermit-abi"
  2321. version = "0.1.19"
  2322. source = "registry+https://github.com/rust-lang/crates.io-index"
  2323. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  2324. dependencies = [
  2325. "libc",
  2326. ]
  2327. [[package]]
  2328. name = "hermit-abi"
  2329. version = "0.3.9"
  2330. source = "registry+https://github.com/rust-lang/crates.io-index"
  2331. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  2332. [[package]]
  2333. name = "hex"
  2334. version = "0.4.3"
  2335. source = "registry+https://github.com/rust-lang/crates.io-index"
  2336. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  2337. [[package]]
  2338. name = "hkdf"
  2339. version = "0.12.4"
  2340. source = "registry+https://github.com/rust-lang/crates.io-index"
  2341. checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
  2342. dependencies = [
  2343. "hmac",
  2344. ]
  2345. [[package]]
  2346. name = "hmac"
  2347. version = "0.12.1"
  2348. source = "registry+https://github.com/rust-lang/crates.io-index"
  2349. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  2350. dependencies = [
  2351. "digest",
  2352. ]
  2353. [[package]]
  2354. name = "home"
  2355. version = "0.5.9"
  2356. source = "registry+https://github.com/rust-lang/crates.io-index"
  2357. checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
  2358. dependencies = [
  2359. "windows-sys 0.52.0",
  2360. ]
  2361. [[package]]
  2362. name = "hostname-validator"
  2363. version = "1.1.1"
  2364. source = "registry+https://github.com/rust-lang/crates.io-index"
  2365. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  2366. [[package]]
  2367. name = "http"
  2368. version = "0.2.12"
  2369. source = "registry+https://github.com/rust-lang/crates.io-index"
  2370. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  2371. dependencies = [
  2372. "bytes",
  2373. "fnv",
  2374. "itoa",
  2375. ]
  2376. [[package]]
  2377. name = "http"
  2378. version = "1.1.0"
  2379. source = "registry+https://github.com/rust-lang/crates.io-index"
  2380. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  2381. dependencies = [
  2382. "bytes",
  2383. "fnv",
  2384. "itoa",
  2385. ]
  2386. [[package]]
  2387. name = "http-body"
  2388. version = "0.4.6"
  2389. source = "registry+https://github.com/rust-lang/crates.io-index"
  2390. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  2391. dependencies = [
  2392. "bytes",
  2393. "http 0.2.12",
  2394. "pin-project-lite",
  2395. ]
  2396. [[package]]
  2397. name = "httparse"
  2398. version = "1.8.0"
  2399. source = "registry+https://github.com/rust-lang/crates.io-index"
  2400. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  2401. [[package]]
  2402. name = "httpdate"
  2403. version = "1.0.3"
  2404. source = "registry+https://github.com/rust-lang/crates.io-index"
  2405. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  2406. [[package]]
  2407. name = "humantime"
  2408. version = "2.1.0"
  2409. source = "registry+https://github.com/rust-lang/crates.io-index"
  2410. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  2411. [[package]]
  2412. name = "humantime-serde"
  2413. version = "1.1.1"
  2414. source = "registry+https://github.com/rust-lang/crates.io-index"
  2415. checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
  2416. dependencies = [
  2417. "humantime",
  2418. "serde",
  2419. ]
  2420. [[package]]
  2421. name = "hyper"
  2422. version = "0.14.28"
  2423. source = "registry+https://github.com/rust-lang/crates.io-index"
  2424. checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
  2425. dependencies = [
  2426. "bytes",
  2427. "futures-channel",
  2428. "futures-core",
  2429. "futures-util",
  2430. "h2",
  2431. "http 0.2.12",
  2432. "http-body",
  2433. "httparse",
  2434. "httpdate",
  2435. "itoa",
  2436. "pin-project-lite",
  2437. "socket2 0.5.6",
  2438. "tokio",
  2439. "tower-service",
  2440. "tracing",
  2441. "want",
  2442. ]
  2443. [[package]]
  2444. name = "hyper-rustls"
  2445. version = "0.24.2"
  2446. source = "registry+https://github.com/rust-lang/crates.io-index"
  2447. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  2448. dependencies = [
  2449. "futures-util",
  2450. "http 0.2.12",
  2451. "hyper",
  2452. "rustls 0.21.10",
  2453. "tokio",
  2454. "tokio-rustls",
  2455. ]
  2456. [[package]]
  2457. name = "iana-time-zone"
  2458. version = "0.1.60"
  2459. source = "registry+https://github.com/rust-lang/crates.io-index"
  2460. checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
  2461. dependencies = [
  2462. "android_system_properties",
  2463. "core-foundation-sys",
  2464. "iana-time-zone-haiku",
  2465. "js-sys",
  2466. "wasm-bindgen",
  2467. "windows-core",
  2468. ]
  2469. [[package]]
  2470. name = "iana-time-zone-haiku"
  2471. version = "0.1.2"
  2472. source = "registry+https://github.com/rust-lang/crates.io-index"
  2473. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  2474. dependencies = [
  2475. "cc",
  2476. ]
  2477. [[package]]
  2478. name = "ident_case"
  2479. version = "1.0.1"
  2480. source = "registry+https://github.com/rust-lang/crates.io-index"
  2481. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2482. [[package]]
  2483. name = "idna"
  2484. version = "0.5.0"
  2485. source = "registry+https://github.com/rust-lang/crates.io-index"
  2486. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  2487. dependencies = [
  2488. "unicode-bidi",
  2489. "unicode-normalization",
  2490. ]
  2491. [[package]]
  2492. name = "impl-codec"
  2493. version = "0.6.0"
  2494. source = "registry+https://github.com/rust-lang/crates.io-index"
  2495. checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
  2496. dependencies = [
  2497. "parity-scale-codec",
  2498. ]
  2499. [[package]]
  2500. name = "impl-rlp"
  2501. version = "0.3.0"
  2502. source = "registry+https://github.com/rust-lang/crates.io-index"
  2503. checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808"
  2504. dependencies = [
  2505. "rlp",
  2506. ]
  2507. [[package]]
  2508. name = "impl-serde"
  2509. version = "0.4.0"
  2510. source = "registry+https://github.com/rust-lang/crates.io-index"
  2511. checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd"
  2512. dependencies = [
  2513. "serde",
  2514. ]
  2515. [[package]]
  2516. name = "impl-trait-for-tuples"
  2517. version = "0.2.2"
  2518. source = "registry+https://github.com/rust-lang/crates.io-index"
  2519. checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb"
  2520. dependencies = [
  2521. "proc-macro2",
  2522. "quote",
  2523. "syn 1.0.109",
  2524. ]
  2525. [[package]]
  2526. name = "indenter"
  2527. version = "0.3.3"
  2528. source = "registry+https://github.com/rust-lang/crates.io-index"
  2529. checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
  2530. [[package]]
  2531. name = "indexmap"
  2532. version = "1.9.3"
  2533. source = "registry+https://github.com/rust-lang/crates.io-index"
  2534. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2535. dependencies = [
  2536. "autocfg",
  2537. "hashbrown 0.12.3",
  2538. "serde",
  2539. ]
  2540. [[package]]
  2541. name = "indexmap"
  2542. version = "2.2.5"
  2543. source = "registry+https://github.com/rust-lang/crates.io-index"
  2544. checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
  2545. dependencies = [
  2546. "equivalent",
  2547. "hashbrown 0.14.3",
  2548. "serde",
  2549. ]
  2550. [[package]]
  2551. name = "inout"
  2552. version = "0.1.3"
  2553. source = "registry+https://github.com/rust-lang/crates.io-index"
  2554. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2555. dependencies = [
  2556. "generic-array",
  2557. ]
  2558. [[package]]
  2559. name = "instant"
  2560. version = "0.1.12"
  2561. source = "registry+https://github.com/rust-lang/crates.io-index"
  2562. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  2563. dependencies = [
  2564. "cfg-if",
  2565. ]
  2566. [[package]]
  2567. name = "inventory"
  2568. version = "0.3.15"
  2569. source = "registry+https://github.com/rust-lang/crates.io-index"
  2570. checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
  2571. [[package]]
  2572. name = "io-lifetimes"
  2573. version = "1.0.11"
  2574. source = "registry+https://github.com/rust-lang/crates.io-index"
  2575. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  2576. dependencies = [
  2577. "hermit-abi 0.3.9",
  2578. "libc",
  2579. "windows-sys 0.48.0",
  2580. ]
  2581. [[package]]
  2582. name = "ipnet"
  2583. version = "2.9.0"
  2584. source = "registry+https://github.com/rust-lang/crates.io-index"
  2585. checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
  2586. [[package]]
  2587. name = "itertools"
  2588. version = "0.11.0"
  2589. source = "registry+https://github.com/rust-lang/crates.io-index"
  2590. checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
  2591. dependencies = [
  2592. "either",
  2593. ]
  2594. [[package]]
  2595. name = "itertools"
  2596. version = "0.12.1"
  2597. source = "registry+https://github.com/rust-lang/crates.io-index"
  2598. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2599. dependencies = [
  2600. "either",
  2601. ]
  2602. [[package]]
  2603. name = "itoa"
  2604. version = "1.0.10"
  2605. source = "registry+https://github.com/rust-lang/crates.io-index"
  2606. checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
  2607. [[package]]
  2608. name = "jobserver"
  2609. version = "0.1.28"
  2610. source = "registry+https://github.com/rust-lang/crates.io-index"
  2611. checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
  2612. dependencies = [
  2613. "libc",
  2614. ]
  2615. [[package]]
  2616. name = "js-sys"
  2617. version = "0.3.69"
  2618. source = "registry+https://github.com/rust-lang/crates.io-index"
  2619. checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
  2620. dependencies = [
  2621. "wasm-bindgen",
  2622. ]
  2623. [[package]]
  2624. name = "jsonwebtoken"
  2625. version = "8.3.0"
  2626. source = "registry+https://github.com/rust-lang/crates.io-index"
  2627. checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378"
  2628. dependencies = [
  2629. "base64 0.21.7",
  2630. "pem 1.1.1",
  2631. "ring 0.16.20",
  2632. "serde",
  2633. "serde_json",
  2634. "simple_asn1",
  2635. ]
  2636. [[package]]
  2637. name = "k12"
  2638. version = "0.3.0"
  2639. source = "registry+https://github.com/rust-lang/crates.io-index"
  2640. checksum = "f4dc5fdb62af2f520116927304f15d25b3c2667b4817b90efdc045194c912c54"
  2641. dependencies = [
  2642. "digest",
  2643. "sha3",
  2644. ]
  2645. [[package]]
  2646. name = "k256"
  2647. version = "0.13.3"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b"
  2650. dependencies = [
  2651. "cfg-if",
  2652. "ecdsa",
  2653. "elliptic-curve",
  2654. "once_cell",
  2655. "sha2",
  2656. "signature",
  2657. ]
  2658. [[package]]
  2659. name = "keccak"
  2660. version = "0.1.5"
  2661. source = "registry+https://github.com/rust-lang/crates.io-index"
  2662. checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
  2663. dependencies = [
  2664. "cpufeatures",
  2665. ]
  2666. [[package]]
  2667. name = "kv-log-macro"
  2668. version = "1.0.7"
  2669. source = "registry+https://github.com/rust-lang/crates.io-index"
  2670. checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
  2671. dependencies = [
  2672. "log",
  2673. ]
  2674. [[package]]
  2675. name = "lalrpop"
  2676. version = "0.20.2"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca"
  2679. dependencies = [
  2680. "ascii-canvas",
  2681. "bit-set",
  2682. "ena",
  2683. "itertools 0.11.0",
  2684. "lalrpop-util",
  2685. "petgraph",
  2686. "regex",
  2687. "regex-syntax 0.8.2",
  2688. "string_cache",
  2689. "term",
  2690. "tiny-keccak",
  2691. "unicode-xid",
  2692. "walkdir",
  2693. ]
  2694. [[package]]
  2695. name = "lalrpop-util"
  2696. version = "0.20.2"
  2697. source = "registry+https://github.com/rust-lang/crates.io-index"
  2698. checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
  2699. dependencies = [
  2700. "regex-automata 0.4.6",
  2701. ]
  2702. [[package]]
  2703. name = "lazy_static"
  2704. version = "1.4.0"
  2705. source = "registry+https://github.com/rust-lang/crates.io-index"
  2706. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  2707. dependencies = [
  2708. "spin 0.5.2",
  2709. ]
  2710. [[package]]
  2711. name = "libc"
  2712. version = "0.2.153"
  2713. source = "registry+https://github.com/rust-lang/crates.io-index"
  2714. checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
  2715. [[package]]
  2716. name = "libm"
  2717. version = "0.2.8"
  2718. source = "registry+https://github.com/rust-lang/crates.io-index"
  2719. checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
  2720. [[package]]
  2721. name = "libredox"
  2722. version = "0.0.1"
  2723. source = "registry+https://github.com/rust-lang/crates.io-index"
  2724. checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
  2725. dependencies = [
  2726. "bitflags 2.5.0",
  2727. "libc",
  2728. "redox_syscall 0.4.1",
  2729. ]
  2730. [[package]]
  2731. name = "libsqlite3-sys"
  2732. version = "0.28.0"
  2733. source = "registry+https://github.com/rust-lang/crates.io-index"
  2734. checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
  2735. dependencies = [
  2736. "pkg-config",
  2737. "vcpkg",
  2738. ]
  2739. [[package]]
  2740. name = "linux-raw-sys"
  2741. version = "0.3.8"
  2742. source = "registry+https://github.com/rust-lang/crates.io-index"
  2743. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  2744. [[package]]
  2745. name = "linux-raw-sys"
  2746. version = "0.4.13"
  2747. source = "registry+https://github.com/rust-lang/crates.io-index"
  2748. checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
  2749. [[package]]
  2750. name = "lock_api"
  2751. version = "0.4.11"
  2752. source = "registry+https://github.com/rust-lang/crates.io-index"
  2753. checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
  2754. dependencies = [
  2755. "autocfg",
  2756. "scopeguard",
  2757. ]
  2758. [[package]]
  2759. name = "log"
  2760. version = "0.4.21"
  2761. source = "registry+https://github.com/rust-lang/crates.io-index"
  2762. checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
  2763. dependencies = [
  2764. "value-bag",
  2765. ]
  2766. [[package]]
  2767. name = "lzma-sys"
  2768. version = "0.1.20"
  2769. source = "registry+https://github.com/rust-lang/crates.io-index"
  2770. checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
  2771. dependencies = [
  2772. "cc",
  2773. "libc",
  2774. "pkg-config",
  2775. ]
  2776. [[package]]
  2777. name = "matchers"
  2778. version = "0.1.0"
  2779. source = "registry+https://github.com/rust-lang/crates.io-index"
  2780. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2781. dependencies = [
  2782. "regex-automata 0.1.10",
  2783. ]
  2784. [[package]]
  2785. name = "md-5"
  2786. version = "0.10.6"
  2787. source = "registry+https://github.com/rust-lang/crates.io-index"
  2788. checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
  2789. dependencies = [
  2790. "cfg-if",
  2791. "digest",
  2792. ]
  2793. [[package]]
  2794. name = "memchr"
  2795. version = "2.7.1"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
  2798. [[package]]
  2799. name = "memmap2"
  2800. version = "0.9.4"
  2801. source = "registry+https://github.com/rust-lang/crates.io-index"
  2802. checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
  2803. dependencies = [
  2804. "libc",
  2805. ]
  2806. [[package]]
  2807. name = "merlin"
  2808. version = "3.0.0"
  2809. source = "registry+https://github.com/rust-lang/crates.io-index"
  2810. checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
  2811. dependencies = [
  2812. "byteorder",
  2813. "keccak",
  2814. "rand_core",
  2815. "zeroize",
  2816. ]
  2817. [[package]]
  2818. name = "mime"
  2819. version = "0.3.17"
  2820. source = "registry+https://github.com/rust-lang/crates.io-index"
  2821. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2822. [[package]]
  2823. name = "minimal-lexical"
  2824. version = "0.2.1"
  2825. source = "registry+https://github.com/rust-lang/crates.io-index"
  2826. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2827. [[package]]
  2828. name = "miniz_oxide"
  2829. version = "0.7.2"
  2830. source = "registry+https://github.com/rust-lang/crates.io-index"
  2831. checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
  2832. dependencies = [
  2833. "adler",
  2834. ]
  2835. [[package]]
  2836. name = "mio"
  2837. version = "0.8.11"
  2838. source = "registry+https://github.com/rust-lang/crates.io-index"
  2839. checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
  2840. dependencies = [
  2841. "libc",
  2842. "wasi",
  2843. "windows-sys 0.48.0",
  2844. ]
  2845. [[package]]
  2846. name = "new_debug_unreachable"
  2847. version = "1.0.6"
  2848. source = "registry+https://github.com/rust-lang/crates.io-index"
  2849. checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
  2850. [[package]]
  2851. name = "nom"
  2852. version = "7.1.3"
  2853. source = "registry+https://github.com/rust-lang/crates.io-index"
  2854. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2855. dependencies = [
  2856. "memchr",
  2857. "minimal-lexical",
  2858. ]
  2859. [[package]]
  2860. name = "nu-ansi-term"
  2861. version = "0.46.0"
  2862. source = "registry+https://github.com/rust-lang/crates.io-index"
  2863. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2864. dependencies = [
  2865. "overload",
  2866. "winapi",
  2867. ]
  2868. [[package]]
  2869. name = "num-bigint"
  2870. version = "0.4.4"
  2871. source = "registry+https://github.com/rust-lang/crates.io-index"
  2872. checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
  2873. dependencies = [
  2874. "autocfg",
  2875. "num-integer",
  2876. "num-traits",
  2877. ]
  2878. [[package]]
  2879. name = "num-bigint-dig"
  2880. version = "0.8.4"
  2881. source = "registry+https://github.com/rust-lang/crates.io-index"
  2882. checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
  2883. dependencies = [
  2884. "byteorder",
  2885. "lazy_static",
  2886. "libm",
  2887. "num-integer",
  2888. "num-iter",
  2889. "num-traits",
  2890. "rand",
  2891. "smallvec",
  2892. "zeroize",
  2893. ]
  2894. [[package]]
  2895. name = "num-conv"
  2896. version = "0.1.0"
  2897. source = "registry+https://github.com/rust-lang/crates.io-index"
  2898. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  2899. [[package]]
  2900. name = "num-integer"
  2901. version = "0.1.46"
  2902. source = "registry+https://github.com/rust-lang/crates.io-index"
  2903. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  2904. dependencies = [
  2905. "num-traits",
  2906. ]
  2907. [[package]]
  2908. name = "num-iter"
  2909. version = "0.1.44"
  2910. source = "registry+https://github.com/rust-lang/crates.io-index"
  2911. checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
  2912. dependencies = [
  2913. "autocfg",
  2914. "num-integer",
  2915. "num-traits",
  2916. ]
  2917. [[package]]
  2918. name = "num-traits"
  2919. version = "0.2.18"
  2920. source = "registry+https://github.com/rust-lang/crates.io-index"
  2921. checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
  2922. dependencies = [
  2923. "autocfg",
  2924. "libm",
  2925. ]
  2926. [[package]]
  2927. name = "num_cpus"
  2928. version = "1.16.0"
  2929. source = "registry+https://github.com/rust-lang/crates.io-index"
  2930. checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
  2931. dependencies = [
  2932. "hermit-abi 0.3.9",
  2933. "libc",
  2934. ]
  2935. [[package]]
  2936. name = "num_enum"
  2937. version = "0.7.2"
  2938. source = "registry+https://github.com/rust-lang/crates.io-index"
  2939. checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845"
  2940. dependencies = [
  2941. "num_enum_derive",
  2942. ]
  2943. [[package]]
  2944. name = "num_enum_derive"
  2945. version = "0.7.2"
  2946. source = "registry+https://github.com/rust-lang/crates.io-index"
  2947. checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b"
  2948. dependencies = [
  2949. "proc-macro-crate 3.1.0",
  2950. "proc-macro2",
  2951. "quote",
  2952. "syn 2.0.53",
  2953. ]
  2954. [[package]]
  2955. name = "num_threads"
  2956. version = "0.1.7"
  2957. source = "registry+https://github.com/rust-lang/crates.io-index"
  2958. checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
  2959. dependencies = [
  2960. "libc",
  2961. ]
  2962. [[package]]
  2963. name = "object"
  2964. version = "0.32.2"
  2965. source = "registry+https://github.com/rust-lang/crates.io-index"
  2966. checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
  2967. dependencies = [
  2968. "memchr",
  2969. ]
  2970. [[package]]
  2971. name = "oid-registry"
  2972. version = "0.7.0"
  2973. source = "registry+https://github.com/rust-lang/crates.io-index"
  2974. checksum = "1c958dd45046245b9c3c2547369bb634eb461670b2e7e0de552905801a648d1d"
  2975. dependencies = [
  2976. "asn1-rs",
  2977. ]
  2978. [[package]]
  2979. name = "once_cell"
  2980. version = "1.19.0"
  2981. source = "registry+https://github.com/rust-lang/crates.io-index"
  2982. checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
  2983. [[package]]
  2984. name = "open-fastrlp"
  2985. version = "0.1.4"
  2986. source = "registry+https://github.com/rust-lang/crates.io-index"
  2987. checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce"
  2988. dependencies = [
  2989. "arrayvec",
  2990. "auto_impl",
  2991. "bytes",
  2992. "ethereum-types",
  2993. "open-fastrlp-derive",
  2994. ]
  2995. [[package]]
  2996. name = "open-fastrlp-derive"
  2997. version = "0.1.1"
  2998. source = "registry+https://github.com/rust-lang/crates.io-index"
  2999. checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c"
  3000. dependencies = [
  3001. "bytes",
  3002. "proc-macro2",
  3003. "quote",
  3004. "syn 1.0.109",
  3005. ]
  3006. [[package]]
  3007. name = "openssl"
  3008. version = "0.10.64"
  3009. source = "registry+https://github.com/rust-lang/crates.io-index"
  3010. checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
  3011. dependencies = [
  3012. "bitflags 2.5.0",
  3013. "cfg-if",
  3014. "foreign-types",
  3015. "libc",
  3016. "once_cell",
  3017. "openssl-macros",
  3018. "openssl-sys",
  3019. ]
  3020. [[package]]
  3021. name = "openssl-macros"
  3022. version = "0.1.1"
  3023. source = "registry+https://github.com/rust-lang/crates.io-index"
  3024. checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
  3025. dependencies = [
  3026. "proc-macro2",
  3027. "quote",
  3028. "syn 2.0.53",
  3029. ]
  3030. [[package]]
  3031. name = "openssl-sys"
  3032. version = "0.9.101"
  3033. source = "registry+https://github.com/rust-lang/crates.io-index"
  3034. checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff"
  3035. dependencies = [
  3036. "cc",
  3037. "libc",
  3038. "pkg-config",
  3039. "vcpkg",
  3040. ]
  3041. [[package]]
  3042. name = "option-ext"
  3043. version = "0.2.0"
  3044. source = "registry+https://github.com/rust-lang/crates.io-index"
  3045. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  3046. [[package]]
  3047. name = "ordered-float"
  3048. version = "2.10.1"
  3049. source = "registry+https://github.com/rust-lang/crates.io-index"
  3050. checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
  3051. dependencies = [
  3052. "num-traits",
  3053. ]
  3054. [[package]]
  3055. name = "overload"
  3056. version = "0.1.1"
  3057. source = "registry+https://github.com/rust-lang/crates.io-index"
  3058. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  3059. [[package]]
  3060. name = "p256"
  3061. version = "0.13.2"
  3062. source = "registry+https://github.com/rust-lang/crates.io-index"
  3063. checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
  3064. dependencies = [
  3065. "ecdsa",
  3066. "elliptic-curve",
  3067. "primeorder",
  3068. "sha2",
  3069. ]
  3070. [[package]]
  3071. name = "p384"
  3072. version = "0.13.0"
  3073. source = "registry+https://github.com/rust-lang/crates.io-index"
  3074. checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
  3075. dependencies = [
  3076. "ecdsa",
  3077. "elliptic-curve",
  3078. "primeorder",
  3079. "sha2",
  3080. ]
  3081. [[package]]
  3082. name = "p521"
  3083. version = "0.13.3"
  3084. source = "registry+https://github.com/rust-lang/crates.io-index"
  3085. checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
  3086. dependencies = [
  3087. "base16ct",
  3088. "ecdsa",
  3089. "elliptic-curve",
  3090. "primeorder",
  3091. "rand_core",
  3092. "sha2",
  3093. ]
  3094. [[package]]
  3095. name = "parity-scale-codec"
  3096. version = "3.6.9"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "881331e34fa842a2fb61cc2db9643a8fedc615e47cfcc52597d1af0db9a7e8fe"
  3099. dependencies = [
  3100. "arrayvec",
  3101. "bitvec",
  3102. "byte-slice-cast",
  3103. "impl-trait-for-tuples",
  3104. "parity-scale-codec-derive",
  3105. "serde",
  3106. ]
  3107. [[package]]
  3108. name = "parity-scale-codec-derive"
  3109. version = "3.6.9"
  3110. source = "registry+https://github.com/rust-lang/crates.io-index"
  3111. checksum = "be30eaf4b0a9fba5336683b38de57bb86d179a35862ba6bfcf57625d006bde5b"
  3112. dependencies = [
  3113. "proc-macro-crate 2.0.0",
  3114. "proc-macro2",
  3115. "quote",
  3116. "syn 1.0.109",
  3117. ]
  3118. [[package]]
  3119. name = "parking"
  3120. version = "2.2.0"
  3121. source = "registry+https://github.com/rust-lang/crates.io-index"
  3122. checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
  3123. [[package]]
  3124. name = "parking_lot"
  3125. version = "0.11.2"
  3126. source = "registry+https://github.com/rust-lang/crates.io-index"
  3127. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  3128. dependencies = [
  3129. "instant",
  3130. "lock_api",
  3131. "parking_lot_core 0.8.6",
  3132. ]
  3133. [[package]]
  3134. name = "parking_lot"
  3135. version = "0.12.1"
  3136. source = "registry+https://github.com/rust-lang/crates.io-index"
  3137. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  3138. dependencies = [
  3139. "lock_api",
  3140. "parking_lot_core 0.9.9",
  3141. ]
  3142. [[package]]
  3143. name = "parking_lot_core"
  3144. version = "0.8.6"
  3145. source = "registry+https://github.com/rust-lang/crates.io-index"
  3146. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  3147. dependencies = [
  3148. "cfg-if",
  3149. "instant",
  3150. "libc",
  3151. "redox_syscall 0.2.16",
  3152. "smallvec",
  3153. "winapi",
  3154. ]
  3155. [[package]]
  3156. name = "parking_lot_core"
  3157. version = "0.9.9"
  3158. source = "registry+https://github.com/rust-lang/crates.io-index"
  3159. checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
  3160. dependencies = [
  3161. "cfg-if",
  3162. "libc",
  3163. "redox_syscall 0.4.1",
  3164. "smallvec",
  3165. "windows-targets 0.48.5",
  3166. ]
  3167. [[package]]
  3168. name = "password-hash"
  3169. version = "0.4.2"
  3170. source = "registry+https://github.com/rust-lang/crates.io-index"
  3171. checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
  3172. dependencies = [
  3173. "base64ct",
  3174. "rand_core",
  3175. "subtle",
  3176. ]
  3177. [[package]]
  3178. name = "paste"
  3179. version = "1.0.14"
  3180. source = "registry+https://github.com/rust-lang/crates.io-index"
  3181. checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
  3182. [[package]]
  3183. name = "path-slash"
  3184. version = "0.2.1"
  3185. source = "registry+https://github.com/rust-lang/crates.io-index"
  3186. checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
  3187. [[package]]
  3188. name = "pathdiff"
  3189. version = "0.2.1"
  3190. source = "registry+https://github.com/rust-lang/crates.io-index"
  3191. checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
  3192. [[package]]
  3193. name = "pbkdf2"
  3194. version = "0.11.0"
  3195. source = "registry+https://github.com/rust-lang/crates.io-index"
  3196. checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
  3197. dependencies = [
  3198. "digest",
  3199. "hmac",
  3200. "password-hash",
  3201. "sha2",
  3202. ]
  3203. [[package]]
  3204. name = "pbkdf2"
  3205. version = "0.12.2"
  3206. source = "registry+https://github.com/rust-lang/crates.io-index"
  3207. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  3208. dependencies = [
  3209. "digest",
  3210. "hmac",
  3211. ]
  3212. [[package]]
  3213. name = "pem"
  3214. version = "1.1.1"
  3215. source = "registry+https://github.com/rust-lang/crates.io-index"
  3216. checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
  3217. dependencies = [
  3218. "base64 0.13.1",
  3219. ]
  3220. [[package]]
  3221. name = "pem"
  3222. version = "3.0.3"
  3223. source = "registry+https://github.com/rust-lang/crates.io-index"
  3224. checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
  3225. dependencies = [
  3226. "base64 0.21.7",
  3227. "serde",
  3228. ]
  3229. [[package]]
  3230. name = "pem-rfc7468"
  3231. version = "0.7.0"
  3232. source = "registry+https://github.com/rust-lang/crates.io-index"
  3233. checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
  3234. dependencies = [
  3235. "base64ct",
  3236. ]
  3237. [[package]]
  3238. name = "percent-encoding"
  3239. version = "2.3.1"
  3240. source = "registry+https://github.com/rust-lang/crates.io-index"
  3241. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  3242. [[package]]
  3243. name = "petgraph"
  3244. version = "0.6.4"
  3245. source = "registry+https://github.com/rust-lang/crates.io-index"
  3246. checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
  3247. dependencies = [
  3248. "fixedbitset",
  3249. "indexmap 2.2.5",
  3250. ]
  3251. [[package]]
  3252. name = "pharos"
  3253. version = "0.5.3"
  3254. source = "registry+https://github.com/rust-lang/crates.io-index"
  3255. checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
  3256. dependencies = [
  3257. "futures",
  3258. "rustc_version",
  3259. ]
  3260. [[package]]
  3261. name = "phf"
  3262. version = "0.11.2"
  3263. source = "registry+https://github.com/rust-lang/crates.io-index"
  3264. checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
  3265. dependencies = [
  3266. "phf_macros",
  3267. "phf_shared 0.11.2",
  3268. ]
  3269. [[package]]
  3270. name = "phf_generator"
  3271. version = "0.11.2"
  3272. source = "registry+https://github.com/rust-lang/crates.io-index"
  3273. checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
  3274. dependencies = [
  3275. "phf_shared 0.11.2",
  3276. "rand",
  3277. ]
  3278. [[package]]
  3279. name = "phf_macros"
  3280. version = "0.11.2"
  3281. source = "registry+https://github.com/rust-lang/crates.io-index"
  3282. checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
  3283. dependencies = [
  3284. "phf_generator",
  3285. "phf_shared 0.11.2",
  3286. "proc-macro2",
  3287. "quote",
  3288. "syn 2.0.53",
  3289. ]
  3290. [[package]]
  3291. name = "phf_shared"
  3292. version = "0.10.0"
  3293. source = "registry+https://github.com/rust-lang/crates.io-index"
  3294. checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
  3295. dependencies = [
  3296. "siphasher",
  3297. ]
  3298. [[package]]
  3299. name = "phf_shared"
  3300. version = "0.11.2"
  3301. source = "registry+https://github.com/rust-lang/crates.io-index"
  3302. checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
  3303. dependencies = [
  3304. "siphasher",
  3305. ]
  3306. [[package]]
  3307. name = "pin-project"
  3308. version = "1.1.5"
  3309. source = "registry+https://github.com/rust-lang/crates.io-index"
  3310. checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
  3311. dependencies = [
  3312. "pin-project-internal",
  3313. ]
  3314. [[package]]
  3315. name = "pin-project-internal"
  3316. version = "1.1.5"
  3317. source = "registry+https://github.com/rust-lang/crates.io-index"
  3318. checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
  3319. dependencies = [
  3320. "proc-macro2",
  3321. "quote",
  3322. "syn 2.0.53",
  3323. ]
  3324. [[package]]
  3325. name = "pin-project-lite"
  3326. version = "0.2.13"
  3327. source = "registry+https://github.com/rust-lang/crates.io-index"
  3328. checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
  3329. [[package]]
  3330. name = "pin-utils"
  3331. version = "0.1.0"
  3332. source = "registry+https://github.com/rust-lang/crates.io-index"
  3333. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  3334. [[package]]
  3335. name = "piper"
  3336. version = "0.2.1"
  3337. source = "registry+https://github.com/rust-lang/crates.io-index"
  3338. checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
  3339. dependencies = [
  3340. "atomic-waker",
  3341. "fastrand 2.0.1",
  3342. "futures-io",
  3343. ]
  3344. [[package]]
  3345. name = "pkcs1"
  3346. version = "0.7.5"
  3347. source = "registry+https://github.com/rust-lang/crates.io-index"
  3348. checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
  3349. dependencies = [
  3350. "der",
  3351. "pkcs8",
  3352. "spki",
  3353. ]
  3354. [[package]]
  3355. name = "pkcs8"
  3356. version = "0.10.2"
  3357. source = "registry+https://github.com/rust-lang/crates.io-index"
  3358. checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
  3359. dependencies = [
  3360. "der",
  3361. "spki",
  3362. ]
  3363. [[package]]
  3364. name = "pkg-config"
  3365. version = "0.3.30"
  3366. source = "registry+https://github.com/rust-lang/crates.io-index"
  3367. checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
  3368. [[package]]
  3369. name = "platforms"
  3370. version = "3.3.0"
  3371. source = "registry+https://github.com/rust-lang/crates.io-index"
  3372. checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
  3373. [[package]]
  3374. name = "polling"
  3375. version = "2.8.0"
  3376. source = "registry+https://github.com/rust-lang/crates.io-index"
  3377. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  3378. dependencies = [
  3379. "autocfg",
  3380. "bitflags 1.3.2",
  3381. "cfg-if",
  3382. "concurrent-queue",
  3383. "libc",
  3384. "log",
  3385. "pin-project-lite",
  3386. "windows-sys 0.48.0",
  3387. ]
  3388. [[package]]
  3389. name = "polling"
  3390. version = "3.5.0"
  3391. source = "registry+https://github.com/rust-lang/crates.io-index"
  3392. checksum = "24f040dee2588b4963afb4e420540439d126f73fdacf4a9c486a96d840bac3c9"
  3393. dependencies = [
  3394. "cfg-if",
  3395. "concurrent-queue",
  3396. "pin-project-lite",
  3397. "rustix 0.38.32",
  3398. "tracing",
  3399. "windows-sys 0.52.0",
  3400. ]
  3401. [[package]]
  3402. name = "postage"
  3403. version = "0.5.0"
  3404. source = "registry+https://github.com/rust-lang/crates.io-index"
  3405. checksum = "af3fb618632874fb76937c2361a7f22afd393c982a2165595407edc75b06d3c1"
  3406. dependencies = [
  3407. "atomic",
  3408. "crossbeam-queue",
  3409. "futures",
  3410. "parking_lot 0.12.1",
  3411. "pin-project",
  3412. "static_assertions",
  3413. "thiserror",
  3414. ]
  3415. [[package]]
  3416. name = "powerfmt"
  3417. version = "0.2.0"
  3418. source = "registry+https://github.com/rust-lang/crates.io-index"
  3419. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  3420. [[package]]
  3421. name = "ppv-lite86"
  3422. version = "0.2.17"
  3423. source = "registry+https://github.com/rust-lang/crates.io-index"
  3424. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  3425. [[package]]
  3426. name = "precomputed-hash"
  3427. version = "0.1.1"
  3428. source = "registry+https://github.com/rust-lang/crates.io-index"
  3429. checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
  3430. [[package]]
  3431. name = "prettyplease"
  3432. version = "0.2.16"
  3433. source = "registry+https://github.com/rust-lang/crates.io-index"
  3434. checksum = "a41cf62165e97c7f814d2221421dbb9afcbcdb0a88068e5ea206e19951c2cbb5"
  3435. dependencies = [
  3436. "proc-macro2",
  3437. "syn 2.0.53",
  3438. ]
  3439. [[package]]
  3440. name = "primeorder"
  3441. version = "0.13.6"
  3442. source = "registry+https://github.com/rust-lang/crates.io-index"
  3443. checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
  3444. dependencies = [
  3445. "elliptic-curve",
  3446. ]
  3447. [[package]]
  3448. name = "primitive-types"
  3449. version = "0.12.2"
  3450. source = "registry+https://github.com/rust-lang/crates.io-index"
  3451. checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2"
  3452. dependencies = [
  3453. "fixed-hash",
  3454. "impl-codec",
  3455. "impl-rlp",
  3456. "impl-serde",
  3457. "scale-info",
  3458. "uint",
  3459. ]
  3460. [[package]]
  3461. name = "priority-queue"
  3462. version = "1.4.0"
  3463. source = "registry+https://github.com/rust-lang/crates.io-index"
  3464. checksum = "a0bda9164fe05bc9225752d54aae413343c36f684380005398a6a8fde95fe785"
  3465. dependencies = [
  3466. "autocfg",
  3467. "indexmap 1.9.3",
  3468. ]
  3469. [[package]]
  3470. name = "proc-macro-crate"
  3471. version = "1.3.1"
  3472. source = "registry+https://github.com/rust-lang/crates.io-index"
  3473. checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
  3474. dependencies = [
  3475. "once_cell",
  3476. "toml_edit 0.19.15",
  3477. ]
  3478. [[package]]
  3479. name = "proc-macro-crate"
  3480. version = "2.0.0"
  3481. source = "registry+https://github.com/rust-lang/crates.io-index"
  3482. checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
  3483. dependencies = [
  3484. "toml_edit 0.20.7",
  3485. ]
  3486. [[package]]
  3487. name = "proc-macro-crate"
  3488. version = "3.1.0"
  3489. source = "registry+https://github.com/rust-lang/crates.io-index"
  3490. checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
  3491. dependencies = [
  3492. "toml_edit 0.21.1",
  3493. ]
  3494. [[package]]
  3495. name = "proc-macro-error"
  3496. version = "1.0.4"
  3497. source = "registry+https://github.com/rust-lang/crates.io-index"
  3498. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  3499. dependencies = [
  3500. "proc-macro-error-attr",
  3501. "proc-macro2",
  3502. "quote",
  3503. "syn 1.0.109",
  3504. "version_check",
  3505. ]
  3506. [[package]]
  3507. name = "proc-macro-error-attr"
  3508. version = "1.0.4"
  3509. source = "registry+https://github.com/rust-lang/crates.io-index"
  3510. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  3511. dependencies = [
  3512. "proc-macro2",
  3513. "quote",
  3514. "version_check",
  3515. ]
  3516. [[package]]
  3517. name = "proc-macro2"
  3518. version = "1.0.79"
  3519. source = "registry+https://github.com/rust-lang/crates.io-index"
  3520. checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
  3521. dependencies = [
  3522. "unicode-ident",
  3523. ]
  3524. [[package]]
  3525. name = "proptest"
  3526. version = "1.4.0"
  3527. source = "registry+https://github.com/rust-lang/crates.io-index"
  3528. checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf"
  3529. dependencies = [
  3530. "bitflags 2.5.0",
  3531. "lazy_static",
  3532. "num-traits",
  3533. "rand",
  3534. "rand_chacha",
  3535. "rand_xorshift",
  3536. "regex-syntax 0.8.2",
  3537. "unarray",
  3538. ]
  3539. [[package]]
  3540. name = "pulldown-cmark"
  3541. version = "0.9.6"
  3542. source = "registry+https://github.com/rust-lang/crates.io-index"
  3543. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  3544. dependencies = [
  3545. "bitflags 2.5.0",
  3546. "memchr",
  3547. "unicase",
  3548. ]
  3549. [[package]]
  3550. name = "pwd-grp"
  3551. version = "0.1.1"
  3552. source = "registry+https://github.com/rust-lang/crates.io-index"
  3553. checksum = "6955c41fd7e4283bdf6ff3e7218b7e3f8ef24c4236b31d22be050f4cfd5e2a2c"
  3554. dependencies = [
  3555. "derive-adhoc 0.7.3",
  3556. "libc",
  3557. "paste",
  3558. "thiserror",
  3559. ]
  3560. [[package]]
  3561. name = "quote"
  3562. version = "1.0.35"
  3563. source = "registry+https://github.com/rust-lang/crates.io-index"
  3564. checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
  3565. dependencies = [
  3566. "proc-macro2",
  3567. ]
  3568. [[package]]
  3569. name = "radium"
  3570. version = "0.7.0"
  3571. source = "registry+https://github.com/rust-lang/crates.io-index"
  3572. checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
  3573. [[package]]
  3574. name = "rand"
  3575. version = "0.8.5"
  3576. source = "registry+https://github.com/rust-lang/crates.io-index"
  3577. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3578. dependencies = [
  3579. "libc",
  3580. "rand_chacha",
  3581. "rand_core",
  3582. ]
  3583. [[package]]
  3584. name = "rand_chacha"
  3585. version = "0.3.1"
  3586. source = "registry+https://github.com/rust-lang/crates.io-index"
  3587. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3588. dependencies = [
  3589. "ppv-lite86",
  3590. "rand_core",
  3591. ]
  3592. [[package]]
  3593. name = "rand_core"
  3594. version = "0.6.4"
  3595. source = "registry+https://github.com/rust-lang/crates.io-index"
  3596. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3597. dependencies = [
  3598. "getrandom",
  3599. ]
  3600. [[package]]
  3601. name = "rand_xorshift"
  3602. version = "0.3.0"
  3603. source = "registry+https://github.com/rust-lang/crates.io-index"
  3604. checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
  3605. dependencies = [
  3606. "rand_core",
  3607. ]
  3608. [[package]]
  3609. name = "rayon"
  3610. version = "1.9.0"
  3611. source = "registry+https://github.com/rust-lang/crates.io-index"
  3612. checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
  3613. dependencies = [
  3614. "either",
  3615. "rayon-core",
  3616. ]
  3617. [[package]]
  3618. name = "rayon-core"
  3619. version = "1.12.1"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3622. dependencies = [
  3623. "crossbeam-deque",
  3624. "crossbeam-utils",
  3625. ]
  3626. [[package]]
  3627. name = "rcgen"
  3628. version = "0.12.1"
  3629. source = "registry+https://github.com/rust-lang/crates.io-index"
  3630. checksum = "48406db8ac1f3cbc7dcdb56ec355343817958a356ff430259bb07baf7607e1e1"
  3631. dependencies = [
  3632. "pem 3.0.3",
  3633. "ring 0.17.8",
  3634. "time",
  3635. "yasna",
  3636. ]
  3637. [[package]]
  3638. name = "redox_syscall"
  3639. version = "0.2.16"
  3640. source = "registry+https://github.com/rust-lang/crates.io-index"
  3641. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3642. dependencies = [
  3643. "bitflags 1.3.2",
  3644. ]
  3645. [[package]]
  3646. name = "redox_syscall"
  3647. version = "0.4.1"
  3648. source = "registry+https://github.com/rust-lang/crates.io-index"
  3649. checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
  3650. dependencies = [
  3651. "bitflags 1.3.2",
  3652. ]
  3653. [[package]]
  3654. name = "redox_users"
  3655. version = "0.4.4"
  3656. source = "registry+https://github.com/rust-lang/crates.io-index"
  3657. checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
  3658. dependencies = [
  3659. "getrandom",
  3660. "libredox",
  3661. "thiserror",
  3662. ]
  3663. [[package]]
  3664. name = "regex"
  3665. version = "1.10.3"
  3666. source = "registry+https://github.com/rust-lang/crates.io-index"
  3667. checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
  3668. dependencies = [
  3669. "aho-corasick",
  3670. "memchr",
  3671. "regex-automata 0.4.6",
  3672. "regex-syntax 0.8.2",
  3673. ]
  3674. [[package]]
  3675. name = "regex-automata"
  3676. version = "0.1.10"
  3677. source = "registry+https://github.com/rust-lang/crates.io-index"
  3678. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3679. dependencies = [
  3680. "regex-syntax 0.6.29",
  3681. ]
  3682. [[package]]
  3683. name = "regex-automata"
  3684. version = "0.4.6"
  3685. source = "registry+https://github.com/rust-lang/crates.io-index"
  3686. checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
  3687. dependencies = [
  3688. "aho-corasick",
  3689. "memchr",
  3690. "regex-syntax 0.8.2",
  3691. ]
  3692. [[package]]
  3693. name = "regex-syntax"
  3694. version = "0.6.29"
  3695. source = "registry+https://github.com/rust-lang/crates.io-index"
  3696. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3697. [[package]]
  3698. name = "regex-syntax"
  3699. version = "0.8.2"
  3700. source = "registry+https://github.com/rust-lang/crates.io-index"
  3701. checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
  3702. [[package]]
  3703. name = "reqwest"
  3704. version = "0.11.27"
  3705. source = "registry+https://github.com/rust-lang/crates.io-index"
  3706. checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
  3707. dependencies = [
  3708. "base64 0.21.7",
  3709. "bytes",
  3710. "encoding_rs",
  3711. "futures-core",
  3712. "futures-util",
  3713. "h2",
  3714. "http 0.2.12",
  3715. "http-body",
  3716. "hyper",
  3717. "hyper-rustls",
  3718. "ipnet",
  3719. "js-sys",
  3720. "log",
  3721. "mime",
  3722. "once_cell",
  3723. "percent-encoding",
  3724. "pin-project-lite",
  3725. "rustls 0.21.10",
  3726. "rustls-pemfile 1.0.4",
  3727. "serde",
  3728. "serde_json",
  3729. "serde_urlencoded",
  3730. "sync_wrapper",
  3731. "system-configuration",
  3732. "tokio",
  3733. "tokio-rustls",
  3734. "tower-service",
  3735. "url",
  3736. "wasm-bindgen",
  3737. "wasm-bindgen-futures",
  3738. "web-sys",
  3739. "webpki-roots",
  3740. "winreg",
  3741. ]
  3742. [[package]]
  3743. name = "retry-error"
  3744. version = "0.5.1"
  3745. source = "registry+https://github.com/rust-lang/crates.io-index"
  3746. checksum = "c5e700775c6b1ef3b76bda447c1d88921334a6127600cc041140b29dc8582f19"
  3747. [[package]]
  3748. name = "rfc6979"
  3749. version = "0.4.0"
  3750. source = "registry+https://github.com/rust-lang/crates.io-index"
  3751. checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
  3752. dependencies = [
  3753. "hmac",
  3754. "subtle",
  3755. ]
  3756. [[package]]
  3757. name = "ring"
  3758. version = "0.16.20"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3761. dependencies = [
  3762. "cc",
  3763. "libc",
  3764. "once_cell",
  3765. "spin 0.5.2",
  3766. "untrusted 0.7.1",
  3767. "web-sys",
  3768. "winapi",
  3769. ]
  3770. [[package]]
  3771. name = "ring"
  3772. version = "0.17.8"
  3773. source = "registry+https://github.com/rust-lang/crates.io-index"
  3774. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  3775. dependencies = [
  3776. "cc",
  3777. "cfg-if",
  3778. "getrandom",
  3779. "libc",
  3780. "spin 0.9.8",
  3781. "untrusted 0.9.0",
  3782. "windows-sys 0.52.0",
  3783. ]
  3784. [[package]]
  3785. name = "ripemd"
  3786. version = "0.1.3"
  3787. source = "registry+https://github.com/rust-lang/crates.io-index"
  3788. checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
  3789. dependencies = [
  3790. "digest",
  3791. ]
  3792. [[package]]
  3793. name = "rlp"
  3794. version = "0.5.2"
  3795. source = "registry+https://github.com/rust-lang/crates.io-index"
  3796. checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
  3797. dependencies = [
  3798. "bytes",
  3799. "rlp-derive",
  3800. "rustc-hex",
  3801. ]
  3802. [[package]]
  3803. name = "rlp-derive"
  3804. version = "0.1.0"
  3805. source = "registry+https://github.com/rust-lang/crates.io-index"
  3806. checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a"
  3807. dependencies = [
  3808. "proc-macro2",
  3809. "quote",
  3810. "syn 1.0.109",
  3811. ]
  3812. [[package]]
  3813. name = "rsa"
  3814. version = "0.9.6"
  3815. source = "registry+https://github.com/rust-lang/crates.io-index"
  3816. checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
  3817. dependencies = [
  3818. "const-oid",
  3819. "digest",
  3820. "num-bigint-dig",
  3821. "num-integer",
  3822. "num-traits",
  3823. "pkcs1",
  3824. "pkcs8",
  3825. "rand_core",
  3826. "sha2",
  3827. "signature",
  3828. "spki",
  3829. "subtle",
  3830. "zeroize",
  3831. ]
  3832. [[package]]
  3833. name = "rusqlite"
  3834. version = "0.31.0"
  3835. source = "registry+https://github.com/rust-lang/crates.io-index"
  3836. checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
  3837. dependencies = [
  3838. "bitflags 2.5.0",
  3839. "fallible-iterator",
  3840. "fallible-streaming-iterator",
  3841. "hashlink",
  3842. "libsqlite3-sys",
  3843. "smallvec",
  3844. "time",
  3845. ]
  3846. [[package]]
  3847. name = "rustc-demangle"
  3848. version = "0.1.23"
  3849. source = "registry+https://github.com/rust-lang/crates.io-index"
  3850. checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
  3851. [[package]]
  3852. name = "rustc-hex"
  3853. version = "2.1.0"
  3854. source = "registry+https://github.com/rust-lang/crates.io-index"
  3855. checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
  3856. [[package]]
  3857. name = "rustc_version"
  3858. version = "0.4.0"
  3859. source = "registry+https://github.com/rust-lang/crates.io-index"
  3860. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  3861. dependencies = [
  3862. "semver",
  3863. ]
  3864. [[package]]
  3865. name = "rusticata-macros"
  3866. version = "4.1.0"
  3867. source = "registry+https://github.com/rust-lang/crates.io-index"
  3868. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  3869. dependencies = [
  3870. "nom",
  3871. ]
  3872. [[package]]
  3873. name = "rustix"
  3874. version = "0.37.27"
  3875. source = "registry+https://github.com/rust-lang/crates.io-index"
  3876. checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
  3877. dependencies = [
  3878. "bitflags 1.3.2",
  3879. "errno",
  3880. "io-lifetimes",
  3881. "libc",
  3882. "linux-raw-sys 0.3.8",
  3883. "windows-sys 0.48.0",
  3884. ]
  3885. [[package]]
  3886. name = "rustix"
  3887. version = "0.38.32"
  3888. source = "registry+https://github.com/rust-lang/crates.io-index"
  3889. checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
  3890. dependencies = [
  3891. "bitflags 2.5.0",
  3892. "errno",
  3893. "libc",
  3894. "linux-raw-sys 0.4.13",
  3895. "windows-sys 0.52.0",
  3896. ]
  3897. [[package]]
  3898. name = "rustls"
  3899. version = "0.21.10"
  3900. source = "registry+https://github.com/rust-lang/crates.io-index"
  3901. checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
  3902. dependencies = [
  3903. "log",
  3904. "ring 0.17.8",
  3905. "rustls-webpki 0.101.7",
  3906. "sct",
  3907. ]
  3908. [[package]]
  3909. name = "rustls"
  3910. version = "0.22.2"
  3911. source = "registry+https://github.com/rust-lang/crates.io-index"
  3912. checksum = "e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41"
  3913. dependencies = [
  3914. "ring 0.17.8",
  3915. "rustls-pki-types",
  3916. "rustls-webpki 0.102.2",
  3917. "subtle",
  3918. "zeroize",
  3919. ]
  3920. [[package]]
  3921. name = "rustls-pemfile"
  3922. version = "1.0.4"
  3923. source = "registry+https://github.com/rust-lang/crates.io-index"
  3924. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  3925. dependencies = [
  3926. "base64 0.21.7",
  3927. ]
  3928. [[package]]
  3929. name = "rustls-pemfile"
  3930. version = "2.1.1"
  3931. source = "registry+https://github.com/rust-lang/crates.io-index"
  3932. checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab"
  3933. dependencies = [
  3934. "base64 0.21.7",
  3935. "rustls-pki-types",
  3936. ]
  3937. [[package]]
  3938. name = "rustls-pki-types"
  3939. version = "1.3.1"
  3940. source = "registry+https://github.com/rust-lang/crates.io-index"
  3941. checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8"
  3942. [[package]]
  3943. name = "rustls-webpki"
  3944. version = "0.101.7"
  3945. source = "registry+https://github.com/rust-lang/crates.io-index"
  3946. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  3947. dependencies = [
  3948. "ring 0.17.8",
  3949. "untrusted 0.9.0",
  3950. ]
  3951. [[package]]
  3952. name = "rustls-webpki"
  3953. version = "0.102.2"
  3954. source = "registry+https://github.com/rust-lang/crates.io-index"
  3955. checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610"
  3956. dependencies = [
  3957. "ring 0.17.8",
  3958. "rustls-pki-types",
  3959. "untrusted 0.9.0",
  3960. ]
  3961. [[package]]
  3962. name = "rustversion"
  3963. version = "1.0.14"
  3964. source = "registry+https://github.com/rust-lang/crates.io-index"
  3965. checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
  3966. [[package]]
  3967. name = "ryu"
  3968. version = "1.0.17"
  3969. source = "registry+https://github.com/rust-lang/crates.io-index"
  3970. checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
  3971. [[package]]
  3972. name = "safelog"
  3973. version = "0.3.5"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "b4dd088c4f8f20154e72ef45c78b31b1225b19b448dd3b0f37d605de1b8b8ef5"
  3976. dependencies = [
  3977. "derive_more",
  3978. "educe",
  3979. "either",
  3980. "fluid-let",
  3981. "thiserror",
  3982. ]
  3983. [[package]]
  3984. name = "salsa20"
  3985. version = "0.10.2"
  3986. source = "registry+https://github.com/rust-lang/crates.io-index"
  3987. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  3988. dependencies = [
  3989. "cipher",
  3990. ]
  3991. [[package]]
  3992. name = "same-file"
  3993. version = "1.0.6"
  3994. source = "registry+https://github.com/rust-lang/crates.io-index"
  3995. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3996. dependencies = [
  3997. "winapi-util",
  3998. ]
  3999. [[package]]
  4000. name = "sanitize-filename"
  4001. version = "0.5.0"
  4002. source = "registry+https://github.com/rust-lang/crates.io-index"
  4003. checksum = "2ed72fbaf78e6f2d41744923916966c4fbe3d7c74e3037a8ee482f1115572603"
  4004. dependencies = [
  4005. "lazy_static",
  4006. "regex",
  4007. ]
  4008. [[package]]
  4009. name = "scale-info"
  4010. version = "2.11.0"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "2ef2175c2907e7c8bc0a9c3f86aeb5ec1f3b275300ad58a44d0c3ae379a5e52e"
  4013. dependencies = [
  4014. "cfg-if",
  4015. "derive_more",
  4016. "parity-scale-codec",
  4017. "scale-info-derive",
  4018. ]
  4019. [[package]]
  4020. name = "scale-info-derive"
  4021. version = "2.11.0"
  4022. source = "registry+https://github.com/rust-lang/crates.io-index"
  4023. checksum = "634d9b8eb8fd61c5cdd3390d9b2132300a7e7618955b98b8416f118c1b4e144f"
  4024. dependencies = [
  4025. "proc-macro-crate 1.3.1",
  4026. "proc-macro2",
  4027. "quote",
  4028. "syn 1.0.109",
  4029. ]
  4030. [[package]]
  4031. name = "scopeguard"
  4032. version = "1.2.0"
  4033. source = "registry+https://github.com/rust-lang/crates.io-index"
  4034. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  4035. [[package]]
  4036. name = "scrypt"
  4037. version = "0.10.0"
  4038. source = "registry+https://github.com/rust-lang/crates.io-index"
  4039. checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d"
  4040. dependencies = [
  4041. "hmac",
  4042. "pbkdf2 0.11.0",
  4043. "salsa20",
  4044. "sha2",
  4045. ]
  4046. [[package]]
  4047. name = "sct"
  4048. version = "0.7.1"
  4049. source = "registry+https://github.com/rust-lang/crates.io-index"
  4050. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  4051. dependencies = [
  4052. "ring 0.17.8",
  4053. "untrusted 0.9.0",
  4054. ]
  4055. [[package]]
  4056. name = "sec1"
  4057. version = "0.7.3"
  4058. source = "registry+https://github.com/rust-lang/crates.io-index"
  4059. checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
  4060. dependencies = [
  4061. "base16ct",
  4062. "der",
  4063. "generic-array",
  4064. "pkcs8",
  4065. "subtle",
  4066. "zeroize",
  4067. ]
  4068. [[package]]
  4069. name = "semver"
  4070. version = "1.0.22"
  4071. source = "registry+https://github.com/rust-lang/crates.io-index"
  4072. checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
  4073. dependencies = [
  4074. "serde",
  4075. ]
  4076. [[package]]
  4077. name = "send_wrapper"
  4078. version = "0.4.0"
  4079. source = "registry+https://github.com/rust-lang/crates.io-index"
  4080. checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
  4081. [[package]]
  4082. name = "send_wrapper"
  4083. version = "0.6.0"
  4084. source = "registry+https://github.com/rust-lang/crates.io-index"
  4085. checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
  4086. [[package]]
  4087. name = "serde"
  4088. version = "1.0.197"
  4089. source = "registry+https://github.com/rust-lang/crates.io-index"
  4090. checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
  4091. dependencies = [
  4092. "serde_derive",
  4093. ]
  4094. [[package]]
  4095. name = "serde-value"
  4096. version = "0.7.0"
  4097. source = "registry+https://github.com/rust-lang/crates.io-index"
  4098. checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
  4099. dependencies = [
  4100. "ordered-float",
  4101. "serde",
  4102. ]
  4103. [[package]]
  4104. name = "serde_bytes"
  4105. version = "0.11.14"
  4106. source = "registry+https://github.com/rust-lang/crates.io-index"
  4107. checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
  4108. dependencies = [
  4109. "serde",
  4110. ]
  4111. [[package]]
  4112. name = "serde_derive"
  4113. version = "1.0.197"
  4114. source = "registry+https://github.com/rust-lang/crates.io-index"
  4115. checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
  4116. dependencies = [
  4117. "proc-macro2",
  4118. "quote",
  4119. "syn 2.0.53",
  4120. ]
  4121. [[package]]
  4122. name = "serde_ignored"
  4123. version = "0.1.10"
  4124. source = "registry+https://github.com/rust-lang/crates.io-index"
  4125. checksum = "a8e319a36d1b52126a0d608f24e93b2d81297091818cd70625fcf50a15d84ddf"
  4126. dependencies = [
  4127. "serde",
  4128. ]
  4129. [[package]]
  4130. name = "serde_json"
  4131. version = "1.0.114"
  4132. source = "registry+https://github.com/rust-lang/crates.io-index"
  4133. checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
  4134. dependencies = [
  4135. "itoa",
  4136. "ryu",
  4137. "serde",
  4138. ]
  4139. [[package]]
  4140. name = "serde_spanned"
  4141. version = "0.6.5"
  4142. source = "registry+https://github.com/rust-lang/crates.io-index"
  4143. checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
  4144. dependencies = [
  4145. "serde",
  4146. ]
  4147. [[package]]
  4148. name = "serde_urlencoded"
  4149. version = "0.7.1"
  4150. source = "registry+https://github.com/rust-lang/crates.io-index"
  4151. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  4152. dependencies = [
  4153. "form_urlencoded",
  4154. "itoa",
  4155. "ryu",
  4156. "serde",
  4157. ]
  4158. [[package]]
  4159. name = "serde_with"
  4160. version = "3.7.0"
  4161. source = "registry+https://github.com/rust-lang/crates.io-index"
  4162. checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
  4163. dependencies = [
  4164. "base64 0.21.7",
  4165. "chrono",
  4166. "hex",
  4167. "indexmap 1.9.3",
  4168. "indexmap 2.2.5",
  4169. "serde",
  4170. "serde_derive",
  4171. "serde_json",
  4172. "serde_with_macros",
  4173. "time",
  4174. ]
  4175. [[package]]
  4176. name = "serde_with_macros"
  4177. version = "3.7.0"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
  4180. dependencies = [
  4181. "darling 0.20.8",
  4182. "proc-macro2",
  4183. "quote",
  4184. "syn 2.0.53",
  4185. ]
  4186. [[package]]
  4187. name = "sha1"
  4188. version = "0.10.6"
  4189. source = "registry+https://github.com/rust-lang/crates.io-index"
  4190. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  4191. dependencies = [
  4192. "cfg-if",
  4193. "cpufeatures",
  4194. "digest",
  4195. "sha1-asm",
  4196. ]
  4197. [[package]]
  4198. name = "sha1-asm"
  4199. version = "0.5.2"
  4200. source = "registry+https://github.com/rust-lang/crates.io-index"
  4201. checksum = "2ba6947745e7f86be3b8af00b7355857085dbdf8901393c89514510eb61f4e21"
  4202. dependencies = [
  4203. "cc",
  4204. ]
  4205. [[package]]
  4206. name = "sha2"
  4207. version = "0.10.8"
  4208. source = "registry+https://github.com/rust-lang/crates.io-index"
  4209. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  4210. dependencies = [
  4211. "cfg-if",
  4212. "cpufeatures",
  4213. "digest",
  4214. ]
  4215. [[package]]
  4216. name = "sha3"
  4217. version = "0.10.8"
  4218. source = "registry+https://github.com/rust-lang/crates.io-index"
  4219. checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
  4220. dependencies = [
  4221. "digest",
  4222. "keccak",
  4223. ]
  4224. [[package]]
  4225. name = "sharded-slab"
  4226. version = "0.1.7"
  4227. source = "registry+https://github.com/rust-lang/crates.io-index"
  4228. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  4229. dependencies = [
  4230. "lazy_static",
  4231. ]
  4232. [[package]]
  4233. name = "shellexpand"
  4234. version = "3.1.0"
  4235. source = "registry+https://github.com/rust-lang/crates.io-index"
  4236. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  4237. dependencies = [
  4238. "dirs",
  4239. ]
  4240. [[package]]
  4241. name = "signal-hook"
  4242. version = "0.3.17"
  4243. source = "registry+https://github.com/rust-lang/crates.io-index"
  4244. checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
  4245. dependencies = [
  4246. "libc",
  4247. "signal-hook-registry",
  4248. ]
  4249. [[package]]
  4250. name = "signal-hook-async-std"
  4251. version = "0.2.2"
  4252. source = "registry+https://github.com/rust-lang/crates.io-index"
  4253. checksum = "0c4aa94397e2023af5b7cff5b8d4785e935cfb77f0e4aab0cae3b26258ace556"
  4254. dependencies = [
  4255. "async-io 1.13.0",
  4256. "futures-lite 1.13.0",
  4257. "libc",
  4258. "signal-hook",
  4259. ]
  4260. [[package]]
  4261. name = "signal-hook-registry"
  4262. version = "1.4.1"
  4263. source = "registry+https://github.com/rust-lang/crates.io-index"
  4264. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  4265. dependencies = [
  4266. "libc",
  4267. ]
  4268. [[package]]
  4269. name = "signature"
  4270. version = "2.2.0"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
  4273. dependencies = [
  4274. "digest",
  4275. "rand_core",
  4276. ]
  4277. [[package]]
  4278. name = "simple_asn1"
  4279. version = "0.6.2"
  4280. source = "registry+https://github.com/rust-lang/crates.io-index"
  4281. checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
  4282. dependencies = [
  4283. "num-bigint",
  4284. "num-traits",
  4285. "thiserror",
  4286. "time",
  4287. ]
  4288. [[package]]
  4289. name = "simplelog"
  4290. version = "0.12.2"
  4291. source = "registry+https://github.com/rust-lang/crates.io-index"
  4292. checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
  4293. dependencies = [
  4294. "log",
  4295. "termcolor",
  4296. "time",
  4297. ]
  4298. [[package]]
  4299. name = "siphasher"
  4300. version = "0.3.11"
  4301. source = "registry+https://github.com/rust-lang/crates.io-index"
  4302. checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
  4303. [[package]]
  4304. name = "skeptic"
  4305. version = "0.13.7"
  4306. source = "registry+https://github.com/rust-lang/crates.io-index"
  4307. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  4308. dependencies = [
  4309. "bytecount",
  4310. "cargo_metadata 0.14.2",
  4311. "error-chain",
  4312. "glob",
  4313. "pulldown-cmark",
  4314. "tempfile",
  4315. "walkdir",
  4316. ]
  4317. [[package]]
  4318. name = "slab"
  4319. version = "0.4.9"
  4320. source = "registry+https://github.com/rust-lang/crates.io-index"
  4321. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  4322. dependencies = [
  4323. "autocfg",
  4324. ]
  4325. [[package]]
  4326. name = "sled"
  4327. version = "0.34.7"
  4328. source = "registry+https://github.com/rust-lang/crates.io-index"
  4329. checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
  4330. dependencies = [
  4331. "crc32fast",
  4332. "crossbeam-epoch",
  4333. "crossbeam-utils",
  4334. "fs2",
  4335. "fxhash",
  4336. "libc",
  4337. "log",
  4338. "parking_lot 0.11.2",
  4339. ]
  4340. [[package]]
  4341. name = "slotmap"
  4342. version = "1.0.7"
  4343. source = "registry+https://github.com/rust-lang/crates.io-index"
  4344. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  4345. dependencies = [
  4346. "version_check",
  4347. ]
  4348. [[package]]
  4349. name = "smallvec"
  4350. version = "1.13.1"
  4351. source = "registry+https://github.com/rust-lang/crates.io-index"
  4352. checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
  4353. [[package]]
  4354. name = "smol"
  4355. version = "1.3.0"
  4356. source = "registry+https://github.com/rust-lang/crates.io-index"
  4357. checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
  4358. dependencies = [
  4359. "async-channel 1.9.0",
  4360. "async-executor",
  4361. "async-fs",
  4362. "async-io 1.13.0",
  4363. "async-lock 2.8.0",
  4364. "async-net",
  4365. "async-process",
  4366. "blocking",
  4367. "futures-lite 1.13.0",
  4368. ]
  4369. [[package]]
  4370. name = "socket2"
  4371. version = "0.4.10"
  4372. source = "registry+https://github.com/rust-lang/crates.io-index"
  4373. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  4374. dependencies = [
  4375. "libc",
  4376. "winapi",
  4377. ]
  4378. [[package]]
  4379. name = "socket2"
  4380. version = "0.5.6"
  4381. source = "registry+https://github.com/rust-lang/crates.io-index"
  4382. checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
  4383. dependencies = [
  4384. "libc",
  4385. "windows-sys 0.52.0",
  4386. ]
  4387. [[package]]
  4388. name = "solang-parser"
  4389. version = "0.3.3"
  4390. source = "registry+https://github.com/rust-lang/crates.io-index"
  4391. checksum = "c425ce1c59f4b154717592f0bdf4715c3a1d55058883622d3157e1f0908a5b26"
  4392. dependencies = [
  4393. "itertools 0.11.0",
  4394. "lalrpop",
  4395. "lalrpop-util",
  4396. "phf",
  4397. "thiserror",
  4398. "unicode-xid",
  4399. ]
  4400. [[package]]
  4401. name = "spin"
  4402. version = "0.5.2"
  4403. source = "registry+https://github.com/rust-lang/crates.io-index"
  4404. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  4405. [[package]]
  4406. name = "spin"
  4407. version = "0.9.8"
  4408. source = "registry+https://github.com/rust-lang/crates.io-index"
  4409. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  4410. [[package]]
  4411. name = "spki"
  4412. version = "0.7.3"
  4413. source = "registry+https://github.com/rust-lang/crates.io-index"
  4414. checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
  4415. dependencies = [
  4416. "base64ct",
  4417. "der",
  4418. ]
  4419. [[package]]
  4420. name = "ssh-cipher"
  4421. version = "0.2.0"
  4422. source = "registry+https://github.com/rust-lang/crates.io-index"
  4423. checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
  4424. dependencies = [
  4425. "cipher",
  4426. "ssh-encoding",
  4427. ]
  4428. [[package]]
  4429. name = "ssh-encoding"
  4430. version = "0.2.0"
  4431. source = "registry+https://github.com/rust-lang/crates.io-index"
  4432. checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
  4433. dependencies = [
  4434. "base64ct",
  4435. "pem-rfc7468",
  4436. "sha2",
  4437. ]
  4438. [[package]]
  4439. name = "ssh-key"
  4440. version = "0.6.5"
  4441. source = "registry+https://github.com/rust-lang/crates.io-index"
  4442. checksum = "3b71299a724c8d84956caaf8fc3b3ea57c3587fe2d0b800cd0dc1f3599905d7e"
  4443. dependencies = [
  4444. "p256",
  4445. "p384",
  4446. "p521",
  4447. "rand_core",
  4448. "rsa",
  4449. "sec1",
  4450. "sha2",
  4451. "signature",
  4452. "ssh-cipher",
  4453. "ssh-encoding",
  4454. "subtle",
  4455. "zeroize",
  4456. ]
  4457. [[package]]
  4458. name = "static_assertions"
  4459. version = "1.1.0"
  4460. source = "registry+https://github.com/rust-lang/crates.io-index"
  4461. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  4462. [[package]]
  4463. name = "string_cache"
  4464. version = "0.8.7"
  4465. source = "registry+https://github.com/rust-lang/crates.io-index"
  4466. checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
  4467. dependencies = [
  4468. "new_debug_unreachable",
  4469. "once_cell",
  4470. "parking_lot 0.12.1",
  4471. "phf_shared 0.10.0",
  4472. "precomputed-hash",
  4473. ]
  4474. [[package]]
  4475. name = "strsim"
  4476. version = "0.8.0"
  4477. source = "registry+https://github.com/rust-lang/crates.io-index"
  4478. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  4479. [[package]]
  4480. name = "strsim"
  4481. version = "0.10.0"
  4482. source = "registry+https://github.com/rust-lang/crates.io-index"
  4483. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  4484. [[package]]
  4485. name = "structopt"
  4486. version = "0.3.26"
  4487. source = "registry+https://github.com/rust-lang/crates.io-index"
  4488. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  4489. dependencies = [
  4490. "clap",
  4491. "lazy_static",
  4492. "structopt-derive",
  4493. ]
  4494. [[package]]
  4495. name = "structopt-derive"
  4496. version = "0.4.18"
  4497. source = "registry+https://github.com/rust-lang/crates.io-index"
  4498. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  4499. dependencies = [
  4500. "heck 0.3.3",
  4501. "proc-macro-error",
  4502. "proc-macro2",
  4503. "quote",
  4504. "syn 1.0.109",
  4505. ]
  4506. [[package]]
  4507. name = "structopt-toml"
  4508. version = "0.5.1"
  4509. source = "registry+https://github.com/rust-lang/crates.io-index"
  4510. checksum = "4d887e6156acb1f4e2d2968d61d1d3b6c5e102af5f23c3ca606723b5ac2c45cb"
  4511. dependencies = [
  4512. "anyhow",
  4513. "clap",
  4514. "serde",
  4515. "serde_derive",
  4516. "skeptic",
  4517. "structopt",
  4518. "structopt-toml-derive",
  4519. "toml 0.5.11",
  4520. ]
  4521. [[package]]
  4522. name = "structopt-toml-derive"
  4523. version = "0.5.1"
  4524. source = "registry+https://github.com/rust-lang/crates.io-index"
  4525. checksum = "216c57b49178d22a3ec2f0ce5e961219d11772f7ca70b00c08879d15827d6daf"
  4526. dependencies = [
  4527. "heck 0.4.1",
  4528. "proc-macro2",
  4529. "quote",
  4530. "syn 1.0.109",
  4531. ]
  4532. [[package]]
  4533. name = "strum"
  4534. version = "0.25.0"
  4535. source = "registry+https://github.com/rust-lang/crates.io-index"
  4536. checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
  4537. dependencies = [
  4538. "strum_macros 0.25.3",
  4539. ]
  4540. [[package]]
  4541. name = "strum"
  4542. version = "0.26.2"
  4543. source = "registry+https://github.com/rust-lang/crates.io-index"
  4544. checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
  4545. dependencies = [
  4546. "strum_macros 0.26.2",
  4547. ]
  4548. [[package]]
  4549. name = "strum_macros"
  4550. version = "0.25.3"
  4551. source = "registry+https://github.com/rust-lang/crates.io-index"
  4552. checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
  4553. dependencies = [
  4554. "heck 0.4.1",
  4555. "proc-macro2",
  4556. "quote",
  4557. "rustversion",
  4558. "syn 2.0.53",
  4559. ]
  4560. [[package]]
  4561. name = "strum_macros"
  4562. version = "0.26.2"
  4563. source = "registry+https://github.com/rust-lang/crates.io-index"
  4564. checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
  4565. dependencies = [
  4566. "heck 0.4.1",
  4567. "proc-macro2",
  4568. "quote",
  4569. "rustversion",
  4570. "syn 2.0.53",
  4571. ]
  4572. [[package]]
  4573. name = "subtle"
  4574. version = "2.5.0"
  4575. source = "registry+https://github.com/rust-lang/crates.io-index"
  4576. checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
  4577. [[package]]
  4578. name = "svm-rs"
  4579. version = "0.3.5"
  4580. source = "registry+https://github.com/rust-lang/crates.io-index"
  4581. checksum = "11297baafe5fa0c99d5722458eac6a5e25c01eb1b8e5cd137f54079093daa7a4"
  4582. dependencies = [
  4583. "dirs",
  4584. "fs2",
  4585. "hex",
  4586. "once_cell",
  4587. "reqwest",
  4588. "semver",
  4589. "serde",
  4590. "serde_json",
  4591. "sha2",
  4592. "thiserror",
  4593. "url",
  4594. "zip",
  4595. ]
  4596. [[package]]
  4597. name = "swapd"
  4598. version = "0.1.0"
  4599. dependencies = [
  4600. "async-std",
  4601. "async-watch",
  4602. "darkfi",
  4603. "darkfi-serial",
  4604. "easy-parallel",
  4605. "ethers",
  4606. "log",
  4607. "serde",
  4608. "signal-hook",
  4609. "signal-hook-async-std",
  4610. "simplelog",
  4611. "sled",
  4612. "smol",
  4613. "structopt",
  4614. "structopt-toml",
  4615. "swapd",
  4616. "thiserror",
  4617. "url",
  4618. ]
  4619. [[package]]
  4620. name = "syn"
  4621. version = "1.0.109"
  4622. source = "registry+https://github.com/rust-lang/crates.io-index"
  4623. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4624. dependencies = [
  4625. "proc-macro2",
  4626. "quote",
  4627. "unicode-ident",
  4628. ]
  4629. [[package]]
  4630. name = "syn"
  4631. version = "2.0.53"
  4632. source = "registry+https://github.com/rust-lang/crates.io-index"
  4633. checksum = "7383cd0e49fff4b6b90ca5670bfd3e9d6a733b3f90c686605aa7eec8c4996032"
  4634. dependencies = [
  4635. "proc-macro2",
  4636. "quote",
  4637. "unicode-ident",
  4638. ]
  4639. [[package]]
  4640. name = "sync_wrapper"
  4641. version = "0.1.2"
  4642. source = "registry+https://github.com/rust-lang/crates.io-index"
  4643. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  4644. [[package]]
  4645. name = "synstructure"
  4646. version = "0.13.1"
  4647. source = "registry+https://github.com/rust-lang/crates.io-index"
  4648. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  4649. dependencies = [
  4650. "proc-macro2",
  4651. "quote",
  4652. "syn 2.0.53",
  4653. ]
  4654. [[package]]
  4655. name = "system-configuration"
  4656. version = "0.5.1"
  4657. source = "registry+https://github.com/rust-lang/crates.io-index"
  4658. checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
  4659. dependencies = [
  4660. "bitflags 1.3.2",
  4661. "core-foundation",
  4662. "system-configuration-sys",
  4663. ]
  4664. [[package]]
  4665. name = "system-configuration-sys"
  4666. version = "0.5.0"
  4667. source = "registry+https://github.com/rust-lang/crates.io-index"
  4668. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  4669. dependencies = [
  4670. "core-foundation-sys",
  4671. "libc",
  4672. ]
  4673. [[package]]
  4674. name = "tap"
  4675. version = "1.0.1"
  4676. source = "registry+https://github.com/rust-lang/crates.io-index"
  4677. checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
  4678. [[package]]
  4679. name = "tempfile"
  4680. version = "3.10.1"
  4681. source = "registry+https://github.com/rust-lang/crates.io-index"
  4682. checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
  4683. dependencies = [
  4684. "cfg-if",
  4685. "fastrand 2.0.1",
  4686. "rustix 0.38.32",
  4687. "windows-sys 0.52.0",
  4688. ]
  4689. [[package]]
  4690. name = "term"
  4691. version = "0.7.0"
  4692. source = "registry+https://github.com/rust-lang/crates.io-index"
  4693. checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
  4694. dependencies = [
  4695. "dirs-next",
  4696. "rustversion",
  4697. "winapi",
  4698. ]
  4699. [[package]]
  4700. name = "termcolor"
  4701. version = "1.4.1"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
  4704. dependencies = [
  4705. "winapi-util",
  4706. ]
  4707. [[package]]
  4708. name = "textwrap"
  4709. version = "0.11.0"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  4712. dependencies = [
  4713. "unicode-width",
  4714. ]
  4715. [[package]]
  4716. name = "thiserror"
  4717. version = "1.0.58"
  4718. source = "registry+https://github.com/rust-lang/crates.io-index"
  4719. checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
  4720. dependencies = [
  4721. "thiserror-impl",
  4722. ]
  4723. [[package]]
  4724. name = "thiserror-impl"
  4725. version = "1.0.58"
  4726. source = "registry+https://github.com/rust-lang/crates.io-index"
  4727. checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
  4728. dependencies = [
  4729. "proc-macro2",
  4730. "quote",
  4731. "syn 2.0.53",
  4732. ]
  4733. [[package]]
  4734. name = "thread_local"
  4735. version = "1.1.8"
  4736. source = "registry+https://github.com/rust-lang/crates.io-index"
  4737. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  4738. dependencies = [
  4739. "cfg-if",
  4740. "once_cell",
  4741. ]
  4742. [[package]]
  4743. name = "time"
  4744. version = "0.3.34"
  4745. source = "registry+https://github.com/rust-lang/crates.io-index"
  4746. checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
  4747. dependencies = [
  4748. "deranged",
  4749. "itoa",
  4750. "libc",
  4751. "num-conv",
  4752. "num_threads",
  4753. "powerfmt",
  4754. "serde",
  4755. "time-core",
  4756. "time-macros",
  4757. ]
  4758. [[package]]
  4759. name = "time-core"
  4760. version = "0.1.2"
  4761. source = "registry+https://github.com/rust-lang/crates.io-index"
  4762. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  4763. [[package]]
  4764. name = "time-macros"
  4765. version = "0.2.17"
  4766. source = "registry+https://github.com/rust-lang/crates.io-index"
  4767. checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
  4768. dependencies = [
  4769. "num-conv",
  4770. "time-core",
  4771. ]
  4772. [[package]]
  4773. name = "tiny-keccak"
  4774. version = "2.0.2"
  4775. source = "registry+https://github.com/rust-lang/crates.io-index"
  4776. checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
  4777. dependencies = [
  4778. "crunchy",
  4779. ]
  4780. [[package]]
  4781. name = "tinyjson"
  4782. version = "2.5.1"
  4783. source = "registry+https://github.com/rust-lang/crates.io-index"
  4784. checksum = "9ab95735ea2c8fd51154d01e39cf13912a78071c2d89abc49a7ef102a7dd725a"
  4785. [[package]]
  4786. name = "tinystr"
  4787. version = "0.7.5"
  4788. source = "registry+https://github.com/rust-lang/crates.io-index"
  4789. checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece"
  4790. dependencies = [
  4791. "displaydoc",
  4792. ]
  4793. [[package]]
  4794. name = "tinyvec"
  4795. version = "1.6.0"
  4796. source = "registry+https://github.com/rust-lang/crates.io-index"
  4797. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  4798. dependencies = [
  4799. "tinyvec_macros",
  4800. ]
  4801. [[package]]
  4802. name = "tinyvec_macros"
  4803. version = "0.1.1"
  4804. source = "registry+https://github.com/rust-lang/crates.io-index"
  4805. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4806. [[package]]
  4807. name = "tokio"
  4808. version = "1.36.0"
  4809. source = "registry+https://github.com/rust-lang/crates.io-index"
  4810. checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
  4811. dependencies = [
  4812. "backtrace",
  4813. "bytes",
  4814. "libc",
  4815. "mio",
  4816. "num_cpus",
  4817. "pin-project-lite",
  4818. "socket2 0.5.6",
  4819. "windows-sys 0.48.0",
  4820. ]
  4821. [[package]]
  4822. name = "tokio-rustls"
  4823. version = "0.24.1"
  4824. source = "registry+https://github.com/rust-lang/crates.io-index"
  4825. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  4826. dependencies = [
  4827. "rustls 0.21.10",
  4828. "tokio",
  4829. ]
  4830. [[package]]
  4831. name = "tokio-tungstenite"
  4832. version = "0.20.1"
  4833. source = "registry+https://github.com/rust-lang/crates.io-index"
  4834. checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
  4835. dependencies = [
  4836. "futures-util",
  4837. "log",
  4838. "rustls 0.21.10",
  4839. "tokio",
  4840. "tokio-rustls",
  4841. "tungstenite",
  4842. "webpki-roots",
  4843. ]
  4844. [[package]]
  4845. name = "tokio-util"
  4846. version = "0.7.10"
  4847. source = "registry+https://github.com/rust-lang/crates.io-index"
  4848. checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
  4849. dependencies = [
  4850. "bytes",
  4851. "futures-core",
  4852. "futures-sink",
  4853. "pin-project-lite",
  4854. "tokio",
  4855. "tracing",
  4856. ]
  4857. [[package]]
  4858. name = "toml"
  4859. version = "0.5.11"
  4860. source = "registry+https://github.com/rust-lang/crates.io-index"
  4861. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4862. dependencies = [
  4863. "serde",
  4864. ]
  4865. [[package]]
  4866. name = "toml"
  4867. version = "0.8.12"
  4868. source = "registry+https://github.com/rust-lang/crates.io-index"
  4869. checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
  4870. dependencies = [
  4871. "serde",
  4872. "serde_spanned",
  4873. "toml_datetime",
  4874. "toml_edit 0.22.9",
  4875. ]
  4876. [[package]]
  4877. name = "toml_datetime"
  4878. version = "0.6.5"
  4879. source = "registry+https://github.com/rust-lang/crates.io-index"
  4880. checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
  4881. dependencies = [
  4882. "serde",
  4883. ]
  4884. [[package]]
  4885. name = "toml_edit"
  4886. version = "0.19.15"
  4887. source = "registry+https://github.com/rust-lang/crates.io-index"
  4888. checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
  4889. dependencies = [
  4890. "indexmap 2.2.5",
  4891. "toml_datetime",
  4892. "winnow 0.5.40",
  4893. ]
  4894. [[package]]
  4895. name = "toml_edit"
  4896. version = "0.20.7"
  4897. source = "registry+https://github.com/rust-lang/crates.io-index"
  4898. checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
  4899. dependencies = [
  4900. "indexmap 2.2.5",
  4901. "toml_datetime",
  4902. "winnow 0.5.40",
  4903. ]
  4904. [[package]]
  4905. name = "toml_edit"
  4906. version = "0.21.1"
  4907. source = "registry+https://github.com/rust-lang/crates.io-index"
  4908. checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
  4909. dependencies = [
  4910. "indexmap 2.2.5",
  4911. "toml_datetime",
  4912. "winnow 0.5.40",
  4913. ]
  4914. [[package]]
  4915. name = "toml_edit"
  4916. version = "0.22.9"
  4917. source = "registry+https://github.com/rust-lang/crates.io-index"
  4918. checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
  4919. dependencies = [
  4920. "indexmap 2.2.5",
  4921. "serde",
  4922. "serde_spanned",
  4923. "toml_datetime",
  4924. "winnow 0.6.5",
  4925. ]
  4926. [[package]]
  4927. name = "tor-async-utils"
  4928. version = "0.1.5"
  4929. source = "registry+https://github.com/rust-lang/crates.io-index"
  4930. checksum = "154dff0d035ea51ee67b491aca0d90875fae090cfea430527fcc343a0c59c0a3"
  4931. dependencies = [
  4932. "futures",
  4933. "pin-project",
  4934. "postage",
  4935. "thiserror",
  4936. "void",
  4937. ]
  4938. [[package]]
  4939. name = "tor-basic-utils"
  4940. version = "0.8.0"
  4941. source = "registry+https://github.com/rust-lang/crates.io-index"
  4942. checksum = "11e82b6e151be1ba47f9aad40e02bb1dc8b2b174bc493b4a1d942ba8e405e3d3"
  4943. dependencies = [
  4944. "hex",
  4945. "libc",
  4946. "paste",
  4947. "rand",
  4948. "rand_chacha",
  4949. "slab",
  4950. "thiserror",
  4951. ]
  4952. [[package]]
  4953. name = "tor-bytes"
  4954. version = "0.10.0"
  4955. source = "registry+https://github.com/rust-lang/crates.io-index"
  4956. checksum = "ade285e052d37dd606d0f5179d73e2db3cc03b88ef35d82f3f136f1f310e3ba6"
  4957. dependencies = [
  4958. "bytes",
  4959. "digest",
  4960. "educe",
  4961. "getrandom",
  4962. "signature",
  4963. "thiserror",
  4964. "tor-error",
  4965. "tor-llcrypto",
  4966. "zeroize",
  4967. ]
  4968. [[package]]
  4969. name = "tor-cell"
  4970. version = "0.16.1"
  4971. source = "registry+https://github.com/rust-lang/crates.io-index"
  4972. checksum = "f45c5af2f3ce5597a1ad90a8978fab6d43dcfe098b3f246c5ed573fe97f6beb9"
  4973. dependencies = [
  4974. "bitflags 2.5.0",
  4975. "bytes",
  4976. "caret",
  4977. "derive_more",
  4978. "educe",
  4979. "paste",
  4980. "rand",
  4981. "thiserror",
  4982. "tor-basic-utils",
  4983. "tor-bytes",
  4984. "tor-cert",
  4985. "tor-error",
  4986. "tor-hscrypto",
  4987. "tor-linkspec",
  4988. "tor-llcrypto",
  4989. "tor-units",
  4990. ]
  4991. [[package]]
  4992. name = "tor-cert"
  4993. version = "0.11.0"
  4994. source = "registry+https://github.com/rust-lang/crates.io-index"
  4995. checksum = "b059aa8271220dc38c39e0aab52366f83b86adac71d687a91a56fc99ff7b0640"
  4996. dependencies = [
  4997. "caret",
  4998. "derive_builder_fork_arti",
  4999. "derive_more",
  5000. "digest",
  5001. "thiserror",
  5002. "tor-bytes",
  5003. "tor-checkable",
  5004. "tor-llcrypto",
  5005. ]
  5006. [[package]]
  5007. name = "tor-chanmgr"
  5008. version = "0.14.1"
  5009. source = "registry+https://github.com/rust-lang/crates.io-index"
  5010. checksum = "d99f76f14b3134b44b37a35ff9073f81fe8955f747d3d1effc3ab1bd1e0aaf5b"
  5011. dependencies = [
  5012. "async-trait",
  5013. "derive_builder_fork_arti",
  5014. "derive_more",
  5015. "educe",
  5016. "futures",
  5017. "postage",
  5018. "rand",
  5019. "safelog",
  5020. "serde",
  5021. "thiserror",
  5022. "tor-async-utils",
  5023. "tor-basic-utils",
  5024. "tor-cell",
  5025. "tor-config",
  5026. "tor-error",
  5027. "tor-linkspec",
  5028. "tor-llcrypto",
  5029. "tor-netdir",
  5030. "tor-proto",
  5031. "tor-rtcompat",
  5032. "tor-socksproto",
  5033. "tor-units",
  5034. "tracing",
  5035. "void",
  5036. ]
  5037. [[package]]
  5038. name = "tor-checkable"
  5039. version = "0.8.0"
  5040. source = "registry+https://github.com/rust-lang/crates.io-index"
  5041. checksum = "96ac8ef9db89e16af3e674c8bb915b6e780d72e1c7f408388d610441f8a5578b"
  5042. dependencies = [
  5043. "humantime",
  5044. "signature",
  5045. "thiserror",
  5046. "tor-llcrypto",
  5047. ]
  5048. [[package]]
  5049. name = "tor-circmgr"
  5050. version = "0.16.0"
  5051. source = "registry+https://github.com/rust-lang/crates.io-index"
  5052. checksum = "b19089ab29f56b5b40cecb01ceb297593472885c0d2b0f9a0cb0a5a5635600b5"
  5053. dependencies = [
  5054. "amplify",
  5055. "async-trait",
  5056. "bounded-vec-deque",
  5057. "derive_builder_fork_arti",
  5058. "derive_more",
  5059. "downcast-rs",
  5060. "dyn-clone",
  5061. "educe",
  5062. "futures",
  5063. "humantime-serde",
  5064. "itertools 0.12.1",
  5065. "once_cell",
  5066. "pin-project",
  5067. "rand",
  5068. "retry-error",
  5069. "safelog",
  5070. "serde",
  5071. "static_assertions",
  5072. "thiserror",
  5073. "tor-async-utils",
  5074. "tor-basic-utils",
  5075. "tor-chanmgr",
  5076. "tor-config",
  5077. "tor-error",
  5078. "tor-guardmgr",
  5079. "tor-hscrypto",
  5080. "tor-linkspec",
  5081. "tor-netdir",
  5082. "tor-netdoc",
  5083. "tor-persist",
  5084. "tor-proto",
  5085. "tor-protover",
  5086. "tor-rtcompat",
  5087. "tracing",
  5088. "void",
  5089. "weak-table",
  5090. ]
  5091. [[package]]
  5092. name = "tor-config"
  5093. version = "0.11.0"
  5094. source = "registry+https://github.com/rust-lang/crates.io-index"
  5095. checksum = "0c579e92f3b9e419e68cd317d33f567491365b81f943b063d30f32e4a2f072c5"
  5096. dependencies = [
  5097. "config",
  5098. "derive-adhoc 0.8.2",
  5099. "derive_builder_fork_arti",
  5100. "directories",
  5101. "educe",
  5102. "either",
  5103. "fs-mistrust",
  5104. "itertools 0.12.1",
  5105. "once_cell",
  5106. "paste",
  5107. "regex",
  5108. "serde",
  5109. "serde-value",
  5110. "serde_ignored",
  5111. "shellexpand",
  5112. "strum 0.26.2",
  5113. "thiserror",
  5114. "toml 0.8.12",
  5115. "tor-basic-utils",
  5116. "tor-error",
  5117. "tracing",
  5118. "void",
  5119. ]
  5120. [[package]]
  5121. name = "tor-consdiff"
  5122. version = "0.7.0"
  5123. source = "registry+https://github.com/rust-lang/crates.io-index"
  5124. checksum = "0d75a7789f2911d164ae3c80640fb1c687cc91846647417183a49deaeada94d5"
  5125. dependencies = [
  5126. "digest",
  5127. "hex",
  5128. "thiserror",
  5129. "tor-llcrypto",
  5130. ]
  5131. [[package]]
  5132. name = "tor-dirclient"
  5133. version = "0.14.0"
  5134. source = "registry+https://github.com/rust-lang/crates.io-index"
  5135. checksum = "31fff143aba287f7a209a65a69a7e573f45aeb826737e3f43944054b8d743968"
  5136. dependencies = [
  5137. "async-compression",
  5138. "base64ct",
  5139. "derive_more",
  5140. "futures",
  5141. "hex",
  5142. "http 1.1.0",
  5143. "httparse",
  5144. "httpdate",
  5145. "itertools 0.12.1",
  5146. "memchr",
  5147. "thiserror",
  5148. "tor-circmgr",
  5149. "tor-error",
  5150. "tor-hscrypto",
  5151. "tor-linkspec",
  5152. "tor-llcrypto",
  5153. "tor-netdoc",
  5154. "tor-proto",
  5155. "tor-rtcompat",
  5156. "tracing",
  5157. ]
  5158. [[package]]
  5159. name = "tor-dirmgr"
  5160. version = "0.16.0"
  5161. source = "registry+https://github.com/rust-lang/crates.io-index"
  5162. checksum = "44bdc21d916be66bbe7afeff45303a751196daa1211df645abfe03f2cf3186ed"
  5163. dependencies = [
  5164. "async-trait",
  5165. "base64ct",
  5166. "derive_builder_fork_arti",
  5167. "derive_more",
  5168. "digest",
  5169. "educe",
  5170. "event-listener 5.2.0",
  5171. "fs-mistrust",
  5172. "fslock",
  5173. "futures",
  5174. "hex",
  5175. "humantime",
  5176. "humantime-serde",
  5177. "itertools 0.12.1",
  5178. "memmap2",
  5179. "once_cell",
  5180. "paste",
  5181. "postage",
  5182. "rand",
  5183. "retry-error",
  5184. "rusqlite",
  5185. "safelog",
  5186. "scopeguard",
  5187. "serde",
  5188. "signature",
  5189. "strum 0.26.2",
  5190. "thiserror",
  5191. "time",
  5192. "tor-async-utils",
  5193. "tor-basic-utils",
  5194. "tor-checkable",
  5195. "tor-circmgr",
  5196. "tor-config",
  5197. "tor-consdiff",
  5198. "tor-dirclient",
  5199. "tor-error",
  5200. "tor-guardmgr",
  5201. "tor-llcrypto",
  5202. "tor-netdir",
  5203. "tor-netdoc",
  5204. "tor-persist",
  5205. "tor-proto",
  5206. "tor-rtcompat",
  5207. "tracing",
  5208. ]
  5209. [[package]]
  5210. name = "tor-error"
  5211. version = "0.6.1"
  5212. source = "registry+https://github.com/rust-lang/crates.io-index"
  5213. checksum = "a2195a255af92eddc6422f83e176094394ec856501536e3d3246d1c6c3879dd3"
  5214. dependencies = [
  5215. "backtrace",
  5216. "derive_more",
  5217. "futures",
  5218. "once_cell",
  5219. "paste",
  5220. "retry-error",
  5221. "static_assertions",
  5222. "strum 0.26.2",
  5223. "thiserror",
  5224. "tracing",
  5225. ]
  5226. [[package]]
  5227. name = "tor-guardmgr"
  5228. version = "0.14.1"
  5229. source = "registry+https://github.com/rust-lang/crates.io-index"
  5230. checksum = "08065540dc88a8fd7117627d6e94a3f0d63c45d135ac7fdac7bd3b9f702dc1ee"
  5231. dependencies = [
  5232. "base64ct",
  5233. "derive_builder_fork_arti",
  5234. "derive_more",
  5235. "dyn-clone",
  5236. "educe",
  5237. "futures",
  5238. "humantime",
  5239. "humantime-serde",
  5240. "itertools 0.12.1",
  5241. "num_enum",
  5242. "pin-project",
  5243. "postage",
  5244. "rand",
  5245. "safelog",
  5246. "serde",
  5247. "strum 0.26.2",
  5248. "thiserror",
  5249. "tor-async-utils",
  5250. "tor-basic-utils",
  5251. "tor-config",
  5252. "tor-error",
  5253. "tor-linkspec",
  5254. "tor-llcrypto",
  5255. "tor-netdir",
  5256. "tor-netdoc",
  5257. "tor-persist",
  5258. "tor-proto",
  5259. "tor-rtcompat",
  5260. "tor-units",
  5261. "tracing",
  5262. ]
  5263. [[package]]
  5264. name = "tor-hsclient"
  5265. version = "0.10.0"
  5266. source = "registry+https://github.com/rust-lang/crates.io-index"
  5267. checksum = "b4613dfe9d946db3b5769b860a16598a9c4a0f85df21653d0765b1238106d297"
  5268. dependencies = [
  5269. "async-trait",
  5270. "derive-adhoc 0.8.2",
  5271. "derive_more",
  5272. "educe",
  5273. "either",
  5274. "futures",
  5275. "itertools 0.12.1",
  5276. "postage",
  5277. "rand",
  5278. "rand_core",
  5279. "retry-error",
  5280. "safelog",
  5281. "slotmap",
  5282. "strum 0.26.2",
  5283. "thiserror",
  5284. "tor-async-utils",
  5285. "tor-basic-utils",
  5286. "tor-bytes",
  5287. "tor-cell",
  5288. "tor-checkable",
  5289. "tor-circmgr",
  5290. "tor-config",
  5291. "tor-dirclient",
  5292. "tor-error",
  5293. "tor-hscrypto",
  5294. "tor-keymgr",
  5295. "tor-linkspec",
  5296. "tor-llcrypto",
  5297. "tor-netdir",
  5298. "tor-netdoc",
  5299. "tor-persist",
  5300. "tor-proto",
  5301. "tor-rtcompat",
  5302. "tracing",
  5303. ]
  5304. [[package]]
  5305. name = "tor-hscrypto"
  5306. version = "0.6.1"
  5307. source = "registry+https://github.com/rust-lang/crates.io-index"
  5308. checksum = "fb26c4926710d9c18f32707a709cfe4e7930e2f9a7da4e3e101aa9623e2f40d0"
  5309. dependencies = [
  5310. "cipher",
  5311. "data-encoding",
  5312. "derive_more",
  5313. "digest",
  5314. "itertools 0.12.1",
  5315. "paste",
  5316. "rand",
  5317. "rand_core",
  5318. "safelog",
  5319. "serde",
  5320. "signature",
  5321. "subtle",
  5322. "thiserror",
  5323. "tor-basic-utils",
  5324. "tor-bytes",
  5325. "tor-error",
  5326. "tor-llcrypto",
  5327. "tor-units",
  5328. "zeroize",
  5329. ]
  5330. [[package]]
  5331. name = "tor-hsservice"
  5332. version = "0.8.0"
  5333. source = "registry+https://github.com/rust-lang/crates.io-index"
  5334. checksum = "c5e0d5219b7920490ee5d7af3a697d083236aef1f29badbe1b7d9742838110a5"
  5335. dependencies = [
  5336. "amplify",
  5337. "async-trait",
  5338. "base64ct",
  5339. "derive-adhoc 0.8.2",
  5340. "derive_builder_fork_arti",
  5341. "derive_more",
  5342. "digest",
  5343. "educe",
  5344. "fs-mistrust",
  5345. "futures",
  5346. "growable-bloom-filter",
  5347. "hex",
  5348. "humantime",
  5349. "itertools 0.12.1",
  5350. "k12",
  5351. "once_cell",
  5352. "postage",
  5353. "rand",
  5354. "rand_core",
  5355. "retry-error",
  5356. "safelog",
  5357. "serde",
  5358. "serde_with",
  5359. "strum 0.26.2",
  5360. "thiserror",
  5361. "tor-async-utils",
  5362. "tor-basic-utils",
  5363. "tor-bytes",
  5364. "tor-cell",
  5365. "tor-cert",
  5366. "tor-circmgr",
  5367. "tor-config",
  5368. "tor-dirclient",
  5369. "tor-error",
  5370. "tor-hscrypto",
  5371. "tor-keymgr",
  5372. "tor-linkspec",
  5373. "tor-llcrypto",
  5374. "tor-log-ratelim",
  5375. "tor-netdir",
  5376. "tor-netdoc",
  5377. "tor-persist",
  5378. "tor-proto",
  5379. "tor-protover",
  5380. "tor-rtcompat",
  5381. "tor-units",
  5382. "tracing",
  5383. "void",
  5384. ]
  5385. [[package]]
  5386. name = "tor-keymgr"
  5387. version = "0.8.0"
  5388. source = "registry+https://github.com/rust-lang/crates.io-index"
  5389. checksum = "365c02c66f2f0159078714dd44947fb06c76956a3621fc102783119e5093be96"
  5390. dependencies = [
  5391. "amplify",
  5392. "arrayvec",
  5393. "derive-adhoc 0.8.2",
  5394. "derive_builder_fork_arti",
  5395. "derive_more",
  5396. "downcast-rs",
  5397. "dyn-clone",
  5398. "fs-mistrust",
  5399. "glob-match",
  5400. "humantime",
  5401. "inventory",
  5402. "itertools 0.12.1",
  5403. "paste",
  5404. "rand",
  5405. "serde",
  5406. "ssh-key",
  5407. "thiserror",
  5408. "tor-config",
  5409. "tor-error",
  5410. "tor-hscrypto",
  5411. "tor-llcrypto",
  5412. "tor-persist",
  5413. "walkdir",
  5414. "zeroize",
  5415. ]
  5416. [[package]]
  5417. name = "tor-linkspec"
  5418. version = "0.11.1"
  5419. source = "registry+https://github.com/rust-lang/crates.io-index"
  5420. checksum = "87539d8be3b8f86e240ae1cece77fb5ee669eb0c1434f7e3f5d369b6c2aa1b91"
  5421. dependencies = [
  5422. "base64ct",
  5423. "by_address",
  5424. "caret",
  5425. "cfg-if",
  5426. "derive_builder_fork_arti",
  5427. "derive_more",
  5428. "educe",
  5429. "hex",
  5430. "itertools 0.12.1",
  5431. "safelog",
  5432. "serde",
  5433. "serde_with",
  5434. "strum 0.26.2",
  5435. "thiserror",
  5436. "tor-basic-utils",
  5437. "tor-bytes",
  5438. "tor-config",
  5439. "tor-llcrypto",
  5440. "tor-protover",
  5441. ]
  5442. [[package]]
  5443. name = "tor-llcrypto"
  5444. version = "0.7.0"
  5445. source = "registry+https://github.com/rust-lang/crates.io-index"
  5446. checksum = "982feadd8fc89aa703dda1d3aeda626f13bde731d61eefbf0844e4771e98d496"
  5447. dependencies = [
  5448. "aes",
  5449. "base64ct",
  5450. "cipher",
  5451. "ctr",
  5452. "curve25519-dalek",
  5453. "derive_more",
  5454. "digest",
  5455. "ed25519-dalek",
  5456. "educe",
  5457. "getrandom",
  5458. "hex",
  5459. "openssl",
  5460. "rand_core",
  5461. "rsa",
  5462. "safelog",
  5463. "serde",
  5464. "sha1",
  5465. "sha2",
  5466. "sha3",
  5467. "signature",
  5468. "simple_asn1",
  5469. "subtle",
  5470. "thiserror",
  5471. "typenum",
  5472. "x25519-dalek",
  5473. "zeroize",
  5474. ]
  5475. [[package]]
  5476. name = "tor-log-ratelim"
  5477. version = "0.3.0"
  5478. source = "registry+https://github.com/rust-lang/crates.io-index"
  5479. checksum = "c7a8e134f97890c980120b6ec4de2c43383357e84685e2ef2ae833b086d2fcdc"
  5480. dependencies = [
  5481. "futures",
  5482. "humantime",
  5483. "once_cell",
  5484. "thiserror",
  5485. "tor-error",
  5486. "tor-rtcompat",
  5487. "tracing",
  5488. "weak-table",
  5489. ]
  5490. [[package]]
  5491. name = "tor-netdir"
  5492. version = "0.12.1"
  5493. source = "registry+https://github.com/rust-lang/crates.io-index"
  5494. checksum = "88d507e621e12c5e958d81d3feee176a0b810874921d68b013a33fff6fc44f9f"
  5495. dependencies = [
  5496. "bitflags 2.5.0",
  5497. "derive_builder_fork_arti",
  5498. "derive_more",
  5499. "digest",
  5500. "futures",
  5501. "hex",
  5502. "humantime",
  5503. "itertools 0.12.1",
  5504. "num_enum",
  5505. "rand",
  5506. "serde",
  5507. "static_assertions",
  5508. "strum 0.26.2",
  5509. "thiserror",
  5510. "time",
  5511. "tor-basic-utils",
  5512. "tor-checkable",
  5513. "tor-config",
  5514. "tor-error",
  5515. "tor-hscrypto",
  5516. "tor-linkspec",
  5517. "tor-llcrypto",
  5518. "tor-netdoc",
  5519. "tor-protover",
  5520. "tor-units",
  5521. "tracing",
  5522. "typed-index-collections",
  5523. ]
  5524. [[package]]
  5525. name = "tor-netdoc"
  5526. version = "0.12.1"
  5527. source = "registry+https://github.com/rust-lang/crates.io-index"
  5528. checksum = "5146c812701abc039ff41349e7cf25c63949f9a2528fe0a0f6b3976ccf5cb5ab"
  5529. dependencies = [
  5530. "amplify",
  5531. "base64ct",
  5532. "bitflags 2.5.0",
  5533. "cipher",
  5534. "derive_builder_fork_arti",
  5535. "derive_more",
  5536. "digest",
  5537. "educe",
  5538. "hex",
  5539. "humantime",
  5540. "itertools 0.12.1",
  5541. "once_cell",
  5542. "phf",
  5543. "rand",
  5544. "serde",
  5545. "serde_with",
  5546. "signature",
  5547. "smallvec",
  5548. "subtle",
  5549. "thiserror",
  5550. "time",
  5551. "tinystr",
  5552. "tor-basic-utils",
  5553. "tor-bytes",
  5554. "tor-cell",
  5555. "tor-cert",
  5556. "tor-checkable",
  5557. "tor-error",
  5558. "tor-hscrypto",
  5559. "tor-linkspec",
  5560. "tor-llcrypto",
  5561. "tor-protover",
  5562. "tor-units",
  5563. "weak-table",
  5564. "zeroize",
  5565. ]
  5566. [[package]]
  5567. name = "tor-persist"
  5568. version = "0.10.1"
  5569. source = "registry+https://github.com/rust-lang/crates.io-index"
  5570. checksum = "e4bbf6c0a786daab669a75ec7380ae57f9aba91f2c4ea05a12e596d9bc6b49a0"
  5571. dependencies = [
  5572. "amplify",
  5573. "derive-adhoc 0.8.2",
  5574. "derive_more",
  5575. "filetime",
  5576. "fs-mistrust",
  5577. "fslock",
  5578. "fslock-guard",
  5579. "itertools 0.12.1",
  5580. "paste",
  5581. "sanitize-filename",
  5582. "serde",
  5583. "serde_json",
  5584. "thiserror",
  5585. "tor-error",
  5586. "tracing",
  5587. ]
  5588. [[package]]
  5589. name = "tor-proto"
  5590. version = "0.16.1"
  5591. source = "registry+https://github.com/rust-lang/crates.io-index"
  5592. checksum = "dbe3037f1f08ac19a59f2ebe5acdcb0c79fd6f2286773051cb730146596359e6"
  5593. dependencies = [
  5594. "asynchronous-codec",
  5595. "bitvec",
  5596. "bytes",
  5597. "cipher",
  5598. "coarsetime",
  5599. "derive_builder_fork_arti",
  5600. "derive_more",
  5601. "digest",
  5602. "educe",
  5603. "futures",
  5604. "hkdf",
  5605. "hmac",
  5606. "pin-project",
  5607. "rand",
  5608. "rand_core",
  5609. "safelog",
  5610. "subtle",
  5611. "thiserror",
  5612. "tor-async-utils",
  5613. "tor-basic-utils",
  5614. "tor-bytes",
  5615. "tor-cell",
  5616. "tor-cert",
  5617. "tor-checkable",
  5618. "tor-config",
  5619. "tor-error",
  5620. "tor-hscrypto",
  5621. "tor-linkspec",
  5622. "tor-llcrypto",
  5623. "tor-log-ratelim",
  5624. "tor-protover",
  5625. "tor-rtcompat",
  5626. "tor-rtmock",
  5627. "tor-units",
  5628. "tracing",
  5629. "typenum",
  5630. "visibility",
  5631. "void",
  5632. "zeroize",
  5633. ]
  5634. [[package]]
  5635. name = "tor-protover"
  5636. version = "0.6.0"
  5637. source = "registry+https://github.com/rust-lang/crates.io-index"
  5638. checksum = "f7ae613656401ef25efbb8d60767e399e719422d3408975190e4a9fc9faab0eb"
  5639. dependencies = [
  5640. "caret",
  5641. "thiserror",
  5642. ]
  5643. [[package]]
  5644. name = "tor-rtcompat"
  5645. version = "0.10.0"
  5646. source = "registry+https://github.com/rust-lang/crates.io-index"
  5647. checksum = "aa56047926b8da823720654bbdccd7afaa68d635e4341193701d29005818c348"
  5648. dependencies = [
  5649. "async-io 2.3.2",
  5650. "async-std",
  5651. "async-trait",
  5652. "async_executors",
  5653. "educe",
  5654. "futures",
  5655. "futures-rustls",
  5656. "pin-project",
  5657. "rustls-pki-types",
  5658. "thiserror",
  5659. "x509-signature",
  5660. ]
  5661. [[package]]
  5662. name = "tor-rtmock"
  5663. version = "0.13.0"
  5664. source = "registry+https://github.com/rust-lang/crates.io-index"
  5665. checksum = "c9c687cac55bab83de1ed7b57c578c9974be2df024ac06707c0032f6b5203a19"
  5666. dependencies = [
  5667. "amplify",
  5668. "async-trait",
  5669. "backtrace",
  5670. "derive-adhoc 0.8.2",
  5671. "derive_more",
  5672. "educe",
  5673. "futures",
  5674. "humantime",
  5675. "itertools 0.12.1",
  5676. "pin-project",
  5677. "priority-queue",
  5678. "slotmap",
  5679. "strum 0.26.2",
  5680. "thiserror",
  5681. "tor-async-utils",
  5682. "tor-error",
  5683. "tor-rtcompat",
  5684. "tracing",
  5685. "tracing-test",
  5686. "void",
  5687. ]
  5688. [[package]]
  5689. name = "tor-socksproto"
  5690. version = "0.10.0"
  5691. source = "registry+https://github.com/rust-lang/crates.io-index"
  5692. checksum = "065f34c2e292c495afc73cede5d801f38606a3d21528ec5679152edd8c83fa5e"
  5693. dependencies = [
  5694. "caret",
  5695. "subtle",
  5696. "thiserror",
  5697. "tor-bytes",
  5698. "tor-error",
  5699. ]
  5700. [[package]]
  5701. name = "tor-units"
  5702. version = "0.6.5"
  5703. source = "registry+https://github.com/rust-lang/crates.io-index"
  5704. checksum = "0d59226676dc7633b813f92c781f7b637c5258234de27be4196740de2b4c946a"
  5705. dependencies = [
  5706. "derive_more",
  5707. "thiserror",
  5708. ]
  5709. [[package]]
  5710. name = "tower-service"
  5711. version = "0.3.2"
  5712. source = "registry+https://github.com/rust-lang/crates.io-index"
  5713. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  5714. [[package]]
  5715. name = "tracing"
  5716. version = "0.1.40"
  5717. source = "registry+https://github.com/rust-lang/crates.io-index"
  5718. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  5719. dependencies = [
  5720. "pin-project-lite",
  5721. "tracing-attributes",
  5722. "tracing-core",
  5723. ]
  5724. [[package]]
  5725. name = "tracing-attributes"
  5726. version = "0.1.27"
  5727. source = "registry+https://github.com/rust-lang/crates.io-index"
  5728. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  5729. dependencies = [
  5730. "proc-macro2",
  5731. "quote",
  5732. "syn 2.0.53",
  5733. ]
  5734. [[package]]
  5735. name = "tracing-core"
  5736. version = "0.1.32"
  5737. source = "registry+https://github.com/rust-lang/crates.io-index"
  5738. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  5739. dependencies = [
  5740. "once_cell",
  5741. "valuable",
  5742. ]
  5743. [[package]]
  5744. name = "tracing-futures"
  5745. version = "0.2.5"
  5746. source = "registry+https://github.com/rust-lang/crates.io-index"
  5747. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  5748. dependencies = [
  5749. "pin-project",
  5750. "tracing",
  5751. ]
  5752. [[package]]
  5753. name = "tracing-log"
  5754. version = "0.2.0"
  5755. source = "registry+https://github.com/rust-lang/crates.io-index"
  5756. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  5757. dependencies = [
  5758. "log",
  5759. "once_cell",
  5760. "tracing-core",
  5761. ]
  5762. [[package]]
  5763. name = "tracing-subscriber"
  5764. version = "0.3.18"
  5765. source = "registry+https://github.com/rust-lang/crates.io-index"
  5766. checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
  5767. dependencies = [
  5768. "matchers",
  5769. "nu-ansi-term",
  5770. "once_cell",
  5771. "regex",
  5772. "sharded-slab",
  5773. "smallvec",
  5774. "thread_local",
  5775. "tracing",
  5776. "tracing-core",
  5777. "tracing-log",
  5778. ]
  5779. [[package]]
  5780. name = "tracing-test"
  5781. version = "0.2.4"
  5782. source = "registry+https://github.com/rust-lang/crates.io-index"
  5783. checksum = "3a2c0ff408fe918a94c428a3f2ad04e4afd5c95bbc08fcf868eff750c15728a4"
  5784. dependencies = [
  5785. "lazy_static",
  5786. "tracing-core",
  5787. "tracing-subscriber",
  5788. "tracing-test-macro",
  5789. ]
  5790. [[package]]
  5791. name = "tracing-test-macro"
  5792. version = "0.2.4"
  5793. source = "registry+https://github.com/rust-lang/crates.io-index"
  5794. checksum = "258bc1c4f8e2e73a977812ab339d503e6feeb92700f6d07a6de4d321522d5c08"
  5795. dependencies = [
  5796. "lazy_static",
  5797. "quote",
  5798. "syn 1.0.109",
  5799. ]
  5800. [[package]]
  5801. name = "try-lock"
  5802. version = "0.2.5"
  5803. source = "registry+https://github.com/rust-lang/crates.io-index"
  5804. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  5805. [[package]]
  5806. name = "tungstenite"
  5807. version = "0.20.1"
  5808. source = "registry+https://github.com/rust-lang/crates.io-index"
  5809. checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
  5810. dependencies = [
  5811. "byteorder",
  5812. "bytes",
  5813. "data-encoding",
  5814. "http 0.2.12",
  5815. "httparse",
  5816. "log",
  5817. "rand",
  5818. "rustls 0.21.10",
  5819. "sha1",
  5820. "thiserror",
  5821. "url",
  5822. "utf-8",
  5823. ]
  5824. [[package]]
  5825. name = "typed-index-collections"
  5826. version = "3.1.0"
  5827. source = "registry+https://github.com/rust-lang/crates.io-index"
  5828. checksum = "183496e014253d15abbe6235677b1392dba2d40524c88938991226baa38ac7c4"
  5829. [[package]]
  5830. name = "typenum"
  5831. version = "1.17.0"
  5832. source = "registry+https://github.com/rust-lang/crates.io-index"
  5833. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  5834. [[package]]
  5835. name = "uint"
  5836. version = "0.9.5"
  5837. source = "registry+https://github.com/rust-lang/crates.io-index"
  5838. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  5839. dependencies = [
  5840. "byteorder",
  5841. "crunchy",
  5842. "hex",
  5843. "static_assertions",
  5844. ]
  5845. [[package]]
  5846. name = "unarray"
  5847. version = "0.1.4"
  5848. source = "registry+https://github.com/rust-lang/crates.io-index"
  5849. checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
  5850. [[package]]
  5851. name = "unicase"
  5852. version = "2.7.0"
  5853. source = "registry+https://github.com/rust-lang/crates.io-index"
  5854. checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
  5855. dependencies = [
  5856. "version_check",
  5857. ]
  5858. [[package]]
  5859. name = "unicode-bidi"
  5860. version = "0.3.15"
  5861. source = "registry+https://github.com/rust-lang/crates.io-index"
  5862. checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
  5863. [[package]]
  5864. name = "unicode-ident"
  5865. version = "1.0.12"
  5866. source = "registry+https://github.com/rust-lang/crates.io-index"
  5867. checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
  5868. [[package]]
  5869. name = "unicode-normalization"
  5870. version = "0.1.23"
  5871. source = "registry+https://github.com/rust-lang/crates.io-index"
  5872. checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
  5873. dependencies = [
  5874. "tinyvec",
  5875. ]
  5876. [[package]]
  5877. name = "unicode-segmentation"
  5878. version = "1.11.0"
  5879. source = "registry+https://github.com/rust-lang/crates.io-index"
  5880. checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
  5881. [[package]]
  5882. name = "unicode-width"
  5883. version = "0.1.11"
  5884. source = "registry+https://github.com/rust-lang/crates.io-index"
  5885. checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
  5886. [[package]]
  5887. name = "unicode-xid"
  5888. version = "0.2.4"
  5889. source = "registry+https://github.com/rust-lang/crates.io-index"
  5890. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  5891. [[package]]
  5892. name = "untrusted"
  5893. version = "0.7.1"
  5894. source = "registry+https://github.com/rust-lang/crates.io-index"
  5895. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  5896. [[package]]
  5897. name = "untrusted"
  5898. version = "0.9.0"
  5899. source = "registry+https://github.com/rust-lang/crates.io-index"
  5900. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  5901. [[package]]
  5902. name = "url"
  5903. version = "2.5.0"
  5904. source = "registry+https://github.com/rust-lang/crates.io-index"
  5905. checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
  5906. dependencies = [
  5907. "form_urlencoded",
  5908. "idna",
  5909. "percent-encoding",
  5910. "serde",
  5911. ]
  5912. [[package]]
  5913. name = "utf-8"
  5914. version = "0.7.6"
  5915. source = "registry+https://github.com/rust-lang/crates.io-index"
  5916. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  5917. [[package]]
  5918. name = "uuid"
  5919. version = "0.8.2"
  5920. source = "registry+https://github.com/rust-lang/crates.io-index"
  5921. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  5922. dependencies = [
  5923. "getrandom",
  5924. "serde",
  5925. ]
  5926. [[package]]
  5927. name = "valuable"
  5928. version = "0.1.0"
  5929. source = "registry+https://github.com/rust-lang/crates.io-index"
  5930. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  5931. [[package]]
  5932. name = "value-bag"
  5933. version = "1.8.1"
  5934. source = "registry+https://github.com/rust-lang/crates.io-index"
  5935. checksum = "74797339c3b98616c009c7c3eb53a0ce41e85c8ec66bd3db96ed132d20cfdee8"
  5936. [[package]]
  5937. name = "vcpkg"
  5938. version = "0.2.15"
  5939. source = "registry+https://github.com/rust-lang/crates.io-index"
  5940. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  5941. [[package]]
  5942. name = "vec_map"
  5943. version = "0.8.2"
  5944. source = "registry+https://github.com/rust-lang/crates.io-index"
  5945. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  5946. [[package]]
  5947. name = "version_check"
  5948. version = "0.9.4"
  5949. source = "registry+https://github.com/rust-lang/crates.io-index"
  5950. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  5951. [[package]]
  5952. name = "visibility"
  5953. version = "0.1.0"
  5954. source = "registry+https://github.com/rust-lang/crates.io-index"
  5955. checksum = "b3fd98999db9227cf28e59d83e1f120f42bc233d4b152e8fab9bc87d5bb1e0f8"
  5956. dependencies = [
  5957. "proc-macro2",
  5958. "quote",
  5959. "syn 2.0.53",
  5960. ]
  5961. [[package]]
  5962. name = "void"
  5963. version = "1.0.2"
  5964. source = "registry+https://github.com/rust-lang/crates.io-index"
  5965. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  5966. [[package]]
  5967. name = "waker-fn"
  5968. version = "1.1.1"
  5969. source = "registry+https://github.com/rust-lang/crates.io-index"
  5970. checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
  5971. [[package]]
  5972. name = "walkdir"
  5973. version = "2.5.0"
  5974. source = "registry+https://github.com/rust-lang/crates.io-index"
  5975. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  5976. dependencies = [
  5977. "same-file",
  5978. "winapi-util",
  5979. ]
  5980. [[package]]
  5981. name = "want"
  5982. version = "0.3.1"
  5983. source = "registry+https://github.com/rust-lang/crates.io-index"
  5984. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  5985. dependencies = [
  5986. "try-lock",
  5987. ]
  5988. [[package]]
  5989. name = "wasi"
  5990. version = "0.11.0+wasi-snapshot-preview1"
  5991. source = "registry+https://github.com/rust-lang/crates.io-index"
  5992. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  5993. [[package]]
  5994. name = "wasix"
  5995. version = "0.12.21"
  5996. source = "registry+https://github.com/rust-lang/crates.io-index"
  5997. checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d"
  5998. dependencies = [
  5999. "wasi",
  6000. ]
  6001. [[package]]
  6002. name = "wasm-bindgen"
  6003. version = "0.2.92"
  6004. source = "registry+https://github.com/rust-lang/crates.io-index"
  6005. checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
  6006. dependencies = [
  6007. "cfg-if",
  6008. "wasm-bindgen-macro",
  6009. ]
  6010. [[package]]
  6011. name = "wasm-bindgen-backend"
  6012. version = "0.2.92"
  6013. source = "registry+https://github.com/rust-lang/crates.io-index"
  6014. checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
  6015. dependencies = [
  6016. "bumpalo",
  6017. "log",
  6018. "once_cell",
  6019. "proc-macro2",
  6020. "quote",
  6021. "syn 2.0.53",
  6022. "wasm-bindgen-shared",
  6023. ]
  6024. [[package]]
  6025. name = "wasm-bindgen-futures"
  6026. version = "0.4.42"
  6027. source = "registry+https://github.com/rust-lang/crates.io-index"
  6028. checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
  6029. dependencies = [
  6030. "cfg-if",
  6031. "js-sys",
  6032. "wasm-bindgen",
  6033. "web-sys",
  6034. ]
  6035. [[package]]
  6036. name = "wasm-bindgen-macro"
  6037. version = "0.2.92"
  6038. source = "registry+https://github.com/rust-lang/crates.io-index"
  6039. checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
  6040. dependencies = [
  6041. "quote",
  6042. "wasm-bindgen-macro-support",
  6043. ]
  6044. [[package]]
  6045. name = "wasm-bindgen-macro-support"
  6046. version = "0.2.92"
  6047. source = "registry+https://github.com/rust-lang/crates.io-index"
  6048. checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
  6049. dependencies = [
  6050. "proc-macro2",
  6051. "quote",
  6052. "syn 2.0.53",
  6053. "wasm-bindgen-backend",
  6054. "wasm-bindgen-shared",
  6055. ]
  6056. [[package]]
  6057. name = "wasm-bindgen-shared"
  6058. version = "0.2.92"
  6059. source = "registry+https://github.com/rust-lang/crates.io-index"
  6060. checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
  6061. [[package]]
  6062. name = "weak-table"
  6063. version = "0.3.2"
  6064. source = "registry+https://github.com/rust-lang/crates.io-index"
  6065. checksum = "323f4da9523e9a669e1eaf9c6e763892769b1d38c623913647bfdc1532fe4549"
  6066. [[package]]
  6067. name = "web-sys"
  6068. version = "0.3.69"
  6069. source = "registry+https://github.com/rust-lang/crates.io-index"
  6070. checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
  6071. dependencies = [
  6072. "js-sys",
  6073. "wasm-bindgen",
  6074. ]
  6075. [[package]]
  6076. name = "webpki-roots"
  6077. version = "0.25.4"
  6078. source = "registry+https://github.com/rust-lang/crates.io-index"
  6079. checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
  6080. [[package]]
  6081. name = "winapi"
  6082. version = "0.3.9"
  6083. source = "registry+https://github.com/rust-lang/crates.io-index"
  6084. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  6085. dependencies = [
  6086. "winapi-i686-pc-windows-gnu",
  6087. "winapi-x86_64-pc-windows-gnu",
  6088. ]
  6089. [[package]]
  6090. name = "winapi-i686-pc-windows-gnu"
  6091. version = "0.4.0"
  6092. source = "registry+https://github.com/rust-lang/crates.io-index"
  6093. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  6094. [[package]]
  6095. name = "winapi-util"
  6096. version = "0.1.6"
  6097. source = "registry+https://github.com/rust-lang/crates.io-index"
  6098. checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
  6099. dependencies = [
  6100. "winapi",
  6101. ]
  6102. [[package]]
  6103. name = "winapi-x86_64-pc-windows-gnu"
  6104. version = "0.4.0"
  6105. source = "registry+https://github.com/rust-lang/crates.io-index"
  6106. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  6107. [[package]]
  6108. name = "windows-core"
  6109. version = "0.52.0"
  6110. source = "registry+https://github.com/rust-lang/crates.io-index"
  6111. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  6112. dependencies = [
  6113. "windows-targets 0.52.4",
  6114. ]
  6115. [[package]]
  6116. name = "windows-sys"
  6117. version = "0.48.0"
  6118. source = "registry+https://github.com/rust-lang/crates.io-index"
  6119. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  6120. dependencies = [
  6121. "windows-targets 0.48.5",
  6122. ]
  6123. [[package]]
  6124. name = "windows-sys"
  6125. version = "0.52.0"
  6126. source = "registry+https://github.com/rust-lang/crates.io-index"
  6127. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  6128. dependencies = [
  6129. "windows-targets 0.52.4",
  6130. ]
  6131. [[package]]
  6132. name = "windows-targets"
  6133. version = "0.48.5"
  6134. source = "registry+https://github.com/rust-lang/crates.io-index"
  6135. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  6136. dependencies = [
  6137. "windows_aarch64_gnullvm 0.48.5",
  6138. "windows_aarch64_msvc 0.48.5",
  6139. "windows_i686_gnu 0.48.5",
  6140. "windows_i686_msvc 0.48.5",
  6141. "windows_x86_64_gnu 0.48.5",
  6142. "windows_x86_64_gnullvm 0.48.5",
  6143. "windows_x86_64_msvc 0.48.5",
  6144. ]
  6145. [[package]]
  6146. name = "windows-targets"
  6147. version = "0.52.4"
  6148. source = "registry+https://github.com/rust-lang/crates.io-index"
  6149. checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
  6150. dependencies = [
  6151. "windows_aarch64_gnullvm 0.52.4",
  6152. "windows_aarch64_msvc 0.52.4",
  6153. "windows_i686_gnu 0.52.4",
  6154. "windows_i686_msvc 0.52.4",
  6155. "windows_x86_64_gnu 0.52.4",
  6156. "windows_x86_64_gnullvm 0.52.4",
  6157. "windows_x86_64_msvc 0.52.4",
  6158. ]
  6159. [[package]]
  6160. name = "windows_aarch64_gnullvm"
  6161. version = "0.48.5"
  6162. source = "registry+https://github.com/rust-lang/crates.io-index"
  6163. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  6164. [[package]]
  6165. name = "windows_aarch64_gnullvm"
  6166. version = "0.52.4"
  6167. source = "registry+https://github.com/rust-lang/crates.io-index"
  6168. checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
  6169. [[package]]
  6170. name = "windows_aarch64_msvc"
  6171. version = "0.48.5"
  6172. source = "registry+https://github.com/rust-lang/crates.io-index"
  6173. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  6174. [[package]]
  6175. name = "windows_aarch64_msvc"
  6176. version = "0.52.4"
  6177. source = "registry+https://github.com/rust-lang/crates.io-index"
  6178. checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
  6179. [[package]]
  6180. name = "windows_i686_gnu"
  6181. version = "0.48.5"
  6182. source = "registry+https://github.com/rust-lang/crates.io-index"
  6183. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  6184. [[package]]
  6185. name = "windows_i686_gnu"
  6186. version = "0.52.4"
  6187. source = "registry+https://github.com/rust-lang/crates.io-index"
  6188. checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
  6189. [[package]]
  6190. name = "windows_i686_msvc"
  6191. version = "0.48.5"
  6192. source = "registry+https://github.com/rust-lang/crates.io-index"
  6193. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  6194. [[package]]
  6195. name = "windows_i686_msvc"
  6196. version = "0.52.4"
  6197. source = "registry+https://github.com/rust-lang/crates.io-index"
  6198. checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
  6199. [[package]]
  6200. name = "windows_x86_64_gnu"
  6201. version = "0.48.5"
  6202. source = "registry+https://github.com/rust-lang/crates.io-index"
  6203. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  6204. [[package]]
  6205. name = "windows_x86_64_gnu"
  6206. version = "0.52.4"
  6207. source = "registry+https://github.com/rust-lang/crates.io-index"
  6208. checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
  6209. [[package]]
  6210. name = "windows_x86_64_gnullvm"
  6211. version = "0.48.5"
  6212. source = "registry+https://github.com/rust-lang/crates.io-index"
  6213. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  6214. [[package]]
  6215. name = "windows_x86_64_gnullvm"
  6216. version = "0.52.4"
  6217. source = "registry+https://github.com/rust-lang/crates.io-index"
  6218. checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
  6219. [[package]]
  6220. name = "windows_x86_64_msvc"
  6221. version = "0.48.5"
  6222. source = "registry+https://github.com/rust-lang/crates.io-index"
  6223. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  6224. [[package]]
  6225. name = "windows_x86_64_msvc"
  6226. version = "0.52.4"
  6227. source = "registry+https://github.com/rust-lang/crates.io-index"
  6228. checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
  6229. [[package]]
  6230. name = "winnow"
  6231. version = "0.5.40"
  6232. source = "registry+https://github.com/rust-lang/crates.io-index"
  6233. checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
  6234. dependencies = [
  6235. "memchr",
  6236. ]
  6237. [[package]]
  6238. name = "winnow"
  6239. version = "0.6.5"
  6240. source = "registry+https://github.com/rust-lang/crates.io-index"
  6241. checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
  6242. dependencies = [
  6243. "memchr",
  6244. ]
  6245. [[package]]
  6246. name = "winreg"
  6247. version = "0.50.0"
  6248. source = "registry+https://github.com/rust-lang/crates.io-index"
  6249. checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
  6250. dependencies = [
  6251. "cfg-if",
  6252. "windows-sys 0.48.0",
  6253. ]
  6254. [[package]]
  6255. name = "ws_stream_wasm"
  6256. version = "0.7.4"
  6257. source = "registry+https://github.com/rust-lang/crates.io-index"
  6258. checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5"
  6259. dependencies = [
  6260. "async_io_stream",
  6261. "futures",
  6262. "js-sys",
  6263. "log",
  6264. "pharos",
  6265. "rustc_version",
  6266. "send_wrapper 0.6.0",
  6267. "thiserror",
  6268. "wasm-bindgen",
  6269. "wasm-bindgen-futures",
  6270. "web-sys",
  6271. ]
  6272. [[package]]
  6273. name = "wyz"
  6274. version = "0.5.1"
  6275. source = "registry+https://github.com/rust-lang/crates.io-index"
  6276. checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
  6277. dependencies = [
  6278. "tap",
  6279. ]
  6280. [[package]]
  6281. name = "x25519-dalek"
  6282. version = "2.0.1"
  6283. source = "registry+https://github.com/rust-lang/crates.io-index"
  6284. checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
  6285. dependencies = [
  6286. "curve25519-dalek",
  6287. "rand_core",
  6288. "serde",
  6289. "zeroize",
  6290. ]
  6291. [[package]]
  6292. name = "x509-parser"
  6293. version = "0.16.0"
  6294. source = "registry+https://github.com/rust-lang/crates.io-index"
  6295. checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
  6296. dependencies = [
  6297. "asn1-rs",
  6298. "data-encoding",
  6299. "der-parser",
  6300. "lazy_static",
  6301. "nom",
  6302. "oid-registry",
  6303. "ring 0.17.8",
  6304. "rusticata-macros",
  6305. "thiserror",
  6306. "time",
  6307. ]
  6308. [[package]]
  6309. name = "x509-signature"
  6310. version = "0.5.0"
  6311. source = "registry+https://github.com/rust-lang/crates.io-index"
  6312. checksum = "9fb2bc2a902d992cd5f471ee3ab0ffd6603047a4207384562755b9d6de977518"
  6313. dependencies = [
  6314. "ring 0.16.20",
  6315. "untrusted 0.7.1",
  6316. ]
  6317. [[package]]
  6318. name = "xxhash-rust"
  6319. version = "0.8.10"
  6320. source = "registry+https://github.com/rust-lang/crates.io-index"
  6321. checksum = "927da81e25be1e1a2901d59b81b37dd2efd1fc9c9345a55007f09bf5a2d3ee03"
  6322. [[package]]
  6323. name = "xz2"
  6324. version = "0.1.7"
  6325. source = "registry+https://github.com/rust-lang/crates.io-index"
  6326. checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
  6327. dependencies = [
  6328. "lzma-sys",
  6329. ]
  6330. [[package]]
  6331. name = "yansi"
  6332. version = "0.5.1"
  6333. source = "registry+https://github.com/rust-lang/crates.io-index"
  6334. checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
  6335. [[package]]
  6336. name = "yasna"
  6337. version = "0.5.2"
  6338. source = "registry+https://github.com/rust-lang/crates.io-index"
  6339. checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
  6340. dependencies = [
  6341. "time",
  6342. ]
  6343. [[package]]
  6344. name = "zerocopy"
  6345. version = "0.7.32"
  6346. source = "registry+https://github.com/rust-lang/crates.io-index"
  6347. checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
  6348. dependencies = [
  6349. "zerocopy-derive",
  6350. ]
  6351. [[package]]
  6352. name = "zerocopy-derive"
  6353. version = "0.7.32"
  6354. source = "registry+https://github.com/rust-lang/crates.io-index"
  6355. checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
  6356. dependencies = [
  6357. "proc-macro2",
  6358. "quote",
  6359. "syn 2.0.53",
  6360. ]
  6361. [[package]]
  6362. name = "zeroize"
  6363. version = "1.7.0"
  6364. source = "registry+https://github.com/rust-lang/crates.io-index"
  6365. checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
  6366. dependencies = [
  6367. "zeroize_derive",
  6368. ]
  6369. [[package]]
  6370. name = "zeroize_derive"
  6371. version = "1.4.2"
  6372. source = "registry+https://github.com/rust-lang/crates.io-index"
  6373. checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
  6374. dependencies = [
  6375. "proc-macro2",
  6376. "quote",
  6377. "syn 2.0.53",
  6378. ]
  6379. [[package]]
  6380. name = "zip"
  6381. version = "0.6.6"
  6382. source = "registry+https://github.com/rust-lang/crates.io-index"
  6383. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  6384. dependencies = [
  6385. "aes",
  6386. "byteorder",
  6387. "bzip2",
  6388. "constant_time_eq",
  6389. "crc32fast",
  6390. "crossbeam-utils",
  6391. "flate2",
  6392. "hmac",
  6393. "pbkdf2 0.11.0",
  6394. "sha1",
  6395. "time",
  6396. "zstd 0.11.2+zstd.1.5.2",
  6397. ]
  6398. [[package]]
  6399. name = "zstd"
  6400. version = "0.11.2+zstd.1.5.2"
  6401. source = "registry+https://github.com/rust-lang/crates.io-index"
  6402. checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
  6403. dependencies = [
  6404. "zstd-safe 5.0.2+zstd.1.5.2",
  6405. ]
  6406. [[package]]
  6407. name = "zstd"
  6408. version = "0.13.0"
  6409. source = "registry+https://github.com/rust-lang/crates.io-index"
  6410. checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
  6411. dependencies = [
  6412. "zstd-safe 7.0.0",
  6413. ]
  6414. [[package]]
  6415. name = "zstd-safe"
  6416. version = "5.0.2+zstd.1.5.2"
  6417. source = "registry+https://github.com/rust-lang/crates.io-index"
  6418. checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
  6419. dependencies = [
  6420. "libc",
  6421. "zstd-sys",
  6422. ]
  6423. [[package]]
  6424. name = "zstd-safe"
  6425. version = "7.0.0"
  6426. source = "registry+https://github.com/rust-lang/crates.io-index"
  6427. checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
  6428. dependencies = [
  6429. "zstd-sys",
  6430. ]
  6431. [[package]]
  6432. name = "zstd-sys"
  6433. version = "2.0.9+zstd.1.5.5"
  6434. source = "registry+https://github.com/rust-lang/crates.io-index"
  6435. checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
  6436. dependencies = [
  6437. "cc",
  6438. "pkg-config",
  6439. ]