Cargo.lock 211 KB

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