Cargo.lock 211 KB

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