Cargo.lock 202 KB

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