Cargo.lock 187 KB

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