Cargo.lock 126 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "adler"
  6. version = "1.0.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  9. [[package]]
  10. name = "aead"
  11. version = "0.3.2"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
  14. dependencies = [
  15. "generic-array",
  16. ]
  17. [[package]]
  18. name = "aead"
  19. version = "0.4.3"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
  22. dependencies = [
  23. "generic-array",
  24. "rand_core 0.6.4",
  25. ]
  26. [[package]]
  27. name = "aead"
  28. version = "0.5.1"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
  31. dependencies = [
  32. "crypto-common",
  33. "generic-array",
  34. ]
  35. [[package]]
  36. name = "aes"
  37. version = "0.6.0"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
  40. dependencies = [
  41. "aes-soft",
  42. "aesni",
  43. "cipher 0.2.5",
  44. ]
  45. [[package]]
  46. name = "aes"
  47. version = "0.7.5"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
  50. dependencies = [
  51. "cfg-if",
  52. "cipher 0.3.0",
  53. "cpufeatures",
  54. "opaque-debug",
  55. ]
  56. [[package]]
  57. name = "aes"
  58. version = "0.8.2"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
  61. dependencies = [
  62. "cfg-if",
  63. "cipher 0.4.3",
  64. "cpufeatures",
  65. ]
  66. [[package]]
  67. name = "aes-gcm"
  68. version = "0.9.4"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
  71. dependencies = [
  72. "aead 0.4.3",
  73. "aes 0.7.5",
  74. "cipher 0.3.0",
  75. "ctr 0.8.0",
  76. "ghash 0.4.4",
  77. "subtle",
  78. ]
  79. [[package]]
  80. name = "aes-gcm"
  81. version = "0.10.1"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c"
  84. dependencies = [
  85. "aead 0.5.1",
  86. "aes 0.8.2",
  87. "cipher 0.4.3",
  88. "ctr 0.9.2",
  89. "ghash 0.5.0",
  90. "subtle",
  91. ]
  92. [[package]]
  93. name = "aes-soft"
  94. version = "0.6.4"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
  97. dependencies = [
  98. "cipher 0.2.5",
  99. "opaque-debug",
  100. ]
  101. [[package]]
  102. name = "aesni"
  103. version = "0.10.0"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
  106. dependencies = [
  107. "cipher 0.2.5",
  108. "opaque-debug",
  109. ]
  110. [[package]]
  111. name = "ahash"
  112. version = "0.7.6"
  113. source = "registry+https://github.com/rust-lang/crates.io-index"
  114. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  115. dependencies = [
  116. "getrandom 0.2.8",
  117. "once_cell",
  118. "version_check",
  119. ]
  120. [[package]]
  121. name = "ahash"
  122. version = "0.8.3"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
  125. dependencies = [
  126. "cfg-if",
  127. "once_cell",
  128. "version_check",
  129. ]
  130. [[package]]
  131. name = "aho-corasick"
  132. version = "0.7.20"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
  135. dependencies = [
  136. "memchr",
  137. ]
  138. [[package]]
  139. name = "ansi_term"
  140. version = "0.12.1"
  141. source = "registry+https://github.com/rust-lang/crates.io-index"
  142. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  143. dependencies = [
  144. "winapi",
  145. ]
  146. [[package]]
  147. name = "anyhow"
  148. version = "1.0.69"
  149. source = "registry+https://github.com/rust-lang/crates.io-index"
  150. checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
  151. [[package]]
  152. name = "arc-swap"
  153. version = "1.6.0"
  154. source = "registry+https://github.com/rust-lang/crates.io-index"
  155. checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
  156. [[package]]
  157. name = "arrayref"
  158. version = "0.3.6"
  159. source = "registry+https://github.com/rust-lang/crates.io-index"
  160. checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
  161. [[package]]
  162. name = "asn1-rs"
  163. version = "0.3.1"
  164. source = "registry+https://github.com/rust-lang/crates.io-index"
  165. checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33"
  166. dependencies = [
  167. "asn1-rs-derive 0.1.0",
  168. "asn1-rs-impl",
  169. "displaydoc",
  170. "nom",
  171. "num-traits",
  172. "rusticata-macros",
  173. "thiserror",
  174. "time",
  175. ]
  176. [[package]]
  177. name = "asn1-rs"
  178. version = "0.5.1"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4"
  181. dependencies = [
  182. "asn1-rs-derive 0.4.0",
  183. "asn1-rs-impl",
  184. "displaydoc",
  185. "nom",
  186. "num-traits",
  187. "rusticata-macros",
  188. "thiserror",
  189. "time",
  190. ]
  191. [[package]]
  192. name = "asn1-rs-derive"
  193. version = "0.1.0"
  194. source = "registry+https://github.com/rust-lang/crates.io-index"
  195. checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf"
  196. dependencies = [
  197. "proc-macro2",
  198. "quote",
  199. "syn",
  200. "synstructure",
  201. ]
  202. [[package]]
  203. name = "asn1-rs-derive"
  204. version = "0.4.0"
  205. source = "registry+https://github.com/rust-lang/crates.io-index"
  206. checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c"
  207. dependencies = [
  208. "proc-macro2",
  209. "quote",
  210. "syn",
  211. "synstructure",
  212. ]
  213. [[package]]
  214. name = "asn1-rs-impl"
  215. version = "0.1.0"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed"
  218. dependencies = [
  219. "proc-macro2",
  220. "quote",
  221. "syn",
  222. ]
  223. [[package]]
  224. name = "asn1_der"
  225. version = "0.7.5"
  226. source = "registry+https://github.com/rust-lang/crates.io-index"
  227. checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21"
  228. [[package]]
  229. name = "async-io"
  230. version = "1.12.0"
  231. source = "registry+https://github.com/rust-lang/crates.io-index"
  232. checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794"
  233. dependencies = [
  234. "async-lock",
  235. "autocfg",
  236. "concurrent-queue",
  237. "futures-lite",
  238. "libc",
  239. "log",
  240. "parking",
  241. "polling",
  242. "slab",
  243. "socket2",
  244. "waker-fn",
  245. "windows-sys 0.42.0",
  246. ]
  247. [[package]]
  248. name = "async-lock"
  249. version = "2.6.0"
  250. source = "registry+https://github.com/rust-lang/crates.io-index"
  251. checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
  252. dependencies = [
  253. "event-listener",
  254. "futures-lite",
  255. ]
  256. [[package]]
  257. name = "async-trait"
  258. version = "0.1.64"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
  261. dependencies = [
  262. "proc-macro2",
  263. "quote",
  264. "syn",
  265. ]
  266. [[package]]
  267. name = "asynchronous-codec"
  268. version = "0.6.1"
  269. source = "registry+https://github.com/rust-lang/crates.io-index"
  270. checksum = "06a0daa378f5fd10634e44b0a29b2a87b890657658e072a30d6f26e57ddee182"
  271. dependencies = [
  272. "bytes",
  273. "futures-sink",
  274. "futures-util",
  275. "memchr",
  276. "pin-project-lite 0.2.9",
  277. ]
  278. [[package]]
  279. name = "atomic-waker"
  280. version = "1.1.0"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599"
  283. [[package]]
  284. name = "atty"
  285. version = "0.2.14"
  286. source = "registry+https://github.com/rust-lang/crates.io-index"
  287. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  288. dependencies = [
  289. "hermit-abi 0.1.19",
  290. "libc",
  291. "winapi",
  292. ]
  293. [[package]]
  294. name = "autocfg"
  295. version = "1.1.0"
  296. source = "registry+https://github.com/rust-lang/crates.io-index"
  297. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  298. [[package]]
  299. name = "axum"
  300. version = "0.6.9"
  301. source = "registry+https://github.com/rust-lang/crates.io-index"
  302. checksum = "6137c6234afb339e75e764c866e3594900f0211e1315d33779f269bbe2ec6967"
  303. dependencies = [
  304. "async-trait",
  305. "axum-core",
  306. "axum-macros",
  307. "base64 0.21.0",
  308. "bitflags",
  309. "bytes",
  310. "futures-util",
  311. "http",
  312. "http-body",
  313. "hyper",
  314. "itoa",
  315. "matchit",
  316. "memchr",
  317. "mime",
  318. "percent-encoding",
  319. "pin-project-lite 0.2.9",
  320. "rustversion",
  321. "serde",
  322. "serde_json",
  323. "serde_path_to_error",
  324. "serde_urlencoded",
  325. "sha1",
  326. "sync_wrapper",
  327. "tokio",
  328. "tokio-tungstenite",
  329. "tower",
  330. "tower-http",
  331. "tower-layer",
  332. "tower-service",
  333. ]
  334. [[package]]
  335. name = "axum-core"
  336. version = "0.3.2"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34"
  339. dependencies = [
  340. "async-trait",
  341. "bytes",
  342. "futures-util",
  343. "http",
  344. "http-body",
  345. "mime",
  346. "rustversion",
  347. "tower-layer",
  348. "tower-service",
  349. ]
  350. [[package]]
  351. name = "axum-extra"
  352. version = "0.7.2"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "7ea61f9f77592526b73fd14fe0f5938412bda49423f8b9f372ac76a9d6cf0ad2"
  355. dependencies = [
  356. "axum",
  357. "bytes",
  358. "futures-util",
  359. "http",
  360. "http-body",
  361. "mime",
  362. "pin-project-lite 0.2.9",
  363. "serde",
  364. "serde_html_form",
  365. "tokio",
  366. "tower",
  367. "tower-http",
  368. "tower-layer",
  369. "tower-service",
  370. ]
  371. [[package]]
  372. name = "axum-macros"
  373. version = "0.3.4"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "5fbf955307ff8addb48d2399393c9e2740dd491537ec562b66ab364fc4a38841"
  376. dependencies = [
  377. "heck 0.4.1",
  378. "proc-macro2",
  379. "quote",
  380. "syn",
  381. ]
  382. [[package]]
  383. name = "base-x"
  384. version = "0.2.11"
  385. source = "registry+https://github.com/rust-lang/crates.io-index"
  386. checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
  387. [[package]]
  388. name = "base16ct"
  389. version = "0.1.1"
  390. source = "registry+https://github.com/rust-lang/crates.io-index"
  391. checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
  392. [[package]]
  393. name = "base64"
  394. version = "0.13.1"
  395. source = "registry+https://github.com/rust-lang/crates.io-index"
  396. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  397. [[package]]
  398. name = "base64"
  399. version = "0.21.0"
  400. source = "registry+https://github.com/rust-lang/crates.io-index"
  401. checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
  402. [[package]]
  403. name = "base64ct"
  404. version = "1.6.0"
  405. source = "registry+https://github.com/rust-lang/crates.io-index"
  406. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  407. [[package]]
  408. name = "bincode"
  409. version = "1.3.3"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
  412. dependencies = [
  413. "serde",
  414. ]
  415. [[package]]
  416. name = "bitflags"
  417. version = "1.3.2"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  420. [[package]]
  421. name = "blake2"
  422. version = "0.10.6"
  423. source = "registry+https://github.com/rust-lang/crates.io-index"
  424. checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
  425. dependencies = [
  426. "digest 0.10.6",
  427. ]
  428. [[package]]
  429. name = "block-buffer"
  430. version = "0.9.0"
  431. source = "registry+https://github.com/rust-lang/crates.io-index"
  432. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  433. dependencies = [
  434. "generic-array",
  435. ]
  436. [[package]]
  437. name = "block-buffer"
  438. version = "0.10.3"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
  441. dependencies = [
  442. "generic-array",
  443. ]
  444. [[package]]
  445. name = "block-modes"
  446. version = "0.7.0"
  447. source = "registry+https://github.com/rust-lang/crates.io-index"
  448. checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
  449. dependencies = [
  450. "block-padding",
  451. "cipher 0.2.5",
  452. ]
  453. [[package]]
  454. name = "block-padding"
  455. version = "0.2.1"
  456. source = "registry+https://github.com/rust-lang/crates.io-index"
  457. checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
  458. [[package]]
  459. name = "borsh"
  460. version = "0.9.3"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
  463. dependencies = [
  464. "borsh-derive",
  465. "hashbrown 0.11.2",
  466. ]
  467. [[package]]
  468. name = "borsh-derive"
  469. version = "0.9.3"
  470. source = "registry+https://github.com/rust-lang/crates.io-index"
  471. checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
  472. dependencies = [
  473. "borsh-derive-internal",
  474. "borsh-schema-derive-internal",
  475. "proc-macro-crate 0.1.5",
  476. "proc-macro2",
  477. "syn",
  478. ]
  479. [[package]]
  480. name = "borsh-derive-internal"
  481. version = "0.9.3"
  482. source = "registry+https://github.com/rust-lang/crates.io-index"
  483. checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
  484. dependencies = [
  485. "proc-macro2",
  486. "quote",
  487. "syn",
  488. ]
  489. [[package]]
  490. name = "borsh-schema-derive-internal"
  491. version = "0.9.3"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
  494. dependencies = [
  495. "proc-macro2",
  496. "quote",
  497. "syn",
  498. ]
  499. [[package]]
  500. name = "bs58"
  501. version = "0.4.0"
  502. source = "registry+https://github.com/rust-lang/crates.io-index"
  503. checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
  504. [[package]]
  505. name = "bstr"
  506. version = "0.2.17"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
  509. dependencies = [
  510. "lazy_static",
  511. "memchr",
  512. "regex-automata",
  513. ]
  514. [[package]]
  515. name = "bumpalo"
  516. version = "3.12.0"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
  519. [[package]]
  520. name = "byteorder"
  521. version = "1.4.3"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  524. [[package]]
  525. name = "bytes"
  526. version = "1.4.0"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
  529. [[package]]
  530. name = "cc"
  531. version = "1.0.79"
  532. source = "registry+https://github.com/rust-lang/crates.io-index"
  533. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  534. [[package]]
  535. name = "ccm"
  536. version = "0.3.0"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7"
  539. dependencies = [
  540. "aead 0.3.2",
  541. "cipher 0.2.5",
  542. "subtle",
  543. ]
  544. [[package]]
  545. name = "cfg-if"
  546. version = "1.0.0"
  547. source = "registry+https://github.com/rust-lang/crates.io-index"
  548. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  549. [[package]]
  550. name = "chacha20"
  551. version = "0.8.2"
  552. source = "registry+https://github.com/rust-lang/crates.io-index"
  553. checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
  554. dependencies = [
  555. "cfg-if",
  556. "cipher 0.3.0",
  557. "cpufeatures",
  558. "zeroize",
  559. ]
  560. [[package]]
  561. name = "chacha20poly1305"
  562. version = "0.9.1"
  563. source = "registry+https://github.com/rust-lang/crates.io-index"
  564. checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
  565. dependencies = [
  566. "aead 0.4.3",
  567. "chacha20",
  568. "cipher 0.3.0",
  569. "poly1305",
  570. "zeroize",
  571. ]
  572. [[package]]
  573. name = "cipher"
  574. version = "0.2.5"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
  577. dependencies = [
  578. "generic-array",
  579. ]
  580. [[package]]
  581. name = "cipher"
  582. version = "0.3.0"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
  585. dependencies = [
  586. "generic-array",
  587. ]
  588. [[package]]
  589. name = "cipher"
  590. version = "0.4.3"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
  593. dependencies = [
  594. "crypto-common",
  595. "inout",
  596. ]
  597. [[package]]
  598. name = "clap"
  599. version = "2.34.0"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  602. dependencies = [
  603. "ansi_term",
  604. "atty",
  605. "bitflags",
  606. "strsim 0.8.0",
  607. "textwrap",
  608. "unicode-width",
  609. "vec_map",
  610. ]
  611. [[package]]
  612. name = "concurrent-queue"
  613. version = "2.1.0"
  614. source = "registry+https://github.com/rust-lang/crates.io-index"
  615. checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e"
  616. dependencies = [
  617. "crossbeam-utils",
  618. ]
  619. [[package]]
  620. name = "const-oid"
  621. version = "0.9.2"
  622. source = "registry+https://github.com/rust-lang/crates.io-index"
  623. checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
  624. [[package]]
  625. name = "convert_case"
  626. version = "0.4.0"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  629. [[package]]
  630. name = "core-foundation"
  631. version = "0.9.3"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  634. dependencies = [
  635. "core-foundation-sys",
  636. "libc",
  637. ]
  638. [[package]]
  639. name = "core-foundation-sys"
  640. version = "0.8.3"
  641. source = "registry+https://github.com/rust-lang/crates.io-index"
  642. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  643. [[package]]
  644. name = "core2"
  645. version = "0.4.0"
  646. source = "registry+https://github.com/rust-lang/crates.io-index"
  647. checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
  648. dependencies = [
  649. "memchr",
  650. ]
  651. [[package]]
  652. name = "cpufeatures"
  653. version = "0.2.5"
  654. source = "registry+https://github.com/rust-lang/crates.io-index"
  655. checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
  656. dependencies = [
  657. "libc",
  658. ]
  659. [[package]]
  660. name = "crc"
  661. version = "3.0.1"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
  664. dependencies = [
  665. "crc-catalog",
  666. ]
  667. [[package]]
  668. name = "crc-catalog"
  669. version = "2.2.0"
  670. source = "registry+https://github.com/rust-lang/crates.io-index"
  671. checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
  672. [[package]]
  673. name = "crc32fast"
  674. version = "1.3.2"
  675. source = "registry+https://github.com/rust-lang/crates.io-index"
  676. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  677. dependencies = [
  678. "cfg-if",
  679. ]
  680. [[package]]
  681. name = "crossbeam-utils"
  682. version = "0.8.14"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
  685. dependencies = [
  686. "cfg-if",
  687. ]
  688. [[package]]
  689. name = "crunchy"
  690. version = "0.2.2"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  693. [[package]]
  694. name = "crypto-bigint"
  695. version = "0.4.9"
  696. source = "registry+https://github.com/rust-lang/crates.io-index"
  697. checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
  698. dependencies = [
  699. "generic-array",
  700. "rand_core 0.6.4",
  701. "subtle",
  702. "zeroize",
  703. ]
  704. [[package]]
  705. name = "crypto-common"
  706. version = "0.1.6"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  709. dependencies = [
  710. "generic-array",
  711. "rand_core 0.6.4",
  712. "typenum",
  713. ]
  714. [[package]]
  715. name = "crypto-mac"
  716. version = "0.8.0"
  717. source = "registry+https://github.com/rust-lang/crates.io-index"
  718. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  719. dependencies = [
  720. "generic-array",
  721. "subtle",
  722. ]
  723. [[package]]
  724. name = "crypto-mac"
  725. version = "0.11.1"
  726. source = "registry+https://github.com/rust-lang/crates.io-index"
  727. checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
  728. dependencies = [
  729. "generic-array",
  730. "subtle",
  731. ]
  732. [[package]]
  733. name = "ctr"
  734. version = "0.8.0"
  735. source = "registry+https://github.com/rust-lang/crates.io-index"
  736. checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
  737. dependencies = [
  738. "cipher 0.3.0",
  739. ]
  740. [[package]]
  741. name = "ctr"
  742. version = "0.9.2"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
  745. dependencies = [
  746. "cipher 0.4.3",
  747. ]
  748. [[package]]
  749. name = "curve25519-dalek"
  750. version = "3.2.0"
  751. source = "registry+https://github.com/rust-lang/crates.io-index"
  752. checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
  753. dependencies = [
  754. "byteorder",
  755. "digest 0.9.0",
  756. "rand_core 0.5.1",
  757. "subtle",
  758. "zeroize",
  759. ]
  760. [[package]]
  761. name = "curve25519-dalek"
  762. version = "4.0.0-rc.0"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "8da00a7a9a4eb92a0a0f8e75660926d48f0d0f3c537e455c457bcdaa1e16b1ac"
  765. dependencies = [
  766. "cfg-if",
  767. "fiat-crypto",
  768. "packed_simd_2",
  769. "platforms",
  770. "subtle",
  771. "zeroize",
  772. ]
  773. [[package]]
  774. name = "darling"
  775. version = "0.13.4"
  776. source = "registry+https://github.com/rust-lang/crates.io-index"
  777. checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
  778. dependencies = [
  779. "darling_core 0.13.4",
  780. "darling_macro 0.13.4",
  781. ]
  782. [[package]]
  783. name = "darling"
  784. version = "0.14.3"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8"
  787. dependencies = [
  788. "darling_core 0.14.3",
  789. "darling_macro 0.14.3",
  790. ]
  791. [[package]]
  792. name = "darling_core"
  793. version = "0.13.4"
  794. source = "registry+https://github.com/rust-lang/crates.io-index"
  795. checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
  796. dependencies = [
  797. "fnv",
  798. "ident_case",
  799. "proc-macro2",
  800. "quote",
  801. "strsim 0.10.0",
  802. "syn",
  803. ]
  804. [[package]]
  805. name = "darling_core"
  806. version = "0.14.3"
  807. source = "registry+https://github.com/rust-lang/crates.io-index"
  808. checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb"
  809. dependencies = [
  810. "fnv",
  811. "ident_case",
  812. "proc-macro2",
  813. "quote",
  814. "strsim 0.10.0",
  815. "syn",
  816. ]
  817. [[package]]
  818. name = "darling_macro"
  819. version = "0.13.4"
  820. source = "registry+https://github.com/rust-lang/crates.io-index"
  821. checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
  822. dependencies = [
  823. "darling_core 0.13.4",
  824. "quote",
  825. "syn",
  826. ]
  827. [[package]]
  828. name = "darling_macro"
  829. version = "0.14.3"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685"
  832. dependencies = [
  833. "darling_core 0.14.3",
  834. "quote",
  835. "syn",
  836. ]
  837. [[package]]
  838. name = "dashmap"
  839. version = "5.4.0"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
  842. dependencies = [
  843. "cfg-if",
  844. "hashbrown 0.12.3",
  845. "lock_api",
  846. "once_cell",
  847. "parking_lot_core 0.9.7",
  848. ]
  849. [[package]]
  850. name = "data-encoding"
  851. version = "2.3.3"
  852. source = "registry+https://github.com/rust-lang/crates.io-index"
  853. checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
  854. [[package]]
  855. name = "data-encoding-macro"
  856. version = "0.1.12"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "86927b7cd2fe88fa698b87404b287ab98d1a0063a34071d92e575b72d3029aca"
  859. dependencies = [
  860. "data-encoding",
  861. "data-encoding-macro-internal",
  862. ]
  863. [[package]]
  864. name = "data-encoding-macro-internal"
  865. version = "0.1.10"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "a5bbed42daaa95e780b60a50546aa345b8413a1e46f9a40a12907d3598f038db"
  868. dependencies = [
  869. "data-encoding",
  870. "syn",
  871. ]
  872. [[package]]
  873. name = "der"
  874. version = "0.6.1"
  875. source = "registry+https://github.com/rust-lang/crates.io-index"
  876. checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
  877. dependencies = [
  878. "const-oid",
  879. "pem-rfc7468",
  880. "zeroize",
  881. ]
  882. [[package]]
  883. name = "der"
  884. version = "0.7.0"
  885. source = "registry+https://github.com/rust-lang/crates.io-index"
  886. checksum = "bc302fd9b18d66834a6f092d10ea85489c0ca8ad6b7304092135fab171d853cd"
  887. [[package]]
  888. name = "der-parser"
  889. version = "7.0.0"
  890. source = "registry+https://github.com/rust-lang/crates.io-index"
  891. checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82"
  892. dependencies = [
  893. "asn1-rs 0.3.1",
  894. "displaydoc",
  895. "nom",
  896. "num-bigint",
  897. "num-traits",
  898. "rusticata-macros",
  899. ]
  900. [[package]]
  901. name = "der-parser"
  902. version = "8.1.0"
  903. source = "registry+https://github.com/rust-lang/crates.io-index"
  904. checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1"
  905. dependencies = [
  906. "asn1-rs 0.5.1",
  907. "displaydoc",
  908. "nom",
  909. "num-bigint",
  910. "num-traits",
  911. "rusticata-macros",
  912. ]
  913. [[package]]
  914. name = "derive_builder"
  915. version = "0.11.2"
  916. source = "registry+https://github.com/rust-lang/crates.io-index"
  917. checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
  918. dependencies = [
  919. "derive_builder_macro",
  920. ]
  921. [[package]]
  922. name = "derive_builder_core"
  923. version = "0.11.2"
  924. source = "registry+https://github.com/rust-lang/crates.io-index"
  925. checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
  926. dependencies = [
  927. "darling 0.14.3",
  928. "proc-macro2",
  929. "quote",
  930. "syn",
  931. ]
  932. [[package]]
  933. name = "derive_builder_macro"
  934. version = "0.11.2"
  935. source = "registry+https://github.com/rust-lang/crates.io-index"
  936. checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
  937. dependencies = [
  938. "derive_builder_core",
  939. "syn",
  940. ]
  941. [[package]]
  942. name = "derive_more"
  943. version = "0.99.17"
  944. source = "registry+https://github.com/rust-lang/crates.io-index"
  945. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  946. dependencies = [
  947. "convert_case",
  948. "proc-macro2",
  949. "quote",
  950. "rustc_version",
  951. "syn",
  952. ]
  953. [[package]]
  954. name = "digest"
  955. version = "0.9.0"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  958. dependencies = [
  959. "generic-array",
  960. ]
  961. [[package]]
  962. name = "digest"
  963. version = "0.10.6"
  964. source = "registry+https://github.com/rust-lang/crates.io-index"
  965. checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
  966. dependencies = [
  967. "block-buffer 0.10.3",
  968. "crypto-common",
  969. "subtle",
  970. ]
  971. [[package]]
  972. name = "displaydoc"
  973. version = "0.2.3"
  974. source = "registry+https://github.com/rust-lang/crates.io-index"
  975. checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886"
  976. dependencies = [
  977. "proc-macro2",
  978. "quote",
  979. "syn",
  980. ]
  981. [[package]]
  982. name = "dtoa"
  983. version = "1.0.5"
  984. source = "registry+https://github.com/rust-lang/crates.io-index"
  985. checksum = "c00704156a7de8df8da0911424e30c2049957b0a714542a44e05fe693dd85313"
  986. [[package]]
  987. name = "dyn-clone"
  988. version = "1.0.11"
  989. source = "registry+https://github.com/rust-lang/crates.io-index"
  990. checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30"
  991. [[package]]
  992. name = "ecdsa"
  993. version = "0.14.8"
  994. source = "registry+https://github.com/rust-lang/crates.io-index"
  995. checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
  996. dependencies = [
  997. "der 0.6.1",
  998. "elliptic-curve",
  999. "rfc6979",
  1000. "signature",
  1001. ]
  1002. [[package]]
  1003. name = "ed25519"
  1004. version = "1.5.3"
  1005. source = "registry+https://github.com/rust-lang/crates.io-index"
  1006. checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7"
  1007. dependencies = [
  1008. "signature",
  1009. ]
  1010. [[package]]
  1011. name = "ed25519-dalek"
  1012. version = "1.0.1"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
  1015. dependencies = [
  1016. "curve25519-dalek 3.2.0",
  1017. "ed25519",
  1018. "rand 0.7.3",
  1019. "serde",
  1020. "sha2 0.9.9",
  1021. "zeroize",
  1022. ]
  1023. [[package]]
  1024. name = "either"
  1025. version = "1.8.1"
  1026. source = "registry+https://github.com/rust-lang/crates.io-index"
  1027. checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
  1028. [[package]]
  1029. name = "elliptic-curve"
  1030. version = "0.12.3"
  1031. source = "registry+https://github.com/rust-lang/crates.io-index"
  1032. checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
  1033. dependencies = [
  1034. "base16ct",
  1035. "crypto-bigint",
  1036. "der 0.6.1",
  1037. "digest 0.10.6",
  1038. "ff",
  1039. "generic-array",
  1040. "group",
  1041. "hkdf",
  1042. "pem-rfc7468",
  1043. "pkcs8",
  1044. "rand_core 0.6.4",
  1045. "sec1",
  1046. "subtle",
  1047. "zeroize",
  1048. ]
  1049. [[package]]
  1050. name = "encoding_rs"
  1051. version = "0.8.32"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
  1054. dependencies = [
  1055. "cfg-if",
  1056. ]
  1057. [[package]]
  1058. name = "enum-as-inner"
  1059. version = "0.5.1"
  1060. source = "registry+https://github.com/rust-lang/crates.io-index"
  1061. checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
  1062. dependencies = [
  1063. "heck 0.4.1",
  1064. "proc-macro2",
  1065. "quote",
  1066. "syn",
  1067. ]
  1068. [[package]]
  1069. name = "env_logger"
  1070. version = "0.10.0"
  1071. source = "registry+https://github.com/rust-lang/crates.io-index"
  1072. checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
  1073. dependencies = [
  1074. "humantime",
  1075. "is-terminal",
  1076. "log",
  1077. "regex",
  1078. "termcolor",
  1079. ]
  1080. [[package]]
  1081. name = "errno"
  1082. version = "0.2.8"
  1083. source = "registry+https://github.com/rust-lang/crates.io-index"
  1084. checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
  1085. dependencies = [
  1086. "errno-dragonfly",
  1087. "libc",
  1088. "winapi",
  1089. ]
  1090. [[package]]
  1091. name = "errno-dragonfly"
  1092. version = "0.1.2"
  1093. source = "registry+https://github.com/rust-lang/crates.io-index"
  1094. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  1095. dependencies = [
  1096. "cc",
  1097. "libc",
  1098. ]
  1099. [[package]]
  1100. name = "event-listener"
  1101. version = "2.5.3"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1104. [[package]]
  1105. name = "fallible-iterator"
  1106. version = "0.2.0"
  1107. source = "registry+https://github.com/rust-lang/crates.io-index"
  1108. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  1109. [[package]]
  1110. name = "fallible-streaming-iterator"
  1111. version = "0.1.9"
  1112. source = "registry+https://github.com/rust-lang/crates.io-index"
  1113. checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
  1114. [[package]]
  1115. name = "fastrand"
  1116. version = "1.8.0"
  1117. source = "registry+https://github.com/rust-lang/crates.io-index"
  1118. checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
  1119. dependencies = [
  1120. "instant",
  1121. ]
  1122. [[package]]
  1123. name = "ff"
  1124. version = "0.12.1"
  1125. source = "registry+https://github.com/rust-lang/crates.io-index"
  1126. checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
  1127. dependencies = [
  1128. "rand_core 0.6.4",
  1129. "subtle",
  1130. ]
  1131. [[package]]
  1132. name = "fiat-crypto"
  1133. version = "0.1.17"
  1134. source = "registry+https://github.com/rust-lang/crates.io-index"
  1135. checksum = "a214f5bb88731d436478f3ae1f8a277b62124089ba9fb67f4f93fb100ef73c90"
  1136. [[package]]
  1137. name = "fixed-hash"
  1138. version = "0.7.0"
  1139. source = "registry+https://github.com/rust-lang/crates.io-index"
  1140. checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c"
  1141. dependencies = [
  1142. "static_assertions",
  1143. ]
  1144. [[package]]
  1145. name = "fixedbitset"
  1146. version = "0.4.2"
  1147. source = "registry+https://github.com/rust-lang/crates.io-index"
  1148. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  1149. [[package]]
  1150. name = "flate2"
  1151. version = "1.0.25"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
  1154. dependencies = [
  1155. "crc32fast",
  1156. "libz-sys",
  1157. "miniz_oxide",
  1158. ]
  1159. [[package]]
  1160. name = "fnv"
  1161. version = "1.0.7"
  1162. source = "registry+https://github.com/rust-lang/crates.io-index"
  1163. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1164. [[package]]
  1165. name = "foreign-types"
  1166. version = "0.3.2"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  1169. dependencies = [
  1170. "foreign-types-shared",
  1171. ]
  1172. [[package]]
  1173. name = "foreign-types-shared"
  1174. version = "0.1.1"
  1175. source = "registry+https://github.com/rust-lang/crates.io-index"
  1176. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  1177. [[package]]
  1178. name = "form_urlencoded"
  1179. version = "1.1.0"
  1180. source = "registry+https://github.com/rust-lang/crates.io-index"
  1181. checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
  1182. dependencies = [
  1183. "percent-encoding",
  1184. ]
  1185. [[package]]
  1186. name = "futures"
  1187. version = "0.3.26"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
  1190. dependencies = [
  1191. "futures-channel",
  1192. "futures-core",
  1193. "futures-executor",
  1194. "futures-io",
  1195. "futures-sink",
  1196. "futures-task",
  1197. "futures-util",
  1198. ]
  1199. [[package]]
  1200. name = "futures-channel"
  1201. version = "0.3.26"
  1202. source = "registry+https://github.com/rust-lang/crates.io-index"
  1203. checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
  1204. dependencies = [
  1205. "futures-core",
  1206. "futures-sink",
  1207. ]
  1208. [[package]]
  1209. name = "futures-core"
  1210. version = "0.3.26"
  1211. source = "registry+https://github.com/rust-lang/crates.io-index"
  1212. checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
  1213. [[package]]
  1214. name = "futures-executor"
  1215. version = "0.3.26"
  1216. source = "registry+https://github.com/rust-lang/crates.io-index"
  1217. checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
  1218. dependencies = [
  1219. "futures-core",
  1220. "futures-task",
  1221. "futures-util",
  1222. "num_cpus",
  1223. ]
  1224. [[package]]
  1225. name = "futures-io"
  1226. version = "0.3.26"
  1227. source = "registry+https://github.com/rust-lang/crates.io-index"
  1228. checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
  1229. [[package]]
  1230. name = "futures-lite"
  1231. version = "1.12.0"
  1232. source = "registry+https://github.com/rust-lang/crates.io-index"
  1233. checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
  1234. dependencies = [
  1235. "fastrand",
  1236. "futures-core",
  1237. "futures-io",
  1238. "memchr",
  1239. "parking",
  1240. "pin-project-lite 0.2.9",
  1241. "waker-fn",
  1242. ]
  1243. [[package]]
  1244. name = "futures-macro"
  1245. version = "0.3.26"
  1246. source = "registry+https://github.com/rust-lang/crates.io-index"
  1247. checksum = "95a73af87da33b5acf53acfebdc339fe592ecf5357ac7c0a7734ab9d8c876a70"
  1248. dependencies = [
  1249. "proc-macro2",
  1250. "quote",
  1251. "syn",
  1252. ]
  1253. [[package]]
  1254. name = "futures-rustls"
  1255. version = "0.22.2"
  1256. source = "registry+https://github.com/rust-lang/crates.io-index"
  1257. checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd"
  1258. dependencies = [
  1259. "futures-io",
  1260. "rustls 0.20.8",
  1261. "webpki 0.22.0",
  1262. ]
  1263. [[package]]
  1264. name = "futures-sink"
  1265. version = "0.3.26"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
  1268. [[package]]
  1269. name = "futures-task"
  1270. version = "0.3.26"
  1271. source = "registry+https://github.com/rust-lang/crates.io-index"
  1272. checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
  1273. [[package]]
  1274. name = "futures-timer"
  1275. version = "3.0.2"
  1276. source = "registry+https://github.com/rust-lang/crates.io-index"
  1277. checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
  1278. [[package]]
  1279. name = "futures-util"
  1280. version = "0.3.26"
  1281. source = "registry+https://github.com/rust-lang/crates.io-index"
  1282. checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
  1283. dependencies = [
  1284. "futures-channel",
  1285. "futures-core",
  1286. "futures-io",
  1287. "futures-macro",
  1288. "futures-sink",
  1289. "futures-task",
  1290. "memchr",
  1291. "pin-project-lite 0.2.9",
  1292. "pin-utils",
  1293. "slab",
  1294. ]
  1295. [[package]]
  1296. name = "generic-array"
  1297. version = "0.14.6"
  1298. source = "registry+https://github.com/rust-lang/crates.io-index"
  1299. checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
  1300. dependencies = [
  1301. "typenum",
  1302. "version_check",
  1303. ]
  1304. [[package]]
  1305. name = "getrandom"
  1306. version = "0.1.16"
  1307. source = "registry+https://github.com/rust-lang/crates.io-index"
  1308. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  1309. dependencies = [
  1310. "cfg-if",
  1311. "libc",
  1312. "wasi 0.9.0+wasi-snapshot-preview1",
  1313. ]
  1314. [[package]]
  1315. name = "getrandom"
  1316. version = "0.2.8"
  1317. source = "registry+https://github.com/rust-lang/crates.io-index"
  1318. checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
  1319. dependencies = [
  1320. "cfg-if",
  1321. "libc",
  1322. "wasi 0.11.0+wasi-snapshot-preview1",
  1323. ]
  1324. [[package]]
  1325. name = "ghash"
  1326. version = "0.4.4"
  1327. source = "registry+https://github.com/rust-lang/crates.io-index"
  1328. checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
  1329. dependencies = [
  1330. "opaque-debug",
  1331. "polyval 0.5.3",
  1332. ]
  1333. [[package]]
  1334. name = "ghash"
  1335. version = "0.5.0"
  1336. source = "registry+https://github.com/rust-lang/crates.io-index"
  1337. checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
  1338. dependencies = [
  1339. "opaque-debug",
  1340. "polyval 0.6.0",
  1341. ]
  1342. [[package]]
  1343. name = "group"
  1344. version = "0.12.1"
  1345. source = "registry+https://github.com/rust-lang/crates.io-index"
  1346. checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
  1347. dependencies = [
  1348. "ff",
  1349. "rand_core 0.6.4",
  1350. "subtle",
  1351. ]
  1352. [[package]]
  1353. name = "h2"
  1354. version = "0.3.15"
  1355. source = "registry+https://github.com/rust-lang/crates.io-index"
  1356. checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
  1357. dependencies = [
  1358. "bytes",
  1359. "fnv",
  1360. "futures-core",
  1361. "futures-sink",
  1362. "futures-util",
  1363. "http",
  1364. "indexmap",
  1365. "slab",
  1366. "tokio",
  1367. "tokio-util",
  1368. "tracing",
  1369. ]
  1370. [[package]]
  1371. name = "half"
  1372. version = "1.8.2"
  1373. source = "registry+https://github.com/rust-lang/crates.io-index"
  1374. checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
  1375. [[package]]
  1376. name = "hashbrown"
  1377. version = "0.11.2"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
  1380. dependencies = [
  1381. "ahash 0.7.6",
  1382. ]
  1383. [[package]]
  1384. name = "hashbrown"
  1385. version = "0.12.3"
  1386. source = "registry+https://github.com/rust-lang/crates.io-index"
  1387. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1388. dependencies = [
  1389. "ahash 0.7.6",
  1390. ]
  1391. [[package]]
  1392. name = "hashbrown"
  1393. version = "0.13.2"
  1394. source = "registry+https://github.com/rust-lang/crates.io-index"
  1395. checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
  1396. dependencies = [
  1397. "ahash 0.8.3",
  1398. ]
  1399. [[package]]
  1400. name = "hashlink"
  1401. version = "0.8.1"
  1402. source = "registry+https://github.com/rust-lang/crates.io-index"
  1403. checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
  1404. dependencies = [
  1405. "hashbrown 0.12.3",
  1406. ]
  1407. [[package]]
  1408. name = "heck"
  1409. version = "0.3.3"
  1410. source = "registry+https://github.com/rust-lang/crates.io-index"
  1411. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  1412. dependencies = [
  1413. "unicode-segmentation",
  1414. ]
  1415. [[package]]
  1416. name = "heck"
  1417. version = "0.4.1"
  1418. source = "registry+https://github.com/rust-lang/crates.io-index"
  1419. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1420. [[package]]
  1421. name = "hermes"
  1422. version = "0.1.0"
  1423. dependencies = [
  1424. "anyhow",
  1425. "axum",
  1426. "axum-extra",
  1427. "axum-macros",
  1428. "base64 0.21.0",
  1429. "borsh",
  1430. "bs58",
  1431. "dashmap",
  1432. "der 0.7.0",
  1433. "derive_more",
  1434. "env_logger",
  1435. "futures",
  1436. "hex",
  1437. "lazy_static",
  1438. "libc",
  1439. "libp2p",
  1440. "log",
  1441. "pyth-sdk 0.7.0",
  1442. "pyth-wormhole-attester-sdk",
  1443. "rand 0.8.5",
  1444. "reqwest",
  1445. "ring",
  1446. "rusqlite",
  1447. "secp256k1",
  1448. "serde",
  1449. "serde_arrays",
  1450. "serde_cbor",
  1451. "serde_json",
  1452. "sha256",
  1453. "structopt",
  1454. "tokio",
  1455. "typescript-type-def",
  1456. "wormhole-core",
  1457. ]
  1458. [[package]]
  1459. name = "hermit-abi"
  1460. version = "0.1.19"
  1461. source = "registry+https://github.com/rust-lang/crates.io-index"
  1462. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  1463. dependencies = [
  1464. "libc",
  1465. ]
  1466. [[package]]
  1467. name = "hermit-abi"
  1468. version = "0.2.6"
  1469. source = "registry+https://github.com/rust-lang/crates.io-index"
  1470. checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
  1471. dependencies = [
  1472. "libc",
  1473. ]
  1474. [[package]]
  1475. name = "hermit-abi"
  1476. version = "0.3.1"
  1477. source = "registry+https://github.com/rust-lang/crates.io-index"
  1478. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  1479. [[package]]
  1480. name = "hex"
  1481. version = "0.4.3"
  1482. source = "registry+https://github.com/rust-lang/crates.io-index"
  1483. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1484. dependencies = [
  1485. "serde",
  1486. ]
  1487. [[package]]
  1488. name = "hex-literal"
  1489. version = "0.3.4"
  1490. source = "registry+https://github.com/rust-lang/crates.io-index"
  1491. checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
  1492. [[package]]
  1493. name = "hex_fmt"
  1494. version = "0.3.0"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
  1497. [[package]]
  1498. name = "hkdf"
  1499. version = "0.12.3"
  1500. source = "registry+https://github.com/rust-lang/crates.io-index"
  1501. checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
  1502. dependencies = [
  1503. "hmac 0.12.1",
  1504. ]
  1505. [[package]]
  1506. name = "hmac"
  1507. version = "0.8.1"
  1508. source = "registry+https://github.com/rust-lang/crates.io-index"
  1509. checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
  1510. dependencies = [
  1511. "crypto-mac 0.8.0",
  1512. "digest 0.9.0",
  1513. ]
  1514. [[package]]
  1515. name = "hmac"
  1516. version = "0.11.0"
  1517. source = "registry+https://github.com/rust-lang/crates.io-index"
  1518. checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
  1519. dependencies = [
  1520. "crypto-mac 0.11.1",
  1521. "digest 0.9.0",
  1522. ]
  1523. [[package]]
  1524. name = "hmac"
  1525. version = "0.12.1"
  1526. source = "registry+https://github.com/rust-lang/crates.io-index"
  1527. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1528. dependencies = [
  1529. "digest 0.10.6",
  1530. ]
  1531. [[package]]
  1532. name = "hmac-drbg"
  1533. version = "0.3.0"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
  1536. dependencies = [
  1537. "digest 0.9.0",
  1538. "generic-array",
  1539. "hmac 0.8.1",
  1540. ]
  1541. [[package]]
  1542. name = "hostname"
  1543. version = "0.3.1"
  1544. source = "registry+https://github.com/rust-lang/crates.io-index"
  1545. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  1546. dependencies = [
  1547. "libc",
  1548. "match_cfg",
  1549. "winapi",
  1550. ]
  1551. [[package]]
  1552. name = "http"
  1553. version = "0.2.9"
  1554. source = "registry+https://github.com/rust-lang/crates.io-index"
  1555. checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
  1556. dependencies = [
  1557. "bytes",
  1558. "fnv",
  1559. "itoa",
  1560. ]
  1561. [[package]]
  1562. name = "http-body"
  1563. version = "0.4.5"
  1564. source = "registry+https://github.com/rust-lang/crates.io-index"
  1565. checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
  1566. dependencies = [
  1567. "bytes",
  1568. "http",
  1569. "pin-project-lite 0.2.9",
  1570. ]
  1571. [[package]]
  1572. name = "http-range-header"
  1573. version = "0.3.0"
  1574. source = "registry+https://github.com/rust-lang/crates.io-index"
  1575. checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
  1576. [[package]]
  1577. name = "httparse"
  1578. version = "1.8.0"
  1579. source = "registry+https://github.com/rust-lang/crates.io-index"
  1580. checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
  1581. [[package]]
  1582. name = "httpdate"
  1583. version = "1.0.2"
  1584. source = "registry+https://github.com/rust-lang/crates.io-index"
  1585. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  1586. [[package]]
  1587. name = "humantime"
  1588. version = "2.1.0"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  1591. [[package]]
  1592. name = "hyper"
  1593. version = "0.14.24"
  1594. source = "registry+https://github.com/rust-lang/crates.io-index"
  1595. checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c"
  1596. dependencies = [
  1597. "bytes",
  1598. "futures-channel",
  1599. "futures-core",
  1600. "futures-util",
  1601. "h2",
  1602. "http",
  1603. "http-body",
  1604. "httparse",
  1605. "httpdate",
  1606. "itoa",
  1607. "pin-project-lite 0.2.9",
  1608. "socket2",
  1609. "tokio",
  1610. "tower-service",
  1611. "tracing",
  1612. "want",
  1613. ]
  1614. [[package]]
  1615. name = "hyper-tls"
  1616. version = "0.5.0"
  1617. source = "registry+https://github.com/rust-lang/crates.io-index"
  1618. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  1619. dependencies = [
  1620. "bytes",
  1621. "hyper",
  1622. "native-tls",
  1623. "tokio",
  1624. "tokio-native-tls",
  1625. ]
  1626. [[package]]
  1627. name = "ident_case"
  1628. version = "1.0.1"
  1629. source = "registry+https://github.com/rust-lang/crates.io-index"
  1630. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  1631. [[package]]
  1632. name = "idna"
  1633. version = "0.2.3"
  1634. source = "registry+https://github.com/rust-lang/crates.io-index"
  1635. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  1636. dependencies = [
  1637. "matches",
  1638. "unicode-bidi",
  1639. "unicode-normalization",
  1640. ]
  1641. [[package]]
  1642. name = "idna"
  1643. version = "0.3.0"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
  1646. dependencies = [
  1647. "unicode-bidi",
  1648. "unicode-normalization",
  1649. ]
  1650. [[package]]
  1651. name = "if-addrs"
  1652. version = "0.7.0"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9"
  1655. dependencies = [
  1656. "libc",
  1657. "winapi",
  1658. ]
  1659. [[package]]
  1660. name = "if-watch"
  1661. version = "3.0.0"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "ba7abdbb86e485125dad06c2691e1e393bf3b08c7b743b43aa162a00fd39062e"
  1664. dependencies = [
  1665. "async-io",
  1666. "core-foundation",
  1667. "fnv",
  1668. "futures",
  1669. "if-addrs",
  1670. "ipnet",
  1671. "log",
  1672. "rtnetlink",
  1673. "system-configuration",
  1674. "tokio",
  1675. "windows",
  1676. ]
  1677. [[package]]
  1678. name = "indexmap"
  1679. version = "1.9.2"
  1680. source = "registry+https://github.com/rust-lang/crates.io-index"
  1681. checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
  1682. dependencies = [
  1683. "autocfg",
  1684. "hashbrown 0.12.3",
  1685. ]
  1686. [[package]]
  1687. name = "inout"
  1688. version = "0.1.3"
  1689. source = "registry+https://github.com/rust-lang/crates.io-index"
  1690. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  1691. dependencies = [
  1692. "generic-array",
  1693. ]
  1694. [[package]]
  1695. name = "instant"
  1696. version = "0.1.12"
  1697. source = "registry+https://github.com/rust-lang/crates.io-index"
  1698. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  1699. dependencies = [
  1700. "cfg-if",
  1701. ]
  1702. [[package]]
  1703. name = "interceptor"
  1704. version = "0.8.2"
  1705. source = "registry+https://github.com/rust-lang/crates.io-index"
  1706. checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b"
  1707. dependencies = [
  1708. "async-trait",
  1709. "bytes",
  1710. "log",
  1711. "rand 0.8.5",
  1712. "rtcp",
  1713. "rtp",
  1714. "thiserror",
  1715. "tokio",
  1716. "waitgroup",
  1717. "webrtc-srtp",
  1718. "webrtc-util",
  1719. ]
  1720. [[package]]
  1721. name = "io-lifetimes"
  1722. version = "1.0.5"
  1723. source = "registry+https://github.com/rust-lang/crates.io-index"
  1724. checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
  1725. dependencies = [
  1726. "libc",
  1727. "windows-sys 0.45.0",
  1728. ]
  1729. [[package]]
  1730. name = "ipconfig"
  1731. version = "0.3.1"
  1732. source = "registry+https://github.com/rust-lang/crates.io-index"
  1733. checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
  1734. dependencies = [
  1735. "socket2",
  1736. "widestring",
  1737. "winapi",
  1738. "winreg",
  1739. ]
  1740. [[package]]
  1741. name = "ipnet"
  1742. version = "2.7.1"
  1743. source = "registry+https://github.com/rust-lang/crates.io-index"
  1744. checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146"
  1745. [[package]]
  1746. name = "is-terminal"
  1747. version = "0.4.3"
  1748. source = "registry+https://github.com/rust-lang/crates.io-index"
  1749. checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
  1750. dependencies = [
  1751. "hermit-abi 0.3.1",
  1752. "io-lifetimes",
  1753. "rustix",
  1754. "windows-sys 0.45.0",
  1755. ]
  1756. [[package]]
  1757. name = "itertools"
  1758. version = "0.10.5"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  1761. dependencies = [
  1762. "either",
  1763. ]
  1764. [[package]]
  1765. name = "itoa"
  1766. version = "1.0.5"
  1767. source = "registry+https://github.com/rust-lang/crates.io-index"
  1768. checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
  1769. [[package]]
  1770. name = "js-sys"
  1771. version = "0.3.61"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
  1774. dependencies = [
  1775. "wasm-bindgen",
  1776. ]
  1777. [[package]]
  1778. name = "keccak"
  1779. version = "0.1.3"
  1780. source = "registry+https://github.com/rust-lang/crates.io-index"
  1781. checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768"
  1782. dependencies = [
  1783. "cpufeatures",
  1784. ]
  1785. [[package]]
  1786. name = "lazy_static"
  1787. version = "1.4.0"
  1788. source = "registry+https://github.com/rust-lang/crates.io-index"
  1789. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  1790. [[package]]
  1791. name = "libc"
  1792. version = "0.2.140"
  1793. source = "registry+https://github.com/rust-lang/crates.io-index"
  1794. checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
  1795. [[package]]
  1796. name = "libm"
  1797. version = "0.1.4"
  1798. source = "registry+https://github.com/rust-lang/crates.io-index"
  1799. checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a"
  1800. [[package]]
  1801. name = "libp2p"
  1802. version = "0.51.1"
  1803. source = "registry+https://github.com/rust-lang/crates.io-index"
  1804. checksum = "53e068bb83ef4e0bed45de5ca4a4118018ac1f70ea3ecb1f4878742d08a97473"
  1805. dependencies = [
  1806. "bytes",
  1807. "futures",
  1808. "futures-timer",
  1809. "getrandom 0.2.8",
  1810. "instant",
  1811. "libp2p-core",
  1812. "libp2p-dns",
  1813. "libp2p-gossipsub",
  1814. "libp2p-identify",
  1815. "libp2p-identity",
  1816. "libp2p-mdns",
  1817. "libp2p-metrics",
  1818. "libp2p-mplex",
  1819. "libp2p-noise",
  1820. "libp2p-quic",
  1821. "libp2p-swarm",
  1822. "libp2p-tcp",
  1823. "libp2p-tls",
  1824. "libp2p-webrtc",
  1825. "libp2p-websocket",
  1826. "libp2p-yamux",
  1827. "multiaddr",
  1828. "pin-project",
  1829. ]
  1830. [[package]]
  1831. name = "libp2p-core"
  1832. version = "0.39.1"
  1833. source = "registry+https://github.com/rust-lang/crates.io-index"
  1834. checksum = "9b7f8b7d65c070a5a1b5f8f0510648189da08f787b8963f8e21219e0710733af"
  1835. dependencies = [
  1836. "either",
  1837. "fnv",
  1838. "futures",
  1839. "futures-timer",
  1840. "instant",
  1841. "libp2p-identity",
  1842. "log",
  1843. "multiaddr",
  1844. "multihash",
  1845. "multistream-select",
  1846. "once_cell",
  1847. "parking_lot 0.12.1",
  1848. "pin-project",
  1849. "quick-protobuf",
  1850. "rand 0.8.5",
  1851. "rw-stream-sink",
  1852. "smallvec",
  1853. "thiserror",
  1854. "unsigned-varint",
  1855. "void",
  1856. ]
  1857. [[package]]
  1858. name = "libp2p-dns"
  1859. version = "0.39.0"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554"
  1862. dependencies = [
  1863. "futures",
  1864. "libp2p-core",
  1865. "log",
  1866. "parking_lot 0.12.1",
  1867. "smallvec",
  1868. "trust-dns-resolver",
  1869. ]
  1870. [[package]]
  1871. name = "libp2p-gossipsub"
  1872. version = "0.44.1"
  1873. source = "registry+https://github.com/rust-lang/crates.io-index"
  1874. checksum = "708235886ca7c8f3792a8683ef81f9b7fb0a952bbd15fe5038b7610689a88390"
  1875. dependencies = [
  1876. "asynchronous-codec",
  1877. "base64 0.21.0",
  1878. "byteorder",
  1879. "bytes",
  1880. "fnv",
  1881. "futures",
  1882. "hex_fmt",
  1883. "instant",
  1884. "libp2p-core",
  1885. "libp2p-identity",
  1886. "libp2p-swarm",
  1887. "log",
  1888. "prometheus-client",
  1889. "quick-protobuf",
  1890. "quick-protobuf-codec",
  1891. "rand 0.8.5",
  1892. "regex",
  1893. "sha2 0.10.6",
  1894. "smallvec",
  1895. "thiserror",
  1896. "unsigned-varint",
  1897. "wasm-timer",
  1898. ]
  1899. [[package]]
  1900. name = "libp2p-identify"
  1901. version = "0.42.1"
  1902. source = "registry+https://github.com/rust-lang/crates.io-index"
  1903. checksum = "40d1da1f75baf824cfdc80f6aced51f7cbf8dc14e32363e9443570a80d4ee337"
  1904. dependencies = [
  1905. "asynchronous-codec",
  1906. "either",
  1907. "futures",
  1908. "futures-timer",
  1909. "libp2p-core",
  1910. "libp2p-identity",
  1911. "libp2p-swarm",
  1912. "log",
  1913. "lru",
  1914. "quick-protobuf",
  1915. "quick-protobuf-codec",
  1916. "smallvec",
  1917. "thiserror",
  1918. "void",
  1919. ]
  1920. [[package]]
  1921. name = "libp2p-identity"
  1922. version = "0.1.0"
  1923. source = "registry+https://github.com/rust-lang/crates.io-index"
  1924. checksum = "ff6c9cb71e2333d31f18e7556b9a5f1d0a2e013effc9325e36f436be65fe7bd2"
  1925. dependencies = [
  1926. "asn1_der",
  1927. "bs58",
  1928. "ed25519-dalek",
  1929. "libsecp256k1",
  1930. "log",
  1931. "multiaddr",
  1932. "multihash",
  1933. "prost",
  1934. "prost-build",
  1935. "quick-protobuf",
  1936. "rand 0.8.5",
  1937. "sha2 0.10.6",
  1938. "thiserror",
  1939. "zeroize",
  1940. ]
  1941. [[package]]
  1942. name = "libp2p-mdns"
  1943. version = "0.43.0"
  1944. source = "registry+https://github.com/rust-lang/crates.io-index"
  1945. checksum = "687a0b54ee8f7106be36f012b32bd30faceeb4cd857ebad96e512566886ffea5"
  1946. dependencies = [
  1947. "data-encoding",
  1948. "futures",
  1949. "if-watch",
  1950. "libp2p-core",
  1951. "libp2p-swarm",
  1952. "log",
  1953. "rand 0.8.5",
  1954. "smallvec",
  1955. "socket2",
  1956. "tokio",
  1957. "trust-dns-proto",
  1958. "void",
  1959. ]
  1960. [[package]]
  1961. name = "libp2p-metrics"
  1962. version = "0.12.0"
  1963. source = "registry+https://github.com/rust-lang/crates.io-index"
  1964. checksum = "a42ec91e227d7d0dafa4ce88b333cdf5f277253873ab087555c92798db2ddd46"
  1965. dependencies = [
  1966. "libp2p-core",
  1967. "libp2p-gossipsub",
  1968. "libp2p-identify",
  1969. "libp2p-swarm",
  1970. "prometheus-client",
  1971. ]
  1972. [[package]]
  1973. name = "libp2p-mplex"
  1974. version = "0.39.0"
  1975. source = "registry+https://github.com/rust-lang/crates.io-index"
  1976. checksum = "4d34780b514b159e6f3fd70ba3e72664ec89da28dca2d1e7856ee55e2c7031ba"
  1977. dependencies = [
  1978. "asynchronous-codec",
  1979. "bytes",
  1980. "futures",
  1981. "libp2p-core",
  1982. "log",
  1983. "nohash-hasher",
  1984. "parking_lot 0.12.1",
  1985. "rand 0.8.5",
  1986. "smallvec",
  1987. "unsigned-varint",
  1988. ]
  1989. [[package]]
  1990. name = "libp2p-noise"
  1991. version = "0.42.1"
  1992. source = "registry+https://github.com/rust-lang/crates.io-index"
  1993. checksum = "9c87c2803deffeae94108072a0387f8c9ff494af68a4908454c11c811e27b5e5"
  1994. dependencies = [
  1995. "bytes",
  1996. "curve25519-dalek 3.2.0",
  1997. "futures",
  1998. "libp2p-core",
  1999. "libp2p-identity",
  2000. "log",
  2001. "once_cell",
  2002. "quick-protobuf",
  2003. "rand 0.8.5",
  2004. "sha2 0.10.6",
  2005. "snow",
  2006. "static_assertions",
  2007. "thiserror",
  2008. "x25519-dalek 1.1.1",
  2009. "zeroize",
  2010. ]
  2011. [[package]]
  2012. name = "libp2p-quic"
  2013. version = "0.7.0-alpha.3"
  2014. source = "registry+https://github.com/rust-lang/crates.io-index"
  2015. checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735"
  2016. dependencies = [
  2017. "bytes",
  2018. "futures",
  2019. "futures-timer",
  2020. "if-watch",
  2021. "libp2p-core",
  2022. "libp2p-identity",
  2023. "libp2p-tls",
  2024. "log",
  2025. "parking_lot 0.12.1",
  2026. "quinn-proto",
  2027. "rand 0.8.5",
  2028. "rustls 0.20.8",
  2029. "thiserror",
  2030. "tokio",
  2031. ]
  2032. [[package]]
  2033. name = "libp2p-swarm"
  2034. version = "0.42.0"
  2035. source = "registry+https://github.com/rust-lang/crates.io-index"
  2036. checksum = "92c22a83d70703d140092c969c1ca06ecdffff8ca7ce8ac2fd3b7eb2c1f0da86"
  2037. dependencies = [
  2038. "either",
  2039. "fnv",
  2040. "futures",
  2041. "futures-timer",
  2042. "instant",
  2043. "libp2p-core",
  2044. "libp2p-swarm-derive",
  2045. "log",
  2046. "pin-project",
  2047. "rand 0.8.5",
  2048. "smallvec",
  2049. "thiserror",
  2050. "tokio",
  2051. "void",
  2052. ]
  2053. [[package]]
  2054. name = "libp2p-swarm-derive"
  2055. version = "0.32.0"
  2056. source = "registry+https://github.com/rust-lang/crates.io-index"
  2057. checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f"
  2058. dependencies = [
  2059. "heck 0.4.1",
  2060. "quote",
  2061. "syn",
  2062. ]
  2063. [[package]]
  2064. name = "libp2p-tcp"
  2065. version = "0.39.0"
  2066. source = "registry+https://github.com/rust-lang/crates.io-index"
  2067. checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf"
  2068. dependencies = [
  2069. "futures",
  2070. "futures-timer",
  2071. "if-watch",
  2072. "libc",
  2073. "libp2p-core",
  2074. "log",
  2075. "socket2",
  2076. "tokio",
  2077. ]
  2078. [[package]]
  2079. name = "libp2p-tls"
  2080. version = "0.1.0"
  2081. source = "registry+https://github.com/rust-lang/crates.io-index"
  2082. checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781"
  2083. dependencies = [
  2084. "futures",
  2085. "futures-rustls",
  2086. "libp2p-core",
  2087. "libp2p-identity",
  2088. "rcgen 0.10.0",
  2089. "ring",
  2090. "rustls 0.20.8",
  2091. "thiserror",
  2092. "webpki 0.22.0",
  2093. "x509-parser 0.14.0",
  2094. "yasna",
  2095. ]
  2096. [[package]]
  2097. name = "libp2p-webrtc"
  2098. version = "0.4.0-alpha.3"
  2099. source = "registry+https://github.com/rust-lang/crates.io-index"
  2100. checksum = "ffd0c3af5921e3bdd5fecdf3eef3be5a197def64c1d23cd3ea79abcadbd461f7"
  2101. dependencies = [
  2102. "async-trait",
  2103. "asynchronous-codec",
  2104. "bytes",
  2105. "futures",
  2106. "futures-timer",
  2107. "hex",
  2108. "if-watch",
  2109. "libp2p-core",
  2110. "libp2p-identity",
  2111. "libp2p-noise",
  2112. "log",
  2113. "multihash",
  2114. "quick-protobuf",
  2115. "quick-protobuf-codec",
  2116. "rand 0.8.5",
  2117. "rcgen 0.9.3",
  2118. "serde",
  2119. "stun",
  2120. "thiserror",
  2121. "tinytemplate",
  2122. "tokio",
  2123. "tokio-util",
  2124. "webrtc",
  2125. ]
  2126. [[package]]
  2127. name = "libp2p-websocket"
  2128. version = "0.41.0"
  2129. source = "registry+https://github.com/rust-lang/crates.io-index"
  2130. checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f"
  2131. dependencies = [
  2132. "either",
  2133. "futures",
  2134. "futures-rustls",
  2135. "libp2p-core",
  2136. "log",
  2137. "parking_lot 0.12.1",
  2138. "quicksink",
  2139. "rw-stream-sink",
  2140. "soketto",
  2141. "url",
  2142. "webpki-roots",
  2143. ]
  2144. [[package]]
  2145. name = "libp2p-yamux"
  2146. version = "0.43.0"
  2147. source = "registry+https://github.com/rust-lang/crates.io-index"
  2148. checksum = "d048cd82f72c8800655aa1ee9b808ea8c9d523a649d3579b3ef0cfe23952d7fd"
  2149. dependencies = [
  2150. "futures",
  2151. "libp2p-core",
  2152. "log",
  2153. "parking_lot 0.12.1",
  2154. "thiserror",
  2155. "yamux",
  2156. ]
  2157. [[package]]
  2158. name = "libsecp256k1"
  2159. version = "0.7.1"
  2160. source = "registry+https://github.com/rust-lang/crates.io-index"
  2161. checksum = "95b09eff1b35ed3b33b877ced3a691fc7a481919c7e29c53c906226fcf55e2a1"
  2162. dependencies = [
  2163. "arrayref",
  2164. "base64 0.13.1",
  2165. "digest 0.9.0",
  2166. "hmac-drbg",
  2167. "libsecp256k1-core",
  2168. "libsecp256k1-gen-ecmult",
  2169. "libsecp256k1-gen-genmult",
  2170. "rand 0.8.5",
  2171. "serde",
  2172. "sha2 0.9.9",
  2173. "typenum",
  2174. ]
  2175. [[package]]
  2176. name = "libsecp256k1-core"
  2177. version = "0.3.0"
  2178. source = "registry+https://github.com/rust-lang/crates.io-index"
  2179. checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451"
  2180. dependencies = [
  2181. "crunchy",
  2182. "digest 0.9.0",
  2183. "subtle",
  2184. ]
  2185. [[package]]
  2186. name = "libsecp256k1-gen-ecmult"
  2187. version = "0.3.0"
  2188. source = "registry+https://github.com/rust-lang/crates.io-index"
  2189. checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809"
  2190. dependencies = [
  2191. "libsecp256k1-core",
  2192. ]
  2193. [[package]]
  2194. name = "libsecp256k1-gen-genmult"
  2195. version = "0.3.0"
  2196. source = "registry+https://github.com/rust-lang/crates.io-index"
  2197. checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c"
  2198. dependencies = [
  2199. "libsecp256k1-core",
  2200. ]
  2201. [[package]]
  2202. name = "libsqlite3-sys"
  2203. version = "0.25.2"
  2204. source = "registry+https://github.com/rust-lang/crates.io-index"
  2205. checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa"
  2206. dependencies = [
  2207. "cc",
  2208. "pkg-config",
  2209. "vcpkg",
  2210. ]
  2211. [[package]]
  2212. name = "libz-sys"
  2213. version = "1.1.8"
  2214. source = "registry+https://github.com/rust-lang/crates.io-index"
  2215. checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
  2216. dependencies = [
  2217. "cc",
  2218. "pkg-config",
  2219. "vcpkg",
  2220. ]
  2221. [[package]]
  2222. name = "linked-hash-map"
  2223. version = "0.5.6"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2226. [[package]]
  2227. name = "linux-raw-sys"
  2228. version = "0.1.4"
  2229. source = "registry+https://github.com/rust-lang/crates.io-index"
  2230. checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
  2231. [[package]]
  2232. name = "lock_api"
  2233. version = "0.4.9"
  2234. source = "registry+https://github.com/rust-lang/crates.io-index"
  2235. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  2236. dependencies = [
  2237. "autocfg",
  2238. "scopeguard",
  2239. ]
  2240. [[package]]
  2241. name = "log"
  2242. version = "0.4.17"
  2243. source = "registry+https://github.com/rust-lang/crates.io-index"
  2244. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  2245. dependencies = [
  2246. "cfg-if",
  2247. ]
  2248. [[package]]
  2249. name = "lru"
  2250. version = "0.9.0"
  2251. source = "registry+https://github.com/rust-lang/crates.io-index"
  2252. checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17"
  2253. dependencies = [
  2254. "hashbrown 0.13.2",
  2255. ]
  2256. [[package]]
  2257. name = "lru-cache"
  2258. version = "0.1.2"
  2259. source = "registry+https://github.com/rust-lang/crates.io-index"
  2260. checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  2261. dependencies = [
  2262. "linked-hash-map",
  2263. ]
  2264. [[package]]
  2265. name = "match_cfg"
  2266. version = "0.1.0"
  2267. source = "registry+https://github.com/rust-lang/crates.io-index"
  2268. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  2269. [[package]]
  2270. name = "matches"
  2271. version = "0.1.10"
  2272. source = "registry+https://github.com/rust-lang/crates.io-index"
  2273. checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
  2274. [[package]]
  2275. name = "matchit"
  2276. version = "0.7.0"
  2277. source = "registry+https://github.com/rust-lang/crates.io-index"
  2278. checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
  2279. [[package]]
  2280. name = "md-5"
  2281. version = "0.10.5"
  2282. source = "registry+https://github.com/rust-lang/crates.io-index"
  2283. checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
  2284. dependencies = [
  2285. "digest 0.10.6",
  2286. ]
  2287. [[package]]
  2288. name = "memchr"
  2289. version = "2.5.0"
  2290. source = "registry+https://github.com/rust-lang/crates.io-index"
  2291. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  2292. [[package]]
  2293. name = "memoffset"
  2294. version = "0.6.5"
  2295. source = "registry+https://github.com/rust-lang/crates.io-index"
  2296. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  2297. dependencies = [
  2298. "autocfg",
  2299. ]
  2300. [[package]]
  2301. name = "mime"
  2302. version = "0.3.16"
  2303. source = "registry+https://github.com/rust-lang/crates.io-index"
  2304. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  2305. [[package]]
  2306. name = "minimal-lexical"
  2307. version = "0.2.1"
  2308. source = "registry+https://github.com/rust-lang/crates.io-index"
  2309. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2310. [[package]]
  2311. name = "miniz_oxide"
  2312. version = "0.6.2"
  2313. source = "registry+https://github.com/rust-lang/crates.io-index"
  2314. checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
  2315. dependencies = [
  2316. "adler",
  2317. ]
  2318. [[package]]
  2319. name = "mio"
  2320. version = "0.8.5"
  2321. source = "registry+https://github.com/rust-lang/crates.io-index"
  2322. checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
  2323. dependencies = [
  2324. "libc",
  2325. "log",
  2326. "wasi 0.11.0+wasi-snapshot-preview1",
  2327. "windows-sys 0.42.0",
  2328. ]
  2329. [[package]]
  2330. name = "multiaddr"
  2331. version = "0.17.0"
  2332. source = "registry+https://github.com/rust-lang/crates.io-index"
  2333. checksum = "3b53e0cc5907a5c216ba6584bf74be8ab47d6d6289f72793b2dddbf15dc3bf8c"
  2334. dependencies = [
  2335. "arrayref",
  2336. "byteorder",
  2337. "data-encoding",
  2338. "multibase",
  2339. "multihash",
  2340. "percent-encoding",
  2341. "serde",
  2342. "static_assertions",
  2343. "unsigned-varint",
  2344. "url",
  2345. ]
  2346. [[package]]
  2347. name = "multibase"
  2348. version = "0.9.1"
  2349. source = "registry+https://github.com/rust-lang/crates.io-index"
  2350. checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404"
  2351. dependencies = [
  2352. "base-x",
  2353. "data-encoding",
  2354. "data-encoding-macro",
  2355. ]
  2356. [[package]]
  2357. name = "multihash"
  2358. version = "0.17.0"
  2359. source = "registry+https://github.com/rust-lang/crates.io-index"
  2360. checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40"
  2361. dependencies = [
  2362. "core2",
  2363. "digest 0.10.6",
  2364. "multihash-derive",
  2365. "sha2 0.10.6",
  2366. "unsigned-varint",
  2367. ]
  2368. [[package]]
  2369. name = "multihash-derive"
  2370. version = "0.8.1"
  2371. source = "registry+https://github.com/rust-lang/crates.io-index"
  2372. checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db"
  2373. dependencies = [
  2374. "proc-macro-crate 1.1.3",
  2375. "proc-macro-error",
  2376. "proc-macro2",
  2377. "quote",
  2378. "syn",
  2379. "synstructure",
  2380. ]
  2381. [[package]]
  2382. name = "multimap"
  2383. version = "0.8.3"
  2384. source = "registry+https://github.com/rust-lang/crates.io-index"
  2385. checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
  2386. [[package]]
  2387. name = "multistream-select"
  2388. version = "0.12.1"
  2389. source = "registry+https://github.com/rust-lang/crates.io-index"
  2390. checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a"
  2391. dependencies = [
  2392. "bytes",
  2393. "futures",
  2394. "log",
  2395. "pin-project",
  2396. "smallvec",
  2397. "unsigned-varint",
  2398. ]
  2399. [[package]]
  2400. name = "native-tls"
  2401. version = "0.2.11"
  2402. source = "registry+https://github.com/rust-lang/crates.io-index"
  2403. checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
  2404. dependencies = [
  2405. "lazy_static",
  2406. "libc",
  2407. "log",
  2408. "openssl",
  2409. "openssl-probe",
  2410. "openssl-sys",
  2411. "schannel",
  2412. "security-framework",
  2413. "security-framework-sys",
  2414. "tempfile",
  2415. ]
  2416. [[package]]
  2417. name = "netlink-packet-core"
  2418. version = "0.4.2"
  2419. source = "registry+https://github.com/rust-lang/crates.io-index"
  2420. checksum = "345b8ab5bd4e71a2986663e88c56856699d060e78e152e6e9d7966fcd5491297"
  2421. dependencies = [
  2422. "anyhow",
  2423. "byteorder",
  2424. "libc",
  2425. "netlink-packet-utils",
  2426. ]
  2427. [[package]]
  2428. name = "netlink-packet-route"
  2429. version = "0.12.0"
  2430. source = "registry+https://github.com/rust-lang/crates.io-index"
  2431. checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab"
  2432. dependencies = [
  2433. "anyhow",
  2434. "bitflags",
  2435. "byteorder",
  2436. "libc",
  2437. "netlink-packet-core",
  2438. "netlink-packet-utils",
  2439. ]
  2440. [[package]]
  2441. name = "netlink-packet-utils"
  2442. version = "0.5.2"
  2443. source = "registry+https://github.com/rust-lang/crates.io-index"
  2444. checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34"
  2445. dependencies = [
  2446. "anyhow",
  2447. "byteorder",
  2448. "paste",
  2449. "thiserror",
  2450. ]
  2451. [[package]]
  2452. name = "netlink-proto"
  2453. version = "0.10.0"
  2454. source = "registry+https://github.com/rust-lang/crates.io-index"
  2455. checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6"
  2456. dependencies = [
  2457. "bytes",
  2458. "futures",
  2459. "log",
  2460. "netlink-packet-core",
  2461. "netlink-sys",
  2462. "thiserror",
  2463. "tokio",
  2464. ]
  2465. [[package]]
  2466. name = "netlink-sys"
  2467. version = "0.8.4"
  2468. source = "registry+https://github.com/rust-lang/crates.io-index"
  2469. checksum = "260e21fbb6f3d253a14df90eb0000a6066780a15dd901a7519ce02d77a94985b"
  2470. dependencies = [
  2471. "bytes",
  2472. "futures",
  2473. "libc",
  2474. "log",
  2475. "tokio",
  2476. ]
  2477. [[package]]
  2478. name = "nix"
  2479. version = "0.24.3"
  2480. source = "registry+https://github.com/rust-lang/crates.io-index"
  2481. checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
  2482. dependencies = [
  2483. "bitflags",
  2484. "cfg-if",
  2485. "libc",
  2486. "memoffset",
  2487. ]
  2488. [[package]]
  2489. name = "nohash-hasher"
  2490. version = "0.2.0"
  2491. source = "registry+https://github.com/rust-lang/crates.io-index"
  2492. checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
  2493. [[package]]
  2494. name = "nom"
  2495. version = "7.1.3"
  2496. source = "registry+https://github.com/rust-lang/crates.io-index"
  2497. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2498. dependencies = [
  2499. "memchr",
  2500. "minimal-lexical",
  2501. ]
  2502. [[package]]
  2503. name = "num-bigint"
  2504. version = "0.4.3"
  2505. source = "registry+https://github.com/rust-lang/crates.io-index"
  2506. checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
  2507. dependencies = [
  2508. "autocfg",
  2509. "num-integer",
  2510. "num-traits",
  2511. ]
  2512. [[package]]
  2513. name = "num-integer"
  2514. version = "0.1.45"
  2515. source = "registry+https://github.com/rust-lang/crates.io-index"
  2516. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  2517. dependencies = [
  2518. "autocfg",
  2519. "num-traits",
  2520. ]
  2521. [[package]]
  2522. name = "num-traits"
  2523. version = "0.2.15"
  2524. source = "registry+https://github.com/rust-lang/crates.io-index"
  2525. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  2526. dependencies = [
  2527. "autocfg",
  2528. ]
  2529. [[package]]
  2530. name = "num_cpus"
  2531. version = "1.15.0"
  2532. source = "registry+https://github.com/rust-lang/crates.io-index"
  2533. checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
  2534. dependencies = [
  2535. "hermit-abi 0.2.6",
  2536. "libc",
  2537. ]
  2538. [[package]]
  2539. name = "oid-registry"
  2540. version = "0.4.0"
  2541. source = "registry+https://github.com/rust-lang/crates.io-index"
  2542. checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a"
  2543. dependencies = [
  2544. "asn1-rs 0.3.1",
  2545. ]
  2546. [[package]]
  2547. name = "oid-registry"
  2548. version = "0.6.1"
  2549. source = "registry+https://github.com/rust-lang/crates.io-index"
  2550. checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff"
  2551. dependencies = [
  2552. "asn1-rs 0.5.1",
  2553. ]
  2554. [[package]]
  2555. name = "once_cell"
  2556. version = "1.17.1"
  2557. source = "registry+https://github.com/rust-lang/crates.io-index"
  2558. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  2559. [[package]]
  2560. name = "opaque-debug"
  2561. version = "0.3.0"
  2562. source = "registry+https://github.com/rust-lang/crates.io-index"
  2563. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  2564. [[package]]
  2565. name = "openssl"
  2566. version = "0.10.45"
  2567. source = "registry+https://github.com/rust-lang/crates.io-index"
  2568. checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
  2569. dependencies = [
  2570. "bitflags",
  2571. "cfg-if",
  2572. "foreign-types",
  2573. "libc",
  2574. "once_cell",
  2575. "openssl-macros",
  2576. "openssl-sys",
  2577. ]
  2578. [[package]]
  2579. name = "openssl-macros"
  2580. version = "0.1.0"
  2581. source = "registry+https://github.com/rust-lang/crates.io-index"
  2582. checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
  2583. dependencies = [
  2584. "proc-macro2",
  2585. "quote",
  2586. "syn",
  2587. ]
  2588. [[package]]
  2589. name = "openssl-probe"
  2590. version = "0.1.5"
  2591. source = "registry+https://github.com/rust-lang/crates.io-index"
  2592. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2593. [[package]]
  2594. name = "openssl-sys"
  2595. version = "0.9.80"
  2596. source = "registry+https://github.com/rust-lang/crates.io-index"
  2597. checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
  2598. dependencies = [
  2599. "autocfg",
  2600. "cc",
  2601. "libc",
  2602. "pkg-config",
  2603. "vcpkg",
  2604. ]
  2605. [[package]]
  2606. name = "p256"
  2607. version = "0.11.1"
  2608. source = "registry+https://github.com/rust-lang/crates.io-index"
  2609. checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
  2610. dependencies = [
  2611. "ecdsa",
  2612. "elliptic-curve",
  2613. "sha2 0.10.6",
  2614. ]
  2615. [[package]]
  2616. name = "p384"
  2617. version = "0.11.2"
  2618. source = "registry+https://github.com/rust-lang/crates.io-index"
  2619. checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa"
  2620. dependencies = [
  2621. "ecdsa",
  2622. "elliptic-curve",
  2623. "sha2 0.10.6",
  2624. ]
  2625. [[package]]
  2626. name = "packed_simd_2"
  2627. version = "0.3.8"
  2628. source = "registry+https://github.com/rust-lang/crates.io-index"
  2629. checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282"
  2630. dependencies = [
  2631. "cfg-if",
  2632. "libm",
  2633. ]
  2634. [[package]]
  2635. name = "parking"
  2636. version = "2.0.0"
  2637. source = "registry+https://github.com/rust-lang/crates.io-index"
  2638. checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
  2639. [[package]]
  2640. name = "parking_lot"
  2641. version = "0.11.2"
  2642. source = "registry+https://github.com/rust-lang/crates.io-index"
  2643. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2644. dependencies = [
  2645. "instant",
  2646. "lock_api",
  2647. "parking_lot_core 0.8.6",
  2648. ]
  2649. [[package]]
  2650. name = "parking_lot"
  2651. version = "0.12.1"
  2652. source = "registry+https://github.com/rust-lang/crates.io-index"
  2653. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  2654. dependencies = [
  2655. "lock_api",
  2656. "parking_lot_core 0.9.7",
  2657. ]
  2658. [[package]]
  2659. name = "parking_lot_core"
  2660. version = "0.8.6"
  2661. source = "registry+https://github.com/rust-lang/crates.io-index"
  2662. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2663. dependencies = [
  2664. "cfg-if",
  2665. "instant",
  2666. "libc",
  2667. "redox_syscall",
  2668. "smallvec",
  2669. "winapi",
  2670. ]
  2671. [[package]]
  2672. name = "parking_lot_core"
  2673. version = "0.9.7"
  2674. source = "registry+https://github.com/rust-lang/crates.io-index"
  2675. checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
  2676. dependencies = [
  2677. "cfg-if",
  2678. "libc",
  2679. "redox_syscall",
  2680. "smallvec",
  2681. "windows-sys 0.45.0",
  2682. ]
  2683. [[package]]
  2684. name = "paste"
  2685. version = "1.0.11"
  2686. source = "registry+https://github.com/rust-lang/crates.io-index"
  2687. checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
  2688. [[package]]
  2689. name = "pem"
  2690. version = "1.1.1"
  2691. source = "registry+https://github.com/rust-lang/crates.io-index"
  2692. checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
  2693. dependencies = [
  2694. "base64 0.13.1",
  2695. ]
  2696. [[package]]
  2697. name = "pem-rfc7468"
  2698. version = "0.6.0"
  2699. source = "registry+https://github.com/rust-lang/crates.io-index"
  2700. checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
  2701. dependencies = [
  2702. "base64ct",
  2703. ]
  2704. [[package]]
  2705. name = "percent-encoding"
  2706. version = "2.2.0"
  2707. source = "registry+https://github.com/rust-lang/crates.io-index"
  2708. checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
  2709. [[package]]
  2710. name = "petgraph"
  2711. version = "0.6.3"
  2712. source = "registry+https://github.com/rust-lang/crates.io-index"
  2713. checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
  2714. dependencies = [
  2715. "fixedbitset",
  2716. "indexmap",
  2717. ]
  2718. [[package]]
  2719. name = "pin-project"
  2720. version = "1.0.12"
  2721. source = "registry+https://github.com/rust-lang/crates.io-index"
  2722. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  2723. dependencies = [
  2724. "pin-project-internal",
  2725. ]
  2726. [[package]]
  2727. name = "pin-project-internal"
  2728. version = "1.0.12"
  2729. source = "registry+https://github.com/rust-lang/crates.io-index"
  2730. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  2731. dependencies = [
  2732. "proc-macro2",
  2733. "quote",
  2734. "syn",
  2735. ]
  2736. [[package]]
  2737. name = "pin-project-lite"
  2738. version = "0.1.12"
  2739. source = "registry+https://github.com/rust-lang/crates.io-index"
  2740. checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
  2741. [[package]]
  2742. name = "pin-project-lite"
  2743. version = "0.2.9"
  2744. source = "registry+https://github.com/rust-lang/crates.io-index"
  2745. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  2746. [[package]]
  2747. name = "pin-utils"
  2748. version = "0.1.0"
  2749. source = "registry+https://github.com/rust-lang/crates.io-index"
  2750. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2751. [[package]]
  2752. name = "pkcs8"
  2753. version = "0.9.0"
  2754. source = "registry+https://github.com/rust-lang/crates.io-index"
  2755. checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
  2756. dependencies = [
  2757. "der 0.6.1",
  2758. "spki",
  2759. ]
  2760. [[package]]
  2761. name = "pkg-config"
  2762. version = "0.3.26"
  2763. source = "registry+https://github.com/rust-lang/crates.io-index"
  2764. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  2765. [[package]]
  2766. name = "platforms"
  2767. version = "3.0.2"
  2768. source = "registry+https://github.com/rust-lang/crates.io-index"
  2769. checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630"
  2770. [[package]]
  2771. name = "polling"
  2772. version = "2.5.2"
  2773. source = "registry+https://github.com/rust-lang/crates.io-index"
  2774. checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6"
  2775. dependencies = [
  2776. "autocfg",
  2777. "cfg-if",
  2778. "libc",
  2779. "log",
  2780. "wepoll-ffi",
  2781. "windows-sys 0.42.0",
  2782. ]
  2783. [[package]]
  2784. name = "poly1305"
  2785. version = "0.7.2"
  2786. source = "registry+https://github.com/rust-lang/crates.io-index"
  2787. checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
  2788. dependencies = [
  2789. "cpufeatures",
  2790. "opaque-debug",
  2791. "universal-hash 0.4.1",
  2792. ]
  2793. [[package]]
  2794. name = "polyval"
  2795. version = "0.5.3"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
  2798. dependencies = [
  2799. "cfg-if",
  2800. "cpufeatures",
  2801. "opaque-debug",
  2802. "universal-hash 0.4.1",
  2803. ]
  2804. [[package]]
  2805. name = "polyval"
  2806. version = "0.6.0"
  2807. source = "registry+https://github.com/rust-lang/crates.io-index"
  2808. checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6"
  2809. dependencies = [
  2810. "cfg-if",
  2811. "cpufeatures",
  2812. "opaque-debug",
  2813. "universal-hash 0.5.0",
  2814. ]
  2815. [[package]]
  2816. name = "ppv-lite86"
  2817. version = "0.2.17"
  2818. source = "registry+https://github.com/rust-lang/crates.io-index"
  2819. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  2820. [[package]]
  2821. name = "prettyplease"
  2822. version = "0.1.23"
  2823. source = "registry+https://github.com/rust-lang/crates.io-index"
  2824. checksum = "e97e3215779627f01ee256d2fad52f3d95e8e1c11e9fc6fd08f7cd455d5d5c78"
  2825. dependencies = [
  2826. "proc-macro2",
  2827. "syn",
  2828. ]
  2829. [[package]]
  2830. name = "primitive-types"
  2831. version = "0.11.1"
  2832. source = "registry+https://github.com/rust-lang/crates.io-index"
  2833. checksum = "e28720988bff275df1f51b171e1b2a18c30d194c4d2b61defdacecd625a5d94a"
  2834. dependencies = [
  2835. "fixed-hash",
  2836. "uint",
  2837. ]
  2838. [[package]]
  2839. name = "proc-macro-crate"
  2840. version = "0.1.5"
  2841. source = "registry+https://github.com/rust-lang/crates.io-index"
  2842. checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
  2843. dependencies = [
  2844. "toml",
  2845. ]
  2846. [[package]]
  2847. name = "proc-macro-crate"
  2848. version = "1.1.3"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
  2851. dependencies = [
  2852. "thiserror",
  2853. "toml",
  2854. ]
  2855. [[package]]
  2856. name = "proc-macro-error"
  2857. version = "1.0.4"
  2858. source = "registry+https://github.com/rust-lang/crates.io-index"
  2859. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2860. dependencies = [
  2861. "proc-macro-error-attr",
  2862. "proc-macro2",
  2863. "quote",
  2864. "syn",
  2865. "version_check",
  2866. ]
  2867. [[package]]
  2868. name = "proc-macro-error-attr"
  2869. version = "1.0.4"
  2870. source = "registry+https://github.com/rust-lang/crates.io-index"
  2871. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2872. dependencies = [
  2873. "proc-macro2",
  2874. "quote",
  2875. "version_check",
  2876. ]
  2877. [[package]]
  2878. name = "proc-macro2"
  2879. version = "1.0.51"
  2880. source = "registry+https://github.com/rust-lang/crates.io-index"
  2881. checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
  2882. dependencies = [
  2883. "unicode-ident",
  2884. ]
  2885. [[package]]
  2886. name = "prometheus-client"
  2887. version = "0.19.0"
  2888. source = "registry+https://github.com/rust-lang/crates.io-index"
  2889. checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e"
  2890. dependencies = [
  2891. "dtoa",
  2892. "itoa",
  2893. "parking_lot 0.12.1",
  2894. "prometheus-client-derive-encode",
  2895. ]
  2896. [[package]]
  2897. name = "prometheus-client-derive-encode"
  2898. version = "0.4.1"
  2899. source = "registry+https://github.com/rust-lang/crates.io-index"
  2900. checksum = "72b6a5217beb0ad503ee7fa752d451c905113d70721b937126158f3106a48cc1"
  2901. dependencies = [
  2902. "proc-macro2",
  2903. "quote",
  2904. "syn",
  2905. ]
  2906. [[package]]
  2907. name = "prost"
  2908. version = "0.11.6"
  2909. source = "registry+https://github.com/rust-lang/crates.io-index"
  2910. checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
  2911. dependencies = [
  2912. "bytes",
  2913. "prost-derive",
  2914. ]
  2915. [[package]]
  2916. name = "prost-build"
  2917. version = "0.11.6"
  2918. source = "registry+https://github.com/rust-lang/crates.io-index"
  2919. checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
  2920. dependencies = [
  2921. "bytes",
  2922. "heck 0.4.1",
  2923. "itertools",
  2924. "lazy_static",
  2925. "log",
  2926. "multimap",
  2927. "petgraph",
  2928. "prettyplease",
  2929. "prost",
  2930. "prost-types",
  2931. "regex",
  2932. "syn",
  2933. "tempfile",
  2934. "which",
  2935. ]
  2936. [[package]]
  2937. name = "prost-derive"
  2938. version = "0.11.6"
  2939. source = "registry+https://github.com/rust-lang/crates.io-index"
  2940. checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
  2941. dependencies = [
  2942. "anyhow",
  2943. "itertools",
  2944. "proc-macro2",
  2945. "quote",
  2946. "syn",
  2947. ]
  2948. [[package]]
  2949. name = "prost-types"
  2950. version = "0.11.6"
  2951. source = "registry+https://github.com/rust-lang/crates.io-index"
  2952. checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
  2953. dependencies = [
  2954. "bytes",
  2955. "prost",
  2956. ]
  2957. [[package]]
  2958. name = "pyth-sdk"
  2959. version = "0.5.0"
  2960. source = "registry+https://github.com/rust-lang/crates.io-index"
  2961. checksum = "f5c805ba3dfb5b7ed6a8ffa62ec38391f485a79c7cf6b3b11d3bd44fb0325824"
  2962. dependencies = [
  2963. "borsh",
  2964. "borsh-derive",
  2965. "hex",
  2966. "schemars",
  2967. "serde",
  2968. ]
  2969. [[package]]
  2970. name = "pyth-sdk"
  2971. version = "0.7.0"
  2972. source = "registry+https://github.com/rust-lang/crates.io-index"
  2973. checksum = "00bf2540203ca3c7a5712fdb8b5897534b7f6a0b6e7b0923ff00466c5f9efcb3"
  2974. dependencies = [
  2975. "borsh",
  2976. "borsh-derive",
  2977. "hex",
  2978. "schemars",
  2979. "serde",
  2980. ]
  2981. [[package]]
  2982. name = "pyth-wormhole-attester-sdk"
  2983. version = "0.1.2"
  2984. dependencies = [
  2985. "hex",
  2986. "pyth-sdk 0.5.0",
  2987. "serde",
  2988. ]
  2989. [[package]]
  2990. name = "quick-error"
  2991. version = "1.2.3"
  2992. source = "registry+https://github.com/rust-lang/crates.io-index"
  2993. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  2994. [[package]]
  2995. name = "quick-protobuf"
  2996. version = "0.8.1"
  2997. source = "registry+https://github.com/rust-lang/crates.io-index"
  2998. checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f"
  2999. dependencies = [
  3000. "byteorder",
  3001. ]
  3002. [[package]]
  3003. name = "quick-protobuf-codec"
  3004. version = "0.1.0"
  3005. source = "registry+https://github.com/rust-lang/crates.io-index"
  3006. checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b"
  3007. dependencies = [
  3008. "asynchronous-codec",
  3009. "bytes",
  3010. "quick-protobuf",
  3011. "thiserror",
  3012. "unsigned-varint",
  3013. ]
  3014. [[package]]
  3015. name = "quicksink"
  3016. version = "0.1.2"
  3017. source = "registry+https://github.com/rust-lang/crates.io-index"
  3018. checksum = "77de3c815e5a160b1539c6592796801df2043ae35e123b46d73380cfa57af858"
  3019. dependencies = [
  3020. "futures-core",
  3021. "futures-sink",
  3022. "pin-project-lite 0.1.12",
  3023. ]
  3024. [[package]]
  3025. name = "quinn-proto"
  3026. version = "0.9.2"
  3027. source = "registry+https://github.com/rust-lang/crates.io-index"
  3028. checksum = "72ef4ced82a24bb281af338b9e8f94429b6eca01b4e66d899f40031f074e74c9"
  3029. dependencies = [
  3030. "bytes",
  3031. "rand 0.8.5",
  3032. "ring",
  3033. "rustc-hash",
  3034. "rustls 0.20.8",
  3035. "slab",
  3036. "thiserror",
  3037. "tinyvec",
  3038. "tracing",
  3039. "webpki 0.22.0",
  3040. ]
  3041. [[package]]
  3042. name = "quote"
  3043. version = "1.0.23"
  3044. source = "registry+https://github.com/rust-lang/crates.io-index"
  3045. checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
  3046. dependencies = [
  3047. "proc-macro2",
  3048. ]
  3049. [[package]]
  3050. name = "rand"
  3051. version = "0.7.3"
  3052. source = "registry+https://github.com/rust-lang/crates.io-index"
  3053. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  3054. dependencies = [
  3055. "getrandom 0.1.16",
  3056. "libc",
  3057. "rand_chacha 0.2.2",
  3058. "rand_core 0.5.1",
  3059. "rand_hc",
  3060. ]
  3061. [[package]]
  3062. name = "rand"
  3063. version = "0.8.5"
  3064. source = "registry+https://github.com/rust-lang/crates.io-index"
  3065. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3066. dependencies = [
  3067. "libc",
  3068. "rand_chacha 0.3.1",
  3069. "rand_core 0.6.4",
  3070. ]
  3071. [[package]]
  3072. name = "rand_chacha"
  3073. version = "0.2.2"
  3074. source = "registry+https://github.com/rust-lang/crates.io-index"
  3075. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  3076. dependencies = [
  3077. "ppv-lite86",
  3078. "rand_core 0.5.1",
  3079. ]
  3080. [[package]]
  3081. name = "rand_chacha"
  3082. version = "0.3.1"
  3083. source = "registry+https://github.com/rust-lang/crates.io-index"
  3084. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3085. dependencies = [
  3086. "ppv-lite86",
  3087. "rand_core 0.6.4",
  3088. ]
  3089. [[package]]
  3090. name = "rand_core"
  3091. version = "0.5.1"
  3092. source = "registry+https://github.com/rust-lang/crates.io-index"
  3093. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  3094. dependencies = [
  3095. "getrandom 0.1.16",
  3096. ]
  3097. [[package]]
  3098. name = "rand_core"
  3099. version = "0.6.4"
  3100. source = "registry+https://github.com/rust-lang/crates.io-index"
  3101. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3102. dependencies = [
  3103. "getrandom 0.2.8",
  3104. ]
  3105. [[package]]
  3106. name = "rand_hc"
  3107. version = "0.2.0"
  3108. source = "registry+https://github.com/rust-lang/crates.io-index"
  3109. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  3110. dependencies = [
  3111. "rand_core 0.5.1",
  3112. ]
  3113. [[package]]
  3114. name = "rcgen"
  3115. version = "0.9.3"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd"
  3118. dependencies = [
  3119. "pem",
  3120. "ring",
  3121. "time",
  3122. "x509-parser 0.13.2",
  3123. "yasna",
  3124. ]
  3125. [[package]]
  3126. name = "rcgen"
  3127. version = "0.10.0"
  3128. source = "registry+https://github.com/rust-lang/crates.io-index"
  3129. checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
  3130. dependencies = [
  3131. "pem",
  3132. "ring",
  3133. "time",
  3134. "yasna",
  3135. ]
  3136. [[package]]
  3137. name = "redox_syscall"
  3138. version = "0.2.16"
  3139. source = "registry+https://github.com/rust-lang/crates.io-index"
  3140. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3141. dependencies = [
  3142. "bitflags",
  3143. ]
  3144. [[package]]
  3145. name = "regex"
  3146. version = "1.7.3"
  3147. source = "registry+https://github.com/rust-lang/crates.io-index"
  3148. checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
  3149. dependencies = [
  3150. "aho-corasick",
  3151. "memchr",
  3152. "regex-syntax",
  3153. ]
  3154. [[package]]
  3155. name = "regex-automata"
  3156. version = "0.1.10"
  3157. source = "registry+https://github.com/rust-lang/crates.io-index"
  3158. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3159. [[package]]
  3160. name = "regex-syntax"
  3161. version = "0.6.29"
  3162. source = "registry+https://github.com/rust-lang/crates.io-index"
  3163. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3164. [[package]]
  3165. name = "remove_dir_all"
  3166. version = "0.5.3"
  3167. source = "registry+https://github.com/rust-lang/crates.io-index"
  3168. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  3169. dependencies = [
  3170. "winapi",
  3171. ]
  3172. [[package]]
  3173. name = "reqwest"
  3174. version = "0.11.14"
  3175. source = "registry+https://github.com/rust-lang/crates.io-index"
  3176. checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
  3177. dependencies = [
  3178. "base64 0.21.0",
  3179. "bytes",
  3180. "encoding_rs",
  3181. "futures-core",
  3182. "futures-util",
  3183. "h2",
  3184. "http",
  3185. "http-body",
  3186. "hyper",
  3187. "hyper-tls",
  3188. "ipnet",
  3189. "js-sys",
  3190. "log",
  3191. "mime",
  3192. "native-tls",
  3193. "once_cell",
  3194. "percent-encoding",
  3195. "pin-project-lite 0.2.9",
  3196. "serde",
  3197. "serde_json",
  3198. "serde_urlencoded",
  3199. "tokio",
  3200. "tokio-native-tls",
  3201. "tower-service",
  3202. "url",
  3203. "wasm-bindgen",
  3204. "wasm-bindgen-futures",
  3205. "web-sys",
  3206. "winreg",
  3207. ]
  3208. [[package]]
  3209. name = "resolv-conf"
  3210. version = "0.7.0"
  3211. source = "registry+https://github.com/rust-lang/crates.io-index"
  3212. checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
  3213. dependencies = [
  3214. "hostname",
  3215. "quick-error",
  3216. ]
  3217. [[package]]
  3218. name = "rfc6979"
  3219. version = "0.3.1"
  3220. source = "registry+https://github.com/rust-lang/crates.io-index"
  3221. checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
  3222. dependencies = [
  3223. "crypto-bigint",
  3224. "hmac 0.12.1",
  3225. "zeroize",
  3226. ]
  3227. [[package]]
  3228. name = "ring"
  3229. version = "0.16.20"
  3230. source = "registry+https://github.com/rust-lang/crates.io-index"
  3231. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3232. dependencies = [
  3233. "cc",
  3234. "libc",
  3235. "once_cell",
  3236. "spin",
  3237. "untrusted",
  3238. "web-sys",
  3239. "winapi",
  3240. ]
  3241. [[package]]
  3242. name = "rtcp"
  3243. version = "0.7.2"
  3244. source = "registry+https://github.com/rust-lang/crates.io-index"
  3245. checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691"
  3246. dependencies = [
  3247. "bytes",
  3248. "thiserror",
  3249. "webrtc-util",
  3250. ]
  3251. [[package]]
  3252. name = "rtnetlink"
  3253. version = "0.10.1"
  3254. source = "registry+https://github.com/rust-lang/crates.io-index"
  3255. checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0"
  3256. dependencies = [
  3257. "futures",
  3258. "log",
  3259. "netlink-packet-route",
  3260. "netlink-proto",
  3261. "nix",
  3262. "thiserror",
  3263. "tokio",
  3264. ]
  3265. [[package]]
  3266. name = "rtp"
  3267. version = "0.6.8"
  3268. source = "registry+https://github.com/rust-lang/crates.io-index"
  3269. checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80"
  3270. dependencies = [
  3271. "async-trait",
  3272. "bytes",
  3273. "rand 0.8.5",
  3274. "serde",
  3275. "thiserror",
  3276. "webrtc-util",
  3277. ]
  3278. [[package]]
  3279. name = "rusqlite"
  3280. version = "0.28.0"
  3281. source = "registry+https://github.com/rust-lang/crates.io-index"
  3282. checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
  3283. dependencies = [
  3284. "bitflags",
  3285. "fallible-iterator",
  3286. "fallible-streaming-iterator",
  3287. "hashlink",
  3288. "libsqlite3-sys",
  3289. "smallvec",
  3290. ]
  3291. [[package]]
  3292. name = "rustc-hash"
  3293. version = "1.1.0"
  3294. source = "registry+https://github.com/rust-lang/crates.io-index"
  3295. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  3296. [[package]]
  3297. name = "rustc_version"
  3298. version = "0.4.0"
  3299. source = "registry+https://github.com/rust-lang/crates.io-index"
  3300. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  3301. dependencies = [
  3302. "semver",
  3303. ]
  3304. [[package]]
  3305. name = "rusticata-macros"
  3306. version = "4.1.0"
  3307. source = "registry+https://github.com/rust-lang/crates.io-index"
  3308. checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
  3309. dependencies = [
  3310. "nom",
  3311. ]
  3312. [[package]]
  3313. name = "rustix"
  3314. version = "0.36.8"
  3315. source = "registry+https://github.com/rust-lang/crates.io-index"
  3316. checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
  3317. dependencies = [
  3318. "bitflags",
  3319. "errno",
  3320. "io-lifetimes",
  3321. "libc",
  3322. "linux-raw-sys",
  3323. "windows-sys 0.45.0",
  3324. ]
  3325. [[package]]
  3326. name = "rustls"
  3327. version = "0.19.1"
  3328. source = "registry+https://github.com/rust-lang/crates.io-index"
  3329. checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
  3330. dependencies = [
  3331. "base64 0.13.1",
  3332. "log",
  3333. "ring",
  3334. "sct 0.6.1",
  3335. "webpki 0.21.4",
  3336. ]
  3337. [[package]]
  3338. name = "rustls"
  3339. version = "0.20.8"
  3340. source = "registry+https://github.com/rust-lang/crates.io-index"
  3341. checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
  3342. dependencies = [
  3343. "log",
  3344. "ring",
  3345. "sct 0.7.0",
  3346. "webpki 0.22.0",
  3347. ]
  3348. [[package]]
  3349. name = "rustversion"
  3350. version = "1.0.11"
  3351. source = "registry+https://github.com/rust-lang/crates.io-index"
  3352. checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
  3353. [[package]]
  3354. name = "rw-stream-sink"
  3355. version = "0.3.0"
  3356. source = "registry+https://github.com/rust-lang/crates.io-index"
  3357. checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04"
  3358. dependencies = [
  3359. "futures",
  3360. "pin-project",
  3361. "static_assertions",
  3362. ]
  3363. [[package]]
  3364. name = "ryu"
  3365. version = "1.0.12"
  3366. source = "registry+https://github.com/rust-lang/crates.io-index"
  3367. checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
  3368. [[package]]
  3369. name = "schannel"
  3370. version = "0.1.21"
  3371. source = "registry+https://github.com/rust-lang/crates.io-index"
  3372. checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
  3373. dependencies = [
  3374. "windows-sys 0.42.0",
  3375. ]
  3376. [[package]]
  3377. name = "schemars"
  3378. version = "0.8.12"
  3379. source = "registry+https://github.com/rust-lang/crates.io-index"
  3380. checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f"
  3381. dependencies = [
  3382. "dyn-clone",
  3383. "schemars_derive",
  3384. "serde",
  3385. "serde_json",
  3386. ]
  3387. [[package]]
  3388. name = "schemars_derive"
  3389. version = "0.8.12"
  3390. source = "registry+https://github.com/rust-lang/crates.io-index"
  3391. checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c"
  3392. dependencies = [
  3393. "proc-macro2",
  3394. "quote",
  3395. "serde_derive_internals",
  3396. "syn",
  3397. ]
  3398. [[package]]
  3399. name = "scopeguard"
  3400. version = "1.1.0"
  3401. source = "registry+https://github.com/rust-lang/crates.io-index"
  3402. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  3403. [[package]]
  3404. name = "sct"
  3405. version = "0.6.1"
  3406. source = "registry+https://github.com/rust-lang/crates.io-index"
  3407. checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
  3408. dependencies = [
  3409. "ring",
  3410. "untrusted",
  3411. ]
  3412. [[package]]
  3413. name = "sct"
  3414. version = "0.7.0"
  3415. source = "registry+https://github.com/rust-lang/crates.io-index"
  3416. checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
  3417. dependencies = [
  3418. "ring",
  3419. "untrusted",
  3420. ]
  3421. [[package]]
  3422. name = "sdp"
  3423. version = "0.5.3"
  3424. source = "registry+https://github.com/rust-lang/crates.io-index"
  3425. checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13"
  3426. dependencies = [
  3427. "rand 0.8.5",
  3428. "substring",
  3429. "thiserror",
  3430. "url",
  3431. ]
  3432. [[package]]
  3433. name = "sec1"
  3434. version = "0.3.0"
  3435. source = "registry+https://github.com/rust-lang/crates.io-index"
  3436. checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
  3437. dependencies = [
  3438. "base16ct",
  3439. "der 0.6.1",
  3440. "generic-array",
  3441. "pkcs8",
  3442. "subtle",
  3443. "zeroize",
  3444. ]
  3445. [[package]]
  3446. name = "secp256k1"
  3447. version = "0.26.0"
  3448. source = "registry+https://github.com/rust-lang/crates.io-index"
  3449. checksum = "4124a35fe33ae14259c490fd70fa199a32b9ce9502f2ee6bc4f81ec06fa65894"
  3450. dependencies = [
  3451. "rand 0.8.5",
  3452. "secp256k1-sys",
  3453. "serde",
  3454. ]
  3455. [[package]]
  3456. name = "secp256k1-sys"
  3457. version = "0.8.0"
  3458. source = "registry+https://github.com/rust-lang/crates.io-index"
  3459. checksum = "642a62736682fdd8c71da0eb273e453c8ac74e33b9fb310e22ba5b03ec7651ff"
  3460. dependencies = [
  3461. "cc",
  3462. ]
  3463. [[package]]
  3464. name = "security-framework"
  3465. version = "2.8.2"
  3466. source = "registry+https://github.com/rust-lang/crates.io-index"
  3467. checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
  3468. dependencies = [
  3469. "bitflags",
  3470. "core-foundation",
  3471. "core-foundation-sys",
  3472. "libc",
  3473. "security-framework-sys",
  3474. ]
  3475. [[package]]
  3476. name = "security-framework-sys"
  3477. version = "2.8.0"
  3478. source = "registry+https://github.com/rust-lang/crates.io-index"
  3479. checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
  3480. dependencies = [
  3481. "core-foundation-sys",
  3482. "libc",
  3483. ]
  3484. [[package]]
  3485. name = "semver"
  3486. version = "1.0.16"
  3487. source = "registry+https://github.com/rust-lang/crates.io-index"
  3488. checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
  3489. [[package]]
  3490. name = "serde"
  3491. version = "1.0.152"
  3492. source = "registry+https://github.com/rust-lang/crates.io-index"
  3493. checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
  3494. dependencies = [
  3495. "serde_derive",
  3496. ]
  3497. [[package]]
  3498. name = "serde_arrays"
  3499. version = "0.1.0"
  3500. source = "registry+https://github.com/rust-lang/crates.io-index"
  3501. checksum = "38636132857f68ec3d5f3eb121166d2af33cb55174c4d5ff645db6165cbef0fd"
  3502. dependencies = [
  3503. "serde",
  3504. ]
  3505. [[package]]
  3506. name = "serde_cbor"
  3507. version = "0.11.2"
  3508. source = "registry+https://github.com/rust-lang/crates.io-index"
  3509. checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
  3510. dependencies = [
  3511. "half",
  3512. "serde",
  3513. ]
  3514. [[package]]
  3515. name = "serde_derive"
  3516. version = "1.0.152"
  3517. source = "registry+https://github.com/rust-lang/crates.io-index"
  3518. checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
  3519. dependencies = [
  3520. "proc-macro2",
  3521. "quote",
  3522. "syn",
  3523. ]
  3524. [[package]]
  3525. name = "serde_derive_internals"
  3526. version = "0.26.0"
  3527. source = "registry+https://github.com/rust-lang/crates.io-index"
  3528. checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
  3529. dependencies = [
  3530. "proc-macro2",
  3531. "quote",
  3532. "syn",
  3533. ]
  3534. [[package]]
  3535. name = "serde_html_form"
  3536. version = "0.2.0"
  3537. source = "registry+https://github.com/rust-lang/crates.io-index"
  3538. checksum = "53192e38d5c88564b924dbe9b60865ecbb71b81d38c4e61c817cffd3e36ef696"
  3539. dependencies = [
  3540. "form_urlencoded",
  3541. "indexmap",
  3542. "itoa",
  3543. "ryu",
  3544. "serde",
  3545. ]
  3546. [[package]]
  3547. name = "serde_json"
  3548. version = "1.0.93"
  3549. source = "registry+https://github.com/rust-lang/crates.io-index"
  3550. checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
  3551. dependencies = [
  3552. "itoa",
  3553. "ryu",
  3554. "serde",
  3555. ]
  3556. [[package]]
  3557. name = "serde_path_to_error"
  3558. version = "0.1.9"
  3559. source = "registry+https://github.com/rust-lang/crates.io-index"
  3560. checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341"
  3561. dependencies = [
  3562. "serde",
  3563. ]
  3564. [[package]]
  3565. name = "serde_urlencoded"
  3566. version = "0.7.1"
  3567. source = "registry+https://github.com/rust-lang/crates.io-index"
  3568. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3569. dependencies = [
  3570. "form_urlencoded",
  3571. "itoa",
  3572. "ryu",
  3573. "serde",
  3574. ]
  3575. [[package]]
  3576. name = "sha-1"
  3577. version = "0.9.8"
  3578. source = "registry+https://github.com/rust-lang/crates.io-index"
  3579. checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
  3580. dependencies = [
  3581. "block-buffer 0.9.0",
  3582. "cfg-if",
  3583. "cpufeatures",
  3584. "digest 0.9.0",
  3585. "opaque-debug",
  3586. ]
  3587. [[package]]
  3588. name = "sha1"
  3589. version = "0.10.5"
  3590. source = "registry+https://github.com/rust-lang/crates.io-index"
  3591. checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
  3592. dependencies = [
  3593. "cfg-if",
  3594. "cpufeatures",
  3595. "digest 0.10.6",
  3596. ]
  3597. [[package]]
  3598. name = "sha2"
  3599. version = "0.9.9"
  3600. source = "registry+https://github.com/rust-lang/crates.io-index"
  3601. checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
  3602. dependencies = [
  3603. "block-buffer 0.9.0",
  3604. "cfg-if",
  3605. "cpufeatures",
  3606. "digest 0.9.0",
  3607. "opaque-debug",
  3608. ]
  3609. [[package]]
  3610. name = "sha2"
  3611. version = "0.10.6"
  3612. source = "registry+https://github.com/rust-lang/crates.io-index"
  3613. checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
  3614. dependencies = [
  3615. "cfg-if",
  3616. "cpufeatures",
  3617. "digest 0.10.6",
  3618. ]
  3619. [[package]]
  3620. name = "sha256"
  3621. version = "1.1.2"
  3622. source = "registry+https://github.com/rust-lang/crates.io-index"
  3623. checksum = "328169f167261957e83d82be47f9e36629e257c62308129033d7f7e7c173d180"
  3624. dependencies = [
  3625. "hex",
  3626. "sha2 0.9.9",
  3627. ]
  3628. [[package]]
  3629. name = "sha3"
  3630. version = "0.10.6"
  3631. source = "registry+https://github.com/rust-lang/crates.io-index"
  3632. checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9"
  3633. dependencies = [
  3634. "digest 0.10.6",
  3635. "keccak",
  3636. ]
  3637. [[package]]
  3638. name = "signal-hook-registry"
  3639. version = "1.4.1"
  3640. source = "registry+https://github.com/rust-lang/crates.io-index"
  3641. checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
  3642. dependencies = [
  3643. "libc",
  3644. ]
  3645. [[package]]
  3646. name = "signature"
  3647. version = "1.6.4"
  3648. source = "registry+https://github.com/rust-lang/crates.io-index"
  3649. checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
  3650. dependencies = [
  3651. "digest 0.10.6",
  3652. "rand_core 0.6.4",
  3653. ]
  3654. [[package]]
  3655. name = "slab"
  3656. version = "0.4.7"
  3657. source = "registry+https://github.com/rust-lang/crates.io-index"
  3658. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  3659. dependencies = [
  3660. "autocfg",
  3661. ]
  3662. [[package]]
  3663. name = "smallvec"
  3664. version = "1.10.0"
  3665. source = "registry+https://github.com/rust-lang/crates.io-index"
  3666. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  3667. [[package]]
  3668. name = "snow"
  3669. version = "0.9.1"
  3670. source = "registry+https://github.com/rust-lang/crates.io-index"
  3671. checksum = "12ba5f4d4ff12bdb6a169ed51b7c48c0e0ac4b0b4b31012b2571e97d78d3201d"
  3672. dependencies = [
  3673. "aes-gcm 0.9.4",
  3674. "blake2",
  3675. "chacha20poly1305",
  3676. "curve25519-dalek 4.0.0-rc.0",
  3677. "rand_core 0.6.4",
  3678. "ring",
  3679. "rustc_version",
  3680. "sha2 0.10.6",
  3681. "subtle",
  3682. ]
  3683. [[package]]
  3684. name = "socket2"
  3685. version = "0.4.7"
  3686. source = "registry+https://github.com/rust-lang/crates.io-index"
  3687. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  3688. dependencies = [
  3689. "libc",
  3690. "winapi",
  3691. ]
  3692. [[package]]
  3693. name = "soketto"
  3694. version = "0.7.1"
  3695. source = "registry+https://github.com/rust-lang/crates.io-index"
  3696. checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2"
  3697. dependencies = [
  3698. "base64 0.13.1",
  3699. "bytes",
  3700. "flate2",
  3701. "futures",
  3702. "httparse",
  3703. "log",
  3704. "rand 0.8.5",
  3705. "sha-1",
  3706. ]
  3707. [[package]]
  3708. name = "spin"
  3709. version = "0.5.2"
  3710. source = "registry+https://github.com/rust-lang/crates.io-index"
  3711. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3712. [[package]]
  3713. name = "spki"
  3714. version = "0.6.0"
  3715. source = "registry+https://github.com/rust-lang/crates.io-index"
  3716. checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
  3717. dependencies = [
  3718. "base64ct",
  3719. "der 0.6.1",
  3720. ]
  3721. [[package]]
  3722. name = "static_assertions"
  3723. version = "1.1.0"
  3724. source = "registry+https://github.com/rust-lang/crates.io-index"
  3725. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  3726. [[package]]
  3727. name = "strsim"
  3728. version = "0.8.0"
  3729. source = "registry+https://github.com/rust-lang/crates.io-index"
  3730. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  3731. [[package]]
  3732. name = "strsim"
  3733. version = "0.10.0"
  3734. source = "registry+https://github.com/rust-lang/crates.io-index"
  3735. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  3736. [[package]]
  3737. name = "structopt"
  3738. version = "0.3.26"
  3739. source = "registry+https://github.com/rust-lang/crates.io-index"
  3740. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  3741. dependencies = [
  3742. "clap",
  3743. "lazy_static",
  3744. "structopt-derive",
  3745. ]
  3746. [[package]]
  3747. name = "structopt-derive"
  3748. version = "0.4.18"
  3749. source = "registry+https://github.com/rust-lang/crates.io-index"
  3750. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  3751. dependencies = [
  3752. "heck 0.3.3",
  3753. "proc-macro-error",
  3754. "proc-macro2",
  3755. "quote",
  3756. "syn",
  3757. ]
  3758. [[package]]
  3759. name = "stun"
  3760. version = "0.4.4"
  3761. source = "registry+https://github.com/rust-lang/crates.io-index"
  3762. checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25"
  3763. dependencies = [
  3764. "base64 0.13.1",
  3765. "crc",
  3766. "lazy_static",
  3767. "md-5",
  3768. "rand 0.8.5",
  3769. "ring",
  3770. "subtle",
  3771. "thiserror",
  3772. "tokio",
  3773. "url",
  3774. "webrtc-util",
  3775. ]
  3776. [[package]]
  3777. name = "substring"
  3778. version = "1.4.5"
  3779. source = "registry+https://github.com/rust-lang/crates.io-index"
  3780. checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86"
  3781. dependencies = [
  3782. "autocfg",
  3783. ]
  3784. [[package]]
  3785. name = "subtle"
  3786. version = "2.4.1"
  3787. source = "registry+https://github.com/rust-lang/crates.io-index"
  3788. checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
  3789. [[package]]
  3790. name = "syn"
  3791. version = "1.0.107"
  3792. source = "registry+https://github.com/rust-lang/crates.io-index"
  3793. checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
  3794. dependencies = [
  3795. "proc-macro2",
  3796. "quote",
  3797. "unicode-ident",
  3798. ]
  3799. [[package]]
  3800. name = "sync_wrapper"
  3801. version = "0.1.2"
  3802. source = "registry+https://github.com/rust-lang/crates.io-index"
  3803. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  3804. [[package]]
  3805. name = "synstructure"
  3806. version = "0.12.6"
  3807. source = "registry+https://github.com/rust-lang/crates.io-index"
  3808. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  3809. dependencies = [
  3810. "proc-macro2",
  3811. "quote",
  3812. "syn",
  3813. "unicode-xid",
  3814. ]
  3815. [[package]]
  3816. name = "system-configuration"
  3817. version = "0.5.0"
  3818. source = "registry+https://github.com/rust-lang/crates.io-index"
  3819. checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd"
  3820. dependencies = [
  3821. "bitflags",
  3822. "core-foundation",
  3823. "system-configuration-sys",
  3824. ]
  3825. [[package]]
  3826. name = "system-configuration-sys"
  3827. version = "0.5.0"
  3828. source = "registry+https://github.com/rust-lang/crates.io-index"
  3829. checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
  3830. dependencies = [
  3831. "core-foundation-sys",
  3832. "libc",
  3833. ]
  3834. [[package]]
  3835. name = "tempfile"
  3836. version = "3.3.0"
  3837. source = "registry+https://github.com/rust-lang/crates.io-index"
  3838. checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
  3839. dependencies = [
  3840. "cfg-if",
  3841. "fastrand",
  3842. "libc",
  3843. "redox_syscall",
  3844. "remove_dir_all",
  3845. "winapi",
  3846. ]
  3847. [[package]]
  3848. name = "termcolor"
  3849. version = "1.2.0"
  3850. source = "registry+https://github.com/rust-lang/crates.io-index"
  3851. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  3852. dependencies = [
  3853. "winapi-util",
  3854. ]
  3855. [[package]]
  3856. name = "textwrap"
  3857. version = "0.11.0"
  3858. source = "registry+https://github.com/rust-lang/crates.io-index"
  3859. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  3860. dependencies = [
  3861. "unicode-width",
  3862. ]
  3863. [[package]]
  3864. name = "thiserror"
  3865. version = "1.0.39"
  3866. source = "registry+https://github.com/rust-lang/crates.io-index"
  3867. checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
  3868. dependencies = [
  3869. "thiserror-impl",
  3870. ]
  3871. [[package]]
  3872. name = "thiserror-impl"
  3873. version = "1.0.39"
  3874. source = "registry+https://github.com/rust-lang/crates.io-index"
  3875. checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
  3876. dependencies = [
  3877. "proc-macro2",
  3878. "quote",
  3879. "syn",
  3880. ]
  3881. [[package]]
  3882. name = "time"
  3883. version = "0.3.20"
  3884. source = "registry+https://github.com/rust-lang/crates.io-index"
  3885. checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
  3886. dependencies = [
  3887. "itoa",
  3888. "serde",
  3889. "time-core",
  3890. "time-macros",
  3891. ]
  3892. [[package]]
  3893. name = "time-core"
  3894. version = "0.1.0"
  3895. source = "registry+https://github.com/rust-lang/crates.io-index"
  3896. checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
  3897. [[package]]
  3898. name = "time-macros"
  3899. version = "0.2.8"
  3900. source = "registry+https://github.com/rust-lang/crates.io-index"
  3901. checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
  3902. dependencies = [
  3903. "time-core",
  3904. ]
  3905. [[package]]
  3906. name = "tinytemplate"
  3907. version = "1.2.1"
  3908. source = "registry+https://github.com/rust-lang/crates.io-index"
  3909. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  3910. dependencies = [
  3911. "serde",
  3912. "serde_json",
  3913. ]
  3914. [[package]]
  3915. name = "tinyvec"
  3916. version = "1.6.0"
  3917. source = "registry+https://github.com/rust-lang/crates.io-index"
  3918. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  3919. dependencies = [
  3920. "tinyvec_macros",
  3921. ]
  3922. [[package]]
  3923. name = "tinyvec_macros"
  3924. version = "0.1.1"
  3925. source = "registry+https://github.com/rust-lang/crates.io-index"
  3926. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  3927. [[package]]
  3928. name = "tokio"
  3929. version = "1.26.0"
  3930. source = "registry+https://github.com/rust-lang/crates.io-index"
  3931. checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
  3932. dependencies = [
  3933. "autocfg",
  3934. "bytes",
  3935. "libc",
  3936. "memchr",
  3937. "mio",
  3938. "num_cpus",
  3939. "parking_lot 0.12.1",
  3940. "pin-project-lite 0.2.9",
  3941. "signal-hook-registry",
  3942. "socket2",
  3943. "tokio-macros",
  3944. "windows-sys 0.45.0",
  3945. ]
  3946. [[package]]
  3947. name = "tokio-macros"
  3948. version = "1.8.2"
  3949. source = "registry+https://github.com/rust-lang/crates.io-index"
  3950. checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
  3951. dependencies = [
  3952. "proc-macro2",
  3953. "quote",
  3954. "syn",
  3955. ]
  3956. [[package]]
  3957. name = "tokio-native-tls"
  3958. version = "0.3.1"
  3959. source = "registry+https://github.com/rust-lang/crates.io-index"
  3960. checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
  3961. dependencies = [
  3962. "native-tls",
  3963. "tokio",
  3964. ]
  3965. [[package]]
  3966. name = "tokio-tungstenite"
  3967. version = "0.18.0"
  3968. source = "registry+https://github.com/rust-lang/crates.io-index"
  3969. checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
  3970. dependencies = [
  3971. "futures-util",
  3972. "log",
  3973. "tokio",
  3974. "tungstenite",
  3975. ]
  3976. [[package]]
  3977. name = "tokio-util"
  3978. version = "0.7.6"
  3979. source = "registry+https://github.com/rust-lang/crates.io-index"
  3980. checksum = "bc6a3b08b64e6dfad376fa2432c7b1f01522e37a623c3050bc95db2d3ff21583"
  3981. dependencies = [
  3982. "bytes",
  3983. "futures-core",
  3984. "futures-io",
  3985. "futures-sink",
  3986. "pin-project-lite 0.2.9",
  3987. "tokio",
  3988. "tracing",
  3989. ]
  3990. [[package]]
  3991. name = "toml"
  3992. version = "0.5.11"
  3993. source = "registry+https://github.com/rust-lang/crates.io-index"
  3994. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  3995. dependencies = [
  3996. "serde",
  3997. ]
  3998. [[package]]
  3999. name = "tower"
  4000. version = "0.4.13"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4003. dependencies = [
  4004. "futures-core",
  4005. "futures-util",
  4006. "pin-project",
  4007. "pin-project-lite 0.2.9",
  4008. "tokio",
  4009. "tower-layer",
  4010. "tower-service",
  4011. "tracing",
  4012. ]
  4013. [[package]]
  4014. name = "tower-http"
  4015. version = "0.4.0"
  4016. source = "registry+https://github.com/rust-lang/crates.io-index"
  4017. checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658"
  4018. dependencies = [
  4019. "bitflags",
  4020. "bytes",
  4021. "futures-core",
  4022. "futures-util",
  4023. "http",
  4024. "http-body",
  4025. "http-range-header",
  4026. "pin-project-lite 0.2.9",
  4027. "tower",
  4028. "tower-layer",
  4029. "tower-service",
  4030. ]
  4031. [[package]]
  4032. name = "tower-layer"
  4033. version = "0.3.2"
  4034. source = "registry+https://github.com/rust-lang/crates.io-index"
  4035. checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
  4036. [[package]]
  4037. name = "tower-service"
  4038. version = "0.3.2"
  4039. source = "registry+https://github.com/rust-lang/crates.io-index"
  4040. checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
  4041. [[package]]
  4042. name = "tracing"
  4043. version = "0.1.37"
  4044. source = "registry+https://github.com/rust-lang/crates.io-index"
  4045. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  4046. dependencies = [
  4047. "cfg-if",
  4048. "log",
  4049. "pin-project-lite 0.2.9",
  4050. "tracing-attributes",
  4051. "tracing-core",
  4052. ]
  4053. [[package]]
  4054. name = "tracing-attributes"
  4055. version = "0.1.23"
  4056. source = "registry+https://github.com/rust-lang/crates.io-index"
  4057. checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
  4058. dependencies = [
  4059. "proc-macro2",
  4060. "quote",
  4061. "syn",
  4062. ]
  4063. [[package]]
  4064. name = "tracing-core"
  4065. version = "0.1.30"
  4066. source = "registry+https://github.com/rust-lang/crates.io-index"
  4067. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  4068. dependencies = [
  4069. "once_cell",
  4070. ]
  4071. [[package]]
  4072. name = "trust-dns-proto"
  4073. version = "0.22.0"
  4074. source = "registry+https://github.com/rust-lang/crates.io-index"
  4075. checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26"
  4076. dependencies = [
  4077. "async-trait",
  4078. "cfg-if",
  4079. "data-encoding",
  4080. "enum-as-inner",
  4081. "futures-channel",
  4082. "futures-io",
  4083. "futures-util",
  4084. "idna 0.2.3",
  4085. "ipnet",
  4086. "lazy_static",
  4087. "rand 0.8.5",
  4088. "smallvec",
  4089. "socket2",
  4090. "thiserror",
  4091. "tinyvec",
  4092. "tokio",
  4093. "tracing",
  4094. "url",
  4095. ]
  4096. [[package]]
  4097. name = "trust-dns-resolver"
  4098. version = "0.22.0"
  4099. source = "registry+https://github.com/rust-lang/crates.io-index"
  4100. checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe"
  4101. dependencies = [
  4102. "cfg-if",
  4103. "futures-util",
  4104. "ipconfig",
  4105. "lazy_static",
  4106. "lru-cache",
  4107. "parking_lot 0.12.1",
  4108. "resolv-conf",
  4109. "smallvec",
  4110. "thiserror",
  4111. "tokio",
  4112. "tracing",
  4113. "trust-dns-proto",
  4114. ]
  4115. [[package]]
  4116. name = "try-lock"
  4117. version = "0.2.4"
  4118. source = "registry+https://github.com/rust-lang/crates.io-index"
  4119. checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
  4120. [[package]]
  4121. name = "tungstenite"
  4122. version = "0.18.0"
  4123. source = "registry+https://github.com/rust-lang/crates.io-index"
  4124. checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
  4125. dependencies = [
  4126. "base64 0.13.1",
  4127. "byteorder",
  4128. "bytes",
  4129. "http",
  4130. "httparse",
  4131. "log",
  4132. "rand 0.8.5",
  4133. "sha1",
  4134. "thiserror",
  4135. "url",
  4136. "utf-8",
  4137. ]
  4138. [[package]]
  4139. name = "turn"
  4140. version = "0.6.1"
  4141. source = "registry+https://github.com/rust-lang/crates.io-index"
  4142. checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8"
  4143. dependencies = [
  4144. "async-trait",
  4145. "base64 0.13.1",
  4146. "futures",
  4147. "log",
  4148. "md-5",
  4149. "rand 0.8.5",
  4150. "ring",
  4151. "stun",
  4152. "thiserror",
  4153. "tokio",
  4154. "webrtc-util",
  4155. ]
  4156. [[package]]
  4157. name = "typenum"
  4158. version = "1.16.0"
  4159. source = "registry+https://github.com/rust-lang/crates.io-index"
  4160. checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
  4161. [[package]]
  4162. name = "typescript-type-def"
  4163. version = "0.5.5"
  4164. source = "registry+https://github.com/rust-lang/crates.io-index"
  4165. checksum = "947b91d2fe9ec02a6749b8b645541f16f527e2ea88a60b3f774eca26fd657325"
  4166. dependencies = [
  4167. "typescript-type-def-derive",
  4168. ]
  4169. [[package]]
  4170. name = "typescript-type-def-derive"
  4171. version = "0.5.5"
  4172. source = "registry+https://github.com/rust-lang/crates.io-index"
  4173. checksum = "e5c1bfe689e4067733530495b04959b00f05cd95f038bed59af4fc70b3e26240"
  4174. dependencies = [
  4175. "darling 0.13.4",
  4176. "ident_case",
  4177. "proc-macro-error",
  4178. "proc-macro2",
  4179. "quote",
  4180. "syn",
  4181. ]
  4182. [[package]]
  4183. name = "uint"
  4184. version = "0.9.5"
  4185. source = "registry+https://github.com/rust-lang/crates.io-index"
  4186. checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
  4187. dependencies = [
  4188. "byteorder",
  4189. "crunchy",
  4190. "hex",
  4191. "static_assertions",
  4192. ]
  4193. [[package]]
  4194. name = "unicode-bidi"
  4195. version = "0.3.10"
  4196. source = "registry+https://github.com/rust-lang/crates.io-index"
  4197. checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
  4198. [[package]]
  4199. name = "unicode-ident"
  4200. version = "1.0.6"
  4201. source = "registry+https://github.com/rust-lang/crates.io-index"
  4202. checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
  4203. [[package]]
  4204. name = "unicode-normalization"
  4205. version = "0.1.22"
  4206. source = "registry+https://github.com/rust-lang/crates.io-index"
  4207. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4208. dependencies = [
  4209. "tinyvec",
  4210. ]
  4211. [[package]]
  4212. name = "unicode-segmentation"
  4213. version = "1.10.1"
  4214. source = "registry+https://github.com/rust-lang/crates.io-index"
  4215. checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
  4216. [[package]]
  4217. name = "unicode-width"
  4218. version = "0.1.10"
  4219. source = "registry+https://github.com/rust-lang/crates.io-index"
  4220. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  4221. [[package]]
  4222. name = "unicode-xid"
  4223. version = "0.2.4"
  4224. source = "registry+https://github.com/rust-lang/crates.io-index"
  4225. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  4226. [[package]]
  4227. name = "universal-hash"
  4228. version = "0.4.1"
  4229. source = "registry+https://github.com/rust-lang/crates.io-index"
  4230. checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
  4231. dependencies = [
  4232. "generic-array",
  4233. "subtle",
  4234. ]
  4235. [[package]]
  4236. name = "universal-hash"
  4237. version = "0.5.0"
  4238. source = "registry+https://github.com/rust-lang/crates.io-index"
  4239. checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
  4240. dependencies = [
  4241. "crypto-common",
  4242. "subtle",
  4243. ]
  4244. [[package]]
  4245. name = "unsigned-varint"
  4246. version = "0.7.1"
  4247. source = "registry+https://github.com/rust-lang/crates.io-index"
  4248. checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836"
  4249. dependencies = [
  4250. "asynchronous-codec",
  4251. "bytes",
  4252. ]
  4253. [[package]]
  4254. name = "untrusted"
  4255. version = "0.7.1"
  4256. source = "registry+https://github.com/rust-lang/crates.io-index"
  4257. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4258. [[package]]
  4259. name = "url"
  4260. version = "2.3.1"
  4261. source = "registry+https://github.com/rust-lang/crates.io-index"
  4262. checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
  4263. dependencies = [
  4264. "form_urlencoded",
  4265. "idna 0.3.0",
  4266. "percent-encoding",
  4267. ]
  4268. [[package]]
  4269. name = "utf-8"
  4270. version = "0.7.6"
  4271. source = "registry+https://github.com/rust-lang/crates.io-index"
  4272. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4273. [[package]]
  4274. name = "uuid"
  4275. version = "1.3.0"
  4276. source = "registry+https://github.com/rust-lang/crates.io-index"
  4277. checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
  4278. dependencies = [
  4279. "getrandom 0.2.8",
  4280. ]
  4281. [[package]]
  4282. name = "vcpkg"
  4283. version = "0.2.15"
  4284. source = "registry+https://github.com/rust-lang/crates.io-index"
  4285. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4286. [[package]]
  4287. name = "vec_map"
  4288. version = "0.8.2"
  4289. source = "registry+https://github.com/rust-lang/crates.io-index"
  4290. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  4291. [[package]]
  4292. name = "version_check"
  4293. version = "0.9.4"
  4294. source = "registry+https://github.com/rust-lang/crates.io-index"
  4295. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  4296. [[package]]
  4297. name = "void"
  4298. version = "1.0.2"
  4299. source = "registry+https://github.com/rust-lang/crates.io-index"
  4300. checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
  4301. [[package]]
  4302. name = "waitgroup"
  4303. version = "0.1.2"
  4304. source = "registry+https://github.com/rust-lang/crates.io-index"
  4305. checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292"
  4306. dependencies = [
  4307. "atomic-waker",
  4308. ]
  4309. [[package]]
  4310. name = "waker-fn"
  4311. version = "1.1.0"
  4312. source = "registry+https://github.com/rust-lang/crates.io-index"
  4313. checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
  4314. [[package]]
  4315. name = "want"
  4316. version = "0.3.0"
  4317. source = "registry+https://github.com/rust-lang/crates.io-index"
  4318. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  4319. dependencies = [
  4320. "log",
  4321. "try-lock",
  4322. ]
  4323. [[package]]
  4324. name = "wasi"
  4325. version = "0.9.0+wasi-snapshot-preview1"
  4326. source = "registry+https://github.com/rust-lang/crates.io-index"
  4327. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  4328. [[package]]
  4329. name = "wasi"
  4330. version = "0.11.0+wasi-snapshot-preview1"
  4331. source = "registry+https://github.com/rust-lang/crates.io-index"
  4332. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4333. [[package]]
  4334. name = "wasm-bindgen"
  4335. version = "0.2.84"
  4336. source = "registry+https://github.com/rust-lang/crates.io-index"
  4337. checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
  4338. dependencies = [
  4339. "cfg-if",
  4340. "wasm-bindgen-macro",
  4341. ]
  4342. [[package]]
  4343. name = "wasm-bindgen-backend"
  4344. version = "0.2.84"
  4345. source = "registry+https://github.com/rust-lang/crates.io-index"
  4346. checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
  4347. dependencies = [
  4348. "bumpalo",
  4349. "log",
  4350. "once_cell",
  4351. "proc-macro2",
  4352. "quote",
  4353. "syn",
  4354. "wasm-bindgen-shared",
  4355. ]
  4356. [[package]]
  4357. name = "wasm-bindgen-futures"
  4358. version = "0.4.34"
  4359. source = "registry+https://github.com/rust-lang/crates.io-index"
  4360. checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
  4361. dependencies = [
  4362. "cfg-if",
  4363. "js-sys",
  4364. "wasm-bindgen",
  4365. "web-sys",
  4366. ]
  4367. [[package]]
  4368. name = "wasm-bindgen-macro"
  4369. version = "0.2.84"
  4370. source = "registry+https://github.com/rust-lang/crates.io-index"
  4371. checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
  4372. dependencies = [
  4373. "quote",
  4374. "wasm-bindgen-macro-support",
  4375. ]
  4376. [[package]]
  4377. name = "wasm-bindgen-macro-support"
  4378. version = "0.2.84"
  4379. source = "registry+https://github.com/rust-lang/crates.io-index"
  4380. checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
  4381. dependencies = [
  4382. "proc-macro2",
  4383. "quote",
  4384. "syn",
  4385. "wasm-bindgen-backend",
  4386. "wasm-bindgen-shared",
  4387. ]
  4388. [[package]]
  4389. name = "wasm-bindgen-shared"
  4390. version = "0.2.84"
  4391. source = "registry+https://github.com/rust-lang/crates.io-index"
  4392. checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
  4393. [[package]]
  4394. name = "wasm-timer"
  4395. version = "0.2.5"
  4396. source = "registry+https://github.com/rust-lang/crates.io-index"
  4397. checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
  4398. dependencies = [
  4399. "futures",
  4400. "js-sys",
  4401. "parking_lot 0.11.2",
  4402. "pin-utils",
  4403. "wasm-bindgen",
  4404. "wasm-bindgen-futures",
  4405. "web-sys",
  4406. ]
  4407. [[package]]
  4408. name = "web-sys"
  4409. version = "0.3.61"
  4410. source = "registry+https://github.com/rust-lang/crates.io-index"
  4411. checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
  4412. dependencies = [
  4413. "js-sys",
  4414. "wasm-bindgen",
  4415. ]
  4416. [[package]]
  4417. name = "webpki"
  4418. version = "0.21.4"
  4419. source = "registry+https://github.com/rust-lang/crates.io-index"
  4420. checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
  4421. dependencies = [
  4422. "ring",
  4423. "untrusted",
  4424. ]
  4425. [[package]]
  4426. name = "webpki"
  4427. version = "0.22.0"
  4428. source = "registry+https://github.com/rust-lang/crates.io-index"
  4429. checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
  4430. dependencies = [
  4431. "ring",
  4432. "untrusted",
  4433. ]
  4434. [[package]]
  4435. name = "webpki-roots"
  4436. version = "0.22.6"
  4437. source = "registry+https://github.com/rust-lang/crates.io-index"
  4438. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4439. dependencies = [
  4440. "webpki 0.22.0",
  4441. ]
  4442. [[package]]
  4443. name = "webrtc"
  4444. version = "0.6.0"
  4445. source = "registry+https://github.com/rust-lang/crates.io-index"
  4446. checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb"
  4447. dependencies = [
  4448. "arc-swap",
  4449. "async-trait",
  4450. "bytes",
  4451. "hex",
  4452. "interceptor",
  4453. "lazy_static",
  4454. "log",
  4455. "rand 0.8.5",
  4456. "rcgen 0.9.3",
  4457. "regex",
  4458. "ring",
  4459. "rtcp",
  4460. "rtp",
  4461. "rustls 0.19.1",
  4462. "sdp",
  4463. "serde",
  4464. "serde_json",
  4465. "sha2 0.10.6",
  4466. "stun",
  4467. "thiserror",
  4468. "time",
  4469. "tokio",
  4470. "turn",
  4471. "url",
  4472. "waitgroup",
  4473. "webrtc-data",
  4474. "webrtc-dtls",
  4475. "webrtc-ice",
  4476. "webrtc-mdns",
  4477. "webrtc-media",
  4478. "webrtc-sctp",
  4479. "webrtc-srtp",
  4480. "webrtc-util",
  4481. ]
  4482. [[package]]
  4483. name = "webrtc-data"
  4484. version = "0.6.0"
  4485. source = "registry+https://github.com/rust-lang/crates.io-index"
  4486. checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100"
  4487. dependencies = [
  4488. "bytes",
  4489. "derive_builder",
  4490. "log",
  4491. "thiserror",
  4492. "tokio",
  4493. "webrtc-sctp",
  4494. "webrtc-util",
  4495. ]
  4496. [[package]]
  4497. name = "webrtc-dtls"
  4498. version = "0.7.1"
  4499. source = "registry+https://github.com/rust-lang/crates.io-index"
  4500. checksum = "942be5bd85f072c3128396f6e5a9bfb93ca8c1939ded735d177b7bcba9a13d05"
  4501. dependencies = [
  4502. "aes 0.6.0",
  4503. "aes-gcm 0.10.1",
  4504. "async-trait",
  4505. "bincode",
  4506. "block-modes",
  4507. "byteorder",
  4508. "ccm",
  4509. "curve25519-dalek 3.2.0",
  4510. "der-parser 8.1.0",
  4511. "elliptic-curve",
  4512. "hkdf",
  4513. "hmac 0.12.1",
  4514. "log",
  4515. "oid-registry 0.6.1",
  4516. "p256",
  4517. "p384",
  4518. "rand 0.8.5",
  4519. "rand_core 0.6.4",
  4520. "rcgen 0.9.3",
  4521. "ring",
  4522. "rustls 0.19.1",
  4523. "sec1",
  4524. "serde",
  4525. "sha1",
  4526. "sha2 0.10.6",
  4527. "signature",
  4528. "subtle",
  4529. "thiserror",
  4530. "tokio",
  4531. "webpki 0.21.4",
  4532. "webrtc-util",
  4533. "x25519-dalek 2.0.0-pre.1",
  4534. "x509-parser 0.13.2",
  4535. ]
  4536. [[package]]
  4537. name = "webrtc-ice"
  4538. version = "0.9.1"
  4539. source = "registry+https://github.com/rust-lang/crates.io-index"
  4540. checksum = "465a03cc11e9a7d7b4f9f99870558fe37a102b65b93f8045392fef7c67b39e80"
  4541. dependencies = [
  4542. "arc-swap",
  4543. "async-trait",
  4544. "crc",
  4545. "log",
  4546. "rand 0.8.5",
  4547. "serde",
  4548. "serde_json",
  4549. "stun",
  4550. "thiserror",
  4551. "tokio",
  4552. "turn",
  4553. "url",
  4554. "uuid",
  4555. "waitgroup",
  4556. "webrtc-mdns",
  4557. "webrtc-util",
  4558. ]
  4559. [[package]]
  4560. name = "webrtc-mdns"
  4561. version = "0.5.2"
  4562. source = "registry+https://github.com/rust-lang/crates.io-index"
  4563. checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106"
  4564. dependencies = [
  4565. "log",
  4566. "socket2",
  4567. "thiserror",
  4568. "tokio",
  4569. "webrtc-util",
  4570. ]
  4571. [[package]]
  4572. name = "webrtc-media"
  4573. version = "0.5.0"
  4574. source = "registry+https://github.com/rust-lang/crates.io-index"
  4575. checksum = "ee2a3c157a040324e5049bcbd644ffc9079e6738fa2cfab2bcff64e5cc4c00d7"
  4576. dependencies = [
  4577. "byteorder",
  4578. "bytes",
  4579. "derive_builder",
  4580. "displaydoc",
  4581. "rand 0.8.5",
  4582. "rtp",
  4583. "thiserror",
  4584. "webrtc-util",
  4585. ]
  4586. [[package]]
  4587. name = "webrtc-sctp"
  4588. version = "0.7.0"
  4589. source = "registry+https://github.com/rust-lang/crates.io-index"
  4590. checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0"
  4591. dependencies = [
  4592. "arc-swap",
  4593. "async-trait",
  4594. "bytes",
  4595. "crc",
  4596. "log",
  4597. "rand 0.8.5",
  4598. "thiserror",
  4599. "tokio",
  4600. "webrtc-util",
  4601. ]
  4602. [[package]]
  4603. name = "webrtc-srtp"
  4604. version = "0.9.1"
  4605. source = "registry+https://github.com/rust-lang/crates.io-index"
  4606. checksum = "6183edc4c1c6c0175f8812eefdce84dfa0aea9c3ece71c2bf6ddd3c964de3da5"
  4607. dependencies = [
  4608. "aead 0.4.3",
  4609. "aes 0.7.5",
  4610. "aes-gcm 0.9.4",
  4611. "async-trait",
  4612. "byteorder",
  4613. "bytes",
  4614. "ctr 0.8.0",
  4615. "hmac 0.11.0",
  4616. "log",
  4617. "rtcp",
  4618. "rtp",
  4619. "sha-1",
  4620. "subtle",
  4621. "thiserror",
  4622. "tokio",
  4623. "webrtc-util",
  4624. ]
  4625. [[package]]
  4626. name = "webrtc-util"
  4627. version = "0.7.0"
  4628. source = "registry+https://github.com/rust-lang/crates.io-index"
  4629. checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87"
  4630. dependencies = [
  4631. "async-trait",
  4632. "bitflags",
  4633. "bytes",
  4634. "cc",
  4635. "ipnet",
  4636. "lazy_static",
  4637. "libc",
  4638. "log",
  4639. "nix",
  4640. "rand 0.8.5",
  4641. "thiserror",
  4642. "tokio",
  4643. "winapi",
  4644. ]
  4645. [[package]]
  4646. name = "wepoll-ffi"
  4647. version = "0.1.2"
  4648. source = "registry+https://github.com/rust-lang/crates.io-index"
  4649. checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
  4650. dependencies = [
  4651. "cc",
  4652. ]
  4653. [[package]]
  4654. name = "which"
  4655. version = "4.4.0"
  4656. source = "registry+https://github.com/rust-lang/crates.io-index"
  4657. checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
  4658. dependencies = [
  4659. "either",
  4660. "libc",
  4661. "once_cell",
  4662. ]
  4663. [[package]]
  4664. name = "widestring"
  4665. version = "0.5.1"
  4666. source = "registry+https://github.com/rust-lang/crates.io-index"
  4667. checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983"
  4668. [[package]]
  4669. name = "winapi"
  4670. version = "0.3.9"
  4671. source = "registry+https://github.com/rust-lang/crates.io-index"
  4672. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4673. dependencies = [
  4674. "winapi-i686-pc-windows-gnu",
  4675. "winapi-x86_64-pc-windows-gnu",
  4676. ]
  4677. [[package]]
  4678. name = "winapi-i686-pc-windows-gnu"
  4679. version = "0.4.0"
  4680. source = "registry+https://github.com/rust-lang/crates.io-index"
  4681. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4682. [[package]]
  4683. name = "winapi-util"
  4684. version = "0.1.5"
  4685. source = "registry+https://github.com/rust-lang/crates.io-index"
  4686. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  4687. dependencies = [
  4688. "winapi",
  4689. ]
  4690. [[package]]
  4691. name = "winapi-x86_64-pc-windows-gnu"
  4692. version = "0.4.0"
  4693. source = "registry+https://github.com/rust-lang/crates.io-index"
  4694. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4695. [[package]]
  4696. name = "windows"
  4697. version = "0.34.0"
  4698. source = "registry+https://github.com/rust-lang/crates.io-index"
  4699. checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f"
  4700. dependencies = [
  4701. "windows_aarch64_msvc 0.34.0",
  4702. "windows_i686_gnu 0.34.0",
  4703. "windows_i686_msvc 0.34.0",
  4704. "windows_x86_64_gnu 0.34.0",
  4705. "windows_x86_64_msvc 0.34.0",
  4706. ]
  4707. [[package]]
  4708. name = "windows-sys"
  4709. version = "0.42.0"
  4710. source = "registry+https://github.com/rust-lang/crates.io-index"
  4711. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  4712. dependencies = [
  4713. "windows_aarch64_gnullvm",
  4714. "windows_aarch64_msvc 0.42.1",
  4715. "windows_i686_gnu 0.42.1",
  4716. "windows_i686_msvc 0.42.1",
  4717. "windows_x86_64_gnu 0.42.1",
  4718. "windows_x86_64_gnullvm",
  4719. "windows_x86_64_msvc 0.42.1",
  4720. ]
  4721. [[package]]
  4722. name = "windows-sys"
  4723. version = "0.45.0"
  4724. source = "registry+https://github.com/rust-lang/crates.io-index"
  4725. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  4726. dependencies = [
  4727. "windows-targets",
  4728. ]
  4729. [[package]]
  4730. name = "windows-targets"
  4731. version = "0.42.1"
  4732. source = "registry+https://github.com/rust-lang/crates.io-index"
  4733. checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
  4734. dependencies = [
  4735. "windows_aarch64_gnullvm",
  4736. "windows_aarch64_msvc 0.42.1",
  4737. "windows_i686_gnu 0.42.1",
  4738. "windows_i686_msvc 0.42.1",
  4739. "windows_x86_64_gnu 0.42.1",
  4740. "windows_x86_64_gnullvm",
  4741. "windows_x86_64_msvc 0.42.1",
  4742. ]
  4743. [[package]]
  4744. name = "windows_aarch64_gnullvm"
  4745. version = "0.42.1"
  4746. source = "registry+https://github.com/rust-lang/crates.io-index"
  4747. checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
  4748. [[package]]
  4749. name = "windows_aarch64_msvc"
  4750. version = "0.34.0"
  4751. source = "registry+https://github.com/rust-lang/crates.io-index"
  4752. checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d"
  4753. [[package]]
  4754. name = "windows_aarch64_msvc"
  4755. version = "0.42.1"
  4756. source = "registry+https://github.com/rust-lang/crates.io-index"
  4757. checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
  4758. [[package]]
  4759. name = "windows_i686_gnu"
  4760. version = "0.34.0"
  4761. source = "registry+https://github.com/rust-lang/crates.io-index"
  4762. checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed"
  4763. [[package]]
  4764. name = "windows_i686_gnu"
  4765. version = "0.42.1"
  4766. source = "registry+https://github.com/rust-lang/crates.io-index"
  4767. checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
  4768. [[package]]
  4769. name = "windows_i686_msvc"
  4770. version = "0.34.0"
  4771. source = "registry+https://github.com/rust-lang/crates.io-index"
  4772. checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956"
  4773. [[package]]
  4774. name = "windows_i686_msvc"
  4775. version = "0.42.1"
  4776. source = "registry+https://github.com/rust-lang/crates.io-index"
  4777. checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
  4778. [[package]]
  4779. name = "windows_x86_64_gnu"
  4780. version = "0.34.0"
  4781. source = "registry+https://github.com/rust-lang/crates.io-index"
  4782. checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4"
  4783. [[package]]
  4784. name = "windows_x86_64_gnu"
  4785. version = "0.42.1"
  4786. source = "registry+https://github.com/rust-lang/crates.io-index"
  4787. checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
  4788. [[package]]
  4789. name = "windows_x86_64_gnullvm"
  4790. version = "0.42.1"
  4791. source = "registry+https://github.com/rust-lang/crates.io-index"
  4792. checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
  4793. [[package]]
  4794. name = "windows_x86_64_msvc"
  4795. version = "0.34.0"
  4796. source = "registry+https://github.com/rust-lang/crates.io-index"
  4797. checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9"
  4798. [[package]]
  4799. name = "windows_x86_64_msvc"
  4800. version = "0.42.1"
  4801. source = "registry+https://github.com/rust-lang/crates.io-index"
  4802. checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
  4803. [[package]]
  4804. name = "winreg"
  4805. version = "0.10.1"
  4806. source = "registry+https://github.com/rust-lang/crates.io-index"
  4807. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  4808. dependencies = [
  4809. "winapi",
  4810. ]
  4811. [[package]]
  4812. name = "wormhole-core"
  4813. version = "0.1.0"
  4814. source = "git+https://github.com/guibescos/wormhole?branch=reisen/sdk-solana#61bb2fb691a8df0aa0e42a21632e43b392ffa90f"
  4815. dependencies = [
  4816. "borsh",
  4817. "bstr",
  4818. "byteorder",
  4819. "hex",
  4820. "hex-literal",
  4821. "nom",
  4822. "primitive-types",
  4823. "sha3",
  4824. "thiserror",
  4825. ]
  4826. [[package]]
  4827. name = "x25519-dalek"
  4828. version = "1.1.1"
  4829. source = "registry+https://github.com/rust-lang/crates.io-index"
  4830. checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"
  4831. dependencies = [
  4832. "curve25519-dalek 3.2.0",
  4833. "rand_core 0.5.1",
  4834. "zeroize",
  4835. ]
  4836. [[package]]
  4837. name = "x25519-dalek"
  4838. version = "2.0.0-pre.1"
  4839. source = "registry+https://github.com/rust-lang/crates.io-index"
  4840. checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df"
  4841. dependencies = [
  4842. "curve25519-dalek 3.2.0",
  4843. "rand_core 0.6.4",
  4844. "zeroize",
  4845. ]
  4846. [[package]]
  4847. name = "x509-parser"
  4848. version = "0.13.2"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c"
  4851. dependencies = [
  4852. "asn1-rs 0.3.1",
  4853. "base64 0.13.1",
  4854. "data-encoding",
  4855. "der-parser 7.0.0",
  4856. "lazy_static",
  4857. "nom",
  4858. "oid-registry 0.4.0",
  4859. "ring",
  4860. "rusticata-macros",
  4861. "thiserror",
  4862. "time",
  4863. ]
  4864. [[package]]
  4865. name = "x509-parser"
  4866. version = "0.14.0"
  4867. source = "registry+https://github.com/rust-lang/crates.io-index"
  4868. checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8"
  4869. dependencies = [
  4870. "asn1-rs 0.5.1",
  4871. "base64 0.13.1",
  4872. "data-encoding",
  4873. "der-parser 8.1.0",
  4874. "lazy_static",
  4875. "nom",
  4876. "oid-registry 0.6.1",
  4877. "rusticata-macros",
  4878. "thiserror",
  4879. "time",
  4880. ]
  4881. [[package]]
  4882. name = "yamux"
  4883. version = "0.10.2"
  4884. source = "registry+https://github.com/rust-lang/crates.io-index"
  4885. checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5"
  4886. dependencies = [
  4887. "futures",
  4888. "log",
  4889. "nohash-hasher",
  4890. "parking_lot 0.12.1",
  4891. "rand 0.8.5",
  4892. "static_assertions",
  4893. ]
  4894. [[package]]
  4895. name = "yasna"
  4896. version = "0.5.1"
  4897. source = "registry+https://github.com/rust-lang/crates.io-index"
  4898. checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4"
  4899. dependencies = [
  4900. "time",
  4901. ]
  4902. [[package]]
  4903. name = "zeroize"
  4904. version = "1.5.7"
  4905. source = "registry+https://github.com/rust-lang/crates.io-index"
  4906. checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
  4907. dependencies = [
  4908. "zeroize_derive",
  4909. ]
  4910. [[package]]
  4911. name = "zeroize_derive"
  4912. version = "1.3.3"
  4913. source = "registry+https://github.com/rust-lang/crates.io-index"
  4914. checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c"
  4915. dependencies = [
  4916. "proc-macro2",
  4917. "quote",
  4918. "syn",
  4919. "synstructure",
  4920. ]