Cargo.lock 197 KB

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