Cargo.lock 197 KB

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