Cargo.lock 209 KB

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