Cargo.lock 215 KB

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