Cargo.lock 136 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.24.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler2"
  14. version = "2.0.0"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
  17. [[package]]
  18. name = "aead"
  19. version = "0.5.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
  22. dependencies = [
  23. "crypto-common",
  24. "generic-array",
  25. ]
  26. [[package]]
  27. name = "aes"
  28. version = "0.8.4"
  29. source = "registry+https://github.com/rust-lang/crates.io-index"
  30. checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
  31. dependencies = [
  32. "cfg-if",
  33. "cipher",
  34. "cpufeatures",
  35. ]
  36. [[package]]
  37. name = "ahash"
  38. version = "0.7.8"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
  41. dependencies = [
  42. "getrandom",
  43. "once_cell",
  44. "version_check",
  45. ]
  46. [[package]]
  47. name = "ahash"
  48. version = "0.8.11"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
  51. dependencies = [
  52. "cfg-if",
  53. "once_cell",
  54. "version_check",
  55. "zerocopy",
  56. ]
  57. [[package]]
  58. name = "aho-corasick"
  59. version = "1.1.3"
  60. source = "registry+https://github.com/rust-lang/crates.io-index"
  61. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  62. dependencies = [
  63. "memchr",
  64. ]
  65. [[package]]
  66. name = "alloc-no-stdlib"
  67. version = "2.0.4"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  70. [[package]]
  71. name = "alloc-stdlib"
  72. version = "0.2.2"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  75. dependencies = [
  76. "alloc-no-stdlib",
  77. ]
  78. [[package]]
  79. name = "allocator-api2"
  80. version = "0.2.21"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
  83. [[package]]
  84. name = "android-tzdata"
  85. version = "0.1.1"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
  88. [[package]]
  89. name = "android_system_properties"
  90. version = "0.1.5"
  91. source = "registry+https://github.com/rust-lang/crates.io-index"
  92. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  93. dependencies = [
  94. "libc",
  95. ]
  96. [[package]]
  97. name = "anes"
  98. version = "0.1.6"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
  101. [[package]]
  102. name = "anstream"
  103. version = "0.6.18"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
  106. dependencies = [
  107. "anstyle",
  108. "anstyle-parse",
  109. "anstyle-query",
  110. "anstyle-wincon",
  111. "colorchoice",
  112. "is_terminal_polyfill",
  113. "utf8parse",
  114. ]
  115. [[package]]
  116. name = "anstyle"
  117. version = "1.0.10"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
  120. [[package]]
  121. name = "anstyle-parse"
  122. version = "0.2.6"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
  125. dependencies = [
  126. "utf8parse",
  127. ]
  128. [[package]]
  129. name = "anstyle-query"
  130. version = "1.1.2"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
  133. dependencies = [
  134. "windows-sys 0.59.0",
  135. ]
  136. [[package]]
  137. name = "anstyle-wincon"
  138. version = "3.0.6"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
  141. dependencies = [
  142. "anstyle",
  143. "windows-sys 0.59.0",
  144. ]
  145. [[package]]
  146. name = "anyhow"
  147. version = "1.0.95"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
  150. dependencies = [
  151. "backtrace",
  152. ]
  153. [[package]]
  154. name = "arc-swap"
  155. version = "1.7.1"
  156. source = "registry+https://github.com/rust-lang/crates.io-index"
  157. checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
  158. [[package]]
  159. name = "arrayvec"
  160. version = "0.7.6"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
  163. [[package]]
  164. name = "async-compression"
  165. version = "0.4.18"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522"
  168. dependencies = [
  169. "brotli",
  170. "flate2",
  171. "futures-core",
  172. "memchr",
  173. "pin-project-lite",
  174. "tokio",
  175. "zstd",
  176. "zstd-safe",
  177. ]
  178. [[package]]
  179. name = "async-io"
  180. version = "1.13.0"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
  183. dependencies = [
  184. "async-lock",
  185. "autocfg",
  186. "cfg-if",
  187. "concurrent-queue",
  188. "futures-lite",
  189. "log",
  190. "parking",
  191. "polling",
  192. "rustix 0.37.28",
  193. "slab",
  194. "socket2 0.4.10",
  195. "waker-fn",
  196. ]
  197. [[package]]
  198. name = "async-lock"
  199. version = "2.8.0"
  200. source = "registry+https://github.com/rust-lang/crates.io-index"
  201. checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
  202. dependencies = [
  203. "event-listener",
  204. ]
  205. [[package]]
  206. name = "async-stream"
  207. version = "0.3.6"
  208. source = "registry+https://github.com/rust-lang/crates.io-index"
  209. checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
  210. dependencies = [
  211. "async-stream-impl",
  212. "futures-core",
  213. "pin-project-lite",
  214. ]
  215. [[package]]
  216. name = "async-stream-impl"
  217. version = "0.3.6"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
  220. dependencies = [
  221. "proc-macro2",
  222. "quote",
  223. "syn 2.0.96",
  224. ]
  225. [[package]]
  226. name = "async-trait"
  227. version = "0.1.85"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
  230. dependencies = [
  231. "proc-macro2",
  232. "quote",
  233. "syn 2.0.96",
  234. ]
  235. [[package]]
  236. name = "async-utility"
  237. version = "0.2.0"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "a349201d80b4aa18d17a34a182bdd7f8ddf845e9e57d2ea130a12e10ef1e3a47"
  240. dependencies = [
  241. "futures-util",
  242. "gloo-timers",
  243. "tokio",
  244. "wasm-bindgen-futures",
  245. ]
  246. [[package]]
  247. name = "async-wsocket"
  248. version = "0.9.0"
  249. source = "registry+https://github.com/rust-lang/crates.io-index"
  250. checksum = "5c0984bead67f20366bc8dd46018dfbe189b67eeefb0e5b86b9eade18d7c3c3b"
  251. dependencies = [
  252. "async-utility",
  253. "futures",
  254. "futures-util",
  255. "js-sys",
  256. "thiserror 1.0.69",
  257. "tokio",
  258. "tokio-rustls 0.26.1",
  259. "tokio-socks",
  260. "tokio-tungstenite 0.24.0",
  261. "url",
  262. "wasm-bindgen",
  263. "web-sys",
  264. ]
  265. [[package]]
  266. name = "atoi"
  267. version = "1.0.0"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
  270. dependencies = [
  271. "num-traits",
  272. ]
  273. [[package]]
  274. name = "atomic-destructor"
  275. version = "0.2.0"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "7d919cb60ba95c87ba42777e9e246c4e8d658057299b437b7512531ce0a09a23"
  278. dependencies = [
  279. "tracing",
  280. ]
  281. [[package]]
  282. name = "autocfg"
  283. version = "1.4.0"
  284. source = "registry+https://github.com/rust-lang/crates.io-index"
  285. checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
  286. [[package]]
  287. name = "axum"
  288. version = "0.6.20"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
  291. dependencies = [
  292. "async-trait",
  293. "axum-core",
  294. "base64 0.21.7",
  295. "bitflags 1.3.2",
  296. "bytes",
  297. "futures-util",
  298. "http 0.2.12",
  299. "http-body 0.4.6",
  300. "hyper 0.14.32",
  301. "itoa",
  302. "matchit",
  303. "memchr",
  304. "mime",
  305. "percent-encoding",
  306. "pin-project-lite",
  307. "rustversion",
  308. "serde",
  309. "serde_json",
  310. "serde_path_to_error",
  311. "serde_urlencoded",
  312. "sha1",
  313. "sync_wrapper 0.1.2",
  314. "tokio",
  315. "tokio-tungstenite 0.20.1",
  316. "tower 0.4.13",
  317. "tower-layer",
  318. "tower-service",
  319. ]
  320. [[package]]
  321. name = "axum-core"
  322. version = "0.3.4"
  323. source = "registry+https://github.com/rust-lang/crates.io-index"
  324. checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
  325. dependencies = [
  326. "async-trait",
  327. "bytes",
  328. "futures-util",
  329. "http 0.2.12",
  330. "http-body 0.4.6",
  331. "mime",
  332. "rustversion",
  333. "tower-layer",
  334. "tower-service",
  335. ]
  336. [[package]]
  337. name = "backtrace"
  338. version = "0.3.74"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
  341. dependencies = [
  342. "addr2line",
  343. "cfg-if",
  344. "libc",
  345. "miniz_oxide",
  346. "object",
  347. "rustc-demangle",
  348. "windows-targets 0.52.6",
  349. ]
  350. [[package]]
  351. name = "base58ck"
  352. version = "0.1.0"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "2c8d66485a3a2ea485c1913c4572ce0256067a5377ac8c75c4960e1cda98605f"
  355. dependencies = [
  356. "bitcoin-internals 0.3.0",
  357. "bitcoin_hashes 0.14.0",
  358. ]
  359. [[package]]
  360. name = "base64"
  361. version = "0.13.1"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
  364. [[package]]
  365. name = "base64"
  366. version = "0.21.7"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
  369. [[package]]
  370. name = "base64"
  371. version = "0.22.1"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  374. [[package]]
  375. name = "base64ct"
  376. version = "1.6.0"
  377. source = "registry+https://github.com/rust-lang/crates.io-index"
  378. checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
  379. [[package]]
  380. name = "bech32"
  381. version = "0.9.1"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
  384. [[package]]
  385. name = "bech32"
  386. version = "0.11.0"
  387. source = "registry+https://github.com/rust-lang/crates.io-index"
  388. checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d"
  389. [[package]]
  390. name = "bip39"
  391. version = "2.1.0"
  392. source = "registry+https://github.com/rust-lang/crates.io-index"
  393. checksum = "33415e24172c1b7d6066f6d999545375ab8e1d95421d6784bdfff9496f292387"
  394. dependencies = [
  395. "bitcoin_hashes 0.13.0",
  396. "rand",
  397. "rand_core",
  398. "serde",
  399. "unicode-normalization",
  400. ]
  401. [[package]]
  402. name = "bitcoin"
  403. version = "0.30.2"
  404. source = "registry+https://github.com/rust-lang/crates.io-index"
  405. checksum = "1945a5048598e4189e239d3f809b19bdad4845c4b2ba400d304d2dcf26d2c462"
  406. dependencies = [
  407. "bech32 0.9.1",
  408. "bitcoin-private",
  409. "bitcoin_hashes 0.12.0",
  410. "hex_lit",
  411. "secp256k1 0.27.0",
  412. "serde",
  413. ]
  414. [[package]]
  415. name = "bitcoin"
  416. version = "0.32.5"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "ce6bc65742dea50536e35ad42492b234c27904a27f0abdcbce605015cb4ea026"
  419. dependencies = [
  420. "base58ck",
  421. "base64 0.21.7",
  422. "bech32 0.11.0",
  423. "bitcoin-internals 0.3.0",
  424. "bitcoin-io",
  425. "bitcoin-units",
  426. "bitcoin_hashes 0.14.0",
  427. "hex-conservative 0.2.1",
  428. "hex_lit",
  429. "secp256k1 0.29.1",
  430. "serde",
  431. ]
  432. [[package]]
  433. name = "bitcoin-internals"
  434. version = "0.2.0"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb"
  437. [[package]]
  438. name = "bitcoin-internals"
  439. version = "0.3.0"
  440. source = "registry+https://github.com/rust-lang/crates.io-index"
  441. checksum = "30bdbe14aa07b06e6cfeffc529a1f099e5fbe249524f8125358604df99a4bed2"
  442. dependencies = [
  443. "serde",
  444. ]
  445. [[package]]
  446. name = "bitcoin-io"
  447. version = "0.1.3"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf"
  450. [[package]]
  451. name = "bitcoin-private"
  452. version = "0.1.0"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "73290177011694f38ec25e165d0387ab7ea749a4b81cd4c80dae5988229f7a57"
  455. [[package]]
  456. name = "bitcoin-units"
  457. version = "0.1.2"
  458. source = "registry+https://github.com/rust-lang/crates.io-index"
  459. checksum = "5285c8bcaa25876d07f37e3d30c303f2609179716e11d688f51e8f1fe70063e2"
  460. dependencies = [
  461. "bitcoin-internals 0.3.0",
  462. "serde",
  463. ]
  464. [[package]]
  465. name = "bitcoin_hashes"
  466. version = "0.12.0"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501"
  469. dependencies = [
  470. "bitcoin-private",
  471. "serde",
  472. ]
  473. [[package]]
  474. name = "bitcoin_hashes"
  475. version = "0.13.0"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b"
  478. dependencies = [
  479. "bitcoin-internals 0.2.0",
  480. "hex-conservative 0.1.2",
  481. ]
  482. [[package]]
  483. name = "bitcoin_hashes"
  484. version = "0.14.0"
  485. source = "registry+https://github.com/rust-lang/crates.io-index"
  486. checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16"
  487. dependencies = [
  488. "bitcoin-io",
  489. "hex-conservative 0.2.1",
  490. "serde",
  491. ]
  492. [[package]]
  493. name = "bitcoincore-rpc"
  494. version = "0.19.0"
  495. source = "registry+https://github.com/rust-lang/crates.io-index"
  496. checksum = "aedd23ae0fd321affb4bbbc36126c6f49a32818dc6b979395d24da8c9d4e80ee"
  497. dependencies = [
  498. "bitcoincore-rpc-json",
  499. "jsonrpc",
  500. "log",
  501. "serde",
  502. "serde_json",
  503. ]
  504. [[package]]
  505. name = "bitcoincore-rpc-json"
  506. version = "0.19.0"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "d8909583c5fab98508e80ef73e5592a651c954993dc6b7739963257d19f0e71a"
  509. dependencies = [
  510. "bitcoin 0.32.5",
  511. "serde",
  512. "serde_json",
  513. ]
  514. [[package]]
  515. name = "bitflags"
  516. version = "1.3.2"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  519. [[package]]
  520. name = "bitflags"
  521. version = "2.7.0"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be"
  524. [[package]]
  525. name = "block-buffer"
  526. version = "0.10.4"
  527. source = "registry+https://github.com/rust-lang/crates.io-index"
  528. checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
  529. dependencies = [
  530. "generic-array",
  531. ]
  532. [[package]]
  533. name = "block-padding"
  534. version = "0.3.3"
  535. source = "registry+https://github.com/rust-lang/crates.io-index"
  536. checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
  537. dependencies = [
  538. "generic-array",
  539. ]
  540. [[package]]
  541. name = "brotli"
  542. version = "7.0.0"
  543. source = "registry+https://github.com/rust-lang/crates.io-index"
  544. checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
  545. dependencies = [
  546. "alloc-no-stdlib",
  547. "alloc-stdlib",
  548. "brotli-decompressor",
  549. ]
  550. [[package]]
  551. name = "brotli-decompressor"
  552. version = "4.0.1"
  553. source = "registry+https://github.com/rust-lang/crates.io-index"
  554. checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
  555. dependencies = [
  556. "alloc-no-stdlib",
  557. "alloc-stdlib",
  558. ]
  559. [[package]]
  560. name = "bs58"
  561. version = "0.5.1"
  562. source = "registry+https://github.com/rust-lang/crates.io-index"
  563. checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
  564. dependencies = [
  565. "tinyvec",
  566. ]
  567. [[package]]
  568. name = "bumpalo"
  569. version = "3.16.0"
  570. source = "registry+https://github.com/rust-lang/crates.io-index"
  571. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  572. [[package]]
  573. name = "bytecount"
  574. version = "0.6.8"
  575. source = "registry+https://github.com/rust-lang/crates.io-index"
  576. checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
  577. [[package]]
  578. name = "byteorder"
  579. version = "1.5.0"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
  582. [[package]]
  583. name = "bytes"
  584. version = "1.9.0"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
  587. [[package]]
  588. name = "camino"
  589. version = "1.1.9"
  590. source = "registry+https://github.com/rust-lang/crates.io-index"
  591. checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
  592. dependencies = [
  593. "serde",
  594. ]
  595. [[package]]
  596. name = "cargo-platform"
  597. version = "0.1.9"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
  600. dependencies = [
  601. "serde",
  602. ]
  603. [[package]]
  604. name = "cargo_metadata"
  605. version = "0.14.2"
  606. source = "registry+https://github.com/rust-lang/crates.io-index"
  607. checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
  608. dependencies = [
  609. "camino",
  610. "cargo-platform",
  611. "semver",
  612. "serde",
  613. "serde_json",
  614. ]
  615. [[package]]
  616. name = "cashu"
  617. version = "0.6.0"
  618. dependencies = [
  619. "bip39",
  620. "bitcoin 0.32.5",
  621. "cbor-diag",
  622. "ciborium",
  623. "instant",
  624. "lightning-invoice",
  625. "once_cell",
  626. "rand",
  627. "serde",
  628. "serde_json",
  629. "serde_with",
  630. "thiserror 2.0.11",
  631. "tracing",
  632. "url",
  633. "utoipa",
  634. "uuid",
  635. ]
  636. [[package]]
  637. name = "cast"
  638. version = "0.3.0"
  639. source = "registry+https://github.com/rust-lang/crates.io-index"
  640. checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
  641. [[package]]
  642. name = "cbc"
  643. version = "0.1.2"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
  646. dependencies = [
  647. "cipher",
  648. ]
  649. [[package]]
  650. name = "cbor-diag"
  651. version = "0.1.12"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "dc245b6ecd09b23901a4fbad1ad975701fd5061ceaef6afa93a2d70605a64429"
  654. dependencies = [
  655. "bs58",
  656. "chrono",
  657. "data-encoding",
  658. "half",
  659. "nom",
  660. "num-bigint",
  661. "num-rational",
  662. "num-traits",
  663. "separator",
  664. "url",
  665. "uuid",
  666. ]
  667. [[package]]
  668. name = "cc"
  669. version = "1.2.8"
  670. source = "registry+https://github.com/rust-lang/crates.io-index"
  671. checksum = "ad0cf6e91fde44c773c6ee7ec6bba798504641a8bc2eb7e37a04ffbf4dfaa55a"
  672. dependencies = [
  673. "jobserver",
  674. "libc",
  675. "shlex",
  676. ]
  677. [[package]]
  678. name = "cdk"
  679. version = "0.6.0"
  680. dependencies = [
  681. "anyhow",
  682. "arc-swap",
  683. "async-trait",
  684. "bech32 0.9.1",
  685. "bip39",
  686. "bitcoin 0.32.5",
  687. "cbor-diag",
  688. "cdk-common",
  689. "ciborium",
  690. "criterion",
  691. "futures",
  692. "getrandom",
  693. "lightning-invoice",
  694. "rand",
  695. "regex",
  696. "reqwest",
  697. "serde",
  698. "serde_json",
  699. "serde_with",
  700. "sync_wrapper 0.1.2",
  701. "thiserror 1.0.69",
  702. "tokio",
  703. "tokio-tungstenite 0.19.0",
  704. "tracing",
  705. "url",
  706. "utoipa",
  707. "uuid",
  708. ]
  709. [[package]]
  710. name = "cdk-axum"
  711. version = "0.6.0"
  712. dependencies = [
  713. "anyhow",
  714. "async-trait",
  715. "axum",
  716. "cdk",
  717. "futures",
  718. "moka",
  719. "paste",
  720. "redis",
  721. "serde",
  722. "serde_json",
  723. "sha2",
  724. "tokio",
  725. "tracing",
  726. "utoipa",
  727. "uuid",
  728. ]
  729. [[package]]
  730. name = "cdk-cli"
  731. version = "0.6.0"
  732. dependencies = [
  733. "anyhow",
  734. "bip39",
  735. "cdk",
  736. "cdk-redb",
  737. "cdk-sqlite",
  738. "clap",
  739. "home",
  740. "nostr-sdk",
  741. "rand",
  742. "reqwest",
  743. "serde",
  744. "serde_json",
  745. "tokio",
  746. "tracing",
  747. "tracing-subscriber",
  748. "url",
  749. ]
  750. [[package]]
  751. name = "cdk-cln"
  752. version = "0.6.0"
  753. dependencies = [
  754. "async-trait",
  755. "bitcoin 0.32.5",
  756. "cdk",
  757. "cln-rpc 0.2.0",
  758. "futures",
  759. "thiserror 1.0.69",
  760. "tokio",
  761. "tokio-util",
  762. "tracing",
  763. "uuid",
  764. ]
  765. [[package]]
  766. name = "cdk-common"
  767. version = "0.6.0"
  768. dependencies = [
  769. "anyhow",
  770. "async-trait",
  771. "bip39",
  772. "bitcoin 0.32.5",
  773. "cashu",
  774. "cbor-diag",
  775. "ciborium",
  776. "futures",
  777. "instant",
  778. "lightning-invoice",
  779. "rand",
  780. "serde",
  781. "serde_json",
  782. "serde_with",
  783. "thiserror 2.0.11",
  784. "tracing",
  785. "url",
  786. "utoipa",
  787. "uuid",
  788. ]
  789. [[package]]
  790. name = "cdk-fake-wallet"
  791. version = "0.6.0"
  792. dependencies = [
  793. "async-trait",
  794. "bitcoin 0.32.5",
  795. "cdk",
  796. "futures",
  797. "lightning-invoice",
  798. "rand",
  799. "serde",
  800. "serde_json",
  801. "thiserror 1.0.69",
  802. "tokio",
  803. "tokio-stream",
  804. "tokio-util",
  805. "tracing",
  806. ]
  807. [[package]]
  808. name = "cdk-integration-tests"
  809. version = "0.6.0"
  810. dependencies = [
  811. "anyhow",
  812. "async-trait",
  813. "axum",
  814. "bip39",
  815. "cdk",
  816. "cdk-axum",
  817. "cdk-cln",
  818. "cdk-fake-wallet",
  819. "cdk-redb",
  820. "cdk-sqlite",
  821. "futures",
  822. "getrandom",
  823. "instant",
  824. "lightning-invoice",
  825. "ln-regtest-rs",
  826. "once_cell",
  827. "rand",
  828. "serde",
  829. "serde_json",
  830. "tokio",
  831. "tokio-tungstenite 0.24.0",
  832. "tower-http",
  833. "tower-service",
  834. "tracing",
  835. "tracing-subscriber",
  836. "uuid",
  837. ]
  838. [[package]]
  839. name = "cdk-lnbits"
  840. version = "0.6.0"
  841. dependencies = [
  842. "anyhow",
  843. "async-trait",
  844. "axum",
  845. "bitcoin 0.32.5",
  846. "cdk",
  847. "futures",
  848. "lnbits-rs",
  849. "thiserror 1.0.69",
  850. "tokio",
  851. "tokio-util",
  852. "tracing",
  853. ]
  854. [[package]]
  855. name = "cdk-lnd"
  856. version = "0.6.0"
  857. dependencies = [
  858. "anyhow",
  859. "async-trait",
  860. "cdk",
  861. "fedimint-tonic-lnd",
  862. "futures",
  863. "thiserror 1.0.69",
  864. "tokio",
  865. "tokio-util",
  866. "tracing",
  867. ]
  868. [[package]]
  869. name = "cdk-mintd"
  870. version = "0.6.1"
  871. dependencies = [
  872. "anyhow",
  873. "axum",
  874. "bip39",
  875. "cdk",
  876. "cdk-axum",
  877. "cdk-cln",
  878. "cdk-fake-wallet",
  879. "cdk-lnbits",
  880. "cdk-lnd",
  881. "cdk-phoenixd",
  882. "cdk-redb",
  883. "cdk-sqlite",
  884. "cdk-strike",
  885. "clap",
  886. "config",
  887. "futures",
  888. "home",
  889. "lightning-invoice",
  890. "rand",
  891. "serde",
  892. "tokio",
  893. "tower-http",
  894. "tracing",
  895. "tracing-subscriber",
  896. "url",
  897. "utoipa",
  898. "utoipa-swagger-ui",
  899. ]
  900. [[package]]
  901. name = "cdk-phoenixd"
  902. version = "0.6.0"
  903. dependencies = [
  904. "anyhow",
  905. "async-trait",
  906. "axum",
  907. "bitcoin 0.32.5",
  908. "cdk",
  909. "futures",
  910. "phoenixd-rs",
  911. "thiserror 1.0.69",
  912. "tokio",
  913. "tokio-util",
  914. "tracing",
  915. "uuid",
  916. ]
  917. [[package]]
  918. name = "cdk-redb"
  919. version = "0.6.0"
  920. dependencies = [
  921. "async-trait",
  922. "cdk-common",
  923. "lightning-invoice",
  924. "redb",
  925. "serde",
  926. "serde_json",
  927. "thiserror 1.0.69",
  928. "tracing",
  929. "uuid",
  930. ]
  931. [[package]]
  932. name = "cdk-rexie"
  933. version = "0.6.0"
  934. dependencies = [
  935. "async-trait",
  936. "cdk",
  937. "rexie",
  938. "serde",
  939. "serde-wasm-bindgen",
  940. "serde_json",
  941. "thiserror 1.0.69",
  942. "tokio",
  943. "web-sys",
  944. ]
  945. [[package]]
  946. name = "cdk-sqlite"
  947. version = "0.6.0"
  948. dependencies = [
  949. "async-trait",
  950. "bitcoin 0.32.5",
  951. "cdk-common",
  952. "lightning-invoice",
  953. "serde_json",
  954. "sqlx",
  955. "thiserror 1.0.69",
  956. "tokio",
  957. "tracing",
  958. "uuid",
  959. ]
  960. [[package]]
  961. name = "cdk-strike"
  962. version = "0.6.0"
  963. dependencies = [
  964. "anyhow",
  965. "async-trait",
  966. "axum",
  967. "bitcoin 0.32.5",
  968. "cdk",
  969. "futures",
  970. "strike-rs",
  971. "thiserror 1.0.69",
  972. "tokio",
  973. "tokio-util",
  974. "tracing",
  975. "uuid",
  976. ]
  977. [[package]]
  978. name = "cfg-if"
  979. version = "1.0.0"
  980. source = "registry+https://github.com/rust-lang/crates.io-index"
  981. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  982. [[package]]
  983. name = "cfg_aliases"
  984. version = "0.2.1"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
  987. [[package]]
  988. name = "chacha20"
  989. version = "0.9.1"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
  992. dependencies = [
  993. "cfg-if",
  994. "cipher",
  995. "cpufeatures",
  996. ]
  997. [[package]]
  998. name = "chacha20poly1305"
  999. version = "0.10.1"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
  1002. dependencies = [
  1003. "aead",
  1004. "chacha20",
  1005. "cipher",
  1006. "poly1305",
  1007. "zeroize",
  1008. ]
  1009. [[package]]
  1010. name = "chrono"
  1011. version = "0.4.39"
  1012. source = "registry+https://github.com/rust-lang/crates.io-index"
  1013. checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
  1014. dependencies = [
  1015. "android-tzdata",
  1016. "iana-time-zone",
  1017. "num-traits",
  1018. "serde",
  1019. "windows-targets 0.52.6",
  1020. ]
  1021. [[package]]
  1022. name = "ciborium"
  1023. version = "0.2.2"
  1024. source = "registry+https://github.com/rust-lang/crates.io-index"
  1025. checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
  1026. dependencies = [
  1027. "ciborium-io",
  1028. "ciborium-ll",
  1029. "serde",
  1030. ]
  1031. [[package]]
  1032. name = "ciborium-io"
  1033. version = "0.2.2"
  1034. source = "registry+https://github.com/rust-lang/crates.io-index"
  1035. checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
  1036. [[package]]
  1037. name = "ciborium-ll"
  1038. version = "0.2.2"
  1039. source = "registry+https://github.com/rust-lang/crates.io-index"
  1040. checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
  1041. dependencies = [
  1042. "ciborium-io",
  1043. "half",
  1044. ]
  1045. [[package]]
  1046. name = "cipher"
  1047. version = "0.4.4"
  1048. source = "registry+https://github.com/rust-lang/crates.io-index"
  1049. checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
  1050. dependencies = [
  1051. "crypto-common",
  1052. "inout",
  1053. "zeroize",
  1054. ]
  1055. [[package]]
  1056. name = "clap"
  1057. version = "4.5.26"
  1058. source = "registry+https://github.com/rust-lang/crates.io-index"
  1059. checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
  1060. dependencies = [
  1061. "clap_builder",
  1062. "clap_derive",
  1063. ]
  1064. [[package]]
  1065. name = "clap_builder"
  1066. version = "4.5.26"
  1067. source = "registry+https://github.com/rust-lang/crates.io-index"
  1068. checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
  1069. dependencies = [
  1070. "anstream",
  1071. "anstyle",
  1072. "clap_lex",
  1073. "strsim",
  1074. ]
  1075. [[package]]
  1076. name = "clap_derive"
  1077. version = "4.5.24"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
  1080. dependencies = [
  1081. "heck 0.5.0",
  1082. "proc-macro2",
  1083. "quote",
  1084. "syn 2.0.96",
  1085. ]
  1086. [[package]]
  1087. name = "clap_lex"
  1088. version = "0.7.4"
  1089. source = "registry+https://github.com/rust-lang/crates.io-index"
  1090. checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
  1091. [[package]]
  1092. name = "cln-rpc"
  1093. version = "0.1.9"
  1094. source = "registry+https://github.com/rust-lang/crates.io-index"
  1095. checksum = "974dac6f40275b7b828087f4f9973c39658f9b4a46cc589c083a2c6c27cf67cb"
  1096. dependencies = [
  1097. "anyhow",
  1098. "bitcoin 0.30.2",
  1099. "bytes",
  1100. "futures-util",
  1101. "hex",
  1102. "log",
  1103. "serde",
  1104. "serde_json",
  1105. "tokio",
  1106. "tokio-util",
  1107. ]
  1108. [[package]]
  1109. name = "cln-rpc"
  1110. version = "0.2.0"
  1111. source = "registry+https://github.com/rust-lang/crates.io-index"
  1112. checksum = "3374857a63bde21f5cc54ed3884476f3118dd5e26d792d16dfa21d8a4acb23e8"
  1113. dependencies = [
  1114. "anyhow",
  1115. "bitcoin 0.30.2",
  1116. "bytes",
  1117. "futures-util",
  1118. "hex",
  1119. "log",
  1120. "serde",
  1121. "serde_json",
  1122. "tokio",
  1123. "tokio-util",
  1124. ]
  1125. [[package]]
  1126. name = "colorchoice"
  1127. version = "1.0.3"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
  1130. [[package]]
  1131. name = "combine"
  1132. version = "4.6.7"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
  1135. dependencies = [
  1136. "bytes",
  1137. "futures-core",
  1138. "memchr",
  1139. "pin-project-lite",
  1140. "tokio",
  1141. "tokio-util",
  1142. ]
  1143. [[package]]
  1144. name = "concurrent-queue"
  1145. version = "2.5.0"
  1146. source = "registry+https://github.com/rust-lang/crates.io-index"
  1147. checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
  1148. dependencies = [
  1149. "crossbeam-utils",
  1150. ]
  1151. [[package]]
  1152. name = "config"
  1153. version = "0.13.4"
  1154. source = "registry+https://github.com/rust-lang/crates.io-index"
  1155. checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
  1156. dependencies = [
  1157. "async-trait",
  1158. "json5",
  1159. "lazy_static",
  1160. "nom",
  1161. "pathdiff",
  1162. "ron",
  1163. "rust-ini",
  1164. "serde",
  1165. "serde_json",
  1166. "toml",
  1167. "yaml-rust",
  1168. ]
  1169. [[package]]
  1170. name = "core-foundation"
  1171. version = "0.9.4"
  1172. source = "registry+https://github.com/rust-lang/crates.io-index"
  1173. checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
  1174. dependencies = [
  1175. "core-foundation-sys",
  1176. "libc",
  1177. ]
  1178. [[package]]
  1179. name = "core-foundation"
  1180. version = "0.10.0"
  1181. source = "registry+https://github.com/rust-lang/crates.io-index"
  1182. checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
  1183. dependencies = [
  1184. "core-foundation-sys",
  1185. "libc",
  1186. ]
  1187. [[package]]
  1188. name = "core-foundation-sys"
  1189. version = "0.8.7"
  1190. source = "registry+https://github.com/rust-lang/crates.io-index"
  1191. checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
  1192. [[package]]
  1193. name = "cpufeatures"
  1194. version = "0.2.16"
  1195. source = "registry+https://github.com/rust-lang/crates.io-index"
  1196. checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
  1197. dependencies = [
  1198. "libc",
  1199. ]
  1200. [[package]]
  1201. name = "crc"
  1202. version = "3.2.1"
  1203. source = "registry+https://github.com/rust-lang/crates.io-index"
  1204. checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
  1205. dependencies = [
  1206. "crc-catalog",
  1207. ]
  1208. [[package]]
  1209. name = "crc-catalog"
  1210. version = "2.4.0"
  1211. source = "registry+https://github.com/rust-lang/crates.io-index"
  1212. checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
  1213. [[package]]
  1214. name = "crc32fast"
  1215. version = "1.4.2"
  1216. source = "registry+https://github.com/rust-lang/crates.io-index"
  1217. checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
  1218. dependencies = [
  1219. "cfg-if",
  1220. ]
  1221. [[package]]
  1222. name = "criterion"
  1223. version = "0.5.1"
  1224. source = "registry+https://github.com/rust-lang/crates.io-index"
  1225. checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
  1226. dependencies = [
  1227. "anes",
  1228. "cast",
  1229. "ciborium",
  1230. "clap",
  1231. "criterion-plot",
  1232. "is-terminal",
  1233. "itertools 0.10.5",
  1234. "num-traits",
  1235. "once_cell",
  1236. "oorandom",
  1237. "plotters",
  1238. "rayon",
  1239. "regex",
  1240. "serde",
  1241. "serde_derive",
  1242. "serde_json",
  1243. "tinytemplate",
  1244. "walkdir",
  1245. ]
  1246. [[package]]
  1247. name = "criterion-plot"
  1248. version = "0.5.0"
  1249. source = "registry+https://github.com/rust-lang/crates.io-index"
  1250. checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
  1251. dependencies = [
  1252. "cast",
  1253. "itertools 0.10.5",
  1254. ]
  1255. [[package]]
  1256. name = "crossbeam-channel"
  1257. version = "0.5.14"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
  1260. dependencies = [
  1261. "crossbeam-utils",
  1262. ]
  1263. [[package]]
  1264. name = "crossbeam-deque"
  1265. version = "0.8.6"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
  1268. dependencies = [
  1269. "crossbeam-epoch",
  1270. "crossbeam-utils",
  1271. ]
  1272. [[package]]
  1273. name = "crossbeam-epoch"
  1274. version = "0.9.18"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
  1277. dependencies = [
  1278. "crossbeam-utils",
  1279. ]
  1280. [[package]]
  1281. name = "crossbeam-queue"
  1282. version = "0.3.12"
  1283. source = "registry+https://github.com/rust-lang/crates.io-index"
  1284. checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
  1285. dependencies = [
  1286. "crossbeam-utils",
  1287. ]
  1288. [[package]]
  1289. name = "crossbeam-utils"
  1290. version = "0.8.21"
  1291. source = "registry+https://github.com/rust-lang/crates.io-index"
  1292. checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
  1293. [[package]]
  1294. name = "crunchy"
  1295. version = "0.2.2"
  1296. source = "registry+https://github.com/rust-lang/crates.io-index"
  1297. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  1298. [[package]]
  1299. name = "crypto-common"
  1300. version = "0.1.6"
  1301. source = "registry+https://github.com/rust-lang/crates.io-index"
  1302. checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
  1303. dependencies = [
  1304. "generic-array",
  1305. "rand_core",
  1306. "typenum",
  1307. ]
  1308. [[package]]
  1309. name = "darling"
  1310. version = "0.20.10"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
  1313. dependencies = [
  1314. "darling_core",
  1315. "darling_macro",
  1316. ]
  1317. [[package]]
  1318. name = "darling_core"
  1319. version = "0.20.10"
  1320. source = "registry+https://github.com/rust-lang/crates.io-index"
  1321. checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
  1322. dependencies = [
  1323. "fnv",
  1324. "ident_case",
  1325. "proc-macro2",
  1326. "quote",
  1327. "strsim",
  1328. "syn 2.0.96",
  1329. ]
  1330. [[package]]
  1331. name = "darling_macro"
  1332. version = "0.20.10"
  1333. source = "registry+https://github.com/rust-lang/crates.io-index"
  1334. checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
  1335. dependencies = [
  1336. "darling_core",
  1337. "quote",
  1338. "syn 2.0.96",
  1339. ]
  1340. [[package]]
  1341. name = "data-encoding"
  1342. version = "2.6.0"
  1343. source = "registry+https://github.com/rust-lang/crates.io-index"
  1344. checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
  1345. [[package]]
  1346. name = "deranged"
  1347. version = "0.3.11"
  1348. source = "registry+https://github.com/rust-lang/crates.io-index"
  1349. checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
  1350. dependencies = [
  1351. "powerfmt",
  1352. "serde",
  1353. ]
  1354. [[package]]
  1355. name = "digest"
  1356. version = "0.10.7"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
  1359. dependencies = [
  1360. "block-buffer",
  1361. "crypto-common",
  1362. "subtle",
  1363. ]
  1364. [[package]]
  1365. name = "dirs"
  1366. version = "5.0.1"
  1367. source = "registry+https://github.com/rust-lang/crates.io-index"
  1368. checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
  1369. dependencies = [
  1370. "dirs-sys",
  1371. ]
  1372. [[package]]
  1373. name = "dirs-sys"
  1374. version = "0.4.1"
  1375. source = "registry+https://github.com/rust-lang/crates.io-index"
  1376. checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
  1377. dependencies = [
  1378. "libc",
  1379. "option-ext",
  1380. "redox_users",
  1381. "windows-sys 0.48.0",
  1382. ]
  1383. [[package]]
  1384. name = "displaydoc"
  1385. version = "0.2.5"
  1386. source = "registry+https://github.com/rust-lang/crates.io-index"
  1387. checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
  1388. dependencies = [
  1389. "proc-macro2",
  1390. "quote",
  1391. "syn 2.0.96",
  1392. ]
  1393. [[package]]
  1394. name = "dlv-list"
  1395. version = "0.3.0"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
  1398. [[package]]
  1399. name = "dotenvy"
  1400. version = "0.15.7"
  1401. source = "registry+https://github.com/rust-lang/crates.io-index"
  1402. checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
  1403. [[package]]
  1404. name = "either"
  1405. version = "1.13.0"
  1406. source = "registry+https://github.com/rust-lang/crates.io-index"
  1407. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  1408. [[package]]
  1409. name = "equivalent"
  1410. version = "1.0.1"
  1411. source = "registry+https://github.com/rust-lang/crates.io-index"
  1412. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  1413. [[package]]
  1414. name = "erased-serde"
  1415. version = "0.4.5"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "24e2389d65ab4fab27dc2a5de7b191e1f6617d1f1c8855c0dc569c94a4cbb18d"
  1418. dependencies = [
  1419. "serde",
  1420. "typeid",
  1421. ]
  1422. [[package]]
  1423. name = "errno"
  1424. version = "0.3.10"
  1425. source = "registry+https://github.com/rust-lang/crates.io-index"
  1426. checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
  1427. dependencies = [
  1428. "libc",
  1429. "windows-sys 0.59.0",
  1430. ]
  1431. [[package]]
  1432. name = "error-chain"
  1433. version = "0.12.4"
  1434. source = "registry+https://github.com/rust-lang/crates.io-index"
  1435. checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
  1436. dependencies = [
  1437. "version_check",
  1438. ]
  1439. [[package]]
  1440. name = "event-listener"
  1441. version = "2.5.3"
  1442. source = "registry+https://github.com/rust-lang/crates.io-index"
  1443. checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
  1444. [[package]]
  1445. name = "fastrand"
  1446. version = "1.9.0"
  1447. source = "registry+https://github.com/rust-lang/crates.io-index"
  1448. checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
  1449. dependencies = [
  1450. "instant",
  1451. ]
  1452. [[package]]
  1453. name = "fastrand"
  1454. version = "2.3.0"
  1455. source = "registry+https://github.com/rust-lang/crates.io-index"
  1456. checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
  1457. [[package]]
  1458. name = "fedimint-tonic-lnd"
  1459. version = "0.2.0"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "df03ca33b5116de3051c1e233fe341e23b04c4913c7b16042497924559bc2a2e"
  1462. dependencies = [
  1463. "hex",
  1464. "http-body 0.4.6",
  1465. "hyper 0.14.32",
  1466. "hyper-rustls 0.24.2",
  1467. "prost",
  1468. "rustls 0.21.12",
  1469. "rustls-pemfile 1.0.4",
  1470. "tokio",
  1471. "tokio-stream",
  1472. "tonic",
  1473. "tonic-build",
  1474. "tower 0.4.13",
  1475. ]
  1476. [[package]]
  1477. name = "fixedbitset"
  1478. version = "0.4.2"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
  1481. [[package]]
  1482. name = "flate2"
  1483. version = "1.0.35"
  1484. source = "registry+https://github.com/rust-lang/crates.io-index"
  1485. checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
  1486. dependencies = [
  1487. "crc32fast",
  1488. "miniz_oxide",
  1489. ]
  1490. [[package]]
  1491. name = "flume"
  1492. version = "0.10.14"
  1493. source = "registry+https://github.com/rust-lang/crates.io-index"
  1494. checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
  1495. dependencies = [
  1496. "futures-core",
  1497. "futures-sink",
  1498. "pin-project",
  1499. "spin 0.9.8",
  1500. ]
  1501. [[package]]
  1502. name = "fnv"
  1503. version = "1.0.7"
  1504. source = "registry+https://github.com/rust-lang/crates.io-index"
  1505. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  1506. [[package]]
  1507. name = "foldhash"
  1508. version = "0.1.4"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
  1511. [[package]]
  1512. name = "form_urlencoded"
  1513. version = "1.2.1"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  1516. dependencies = [
  1517. "percent-encoding",
  1518. ]
  1519. [[package]]
  1520. name = "futures"
  1521. version = "0.3.31"
  1522. source = "registry+https://github.com/rust-lang/crates.io-index"
  1523. checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
  1524. dependencies = [
  1525. "futures-channel",
  1526. "futures-core",
  1527. "futures-executor",
  1528. "futures-io",
  1529. "futures-sink",
  1530. "futures-task",
  1531. "futures-util",
  1532. ]
  1533. [[package]]
  1534. name = "futures-channel"
  1535. version = "0.3.31"
  1536. source = "registry+https://github.com/rust-lang/crates.io-index"
  1537. checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
  1538. dependencies = [
  1539. "futures-core",
  1540. "futures-sink",
  1541. ]
  1542. [[package]]
  1543. name = "futures-core"
  1544. version = "0.3.31"
  1545. source = "registry+https://github.com/rust-lang/crates.io-index"
  1546. checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
  1547. [[package]]
  1548. name = "futures-executor"
  1549. version = "0.3.31"
  1550. source = "registry+https://github.com/rust-lang/crates.io-index"
  1551. checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
  1552. dependencies = [
  1553. "futures-core",
  1554. "futures-task",
  1555. "futures-util",
  1556. ]
  1557. [[package]]
  1558. name = "futures-intrusive"
  1559. version = "0.4.2"
  1560. source = "registry+https://github.com/rust-lang/crates.io-index"
  1561. checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
  1562. dependencies = [
  1563. "futures-core",
  1564. "lock_api",
  1565. "parking_lot 0.11.2",
  1566. ]
  1567. [[package]]
  1568. name = "futures-io"
  1569. version = "0.3.31"
  1570. source = "registry+https://github.com/rust-lang/crates.io-index"
  1571. checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
  1572. [[package]]
  1573. name = "futures-lite"
  1574. version = "1.13.0"
  1575. source = "registry+https://github.com/rust-lang/crates.io-index"
  1576. checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
  1577. dependencies = [
  1578. "fastrand 1.9.0",
  1579. "futures-core",
  1580. "futures-io",
  1581. "memchr",
  1582. "parking",
  1583. "pin-project-lite",
  1584. "waker-fn",
  1585. ]
  1586. [[package]]
  1587. name = "futures-macro"
  1588. version = "0.3.31"
  1589. source = "registry+https://github.com/rust-lang/crates.io-index"
  1590. checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
  1591. dependencies = [
  1592. "proc-macro2",
  1593. "quote",
  1594. "syn 2.0.96",
  1595. ]
  1596. [[package]]
  1597. name = "futures-sink"
  1598. version = "0.3.31"
  1599. source = "registry+https://github.com/rust-lang/crates.io-index"
  1600. checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
  1601. [[package]]
  1602. name = "futures-task"
  1603. version = "0.3.31"
  1604. source = "registry+https://github.com/rust-lang/crates.io-index"
  1605. checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
  1606. [[package]]
  1607. name = "futures-util"
  1608. version = "0.3.31"
  1609. source = "registry+https://github.com/rust-lang/crates.io-index"
  1610. checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
  1611. dependencies = [
  1612. "futures-channel",
  1613. "futures-core",
  1614. "futures-io",
  1615. "futures-macro",
  1616. "futures-sink",
  1617. "futures-task",
  1618. "memchr",
  1619. "pin-project-lite",
  1620. "pin-utils",
  1621. "slab",
  1622. ]
  1623. [[package]]
  1624. name = "generic-array"
  1625. version = "0.14.7"
  1626. source = "registry+https://github.com/rust-lang/crates.io-index"
  1627. checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
  1628. dependencies = [
  1629. "typenum",
  1630. "version_check",
  1631. ]
  1632. [[package]]
  1633. name = "getrandom"
  1634. version = "0.2.15"
  1635. source = "registry+https://github.com/rust-lang/crates.io-index"
  1636. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  1637. dependencies = [
  1638. "cfg-if",
  1639. "js-sys",
  1640. "libc",
  1641. "wasi",
  1642. "wasm-bindgen",
  1643. ]
  1644. [[package]]
  1645. name = "gimli"
  1646. version = "0.31.1"
  1647. source = "registry+https://github.com/rust-lang/crates.io-index"
  1648. checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
  1649. [[package]]
  1650. name = "glob"
  1651. version = "0.3.2"
  1652. source = "registry+https://github.com/rust-lang/crates.io-index"
  1653. checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
  1654. [[package]]
  1655. name = "gloo-timers"
  1656. version = "0.2.6"
  1657. source = "registry+https://github.com/rust-lang/crates.io-index"
  1658. checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
  1659. dependencies = [
  1660. "futures-channel",
  1661. "futures-core",
  1662. "js-sys",
  1663. "wasm-bindgen",
  1664. ]
  1665. [[package]]
  1666. name = "h2"
  1667. version = "0.3.26"
  1668. source = "registry+https://github.com/rust-lang/crates.io-index"
  1669. checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
  1670. dependencies = [
  1671. "bytes",
  1672. "fnv",
  1673. "futures-core",
  1674. "futures-sink",
  1675. "futures-util",
  1676. "http 0.2.12",
  1677. "indexmap 2.7.0",
  1678. "slab",
  1679. "tokio",
  1680. "tokio-util",
  1681. "tracing",
  1682. ]
  1683. [[package]]
  1684. name = "half"
  1685. version = "2.4.1"
  1686. source = "registry+https://github.com/rust-lang/crates.io-index"
  1687. checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
  1688. dependencies = [
  1689. "cfg-if",
  1690. "crunchy",
  1691. ]
  1692. [[package]]
  1693. name = "hashbrown"
  1694. version = "0.12.3"
  1695. source = "registry+https://github.com/rust-lang/crates.io-index"
  1696. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  1697. dependencies = [
  1698. "ahash 0.7.8",
  1699. ]
  1700. [[package]]
  1701. name = "hashbrown"
  1702. version = "0.14.5"
  1703. source = "registry+https://github.com/rust-lang/crates.io-index"
  1704. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  1705. dependencies = [
  1706. "ahash 0.8.11",
  1707. "allocator-api2",
  1708. ]
  1709. [[package]]
  1710. name = "hashbrown"
  1711. version = "0.15.2"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
  1714. dependencies = [
  1715. "allocator-api2",
  1716. "equivalent",
  1717. "foldhash",
  1718. ]
  1719. [[package]]
  1720. name = "hashlink"
  1721. version = "0.8.4"
  1722. source = "registry+https://github.com/rust-lang/crates.io-index"
  1723. checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
  1724. dependencies = [
  1725. "hashbrown 0.14.5",
  1726. ]
  1727. [[package]]
  1728. name = "heck"
  1729. version = "0.4.1"
  1730. source = "registry+https://github.com/rust-lang/crates.io-index"
  1731. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  1732. dependencies = [
  1733. "unicode-segmentation",
  1734. ]
  1735. [[package]]
  1736. name = "heck"
  1737. version = "0.5.0"
  1738. source = "registry+https://github.com/rust-lang/crates.io-index"
  1739. checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
  1740. [[package]]
  1741. name = "hermit-abi"
  1742. version = "0.3.9"
  1743. source = "registry+https://github.com/rust-lang/crates.io-index"
  1744. checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
  1745. [[package]]
  1746. name = "hermit-abi"
  1747. version = "0.4.0"
  1748. source = "registry+https://github.com/rust-lang/crates.io-index"
  1749. checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
  1750. [[package]]
  1751. name = "hex"
  1752. version = "0.4.3"
  1753. source = "registry+https://github.com/rust-lang/crates.io-index"
  1754. checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
  1755. [[package]]
  1756. name = "hex-conservative"
  1757. version = "0.1.2"
  1758. source = "registry+https://github.com/rust-lang/crates.io-index"
  1759. checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20"
  1760. [[package]]
  1761. name = "hex-conservative"
  1762. version = "0.2.1"
  1763. source = "registry+https://github.com/rust-lang/crates.io-index"
  1764. checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd"
  1765. dependencies = [
  1766. "arrayvec",
  1767. ]
  1768. [[package]]
  1769. name = "hex_lit"
  1770. version = "0.1.1"
  1771. source = "registry+https://github.com/rust-lang/crates.io-index"
  1772. checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd"
  1773. [[package]]
  1774. name = "hmac"
  1775. version = "0.12.1"
  1776. source = "registry+https://github.com/rust-lang/crates.io-index"
  1777. checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
  1778. dependencies = [
  1779. "digest",
  1780. ]
  1781. [[package]]
  1782. name = "home"
  1783. version = "0.5.11"
  1784. source = "registry+https://github.com/rust-lang/crates.io-index"
  1785. checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
  1786. dependencies = [
  1787. "windows-sys 0.59.0",
  1788. ]
  1789. [[package]]
  1790. name = "http"
  1791. version = "0.2.12"
  1792. source = "registry+https://github.com/rust-lang/crates.io-index"
  1793. checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
  1794. dependencies = [
  1795. "bytes",
  1796. "fnv",
  1797. "itoa",
  1798. ]
  1799. [[package]]
  1800. name = "http"
  1801. version = "1.2.0"
  1802. source = "registry+https://github.com/rust-lang/crates.io-index"
  1803. checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
  1804. dependencies = [
  1805. "bytes",
  1806. "fnv",
  1807. "itoa",
  1808. ]
  1809. [[package]]
  1810. name = "http-body"
  1811. version = "0.4.6"
  1812. source = "registry+https://github.com/rust-lang/crates.io-index"
  1813. checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
  1814. dependencies = [
  1815. "bytes",
  1816. "http 0.2.12",
  1817. "pin-project-lite",
  1818. ]
  1819. [[package]]
  1820. name = "http-body"
  1821. version = "1.0.1"
  1822. source = "registry+https://github.com/rust-lang/crates.io-index"
  1823. checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
  1824. dependencies = [
  1825. "bytes",
  1826. "http 1.2.0",
  1827. ]
  1828. [[package]]
  1829. name = "http-body-util"
  1830. version = "0.1.2"
  1831. source = "registry+https://github.com/rust-lang/crates.io-index"
  1832. checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
  1833. dependencies = [
  1834. "bytes",
  1835. "futures-util",
  1836. "http 1.2.0",
  1837. "http-body 1.0.1",
  1838. "pin-project-lite",
  1839. ]
  1840. [[package]]
  1841. name = "http-range-header"
  1842. version = "0.3.1"
  1843. source = "registry+https://github.com/rust-lang/crates.io-index"
  1844. checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
  1845. [[package]]
  1846. name = "httparse"
  1847. version = "1.9.5"
  1848. source = "registry+https://github.com/rust-lang/crates.io-index"
  1849. checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
  1850. [[package]]
  1851. name = "httpdate"
  1852. version = "1.0.3"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
  1855. [[package]]
  1856. name = "hyper"
  1857. version = "0.14.32"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
  1860. dependencies = [
  1861. "bytes",
  1862. "futures-channel",
  1863. "futures-core",
  1864. "futures-util",
  1865. "h2",
  1866. "http 0.2.12",
  1867. "http-body 0.4.6",
  1868. "httparse",
  1869. "httpdate",
  1870. "itoa",
  1871. "pin-project-lite",
  1872. "socket2 0.5.8",
  1873. "tokio",
  1874. "tower-service",
  1875. "tracing",
  1876. "want",
  1877. ]
  1878. [[package]]
  1879. name = "hyper"
  1880. version = "1.5.2"
  1881. source = "registry+https://github.com/rust-lang/crates.io-index"
  1882. checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
  1883. dependencies = [
  1884. "bytes",
  1885. "futures-channel",
  1886. "futures-util",
  1887. "http 1.2.0",
  1888. "http-body 1.0.1",
  1889. "httparse",
  1890. "itoa",
  1891. "pin-project-lite",
  1892. "smallvec",
  1893. "tokio",
  1894. "want",
  1895. ]
  1896. [[package]]
  1897. name = "hyper-rustls"
  1898. version = "0.24.2"
  1899. source = "registry+https://github.com/rust-lang/crates.io-index"
  1900. checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
  1901. dependencies = [
  1902. "futures-util",
  1903. "http 0.2.12",
  1904. "hyper 0.14.32",
  1905. "rustls 0.21.12",
  1906. "tokio",
  1907. "tokio-rustls 0.24.1",
  1908. ]
  1909. [[package]]
  1910. name = "hyper-rustls"
  1911. version = "0.27.5"
  1912. source = "registry+https://github.com/rust-lang/crates.io-index"
  1913. checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
  1914. dependencies = [
  1915. "futures-util",
  1916. "http 1.2.0",
  1917. "hyper 1.5.2",
  1918. "hyper-util",
  1919. "rustls 0.23.21",
  1920. "rustls-native-certs 0.8.1",
  1921. "rustls-pki-types",
  1922. "tokio",
  1923. "tokio-rustls 0.26.1",
  1924. "tower-service",
  1925. "webpki-roots 0.26.7",
  1926. ]
  1927. [[package]]
  1928. name = "hyper-timeout"
  1929. version = "0.4.1"
  1930. source = "registry+https://github.com/rust-lang/crates.io-index"
  1931. checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
  1932. dependencies = [
  1933. "hyper 0.14.32",
  1934. "pin-project-lite",
  1935. "tokio",
  1936. "tokio-io-timeout",
  1937. ]
  1938. [[package]]
  1939. name = "hyper-util"
  1940. version = "0.1.10"
  1941. source = "registry+https://github.com/rust-lang/crates.io-index"
  1942. checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
  1943. dependencies = [
  1944. "bytes",
  1945. "futures-channel",
  1946. "futures-util",
  1947. "http 1.2.0",
  1948. "http-body 1.0.1",
  1949. "hyper 1.5.2",
  1950. "pin-project-lite",
  1951. "socket2 0.5.8",
  1952. "tokio",
  1953. "tower-service",
  1954. "tracing",
  1955. ]
  1956. [[package]]
  1957. name = "iana-time-zone"
  1958. version = "0.1.61"
  1959. source = "registry+https://github.com/rust-lang/crates.io-index"
  1960. checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
  1961. dependencies = [
  1962. "android_system_properties",
  1963. "core-foundation-sys",
  1964. "iana-time-zone-haiku",
  1965. "js-sys",
  1966. "wasm-bindgen",
  1967. "windows-core",
  1968. ]
  1969. [[package]]
  1970. name = "iana-time-zone-haiku"
  1971. version = "0.1.2"
  1972. source = "registry+https://github.com/rust-lang/crates.io-index"
  1973. checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
  1974. dependencies = [
  1975. "cc",
  1976. ]
  1977. [[package]]
  1978. name = "icu_collections"
  1979. version = "1.5.0"
  1980. source = "registry+https://github.com/rust-lang/crates.io-index"
  1981. checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
  1982. dependencies = [
  1983. "displaydoc",
  1984. "yoke",
  1985. "zerofrom",
  1986. "zerovec",
  1987. ]
  1988. [[package]]
  1989. name = "icu_locid"
  1990. version = "1.5.0"
  1991. source = "registry+https://github.com/rust-lang/crates.io-index"
  1992. checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
  1993. dependencies = [
  1994. "displaydoc",
  1995. "litemap",
  1996. "tinystr",
  1997. "writeable",
  1998. "zerovec",
  1999. ]
  2000. [[package]]
  2001. name = "icu_locid_transform"
  2002. version = "1.5.0"
  2003. source = "registry+https://github.com/rust-lang/crates.io-index"
  2004. checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
  2005. dependencies = [
  2006. "displaydoc",
  2007. "icu_locid",
  2008. "icu_locid_transform_data",
  2009. "icu_provider",
  2010. "tinystr",
  2011. "zerovec",
  2012. ]
  2013. [[package]]
  2014. name = "icu_locid_transform_data"
  2015. version = "1.5.0"
  2016. source = "registry+https://github.com/rust-lang/crates.io-index"
  2017. checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
  2018. [[package]]
  2019. name = "icu_normalizer"
  2020. version = "1.5.0"
  2021. source = "registry+https://github.com/rust-lang/crates.io-index"
  2022. checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
  2023. dependencies = [
  2024. "displaydoc",
  2025. "icu_collections",
  2026. "icu_normalizer_data",
  2027. "icu_properties",
  2028. "icu_provider",
  2029. "smallvec",
  2030. "utf16_iter",
  2031. "utf8_iter",
  2032. "write16",
  2033. "zerovec",
  2034. ]
  2035. [[package]]
  2036. name = "icu_normalizer_data"
  2037. version = "1.5.0"
  2038. source = "registry+https://github.com/rust-lang/crates.io-index"
  2039. checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
  2040. [[package]]
  2041. name = "icu_properties"
  2042. version = "1.5.1"
  2043. source = "registry+https://github.com/rust-lang/crates.io-index"
  2044. checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
  2045. dependencies = [
  2046. "displaydoc",
  2047. "icu_collections",
  2048. "icu_locid_transform",
  2049. "icu_properties_data",
  2050. "icu_provider",
  2051. "tinystr",
  2052. "zerovec",
  2053. ]
  2054. [[package]]
  2055. name = "icu_properties_data"
  2056. version = "1.5.0"
  2057. source = "registry+https://github.com/rust-lang/crates.io-index"
  2058. checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
  2059. [[package]]
  2060. name = "icu_provider"
  2061. version = "1.5.0"
  2062. source = "registry+https://github.com/rust-lang/crates.io-index"
  2063. checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
  2064. dependencies = [
  2065. "displaydoc",
  2066. "icu_locid",
  2067. "icu_provider_macros",
  2068. "stable_deref_trait",
  2069. "tinystr",
  2070. "writeable",
  2071. "yoke",
  2072. "zerofrom",
  2073. "zerovec",
  2074. ]
  2075. [[package]]
  2076. name = "icu_provider_macros"
  2077. version = "1.5.0"
  2078. source = "registry+https://github.com/rust-lang/crates.io-index"
  2079. checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
  2080. dependencies = [
  2081. "proc-macro2",
  2082. "quote",
  2083. "syn 2.0.96",
  2084. ]
  2085. [[package]]
  2086. name = "idb"
  2087. version = "0.6.4"
  2088. source = "registry+https://github.com/rust-lang/crates.io-index"
  2089. checksum = "3afe8830d5802f769dc0be20a87f9f116798c896650cb6266eb5c19a3c109eed"
  2090. dependencies = [
  2091. "js-sys",
  2092. "num-traits",
  2093. "thiserror 1.0.69",
  2094. "tokio",
  2095. "wasm-bindgen",
  2096. "web-sys",
  2097. ]
  2098. [[package]]
  2099. name = "ident_case"
  2100. version = "1.0.1"
  2101. source = "registry+https://github.com/rust-lang/crates.io-index"
  2102. checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
  2103. [[package]]
  2104. name = "idna"
  2105. version = "1.0.3"
  2106. source = "registry+https://github.com/rust-lang/crates.io-index"
  2107. checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
  2108. dependencies = [
  2109. "idna_adapter",
  2110. "smallvec",
  2111. "utf8_iter",
  2112. ]
  2113. [[package]]
  2114. name = "idna_adapter"
  2115. version = "1.2.0"
  2116. source = "registry+https://github.com/rust-lang/crates.io-index"
  2117. checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
  2118. dependencies = [
  2119. "icu_normalizer",
  2120. "icu_properties",
  2121. ]
  2122. [[package]]
  2123. name = "indexmap"
  2124. version = "1.9.3"
  2125. source = "registry+https://github.com/rust-lang/crates.io-index"
  2126. checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
  2127. dependencies = [
  2128. "autocfg",
  2129. "hashbrown 0.12.3",
  2130. "serde",
  2131. ]
  2132. [[package]]
  2133. name = "indexmap"
  2134. version = "2.7.0"
  2135. source = "registry+https://github.com/rust-lang/crates.io-index"
  2136. checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
  2137. dependencies = [
  2138. "equivalent",
  2139. "hashbrown 0.15.2",
  2140. "serde",
  2141. ]
  2142. [[package]]
  2143. name = "inout"
  2144. version = "0.1.3"
  2145. source = "registry+https://github.com/rust-lang/crates.io-index"
  2146. checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
  2147. dependencies = [
  2148. "block-padding",
  2149. "generic-array",
  2150. ]
  2151. [[package]]
  2152. name = "instant"
  2153. version = "0.1.13"
  2154. source = "registry+https://github.com/rust-lang/crates.io-index"
  2155. checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
  2156. dependencies = [
  2157. "cfg-if",
  2158. "js-sys",
  2159. "wasm-bindgen",
  2160. "web-sys",
  2161. ]
  2162. [[package]]
  2163. name = "io-lifetimes"
  2164. version = "1.0.11"
  2165. source = "registry+https://github.com/rust-lang/crates.io-index"
  2166. checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
  2167. dependencies = [
  2168. "hermit-abi 0.3.9",
  2169. "libc",
  2170. "windows-sys 0.48.0",
  2171. ]
  2172. [[package]]
  2173. name = "ipnet"
  2174. version = "2.10.1"
  2175. source = "registry+https://github.com/rust-lang/crates.io-index"
  2176. checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
  2177. [[package]]
  2178. name = "is-terminal"
  2179. version = "0.4.13"
  2180. source = "registry+https://github.com/rust-lang/crates.io-index"
  2181. checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
  2182. dependencies = [
  2183. "hermit-abi 0.4.0",
  2184. "libc",
  2185. "windows-sys 0.52.0",
  2186. ]
  2187. [[package]]
  2188. name = "is_terminal_polyfill"
  2189. version = "1.70.1"
  2190. source = "registry+https://github.com/rust-lang/crates.io-index"
  2191. checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
  2192. [[package]]
  2193. name = "itertools"
  2194. version = "0.10.5"
  2195. source = "registry+https://github.com/rust-lang/crates.io-index"
  2196. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  2197. dependencies = [
  2198. "either",
  2199. ]
  2200. [[package]]
  2201. name = "itertools"
  2202. version = "0.12.1"
  2203. source = "registry+https://github.com/rust-lang/crates.io-index"
  2204. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  2205. dependencies = [
  2206. "either",
  2207. ]
  2208. [[package]]
  2209. name = "itoa"
  2210. version = "1.0.14"
  2211. source = "registry+https://github.com/rust-lang/crates.io-index"
  2212. checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
  2213. [[package]]
  2214. name = "jobserver"
  2215. version = "0.1.32"
  2216. source = "registry+https://github.com/rust-lang/crates.io-index"
  2217. checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
  2218. dependencies = [
  2219. "libc",
  2220. ]
  2221. [[package]]
  2222. name = "js-sys"
  2223. version = "0.3.76"
  2224. source = "registry+https://github.com/rust-lang/crates.io-index"
  2225. checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
  2226. dependencies = [
  2227. "once_cell",
  2228. "wasm-bindgen",
  2229. ]
  2230. [[package]]
  2231. name = "json5"
  2232. version = "0.4.1"
  2233. source = "registry+https://github.com/rust-lang/crates.io-index"
  2234. checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
  2235. dependencies = [
  2236. "pest",
  2237. "pest_derive",
  2238. "serde",
  2239. ]
  2240. [[package]]
  2241. name = "jsonrpc"
  2242. version = "0.18.0"
  2243. source = "registry+https://github.com/rust-lang/crates.io-index"
  2244. checksum = "3662a38d341d77efecb73caf01420cfa5aa63c0253fd7bc05289ef9f6616e1bf"
  2245. dependencies = [
  2246. "base64 0.13.1",
  2247. "minreq",
  2248. "serde",
  2249. "serde_json",
  2250. ]
  2251. [[package]]
  2252. name = "lazy_static"
  2253. version = "1.5.0"
  2254. source = "registry+https://github.com/rust-lang/crates.io-index"
  2255. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  2256. [[package]]
  2257. name = "libc"
  2258. version = "0.2.169"
  2259. source = "registry+https://github.com/rust-lang/crates.io-index"
  2260. checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
  2261. [[package]]
  2262. name = "libredox"
  2263. version = "0.1.3"
  2264. source = "registry+https://github.com/rust-lang/crates.io-index"
  2265. checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
  2266. dependencies = [
  2267. "bitflags 2.7.0",
  2268. "libc",
  2269. ]
  2270. [[package]]
  2271. name = "libsqlite3-sys"
  2272. version = "0.24.2"
  2273. source = "registry+https://github.com/rust-lang/crates.io-index"
  2274. checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
  2275. dependencies = [
  2276. "cc",
  2277. "pkg-config",
  2278. "vcpkg",
  2279. ]
  2280. [[package]]
  2281. name = "lightning-invoice"
  2282. version = "0.32.0"
  2283. source = "registry+https://github.com/rust-lang/crates.io-index"
  2284. checksum = "90ab9f6ea77e20e3129235e62a2e6bd64ed932363df104e864ee65ccffb54a8f"
  2285. dependencies = [
  2286. "bech32 0.9.1",
  2287. "bitcoin 0.32.5",
  2288. "lightning-types",
  2289. "serde",
  2290. ]
  2291. [[package]]
  2292. name = "lightning-types"
  2293. version = "0.1.0"
  2294. source = "registry+https://github.com/rust-lang/crates.io-index"
  2295. checksum = "1083b8d9137000edf3bfcb1ff011c0d25e0cdd2feb98cc21d6765e64a494148f"
  2296. dependencies = [
  2297. "bech32 0.9.1",
  2298. "bitcoin 0.32.5",
  2299. "hex-conservative 0.2.1",
  2300. ]
  2301. [[package]]
  2302. name = "linked-hash-map"
  2303. version = "0.5.6"
  2304. source = "registry+https://github.com/rust-lang/crates.io-index"
  2305. checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
  2306. [[package]]
  2307. name = "linux-raw-sys"
  2308. version = "0.3.8"
  2309. source = "registry+https://github.com/rust-lang/crates.io-index"
  2310. checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
  2311. [[package]]
  2312. name = "linux-raw-sys"
  2313. version = "0.4.15"
  2314. source = "registry+https://github.com/rust-lang/crates.io-index"
  2315. checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
  2316. [[package]]
  2317. name = "litemap"
  2318. version = "0.7.4"
  2319. source = "registry+https://github.com/rust-lang/crates.io-index"
  2320. checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
  2321. [[package]]
  2322. name = "ln-regtest-rs"
  2323. version = "0.1.0"
  2324. source = "git+https://github.com/thesimplekid/ln-regtest-rs?rev=e0ac418675#e0ac418675e66aa12f7c44a545ea5a831e2e3f69"
  2325. dependencies = [
  2326. "anyhow",
  2327. "async-trait",
  2328. "bitcoincore-rpc",
  2329. "cln-rpc 0.1.9",
  2330. "fedimint-tonic-lnd",
  2331. "serde",
  2332. "serde_json",
  2333. "tempfile",
  2334. "tokio",
  2335. "tracing",
  2336. "tracing-subscriber",
  2337. "uuid",
  2338. ]
  2339. [[package]]
  2340. name = "lnbits-rs"
  2341. version = "0.3.0"
  2342. source = "registry+https://github.com/rust-lang/crates.io-index"
  2343. checksum = "de0781184bc1ef37a5096191ab2cec74e7b467876547e067a61c515192cabfe7"
  2344. dependencies = [
  2345. "anyhow",
  2346. "axum",
  2347. "log",
  2348. "reqwest",
  2349. "serde",
  2350. "serde_json",
  2351. "tokio",
  2352. "url",
  2353. ]
  2354. [[package]]
  2355. name = "lock_api"
  2356. version = "0.4.12"
  2357. source = "registry+https://github.com/rust-lang/crates.io-index"
  2358. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  2359. dependencies = [
  2360. "autocfg",
  2361. "scopeguard",
  2362. ]
  2363. [[package]]
  2364. name = "log"
  2365. version = "0.4.24"
  2366. source = "registry+https://github.com/rust-lang/crates.io-index"
  2367. checksum = "3d6ea2a48c204030ee31a7d7fc72c93294c92fe87ecb1789881c9543516e1a0d"
  2368. dependencies = [
  2369. "value-bag",
  2370. ]
  2371. [[package]]
  2372. name = "lru"
  2373. version = "0.12.5"
  2374. source = "registry+https://github.com/rust-lang/crates.io-index"
  2375. checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
  2376. dependencies = [
  2377. "hashbrown 0.15.2",
  2378. ]
  2379. [[package]]
  2380. name = "mach2"
  2381. version = "0.4.2"
  2382. source = "registry+https://github.com/rust-lang/crates.io-index"
  2383. checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
  2384. dependencies = [
  2385. "libc",
  2386. ]
  2387. [[package]]
  2388. name = "matchers"
  2389. version = "0.1.0"
  2390. source = "registry+https://github.com/rust-lang/crates.io-index"
  2391. checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
  2392. dependencies = [
  2393. "regex-automata 0.1.10",
  2394. ]
  2395. [[package]]
  2396. name = "matchit"
  2397. version = "0.7.3"
  2398. source = "registry+https://github.com/rust-lang/crates.io-index"
  2399. checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
  2400. [[package]]
  2401. name = "memchr"
  2402. version = "2.7.4"
  2403. source = "registry+https://github.com/rust-lang/crates.io-index"
  2404. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  2405. [[package]]
  2406. name = "mime"
  2407. version = "0.3.17"
  2408. source = "registry+https://github.com/rust-lang/crates.io-index"
  2409. checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
  2410. [[package]]
  2411. name = "mime_guess"
  2412. version = "2.0.5"
  2413. source = "registry+https://github.com/rust-lang/crates.io-index"
  2414. checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
  2415. dependencies = [
  2416. "mime",
  2417. "unicase",
  2418. ]
  2419. [[package]]
  2420. name = "minimal-lexical"
  2421. version = "0.2.1"
  2422. source = "registry+https://github.com/rust-lang/crates.io-index"
  2423. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  2424. [[package]]
  2425. name = "miniz_oxide"
  2426. version = "0.8.2"
  2427. source = "registry+https://github.com/rust-lang/crates.io-index"
  2428. checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
  2429. dependencies = [
  2430. "adler2",
  2431. ]
  2432. [[package]]
  2433. name = "minreq"
  2434. version = "2.13.0"
  2435. source = "registry+https://github.com/rust-lang/crates.io-index"
  2436. checksum = "36a8e50e917e18a37d500d27d40b7bc7d127e71c0c94fb2d83f43b4afd308390"
  2437. dependencies = [
  2438. "log",
  2439. "serde",
  2440. "serde_json",
  2441. ]
  2442. [[package]]
  2443. name = "mio"
  2444. version = "1.0.3"
  2445. source = "registry+https://github.com/rust-lang/crates.io-index"
  2446. checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
  2447. dependencies = [
  2448. "libc",
  2449. "wasi",
  2450. "windows-sys 0.52.0",
  2451. ]
  2452. [[package]]
  2453. name = "moka"
  2454. version = "0.11.3"
  2455. source = "registry+https://github.com/rust-lang/crates.io-index"
  2456. checksum = "fa6e72583bf6830c956235bff0d5afec8cf2952f579ebad18ae7821a917d950f"
  2457. dependencies = [
  2458. "async-io",
  2459. "async-lock",
  2460. "crossbeam-channel",
  2461. "crossbeam-epoch",
  2462. "crossbeam-utils",
  2463. "futures-util",
  2464. "once_cell",
  2465. "parking_lot 0.12.3",
  2466. "quanta",
  2467. "rustc_version",
  2468. "scheduled-thread-pool",
  2469. "skeptic",
  2470. "smallvec",
  2471. "tagptr",
  2472. "thiserror 1.0.69",
  2473. "triomphe",
  2474. "uuid",
  2475. ]
  2476. [[package]]
  2477. name = "multimap"
  2478. version = "0.10.0"
  2479. source = "registry+https://github.com/rust-lang/crates.io-index"
  2480. checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
  2481. [[package]]
  2482. name = "negentropy"
  2483. version = "0.3.1"
  2484. source = "registry+https://github.com/rust-lang/crates.io-index"
  2485. checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe"
  2486. [[package]]
  2487. name = "negentropy"
  2488. version = "0.4.3"
  2489. source = "registry+https://github.com/rust-lang/crates.io-index"
  2490. checksum = "43a88da9dd148bbcdce323dd6ac47d369b4769d4a3b78c6c52389b9269f77932"
  2491. [[package]]
  2492. name = "nom"
  2493. version = "7.1.3"
  2494. source = "registry+https://github.com/rust-lang/crates.io-index"
  2495. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  2496. dependencies = [
  2497. "memchr",
  2498. "minimal-lexical",
  2499. ]
  2500. [[package]]
  2501. name = "nostr"
  2502. version = "0.35.0"
  2503. source = "registry+https://github.com/rust-lang/crates.io-index"
  2504. checksum = "56db234b2e07901e372f34e9463f91590579cd8e6dbd34ed2ccc7e461e4ba639"
  2505. dependencies = [
  2506. "aes",
  2507. "base64 0.22.1",
  2508. "bech32 0.11.0",
  2509. "bip39",
  2510. "bitcoin 0.32.5",
  2511. "cbc",
  2512. "chacha20",
  2513. "chacha20poly1305",
  2514. "getrandom",
  2515. "instant",
  2516. "negentropy 0.3.1",
  2517. "negentropy 0.4.3",
  2518. "once_cell",
  2519. "scrypt",
  2520. "serde",
  2521. "serde_json",
  2522. "unicode-normalization",
  2523. "url",
  2524. ]
  2525. [[package]]
  2526. name = "nostr-database"
  2527. version = "0.35.0"
  2528. source = "registry+https://github.com/rust-lang/crates.io-index"
  2529. checksum = "50de8cc5e77e7dafa7e2e0d0d67187ef19e191dcd1a68efffd3e05152d91b3c3"
  2530. dependencies = [
  2531. "async-trait",
  2532. "lru",
  2533. "nostr",
  2534. "thiserror 1.0.69",
  2535. "tokio",
  2536. "tracing",
  2537. ]
  2538. [[package]]
  2539. name = "nostr-relay-pool"
  2540. version = "0.35.0"
  2541. source = "registry+https://github.com/rust-lang/crates.io-index"
  2542. checksum = "800b9ca169902977366f8243ec645b1fa4a128ab621331796d4a26bd7bc22a88"
  2543. dependencies = [
  2544. "async-utility",
  2545. "async-wsocket",
  2546. "atomic-destructor",
  2547. "negentropy 0.3.1",
  2548. "negentropy 0.4.3",
  2549. "nostr",
  2550. "nostr-database",
  2551. "thiserror 1.0.69",
  2552. "tokio",
  2553. "tokio-stream",
  2554. "tracing",
  2555. ]
  2556. [[package]]
  2557. name = "nostr-sdk"
  2558. version = "0.35.0"
  2559. source = "registry+https://github.com/rust-lang/crates.io-index"
  2560. checksum = "d93036bf4c1e35145ca2cd6ee4cb7bb9c74f41cbca9cc4caff1e87b5e192f253"
  2561. dependencies = [
  2562. "async-utility",
  2563. "atomic-destructor",
  2564. "nostr",
  2565. "nostr-database",
  2566. "nostr-relay-pool",
  2567. "nostr-signer",
  2568. "thiserror 1.0.69",
  2569. "tokio",
  2570. "tracing",
  2571. ]
  2572. [[package]]
  2573. name = "nostr-signer"
  2574. version = "0.35.0"
  2575. source = "registry+https://github.com/rust-lang/crates.io-index"
  2576. checksum = "c1e132975a677a1c97a7695ef1161291dc06517a588b6e17e3aa05d3fb4056a0"
  2577. dependencies = [
  2578. "async-utility",
  2579. "nostr",
  2580. "thiserror 1.0.69",
  2581. "tokio",
  2582. ]
  2583. [[package]]
  2584. name = "nu-ansi-term"
  2585. version = "0.46.0"
  2586. source = "registry+https://github.com/rust-lang/crates.io-index"
  2587. checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
  2588. dependencies = [
  2589. "overload",
  2590. "winapi",
  2591. ]
  2592. [[package]]
  2593. name = "num-bigint"
  2594. version = "0.4.6"
  2595. source = "registry+https://github.com/rust-lang/crates.io-index"
  2596. checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
  2597. dependencies = [
  2598. "num-integer",
  2599. "num-traits",
  2600. ]
  2601. [[package]]
  2602. name = "num-conv"
  2603. version = "0.1.0"
  2604. source = "registry+https://github.com/rust-lang/crates.io-index"
  2605. checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
  2606. [[package]]
  2607. name = "num-integer"
  2608. version = "0.1.46"
  2609. source = "registry+https://github.com/rust-lang/crates.io-index"
  2610. checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
  2611. dependencies = [
  2612. "num-traits",
  2613. ]
  2614. [[package]]
  2615. name = "num-rational"
  2616. version = "0.4.2"
  2617. source = "registry+https://github.com/rust-lang/crates.io-index"
  2618. checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
  2619. dependencies = [
  2620. "num-bigint",
  2621. "num-integer",
  2622. "num-traits",
  2623. ]
  2624. [[package]]
  2625. name = "num-traits"
  2626. version = "0.2.19"
  2627. source = "registry+https://github.com/rust-lang/crates.io-index"
  2628. checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
  2629. dependencies = [
  2630. "autocfg",
  2631. ]
  2632. [[package]]
  2633. name = "object"
  2634. version = "0.36.7"
  2635. source = "registry+https://github.com/rust-lang/crates.io-index"
  2636. checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
  2637. dependencies = [
  2638. "memchr",
  2639. ]
  2640. [[package]]
  2641. name = "once_cell"
  2642. version = "1.20.2"
  2643. source = "registry+https://github.com/rust-lang/crates.io-index"
  2644. checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
  2645. [[package]]
  2646. name = "oorandom"
  2647. version = "11.1.4"
  2648. source = "registry+https://github.com/rust-lang/crates.io-index"
  2649. checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
  2650. [[package]]
  2651. name = "opaque-debug"
  2652. version = "0.3.1"
  2653. source = "registry+https://github.com/rust-lang/crates.io-index"
  2654. checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
  2655. [[package]]
  2656. name = "openssl-probe"
  2657. version = "0.1.5"
  2658. source = "registry+https://github.com/rust-lang/crates.io-index"
  2659. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  2660. [[package]]
  2661. name = "option-ext"
  2662. version = "0.2.0"
  2663. source = "registry+https://github.com/rust-lang/crates.io-index"
  2664. checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
  2665. [[package]]
  2666. name = "ordered-multimap"
  2667. version = "0.4.3"
  2668. source = "registry+https://github.com/rust-lang/crates.io-index"
  2669. checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
  2670. dependencies = [
  2671. "dlv-list",
  2672. "hashbrown 0.12.3",
  2673. ]
  2674. [[package]]
  2675. name = "overload"
  2676. version = "0.1.1"
  2677. source = "registry+https://github.com/rust-lang/crates.io-index"
  2678. checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
  2679. [[package]]
  2680. name = "parking"
  2681. version = "2.2.1"
  2682. source = "registry+https://github.com/rust-lang/crates.io-index"
  2683. checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
  2684. [[package]]
  2685. name = "parking_lot"
  2686. version = "0.11.2"
  2687. source = "registry+https://github.com/rust-lang/crates.io-index"
  2688. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  2689. dependencies = [
  2690. "instant",
  2691. "lock_api",
  2692. "parking_lot_core 0.8.6",
  2693. ]
  2694. [[package]]
  2695. name = "parking_lot"
  2696. version = "0.12.3"
  2697. source = "registry+https://github.com/rust-lang/crates.io-index"
  2698. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  2699. dependencies = [
  2700. "lock_api",
  2701. "parking_lot_core 0.9.10",
  2702. ]
  2703. [[package]]
  2704. name = "parking_lot_core"
  2705. version = "0.8.6"
  2706. source = "registry+https://github.com/rust-lang/crates.io-index"
  2707. checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
  2708. dependencies = [
  2709. "cfg-if",
  2710. "instant",
  2711. "libc",
  2712. "redox_syscall 0.2.16",
  2713. "smallvec",
  2714. "winapi",
  2715. ]
  2716. [[package]]
  2717. name = "parking_lot_core"
  2718. version = "0.9.10"
  2719. source = "registry+https://github.com/rust-lang/crates.io-index"
  2720. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  2721. dependencies = [
  2722. "cfg-if",
  2723. "libc",
  2724. "redox_syscall 0.5.8",
  2725. "smallvec",
  2726. "windows-targets 0.52.6",
  2727. ]
  2728. [[package]]
  2729. name = "password-hash"
  2730. version = "0.5.0"
  2731. source = "registry+https://github.com/rust-lang/crates.io-index"
  2732. checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
  2733. dependencies = [
  2734. "base64ct",
  2735. "rand_core",
  2736. "subtle",
  2737. ]
  2738. [[package]]
  2739. name = "paste"
  2740. version = "1.0.15"
  2741. source = "registry+https://github.com/rust-lang/crates.io-index"
  2742. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  2743. [[package]]
  2744. name = "pathdiff"
  2745. version = "0.2.3"
  2746. source = "registry+https://github.com/rust-lang/crates.io-index"
  2747. checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
  2748. [[package]]
  2749. name = "pbkdf2"
  2750. version = "0.12.2"
  2751. source = "registry+https://github.com/rust-lang/crates.io-index"
  2752. checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
  2753. dependencies = [
  2754. "digest",
  2755. "hmac",
  2756. ]
  2757. [[package]]
  2758. name = "percent-encoding"
  2759. version = "2.3.1"
  2760. source = "registry+https://github.com/rust-lang/crates.io-index"
  2761. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  2762. [[package]]
  2763. name = "pest"
  2764. version = "2.7.15"
  2765. source = "registry+https://github.com/rust-lang/crates.io-index"
  2766. checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
  2767. dependencies = [
  2768. "memchr",
  2769. "thiserror 2.0.11",
  2770. "ucd-trie",
  2771. ]
  2772. [[package]]
  2773. name = "pest_derive"
  2774. version = "2.7.15"
  2775. source = "registry+https://github.com/rust-lang/crates.io-index"
  2776. checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
  2777. dependencies = [
  2778. "pest",
  2779. "pest_generator",
  2780. ]
  2781. [[package]]
  2782. name = "pest_generator"
  2783. version = "2.7.15"
  2784. source = "registry+https://github.com/rust-lang/crates.io-index"
  2785. checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
  2786. dependencies = [
  2787. "pest",
  2788. "pest_meta",
  2789. "proc-macro2",
  2790. "quote",
  2791. "syn 2.0.96",
  2792. ]
  2793. [[package]]
  2794. name = "pest_meta"
  2795. version = "2.7.15"
  2796. source = "registry+https://github.com/rust-lang/crates.io-index"
  2797. checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
  2798. dependencies = [
  2799. "once_cell",
  2800. "pest",
  2801. "sha2",
  2802. ]
  2803. [[package]]
  2804. name = "petgraph"
  2805. version = "0.6.5"
  2806. source = "registry+https://github.com/rust-lang/crates.io-index"
  2807. checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
  2808. dependencies = [
  2809. "fixedbitset",
  2810. "indexmap 2.7.0",
  2811. ]
  2812. [[package]]
  2813. name = "phoenixd-rs"
  2814. version = "0.4.0"
  2815. source = "registry+https://github.com/rust-lang/crates.io-index"
  2816. checksum = "06f3fb00880034c8199fa10d4635e984ccb09bad0ad294b869d63d3f2d15cc24"
  2817. dependencies = [
  2818. "anyhow",
  2819. "async-trait",
  2820. "axum",
  2821. "log",
  2822. "reqwest",
  2823. "serde",
  2824. "serde_json",
  2825. "thiserror 1.0.69",
  2826. "tokio",
  2827. ]
  2828. [[package]]
  2829. name = "pin-project"
  2830. version = "1.1.8"
  2831. source = "registry+https://github.com/rust-lang/crates.io-index"
  2832. checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
  2833. dependencies = [
  2834. "pin-project-internal",
  2835. ]
  2836. [[package]]
  2837. name = "pin-project-internal"
  2838. version = "1.1.8"
  2839. source = "registry+https://github.com/rust-lang/crates.io-index"
  2840. checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
  2841. dependencies = [
  2842. "proc-macro2",
  2843. "quote",
  2844. "syn 2.0.96",
  2845. ]
  2846. [[package]]
  2847. name = "pin-project-lite"
  2848. version = "0.2.16"
  2849. source = "registry+https://github.com/rust-lang/crates.io-index"
  2850. checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
  2851. [[package]]
  2852. name = "pin-utils"
  2853. version = "0.1.0"
  2854. source = "registry+https://github.com/rust-lang/crates.io-index"
  2855. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  2856. [[package]]
  2857. name = "pkg-config"
  2858. version = "0.3.31"
  2859. source = "registry+https://github.com/rust-lang/crates.io-index"
  2860. checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
  2861. [[package]]
  2862. name = "plotters"
  2863. version = "0.3.7"
  2864. source = "registry+https://github.com/rust-lang/crates.io-index"
  2865. checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
  2866. dependencies = [
  2867. "num-traits",
  2868. "plotters-backend",
  2869. "plotters-svg",
  2870. "wasm-bindgen",
  2871. "web-sys",
  2872. ]
  2873. [[package]]
  2874. name = "plotters-backend"
  2875. version = "0.3.7"
  2876. source = "registry+https://github.com/rust-lang/crates.io-index"
  2877. checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
  2878. [[package]]
  2879. name = "plotters-svg"
  2880. version = "0.3.7"
  2881. source = "registry+https://github.com/rust-lang/crates.io-index"
  2882. checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
  2883. dependencies = [
  2884. "plotters-backend",
  2885. ]
  2886. [[package]]
  2887. name = "polling"
  2888. version = "2.8.0"
  2889. source = "registry+https://github.com/rust-lang/crates.io-index"
  2890. checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
  2891. dependencies = [
  2892. "autocfg",
  2893. "bitflags 1.3.2",
  2894. "cfg-if",
  2895. "concurrent-queue",
  2896. "libc",
  2897. "log",
  2898. "pin-project-lite",
  2899. "windows-sys 0.48.0",
  2900. ]
  2901. [[package]]
  2902. name = "poly1305"
  2903. version = "0.8.0"
  2904. source = "registry+https://github.com/rust-lang/crates.io-index"
  2905. checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
  2906. dependencies = [
  2907. "cpufeatures",
  2908. "opaque-debug",
  2909. "universal-hash",
  2910. ]
  2911. [[package]]
  2912. name = "powerfmt"
  2913. version = "0.2.0"
  2914. source = "registry+https://github.com/rust-lang/crates.io-index"
  2915. checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
  2916. [[package]]
  2917. name = "ppv-lite86"
  2918. version = "0.2.20"
  2919. source = "registry+https://github.com/rust-lang/crates.io-index"
  2920. checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
  2921. dependencies = [
  2922. "zerocopy",
  2923. ]
  2924. [[package]]
  2925. name = "prettyplease"
  2926. version = "0.2.27"
  2927. source = "registry+https://github.com/rust-lang/crates.io-index"
  2928. checksum = "483f8c21f64f3ea09fe0f30f5d48c3e8eefe5dac9129f0075f76593b4c1da705"
  2929. dependencies = [
  2930. "proc-macro2",
  2931. "syn 2.0.96",
  2932. ]
  2933. [[package]]
  2934. name = "proc-macro-error"
  2935. version = "1.0.4"
  2936. source = "registry+https://github.com/rust-lang/crates.io-index"
  2937. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  2938. dependencies = [
  2939. "proc-macro-error-attr",
  2940. "proc-macro2",
  2941. "quote",
  2942. "syn 1.0.109",
  2943. "version_check",
  2944. ]
  2945. [[package]]
  2946. name = "proc-macro-error-attr"
  2947. version = "1.0.4"
  2948. source = "registry+https://github.com/rust-lang/crates.io-index"
  2949. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  2950. dependencies = [
  2951. "proc-macro2",
  2952. "quote",
  2953. "version_check",
  2954. ]
  2955. [[package]]
  2956. name = "proc-macro2"
  2957. version = "1.0.93"
  2958. source = "registry+https://github.com/rust-lang/crates.io-index"
  2959. checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
  2960. dependencies = [
  2961. "unicode-ident",
  2962. ]
  2963. [[package]]
  2964. name = "prost"
  2965. version = "0.12.6"
  2966. source = "registry+https://github.com/rust-lang/crates.io-index"
  2967. checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
  2968. dependencies = [
  2969. "bytes",
  2970. "prost-derive",
  2971. ]
  2972. [[package]]
  2973. name = "prost-build"
  2974. version = "0.12.6"
  2975. source = "registry+https://github.com/rust-lang/crates.io-index"
  2976. checksum = "22505a5c94da8e3b7c2996394d1c933236c4d743e81a410bcca4e6989fc066a4"
  2977. dependencies = [
  2978. "bytes",
  2979. "heck 0.5.0",
  2980. "itertools 0.12.1",
  2981. "log",
  2982. "multimap",
  2983. "once_cell",
  2984. "petgraph",
  2985. "prettyplease",
  2986. "prost",
  2987. "prost-types",
  2988. "regex",
  2989. "syn 2.0.96",
  2990. "tempfile",
  2991. ]
  2992. [[package]]
  2993. name = "prost-derive"
  2994. version = "0.12.6"
  2995. source = "registry+https://github.com/rust-lang/crates.io-index"
  2996. checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
  2997. dependencies = [
  2998. "anyhow",
  2999. "itertools 0.12.1",
  3000. "proc-macro2",
  3001. "quote",
  3002. "syn 2.0.96",
  3003. ]
  3004. [[package]]
  3005. name = "prost-types"
  3006. version = "0.12.6"
  3007. source = "registry+https://github.com/rust-lang/crates.io-index"
  3008. checksum = "9091c90b0a32608e984ff2fa4091273cbdd755d54935c51d520887f4a1dbd5b0"
  3009. dependencies = [
  3010. "prost",
  3011. ]
  3012. [[package]]
  3013. name = "pulldown-cmark"
  3014. version = "0.9.6"
  3015. source = "registry+https://github.com/rust-lang/crates.io-index"
  3016. checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
  3017. dependencies = [
  3018. "bitflags 2.7.0",
  3019. "memchr",
  3020. "unicase",
  3021. ]
  3022. [[package]]
  3023. name = "quanta"
  3024. version = "0.11.1"
  3025. source = "registry+https://github.com/rust-lang/crates.io-index"
  3026. checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab"
  3027. dependencies = [
  3028. "crossbeam-utils",
  3029. "libc",
  3030. "mach2",
  3031. "once_cell",
  3032. "raw-cpuid",
  3033. "wasi",
  3034. "web-sys",
  3035. "winapi",
  3036. ]
  3037. [[package]]
  3038. name = "quinn"
  3039. version = "0.11.6"
  3040. source = "registry+https://github.com/rust-lang/crates.io-index"
  3041. checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
  3042. dependencies = [
  3043. "bytes",
  3044. "pin-project-lite",
  3045. "quinn-proto",
  3046. "quinn-udp",
  3047. "rustc-hash",
  3048. "rustls 0.23.21",
  3049. "socket2 0.5.8",
  3050. "thiserror 2.0.11",
  3051. "tokio",
  3052. "tracing",
  3053. ]
  3054. [[package]]
  3055. name = "quinn-proto"
  3056. version = "0.11.9"
  3057. source = "registry+https://github.com/rust-lang/crates.io-index"
  3058. checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
  3059. dependencies = [
  3060. "bytes",
  3061. "getrandom",
  3062. "rand",
  3063. "ring 0.17.8",
  3064. "rustc-hash",
  3065. "rustls 0.23.21",
  3066. "rustls-pki-types",
  3067. "slab",
  3068. "thiserror 2.0.11",
  3069. "tinyvec",
  3070. "tracing",
  3071. "web-time",
  3072. ]
  3073. [[package]]
  3074. name = "quinn-udp"
  3075. version = "0.5.9"
  3076. source = "registry+https://github.com/rust-lang/crates.io-index"
  3077. checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
  3078. dependencies = [
  3079. "cfg_aliases",
  3080. "libc",
  3081. "once_cell",
  3082. "socket2 0.5.8",
  3083. "tracing",
  3084. "windows-sys 0.59.0",
  3085. ]
  3086. [[package]]
  3087. name = "quote"
  3088. version = "1.0.38"
  3089. source = "registry+https://github.com/rust-lang/crates.io-index"
  3090. checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
  3091. dependencies = [
  3092. "proc-macro2",
  3093. ]
  3094. [[package]]
  3095. name = "rand"
  3096. version = "0.8.5"
  3097. source = "registry+https://github.com/rust-lang/crates.io-index"
  3098. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  3099. dependencies = [
  3100. "libc",
  3101. "rand_chacha",
  3102. "rand_core",
  3103. ]
  3104. [[package]]
  3105. name = "rand_chacha"
  3106. version = "0.3.1"
  3107. source = "registry+https://github.com/rust-lang/crates.io-index"
  3108. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  3109. dependencies = [
  3110. "ppv-lite86",
  3111. "rand_core",
  3112. ]
  3113. [[package]]
  3114. name = "rand_core"
  3115. version = "0.6.4"
  3116. source = "registry+https://github.com/rust-lang/crates.io-index"
  3117. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  3118. dependencies = [
  3119. "getrandom",
  3120. ]
  3121. [[package]]
  3122. name = "raw-cpuid"
  3123. version = "10.7.0"
  3124. source = "registry+https://github.com/rust-lang/crates.io-index"
  3125. checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
  3126. dependencies = [
  3127. "bitflags 1.3.2",
  3128. ]
  3129. [[package]]
  3130. name = "rayon"
  3131. version = "1.10.0"
  3132. source = "registry+https://github.com/rust-lang/crates.io-index"
  3133. checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
  3134. dependencies = [
  3135. "either",
  3136. "rayon-core",
  3137. ]
  3138. [[package]]
  3139. name = "rayon-core"
  3140. version = "1.12.1"
  3141. source = "registry+https://github.com/rust-lang/crates.io-index"
  3142. checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
  3143. dependencies = [
  3144. "crossbeam-deque",
  3145. "crossbeam-utils",
  3146. ]
  3147. [[package]]
  3148. name = "redb"
  3149. version = "2.4.0"
  3150. source = "registry+https://github.com/rust-lang/crates.io-index"
  3151. checksum = "ea0a72cd7140de9fc3e318823b883abf819c20d478ec89ce880466dc2ef263c6"
  3152. dependencies = [
  3153. "libc",
  3154. ]
  3155. [[package]]
  3156. name = "redis"
  3157. version = "0.23.3"
  3158. source = "registry+https://github.com/rust-lang/crates.io-index"
  3159. checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba"
  3160. dependencies = [
  3161. "async-trait",
  3162. "bytes",
  3163. "combine",
  3164. "futures-util",
  3165. "itoa",
  3166. "percent-encoding",
  3167. "pin-project-lite",
  3168. "rustls 0.21.12",
  3169. "rustls-native-certs 0.6.3",
  3170. "ryu",
  3171. "sha1_smol",
  3172. "socket2 0.4.10",
  3173. "tokio",
  3174. "tokio-rustls 0.24.1",
  3175. "tokio-util",
  3176. "url",
  3177. ]
  3178. [[package]]
  3179. name = "redox_syscall"
  3180. version = "0.2.16"
  3181. source = "registry+https://github.com/rust-lang/crates.io-index"
  3182. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  3183. dependencies = [
  3184. "bitflags 1.3.2",
  3185. ]
  3186. [[package]]
  3187. name = "redox_syscall"
  3188. version = "0.5.8"
  3189. source = "registry+https://github.com/rust-lang/crates.io-index"
  3190. checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
  3191. dependencies = [
  3192. "bitflags 2.7.0",
  3193. ]
  3194. [[package]]
  3195. name = "redox_users"
  3196. version = "0.4.6"
  3197. source = "registry+https://github.com/rust-lang/crates.io-index"
  3198. checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
  3199. dependencies = [
  3200. "getrandom",
  3201. "libredox",
  3202. "thiserror 1.0.69",
  3203. ]
  3204. [[package]]
  3205. name = "regex"
  3206. version = "1.11.1"
  3207. source = "registry+https://github.com/rust-lang/crates.io-index"
  3208. checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
  3209. dependencies = [
  3210. "aho-corasick",
  3211. "memchr",
  3212. "regex-automata 0.4.9",
  3213. "regex-syntax 0.8.5",
  3214. ]
  3215. [[package]]
  3216. name = "regex-automata"
  3217. version = "0.1.10"
  3218. source = "registry+https://github.com/rust-lang/crates.io-index"
  3219. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  3220. dependencies = [
  3221. "regex-syntax 0.6.29",
  3222. ]
  3223. [[package]]
  3224. name = "regex-automata"
  3225. version = "0.4.9"
  3226. source = "registry+https://github.com/rust-lang/crates.io-index"
  3227. checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
  3228. dependencies = [
  3229. "aho-corasick",
  3230. "memchr",
  3231. "regex-syntax 0.8.5",
  3232. ]
  3233. [[package]]
  3234. name = "regex-syntax"
  3235. version = "0.6.29"
  3236. source = "registry+https://github.com/rust-lang/crates.io-index"
  3237. checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
  3238. [[package]]
  3239. name = "regex-syntax"
  3240. version = "0.8.5"
  3241. source = "registry+https://github.com/rust-lang/crates.io-index"
  3242. checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
  3243. [[package]]
  3244. name = "reqwest"
  3245. version = "0.12.12"
  3246. source = "registry+https://github.com/rust-lang/crates.io-index"
  3247. checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
  3248. dependencies = [
  3249. "async-compression",
  3250. "base64 0.22.1",
  3251. "bytes",
  3252. "futures-core",
  3253. "futures-util",
  3254. "http 1.2.0",
  3255. "http-body 1.0.1",
  3256. "http-body-util",
  3257. "hyper 1.5.2",
  3258. "hyper-rustls 0.27.5",
  3259. "hyper-util",
  3260. "ipnet",
  3261. "js-sys",
  3262. "log",
  3263. "mime",
  3264. "once_cell",
  3265. "percent-encoding",
  3266. "pin-project-lite",
  3267. "quinn",
  3268. "rustls 0.23.21",
  3269. "rustls-native-certs 0.8.1",
  3270. "rustls-pemfile 2.2.0",
  3271. "rustls-pki-types",
  3272. "serde",
  3273. "serde_json",
  3274. "serde_urlencoded",
  3275. "sync_wrapper 1.0.2",
  3276. "tokio",
  3277. "tokio-rustls 0.26.1",
  3278. "tokio-socks",
  3279. "tokio-util",
  3280. "tower 0.5.2",
  3281. "tower-service",
  3282. "url",
  3283. "wasm-bindgen",
  3284. "wasm-bindgen-futures",
  3285. "web-sys",
  3286. "webpki-roots 0.26.7",
  3287. "windows-registry",
  3288. ]
  3289. [[package]]
  3290. name = "rexie"
  3291. version = "0.6.2"
  3292. source = "registry+https://github.com/rust-lang/crates.io-index"
  3293. checksum = "887466cfa8a12c08ee4b174998135cea8ff0fd84858627cd793e56535a045bc9"
  3294. dependencies = [
  3295. "idb",
  3296. "thiserror 1.0.69",
  3297. "wasm-bindgen",
  3298. ]
  3299. [[package]]
  3300. name = "ring"
  3301. version = "0.16.20"
  3302. source = "registry+https://github.com/rust-lang/crates.io-index"
  3303. checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
  3304. dependencies = [
  3305. "cc",
  3306. "libc",
  3307. "once_cell",
  3308. "spin 0.5.2",
  3309. "untrusted 0.7.1",
  3310. "web-sys",
  3311. "winapi",
  3312. ]
  3313. [[package]]
  3314. name = "ring"
  3315. version = "0.17.8"
  3316. source = "registry+https://github.com/rust-lang/crates.io-index"
  3317. checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
  3318. dependencies = [
  3319. "cc",
  3320. "cfg-if",
  3321. "getrandom",
  3322. "libc",
  3323. "spin 0.9.8",
  3324. "untrusted 0.9.0",
  3325. "windows-sys 0.52.0",
  3326. ]
  3327. [[package]]
  3328. name = "ron"
  3329. version = "0.7.1"
  3330. source = "registry+https://github.com/rust-lang/crates.io-index"
  3331. checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
  3332. dependencies = [
  3333. "base64 0.13.1",
  3334. "bitflags 1.3.2",
  3335. "serde",
  3336. ]
  3337. [[package]]
  3338. name = "rust-embed"
  3339. version = "8.5.0"
  3340. source = "registry+https://github.com/rust-lang/crates.io-index"
  3341. checksum = "fa66af4a4fdd5e7ebc276f115e895611a34739a9c1c01028383d612d550953c0"
  3342. dependencies = [
  3343. "rust-embed-impl",
  3344. "rust-embed-utils",
  3345. "walkdir",
  3346. ]
  3347. [[package]]
  3348. name = "rust-embed-impl"
  3349. version = "8.5.0"
  3350. source = "registry+https://github.com/rust-lang/crates.io-index"
  3351. checksum = "6125dbc8867951125eec87294137f4e9c2c96566e61bf72c45095a7c77761478"
  3352. dependencies = [
  3353. "proc-macro2",
  3354. "quote",
  3355. "rust-embed-utils",
  3356. "shellexpand",
  3357. "syn 2.0.96",
  3358. "walkdir",
  3359. ]
  3360. [[package]]
  3361. name = "rust-embed-utils"
  3362. version = "8.5.0"
  3363. source = "registry+https://github.com/rust-lang/crates.io-index"
  3364. checksum = "2e5347777e9aacb56039b0e1f28785929a8a3b709e87482e7442c72e7c12529d"
  3365. dependencies = [
  3366. "sha2",
  3367. "walkdir",
  3368. ]
  3369. [[package]]
  3370. name = "rust-ini"
  3371. version = "0.18.0"
  3372. source = "registry+https://github.com/rust-lang/crates.io-index"
  3373. checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
  3374. dependencies = [
  3375. "cfg-if",
  3376. "ordered-multimap",
  3377. ]
  3378. [[package]]
  3379. name = "rustc-demangle"
  3380. version = "0.1.24"
  3381. source = "registry+https://github.com/rust-lang/crates.io-index"
  3382. checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
  3383. [[package]]
  3384. name = "rustc-hash"
  3385. version = "2.1.0"
  3386. source = "registry+https://github.com/rust-lang/crates.io-index"
  3387. checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
  3388. [[package]]
  3389. name = "rustc_version"
  3390. version = "0.4.1"
  3391. source = "registry+https://github.com/rust-lang/crates.io-index"
  3392. checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
  3393. dependencies = [
  3394. "semver",
  3395. ]
  3396. [[package]]
  3397. name = "rustix"
  3398. version = "0.37.28"
  3399. source = "registry+https://github.com/rust-lang/crates.io-index"
  3400. checksum = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6"
  3401. dependencies = [
  3402. "bitflags 1.3.2",
  3403. "errno",
  3404. "io-lifetimes",
  3405. "libc",
  3406. "linux-raw-sys 0.3.8",
  3407. "windows-sys 0.48.0",
  3408. ]
  3409. [[package]]
  3410. name = "rustix"
  3411. version = "0.38.43"
  3412. source = "registry+https://github.com/rust-lang/crates.io-index"
  3413. checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6"
  3414. dependencies = [
  3415. "bitflags 2.7.0",
  3416. "errno",
  3417. "libc",
  3418. "linux-raw-sys 0.4.15",
  3419. "windows-sys 0.59.0",
  3420. ]
  3421. [[package]]
  3422. name = "rustls"
  3423. version = "0.20.9"
  3424. source = "registry+https://github.com/rust-lang/crates.io-index"
  3425. checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
  3426. dependencies = [
  3427. "log",
  3428. "ring 0.16.20",
  3429. "sct",
  3430. "webpki",
  3431. ]
  3432. [[package]]
  3433. name = "rustls"
  3434. version = "0.21.12"
  3435. source = "registry+https://github.com/rust-lang/crates.io-index"
  3436. checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
  3437. dependencies = [
  3438. "log",
  3439. "ring 0.17.8",
  3440. "rustls-webpki 0.101.7",
  3441. "sct",
  3442. ]
  3443. [[package]]
  3444. name = "rustls"
  3445. version = "0.23.21"
  3446. source = "registry+https://github.com/rust-lang/crates.io-index"
  3447. checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
  3448. dependencies = [
  3449. "once_cell",
  3450. "ring 0.17.8",
  3451. "rustls-pki-types",
  3452. "rustls-webpki 0.102.8",
  3453. "subtle",
  3454. "zeroize",
  3455. ]
  3456. [[package]]
  3457. name = "rustls-native-certs"
  3458. version = "0.6.3"
  3459. source = "registry+https://github.com/rust-lang/crates.io-index"
  3460. checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
  3461. dependencies = [
  3462. "openssl-probe",
  3463. "rustls-pemfile 1.0.4",
  3464. "schannel",
  3465. "security-framework 2.11.1",
  3466. ]
  3467. [[package]]
  3468. name = "rustls-native-certs"
  3469. version = "0.8.1"
  3470. source = "registry+https://github.com/rust-lang/crates.io-index"
  3471. checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
  3472. dependencies = [
  3473. "openssl-probe",
  3474. "rustls-pki-types",
  3475. "schannel",
  3476. "security-framework 3.2.0",
  3477. ]
  3478. [[package]]
  3479. name = "rustls-pemfile"
  3480. version = "1.0.4"
  3481. source = "registry+https://github.com/rust-lang/crates.io-index"
  3482. checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
  3483. dependencies = [
  3484. "base64 0.21.7",
  3485. ]
  3486. [[package]]
  3487. name = "rustls-pemfile"
  3488. version = "2.2.0"
  3489. source = "registry+https://github.com/rust-lang/crates.io-index"
  3490. checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
  3491. dependencies = [
  3492. "rustls-pki-types",
  3493. ]
  3494. [[package]]
  3495. name = "rustls-pki-types"
  3496. version = "1.10.1"
  3497. source = "registry+https://github.com/rust-lang/crates.io-index"
  3498. checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
  3499. dependencies = [
  3500. "web-time",
  3501. ]
  3502. [[package]]
  3503. name = "rustls-webpki"
  3504. version = "0.101.7"
  3505. source = "registry+https://github.com/rust-lang/crates.io-index"
  3506. checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
  3507. dependencies = [
  3508. "ring 0.17.8",
  3509. "untrusted 0.9.0",
  3510. ]
  3511. [[package]]
  3512. name = "rustls-webpki"
  3513. version = "0.102.8"
  3514. source = "registry+https://github.com/rust-lang/crates.io-index"
  3515. checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
  3516. dependencies = [
  3517. "ring 0.17.8",
  3518. "rustls-pki-types",
  3519. "untrusted 0.9.0",
  3520. ]
  3521. [[package]]
  3522. name = "rustversion"
  3523. version = "1.0.19"
  3524. source = "registry+https://github.com/rust-lang/crates.io-index"
  3525. checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
  3526. [[package]]
  3527. name = "ryu"
  3528. version = "1.0.18"
  3529. source = "registry+https://github.com/rust-lang/crates.io-index"
  3530. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  3531. [[package]]
  3532. name = "salsa20"
  3533. version = "0.10.2"
  3534. source = "registry+https://github.com/rust-lang/crates.io-index"
  3535. checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
  3536. dependencies = [
  3537. "cipher",
  3538. ]
  3539. [[package]]
  3540. name = "same-file"
  3541. version = "1.0.6"
  3542. source = "registry+https://github.com/rust-lang/crates.io-index"
  3543. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  3544. dependencies = [
  3545. "winapi-util",
  3546. ]
  3547. [[package]]
  3548. name = "schannel"
  3549. version = "0.1.27"
  3550. source = "registry+https://github.com/rust-lang/crates.io-index"
  3551. checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
  3552. dependencies = [
  3553. "windows-sys 0.59.0",
  3554. ]
  3555. [[package]]
  3556. name = "scheduled-thread-pool"
  3557. version = "0.2.7"
  3558. source = "registry+https://github.com/rust-lang/crates.io-index"
  3559. checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
  3560. dependencies = [
  3561. "parking_lot 0.12.3",
  3562. ]
  3563. [[package]]
  3564. name = "scopeguard"
  3565. version = "1.2.0"
  3566. source = "registry+https://github.com/rust-lang/crates.io-index"
  3567. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  3568. [[package]]
  3569. name = "scrypt"
  3570. version = "0.11.0"
  3571. source = "registry+https://github.com/rust-lang/crates.io-index"
  3572. checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
  3573. dependencies = [
  3574. "password-hash",
  3575. "pbkdf2",
  3576. "salsa20",
  3577. "sha2",
  3578. ]
  3579. [[package]]
  3580. name = "sct"
  3581. version = "0.7.1"
  3582. source = "registry+https://github.com/rust-lang/crates.io-index"
  3583. checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
  3584. dependencies = [
  3585. "ring 0.17.8",
  3586. "untrusted 0.9.0",
  3587. ]
  3588. [[package]]
  3589. name = "secp256k1"
  3590. version = "0.27.0"
  3591. source = "registry+https://github.com/rust-lang/crates.io-index"
  3592. checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f"
  3593. dependencies = [
  3594. "bitcoin_hashes 0.12.0",
  3595. "secp256k1-sys 0.8.1",
  3596. "serde",
  3597. ]
  3598. [[package]]
  3599. name = "secp256k1"
  3600. version = "0.29.1"
  3601. source = "registry+https://github.com/rust-lang/crates.io-index"
  3602. checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
  3603. dependencies = [
  3604. "bitcoin_hashes 0.14.0",
  3605. "rand",
  3606. "secp256k1-sys 0.10.1",
  3607. "serde",
  3608. ]
  3609. [[package]]
  3610. name = "secp256k1-sys"
  3611. version = "0.8.1"
  3612. source = "registry+https://github.com/rust-lang/crates.io-index"
  3613. checksum = "70a129b9e9efbfb223753b9163c4ab3b13cff7fd9c7f010fbac25ab4099fa07e"
  3614. dependencies = [
  3615. "cc",
  3616. ]
  3617. [[package]]
  3618. name = "secp256k1-sys"
  3619. version = "0.10.1"
  3620. source = "registry+https://github.com/rust-lang/crates.io-index"
  3621. checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
  3622. dependencies = [
  3623. "cc",
  3624. ]
  3625. [[package]]
  3626. name = "security-framework"
  3627. version = "2.11.1"
  3628. source = "registry+https://github.com/rust-lang/crates.io-index"
  3629. checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
  3630. dependencies = [
  3631. "bitflags 2.7.0",
  3632. "core-foundation 0.9.4",
  3633. "core-foundation-sys",
  3634. "libc",
  3635. "security-framework-sys",
  3636. ]
  3637. [[package]]
  3638. name = "security-framework"
  3639. version = "3.2.0"
  3640. source = "registry+https://github.com/rust-lang/crates.io-index"
  3641. checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
  3642. dependencies = [
  3643. "bitflags 2.7.0",
  3644. "core-foundation 0.10.0",
  3645. "core-foundation-sys",
  3646. "libc",
  3647. "security-framework-sys",
  3648. ]
  3649. [[package]]
  3650. name = "security-framework-sys"
  3651. version = "2.14.0"
  3652. source = "registry+https://github.com/rust-lang/crates.io-index"
  3653. checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
  3654. dependencies = [
  3655. "core-foundation-sys",
  3656. "libc",
  3657. ]
  3658. [[package]]
  3659. name = "semver"
  3660. version = "1.0.24"
  3661. source = "registry+https://github.com/rust-lang/crates.io-index"
  3662. checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
  3663. dependencies = [
  3664. "serde",
  3665. ]
  3666. [[package]]
  3667. name = "separator"
  3668. version = "0.4.1"
  3669. source = "registry+https://github.com/rust-lang/crates.io-index"
  3670. checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"
  3671. [[package]]
  3672. name = "serde"
  3673. version = "1.0.217"
  3674. source = "registry+https://github.com/rust-lang/crates.io-index"
  3675. checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
  3676. dependencies = [
  3677. "serde_derive",
  3678. ]
  3679. [[package]]
  3680. name = "serde-wasm-bindgen"
  3681. version = "0.6.5"
  3682. source = "registry+https://github.com/rust-lang/crates.io-index"
  3683. checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
  3684. dependencies = [
  3685. "js-sys",
  3686. "serde",
  3687. "wasm-bindgen",
  3688. ]
  3689. [[package]]
  3690. name = "serde_derive"
  3691. version = "1.0.217"
  3692. source = "registry+https://github.com/rust-lang/crates.io-index"
  3693. checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
  3694. dependencies = [
  3695. "proc-macro2",
  3696. "quote",
  3697. "syn 2.0.96",
  3698. ]
  3699. [[package]]
  3700. name = "serde_fmt"
  3701. version = "1.0.3"
  3702. source = "registry+https://github.com/rust-lang/crates.io-index"
  3703. checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
  3704. dependencies = [
  3705. "serde",
  3706. ]
  3707. [[package]]
  3708. name = "serde_json"
  3709. version = "1.0.135"
  3710. source = "registry+https://github.com/rust-lang/crates.io-index"
  3711. checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
  3712. dependencies = [
  3713. "indexmap 2.7.0",
  3714. "itoa",
  3715. "memchr",
  3716. "ryu",
  3717. "serde",
  3718. ]
  3719. [[package]]
  3720. name = "serde_path_to_error"
  3721. version = "0.1.16"
  3722. source = "registry+https://github.com/rust-lang/crates.io-index"
  3723. checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
  3724. dependencies = [
  3725. "itoa",
  3726. "serde",
  3727. ]
  3728. [[package]]
  3729. name = "serde_urlencoded"
  3730. version = "0.7.1"
  3731. source = "registry+https://github.com/rust-lang/crates.io-index"
  3732. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  3733. dependencies = [
  3734. "form_urlencoded",
  3735. "itoa",
  3736. "ryu",
  3737. "serde",
  3738. ]
  3739. [[package]]
  3740. name = "serde_with"
  3741. version = "3.12.0"
  3742. source = "registry+https://github.com/rust-lang/crates.io-index"
  3743. checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
  3744. dependencies = [
  3745. "base64 0.22.1",
  3746. "chrono",
  3747. "hex",
  3748. "indexmap 1.9.3",
  3749. "indexmap 2.7.0",
  3750. "serde",
  3751. "serde_derive",
  3752. "serde_json",
  3753. "serde_with_macros",
  3754. "time",
  3755. ]
  3756. [[package]]
  3757. name = "serde_with_macros"
  3758. version = "3.12.0"
  3759. source = "registry+https://github.com/rust-lang/crates.io-index"
  3760. checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
  3761. dependencies = [
  3762. "darling",
  3763. "proc-macro2",
  3764. "quote",
  3765. "syn 2.0.96",
  3766. ]
  3767. [[package]]
  3768. name = "sha1"
  3769. version = "0.10.6"
  3770. source = "registry+https://github.com/rust-lang/crates.io-index"
  3771. checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
  3772. dependencies = [
  3773. "cfg-if",
  3774. "cpufeatures",
  3775. "digest",
  3776. ]
  3777. [[package]]
  3778. name = "sha1_smol"
  3779. version = "1.0.1"
  3780. source = "registry+https://github.com/rust-lang/crates.io-index"
  3781. checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
  3782. [[package]]
  3783. name = "sha2"
  3784. version = "0.10.8"
  3785. source = "registry+https://github.com/rust-lang/crates.io-index"
  3786. checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
  3787. dependencies = [
  3788. "cfg-if",
  3789. "cpufeatures",
  3790. "digest",
  3791. ]
  3792. [[package]]
  3793. name = "sharded-slab"
  3794. version = "0.1.7"
  3795. source = "registry+https://github.com/rust-lang/crates.io-index"
  3796. checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
  3797. dependencies = [
  3798. "lazy_static",
  3799. ]
  3800. [[package]]
  3801. name = "shellexpand"
  3802. version = "3.1.0"
  3803. source = "registry+https://github.com/rust-lang/crates.io-index"
  3804. checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
  3805. dependencies = [
  3806. "dirs",
  3807. ]
  3808. [[package]]
  3809. name = "shlex"
  3810. version = "1.3.0"
  3811. source = "registry+https://github.com/rust-lang/crates.io-index"
  3812. checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
  3813. [[package]]
  3814. name = "signal-hook-registry"
  3815. version = "1.4.2"
  3816. source = "registry+https://github.com/rust-lang/crates.io-index"
  3817. checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
  3818. dependencies = [
  3819. "libc",
  3820. ]
  3821. [[package]]
  3822. name = "skeptic"
  3823. version = "0.13.7"
  3824. source = "registry+https://github.com/rust-lang/crates.io-index"
  3825. checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
  3826. dependencies = [
  3827. "bytecount",
  3828. "cargo_metadata",
  3829. "error-chain",
  3830. "glob",
  3831. "pulldown-cmark",
  3832. "tempfile",
  3833. "walkdir",
  3834. ]
  3835. [[package]]
  3836. name = "slab"
  3837. version = "0.4.9"
  3838. source = "registry+https://github.com/rust-lang/crates.io-index"
  3839. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  3840. dependencies = [
  3841. "autocfg",
  3842. ]
  3843. [[package]]
  3844. name = "smallvec"
  3845. version = "1.13.2"
  3846. source = "registry+https://github.com/rust-lang/crates.io-index"
  3847. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  3848. [[package]]
  3849. name = "socket2"
  3850. version = "0.4.10"
  3851. source = "registry+https://github.com/rust-lang/crates.io-index"
  3852. checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
  3853. dependencies = [
  3854. "libc",
  3855. "winapi",
  3856. ]
  3857. [[package]]
  3858. name = "socket2"
  3859. version = "0.5.8"
  3860. source = "registry+https://github.com/rust-lang/crates.io-index"
  3861. checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
  3862. dependencies = [
  3863. "libc",
  3864. "windows-sys 0.52.0",
  3865. ]
  3866. [[package]]
  3867. name = "spin"
  3868. version = "0.5.2"
  3869. source = "registry+https://github.com/rust-lang/crates.io-index"
  3870. checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
  3871. [[package]]
  3872. name = "spin"
  3873. version = "0.9.8"
  3874. source = "registry+https://github.com/rust-lang/crates.io-index"
  3875. checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
  3876. dependencies = [
  3877. "lock_api",
  3878. ]
  3879. [[package]]
  3880. name = "sqlformat"
  3881. version = "0.2.6"
  3882. source = "registry+https://github.com/rust-lang/crates.io-index"
  3883. checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
  3884. dependencies = [
  3885. "nom",
  3886. "unicode_categories",
  3887. ]
  3888. [[package]]
  3889. name = "sqlx"
  3890. version = "0.6.3"
  3891. source = "registry+https://github.com/rust-lang/crates.io-index"
  3892. checksum = "f8de3b03a925878ed54a954f621e64bf55a3c1bd29652d0d1a17830405350188"
  3893. dependencies = [
  3894. "sqlx-core",
  3895. "sqlx-macros",
  3896. ]
  3897. [[package]]
  3898. name = "sqlx-core"
  3899. version = "0.6.3"
  3900. source = "registry+https://github.com/rust-lang/crates.io-index"
  3901. checksum = "fa8241483a83a3f33aa5fff7e7d9def398ff9990b2752b6c6112b83c6d246029"
  3902. dependencies = [
  3903. "ahash 0.7.8",
  3904. "atoi",
  3905. "bitflags 1.3.2",
  3906. "byteorder",
  3907. "bytes",
  3908. "crc",
  3909. "crossbeam-queue",
  3910. "dotenvy",
  3911. "either",
  3912. "event-listener",
  3913. "flume",
  3914. "futures-channel",
  3915. "futures-core",
  3916. "futures-executor",
  3917. "futures-intrusive",
  3918. "futures-util",
  3919. "hashlink",
  3920. "hex",
  3921. "indexmap 1.9.3",
  3922. "itoa",
  3923. "libc",
  3924. "libsqlite3-sys",
  3925. "log",
  3926. "memchr",
  3927. "once_cell",
  3928. "paste",
  3929. "percent-encoding",
  3930. "rustls 0.20.9",
  3931. "rustls-pemfile 1.0.4",
  3932. "sha2",
  3933. "smallvec",
  3934. "sqlformat",
  3935. "sqlx-rt",
  3936. "stringprep",
  3937. "thiserror 1.0.69",
  3938. "tokio-stream",
  3939. "url",
  3940. "uuid",
  3941. "webpki-roots 0.22.6",
  3942. ]
  3943. [[package]]
  3944. name = "sqlx-macros"
  3945. version = "0.6.3"
  3946. source = "registry+https://github.com/rust-lang/crates.io-index"
  3947. checksum = "9966e64ae989e7e575b19d7265cb79d7fc3cbbdf179835cb0d716f294c2049c9"
  3948. dependencies = [
  3949. "dotenvy",
  3950. "either",
  3951. "heck 0.4.1",
  3952. "once_cell",
  3953. "proc-macro2",
  3954. "quote",
  3955. "sha2",
  3956. "sqlx-core",
  3957. "sqlx-rt",
  3958. "syn 1.0.109",
  3959. "url",
  3960. ]
  3961. [[package]]
  3962. name = "sqlx-rt"
  3963. version = "0.6.3"
  3964. source = "registry+https://github.com/rust-lang/crates.io-index"
  3965. checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024"
  3966. dependencies = [
  3967. "once_cell",
  3968. "tokio",
  3969. "tokio-rustls 0.23.4",
  3970. ]
  3971. [[package]]
  3972. name = "stable_deref_trait"
  3973. version = "1.2.0"
  3974. source = "registry+https://github.com/rust-lang/crates.io-index"
  3975. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  3976. [[package]]
  3977. name = "strike-rs"
  3978. version = "0.4.0"
  3979. source = "registry+https://github.com/rust-lang/crates.io-index"
  3980. checksum = "50bd122f8342d272c6818e216972295810297fb6681eae8d8f3357446860e928"
  3981. dependencies = [
  3982. "anyhow",
  3983. "async-trait",
  3984. "axum",
  3985. "http-body-util",
  3986. "hyper 0.14.32",
  3987. "log",
  3988. "rand",
  3989. "reqwest",
  3990. "ring 0.17.8",
  3991. "serde",
  3992. "serde_json",
  3993. "thiserror 1.0.69",
  3994. "tokio",
  3995. "tower 0.4.13",
  3996. "tower-http",
  3997. ]
  3998. [[package]]
  3999. name = "stringprep"
  4000. version = "0.1.5"
  4001. source = "registry+https://github.com/rust-lang/crates.io-index"
  4002. checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
  4003. dependencies = [
  4004. "unicode-bidi",
  4005. "unicode-normalization",
  4006. "unicode-properties",
  4007. ]
  4008. [[package]]
  4009. name = "strsim"
  4010. version = "0.11.1"
  4011. source = "registry+https://github.com/rust-lang/crates.io-index"
  4012. checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
  4013. [[package]]
  4014. name = "subtle"
  4015. version = "2.6.1"
  4016. source = "registry+https://github.com/rust-lang/crates.io-index"
  4017. checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
  4018. [[package]]
  4019. name = "sval"
  4020. version = "2.13.2"
  4021. source = "registry+https://github.com/rust-lang/crates.io-index"
  4022. checksum = "f6dc0f9830c49db20e73273ffae9b5240f63c42e515af1da1fceefb69fceafd8"
  4023. [[package]]
  4024. name = "sval_buffer"
  4025. version = "2.13.2"
  4026. source = "registry+https://github.com/rust-lang/crates.io-index"
  4027. checksum = "429922f7ad43c0ef8fd7309e14d750e38899e32eb7e8da656ea169dd28ee212f"
  4028. dependencies = [
  4029. "sval",
  4030. "sval_ref",
  4031. ]
  4032. [[package]]
  4033. name = "sval_dynamic"
  4034. version = "2.13.2"
  4035. source = "registry+https://github.com/rust-lang/crates.io-index"
  4036. checksum = "68f16ff5d839396c11a30019b659b0976348f3803db0626f736764c473b50ff4"
  4037. dependencies = [
  4038. "sval",
  4039. ]
  4040. [[package]]
  4041. name = "sval_fmt"
  4042. version = "2.13.2"
  4043. source = "registry+https://github.com/rust-lang/crates.io-index"
  4044. checksum = "c01c27a80b6151b0557f9ccbe89c11db571dc5f68113690c1e028d7e974bae94"
  4045. dependencies = [
  4046. "itoa",
  4047. "ryu",
  4048. "sval",
  4049. ]
  4050. [[package]]
  4051. name = "sval_json"
  4052. version = "2.13.2"
  4053. source = "registry+https://github.com/rust-lang/crates.io-index"
  4054. checksum = "0deef63c70da622b2a8069d8600cf4b05396459e665862e7bdb290fd6cf3f155"
  4055. dependencies = [
  4056. "itoa",
  4057. "ryu",
  4058. "sval",
  4059. ]
  4060. [[package]]
  4061. name = "sval_nested"
  4062. version = "2.13.2"
  4063. source = "registry+https://github.com/rust-lang/crates.io-index"
  4064. checksum = "a39ce5976ae1feb814c35d290cf7cf8cd4f045782fe1548d6bc32e21f6156e9f"
  4065. dependencies = [
  4066. "sval",
  4067. "sval_buffer",
  4068. "sval_ref",
  4069. ]
  4070. [[package]]
  4071. name = "sval_ref"
  4072. version = "2.13.2"
  4073. source = "registry+https://github.com/rust-lang/crates.io-index"
  4074. checksum = "bb7c6ee3751795a728bc9316a092023529ffea1783499afbc5c66f5fabebb1fa"
  4075. dependencies = [
  4076. "sval",
  4077. ]
  4078. [[package]]
  4079. name = "sval_serde"
  4080. version = "2.13.2"
  4081. source = "registry+https://github.com/rust-lang/crates.io-index"
  4082. checksum = "2a5572d0321b68109a343634e3a5d576bf131b82180c6c442dee06349dfc652a"
  4083. dependencies = [
  4084. "serde",
  4085. "sval",
  4086. "sval_nested",
  4087. ]
  4088. [[package]]
  4089. name = "syn"
  4090. version = "1.0.109"
  4091. source = "registry+https://github.com/rust-lang/crates.io-index"
  4092. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  4093. dependencies = [
  4094. "proc-macro2",
  4095. "quote",
  4096. "unicode-ident",
  4097. ]
  4098. [[package]]
  4099. name = "syn"
  4100. version = "2.0.96"
  4101. source = "registry+https://github.com/rust-lang/crates.io-index"
  4102. checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
  4103. dependencies = [
  4104. "proc-macro2",
  4105. "quote",
  4106. "unicode-ident",
  4107. ]
  4108. [[package]]
  4109. name = "sync_wrapper"
  4110. version = "0.1.2"
  4111. source = "registry+https://github.com/rust-lang/crates.io-index"
  4112. checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
  4113. [[package]]
  4114. name = "sync_wrapper"
  4115. version = "1.0.2"
  4116. source = "registry+https://github.com/rust-lang/crates.io-index"
  4117. checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
  4118. dependencies = [
  4119. "futures-core",
  4120. ]
  4121. [[package]]
  4122. name = "synstructure"
  4123. version = "0.13.1"
  4124. source = "registry+https://github.com/rust-lang/crates.io-index"
  4125. checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
  4126. dependencies = [
  4127. "proc-macro2",
  4128. "quote",
  4129. "syn 2.0.96",
  4130. ]
  4131. [[package]]
  4132. name = "tagptr"
  4133. version = "0.2.0"
  4134. source = "registry+https://github.com/rust-lang/crates.io-index"
  4135. checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
  4136. [[package]]
  4137. name = "tempfile"
  4138. version = "3.15.0"
  4139. source = "registry+https://github.com/rust-lang/crates.io-index"
  4140. checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
  4141. dependencies = [
  4142. "cfg-if",
  4143. "fastrand 2.3.0",
  4144. "getrandom",
  4145. "once_cell",
  4146. "rustix 0.38.43",
  4147. "windows-sys 0.59.0",
  4148. ]
  4149. [[package]]
  4150. name = "thiserror"
  4151. version = "1.0.69"
  4152. source = "registry+https://github.com/rust-lang/crates.io-index"
  4153. checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
  4154. dependencies = [
  4155. "thiserror-impl 1.0.69",
  4156. ]
  4157. [[package]]
  4158. name = "thiserror"
  4159. version = "2.0.11"
  4160. source = "registry+https://github.com/rust-lang/crates.io-index"
  4161. checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
  4162. dependencies = [
  4163. "thiserror-impl 2.0.11",
  4164. ]
  4165. [[package]]
  4166. name = "thiserror-impl"
  4167. version = "1.0.69"
  4168. source = "registry+https://github.com/rust-lang/crates.io-index"
  4169. checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
  4170. dependencies = [
  4171. "proc-macro2",
  4172. "quote",
  4173. "syn 2.0.96",
  4174. ]
  4175. [[package]]
  4176. name = "thiserror-impl"
  4177. version = "2.0.11"
  4178. source = "registry+https://github.com/rust-lang/crates.io-index"
  4179. checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
  4180. dependencies = [
  4181. "proc-macro2",
  4182. "quote",
  4183. "syn 2.0.96",
  4184. ]
  4185. [[package]]
  4186. name = "thread_local"
  4187. version = "1.1.8"
  4188. source = "registry+https://github.com/rust-lang/crates.io-index"
  4189. checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
  4190. dependencies = [
  4191. "cfg-if",
  4192. "once_cell",
  4193. ]
  4194. [[package]]
  4195. name = "time"
  4196. version = "0.3.37"
  4197. source = "registry+https://github.com/rust-lang/crates.io-index"
  4198. checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
  4199. dependencies = [
  4200. "deranged",
  4201. "itoa",
  4202. "num-conv",
  4203. "powerfmt",
  4204. "serde",
  4205. "time-core",
  4206. "time-macros",
  4207. ]
  4208. [[package]]
  4209. name = "time-core"
  4210. version = "0.1.2"
  4211. source = "registry+https://github.com/rust-lang/crates.io-index"
  4212. checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
  4213. [[package]]
  4214. name = "time-macros"
  4215. version = "0.2.19"
  4216. source = "registry+https://github.com/rust-lang/crates.io-index"
  4217. checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
  4218. dependencies = [
  4219. "num-conv",
  4220. "time-core",
  4221. ]
  4222. [[package]]
  4223. name = "tinystr"
  4224. version = "0.7.6"
  4225. source = "registry+https://github.com/rust-lang/crates.io-index"
  4226. checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
  4227. dependencies = [
  4228. "displaydoc",
  4229. "zerovec",
  4230. ]
  4231. [[package]]
  4232. name = "tinytemplate"
  4233. version = "1.2.1"
  4234. source = "registry+https://github.com/rust-lang/crates.io-index"
  4235. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  4236. dependencies = [
  4237. "serde",
  4238. "serde_json",
  4239. ]
  4240. [[package]]
  4241. name = "tinyvec"
  4242. version = "1.8.1"
  4243. source = "registry+https://github.com/rust-lang/crates.io-index"
  4244. checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
  4245. dependencies = [
  4246. "tinyvec_macros",
  4247. ]
  4248. [[package]]
  4249. name = "tinyvec_macros"
  4250. version = "0.1.1"
  4251. source = "registry+https://github.com/rust-lang/crates.io-index"
  4252. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  4253. [[package]]
  4254. name = "tokio"
  4255. version = "1.43.0"
  4256. source = "registry+https://github.com/rust-lang/crates.io-index"
  4257. checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
  4258. dependencies = [
  4259. "backtrace",
  4260. "bytes",
  4261. "libc",
  4262. "mio",
  4263. "parking_lot 0.12.3",
  4264. "pin-project-lite",
  4265. "signal-hook-registry",
  4266. "socket2 0.5.8",
  4267. "tokio-macros",
  4268. "windows-sys 0.52.0",
  4269. ]
  4270. [[package]]
  4271. name = "tokio-io-timeout"
  4272. version = "1.2.0"
  4273. source = "registry+https://github.com/rust-lang/crates.io-index"
  4274. checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
  4275. dependencies = [
  4276. "pin-project-lite",
  4277. "tokio",
  4278. ]
  4279. [[package]]
  4280. name = "tokio-macros"
  4281. version = "2.5.0"
  4282. source = "registry+https://github.com/rust-lang/crates.io-index"
  4283. checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
  4284. dependencies = [
  4285. "proc-macro2",
  4286. "quote",
  4287. "syn 2.0.96",
  4288. ]
  4289. [[package]]
  4290. name = "tokio-rustls"
  4291. version = "0.23.4"
  4292. source = "registry+https://github.com/rust-lang/crates.io-index"
  4293. checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
  4294. dependencies = [
  4295. "rustls 0.20.9",
  4296. "tokio",
  4297. "webpki",
  4298. ]
  4299. [[package]]
  4300. name = "tokio-rustls"
  4301. version = "0.24.1"
  4302. source = "registry+https://github.com/rust-lang/crates.io-index"
  4303. checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
  4304. dependencies = [
  4305. "rustls 0.21.12",
  4306. "tokio",
  4307. ]
  4308. [[package]]
  4309. name = "tokio-rustls"
  4310. version = "0.26.1"
  4311. source = "registry+https://github.com/rust-lang/crates.io-index"
  4312. checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
  4313. dependencies = [
  4314. "rustls 0.23.21",
  4315. "tokio",
  4316. ]
  4317. [[package]]
  4318. name = "tokio-socks"
  4319. version = "0.5.2"
  4320. source = "registry+https://github.com/rust-lang/crates.io-index"
  4321. checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
  4322. dependencies = [
  4323. "either",
  4324. "futures-util",
  4325. "thiserror 1.0.69",
  4326. "tokio",
  4327. ]
  4328. [[package]]
  4329. name = "tokio-stream"
  4330. version = "0.1.17"
  4331. source = "registry+https://github.com/rust-lang/crates.io-index"
  4332. checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
  4333. dependencies = [
  4334. "futures-core",
  4335. "pin-project-lite",
  4336. "tokio",
  4337. ]
  4338. [[package]]
  4339. name = "tokio-tungstenite"
  4340. version = "0.19.0"
  4341. source = "registry+https://github.com/rust-lang/crates.io-index"
  4342. checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c"
  4343. dependencies = [
  4344. "futures-util",
  4345. "log",
  4346. "rustls 0.21.12",
  4347. "rustls-native-certs 0.6.3",
  4348. "tokio",
  4349. "tokio-rustls 0.24.1",
  4350. "tungstenite 0.19.0",
  4351. ]
  4352. [[package]]
  4353. name = "tokio-tungstenite"
  4354. version = "0.20.1"
  4355. source = "registry+https://github.com/rust-lang/crates.io-index"
  4356. checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
  4357. dependencies = [
  4358. "futures-util",
  4359. "log",
  4360. "tokio",
  4361. "tungstenite 0.20.1",
  4362. ]
  4363. [[package]]
  4364. name = "tokio-tungstenite"
  4365. version = "0.24.0"
  4366. source = "registry+https://github.com/rust-lang/crates.io-index"
  4367. checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
  4368. dependencies = [
  4369. "futures-util",
  4370. "log",
  4371. "rustls 0.23.21",
  4372. "rustls-pki-types",
  4373. "tokio",
  4374. "tokio-rustls 0.26.1",
  4375. "tungstenite 0.24.0",
  4376. "webpki-roots 0.26.7",
  4377. ]
  4378. [[package]]
  4379. name = "tokio-util"
  4380. version = "0.7.13"
  4381. source = "registry+https://github.com/rust-lang/crates.io-index"
  4382. checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
  4383. dependencies = [
  4384. "bytes",
  4385. "futures-core",
  4386. "futures-sink",
  4387. "pin-project-lite",
  4388. "tokio",
  4389. ]
  4390. [[package]]
  4391. name = "toml"
  4392. version = "0.5.11"
  4393. source = "registry+https://github.com/rust-lang/crates.io-index"
  4394. checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
  4395. dependencies = [
  4396. "serde",
  4397. ]
  4398. [[package]]
  4399. name = "tonic"
  4400. version = "0.10.2"
  4401. source = "registry+https://github.com/rust-lang/crates.io-index"
  4402. checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e"
  4403. dependencies = [
  4404. "async-stream",
  4405. "async-trait",
  4406. "axum",
  4407. "base64 0.21.7",
  4408. "bytes",
  4409. "h2",
  4410. "http 0.2.12",
  4411. "http-body 0.4.6",
  4412. "hyper 0.14.32",
  4413. "hyper-timeout",
  4414. "percent-encoding",
  4415. "pin-project",
  4416. "prost",
  4417. "rustls 0.21.12",
  4418. "rustls-pemfile 1.0.4",
  4419. "tokio",
  4420. "tokio-rustls 0.24.1",
  4421. "tokio-stream",
  4422. "tower 0.4.13",
  4423. "tower-layer",
  4424. "tower-service",
  4425. "tracing",
  4426. ]
  4427. [[package]]
  4428. name = "tonic-build"
  4429. version = "0.10.2"
  4430. source = "registry+https://github.com/rust-lang/crates.io-index"
  4431. checksum = "9d021fc044c18582b9a2408cd0dd05b1596e3ecdb5c4df822bb0183545683889"
  4432. dependencies = [
  4433. "prettyplease",
  4434. "proc-macro2",
  4435. "prost-build",
  4436. "quote",
  4437. "syn 2.0.96",
  4438. ]
  4439. [[package]]
  4440. name = "tower"
  4441. version = "0.4.13"
  4442. source = "registry+https://github.com/rust-lang/crates.io-index"
  4443. checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
  4444. dependencies = [
  4445. "futures-core",
  4446. "futures-util",
  4447. "indexmap 1.9.3",
  4448. "pin-project",
  4449. "pin-project-lite",
  4450. "rand",
  4451. "slab",
  4452. "tokio",
  4453. "tokio-util",
  4454. "tower-layer",
  4455. "tower-service",
  4456. "tracing",
  4457. ]
  4458. [[package]]
  4459. name = "tower"
  4460. version = "0.5.2"
  4461. source = "registry+https://github.com/rust-lang/crates.io-index"
  4462. checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
  4463. dependencies = [
  4464. "futures-core",
  4465. "futures-util",
  4466. "pin-project-lite",
  4467. "sync_wrapper 1.0.2",
  4468. "tokio",
  4469. "tower-layer",
  4470. "tower-service",
  4471. ]
  4472. [[package]]
  4473. name = "tower-http"
  4474. version = "0.4.4"
  4475. source = "registry+https://github.com/rust-lang/crates.io-index"
  4476. checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
  4477. dependencies = [
  4478. "async-compression",
  4479. "bitflags 2.7.0",
  4480. "bytes",
  4481. "futures-core",
  4482. "futures-util",
  4483. "http 0.2.12",
  4484. "http-body 0.4.6",
  4485. "http-range-header",
  4486. "pin-project-lite",
  4487. "tokio",
  4488. "tokio-util",
  4489. "tower 0.4.13",
  4490. "tower-layer",
  4491. "tower-service",
  4492. ]
  4493. [[package]]
  4494. name = "tower-layer"
  4495. version = "0.3.3"
  4496. source = "registry+https://github.com/rust-lang/crates.io-index"
  4497. checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
  4498. [[package]]
  4499. name = "tower-service"
  4500. version = "0.3.3"
  4501. source = "registry+https://github.com/rust-lang/crates.io-index"
  4502. checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
  4503. [[package]]
  4504. name = "tracing"
  4505. version = "0.1.41"
  4506. source = "registry+https://github.com/rust-lang/crates.io-index"
  4507. checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
  4508. dependencies = [
  4509. "log",
  4510. "pin-project-lite",
  4511. "tracing-attributes",
  4512. "tracing-core",
  4513. ]
  4514. [[package]]
  4515. name = "tracing-attributes"
  4516. version = "0.1.28"
  4517. source = "registry+https://github.com/rust-lang/crates.io-index"
  4518. checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
  4519. dependencies = [
  4520. "proc-macro2",
  4521. "quote",
  4522. "syn 2.0.96",
  4523. ]
  4524. [[package]]
  4525. name = "tracing-core"
  4526. version = "0.1.33"
  4527. source = "registry+https://github.com/rust-lang/crates.io-index"
  4528. checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
  4529. dependencies = [
  4530. "once_cell",
  4531. "valuable",
  4532. ]
  4533. [[package]]
  4534. name = "tracing-log"
  4535. version = "0.2.0"
  4536. source = "registry+https://github.com/rust-lang/crates.io-index"
  4537. checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
  4538. dependencies = [
  4539. "log",
  4540. "once_cell",
  4541. "tracing-core",
  4542. ]
  4543. [[package]]
  4544. name = "tracing-subscriber"
  4545. version = "0.3.19"
  4546. source = "registry+https://github.com/rust-lang/crates.io-index"
  4547. checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
  4548. dependencies = [
  4549. "matchers",
  4550. "nu-ansi-term",
  4551. "once_cell",
  4552. "regex",
  4553. "sharded-slab",
  4554. "smallvec",
  4555. "thread_local",
  4556. "tracing",
  4557. "tracing-core",
  4558. "tracing-log",
  4559. ]
  4560. [[package]]
  4561. name = "triomphe"
  4562. version = "0.1.14"
  4563. source = "registry+https://github.com/rust-lang/crates.io-index"
  4564. checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85"
  4565. [[package]]
  4566. name = "try-lock"
  4567. version = "0.2.5"
  4568. source = "registry+https://github.com/rust-lang/crates.io-index"
  4569. checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
  4570. [[package]]
  4571. name = "tungstenite"
  4572. version = "0.19.0"
  4573. source = "registry+https://github.com/rust-lang/crates.io-index"
  4574. checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67"
  4575. dependencies = [
  4576. "byteorder",
  4577. "bytes",
  4578. "data-encoding",
  4579. "http 0.2.12",
  4580. "httparse",
  4581. "log",
  4582. "rand",
  4583. "rustls 0.21.12",
  4584. "sha1",
  4585. "thiserror 1.0.69",
  4586. "url",
  4587. "utf-8",
  4588. "webpki",
  4589. ]
  4590. [[package]]
  4591. name = "tungstenite"
  4592. version = "0.20.1"
  4593. source = "registry+https://github.com/rust-lang/crates.io-index"
  4594. checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
  4595. dependencies = [
  4596. "byteorder",
  4597. "bytes",
  4598. "data-encoding",
  4599. "http 0.2.12",
  4600. "httparse",
  4601. "log",
  4602. "rand",
  4603. "sha1",
  4604. "thiserror 1.0.69",
  4605. "url",
  4606. "utf-8",
  4607. ]
  4608. [[package]]
  4609. name = "tungstenite"
  4610. version = "0.24.0"
  4611. source = "registry+https://github.com/rust-lang/crates.io-index"
  4612. checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
  4613. dependencies = [
  4614. "byteorder",
  4615. "bytes",
  4616. "data-encoding",
  4617. "http 1.2.0",
  4618. "httparse",
  4619. "log",
  4620. "rand",
  4621. "rustls 0.23.21",
  4622. "rustls-pki-types",
  4623. "sha1",
  4624. "thiserror 1.0.69",
  4625. "utf-8",
  4626. ]
  4627. [[package]]
  4628. name = "typeid"
  4629. version = "1.0.2"
  4630. source = "registry+https://github.com/rust-lang/crates.io-index"
  4631. checksum = "0e13db2e0ccd5e14a544e8a246ba2312cd25223f616442d7f2cb0e3db614236e"
  4632. [[package]]
  4633. name = "typenum"
  4634. version = "1.17.0"
  4635. source = "registry+https://github.com/rust-lang/crates.io-index"
  4636. checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
  4637. [[package]]
  4638. name = "ucd-trie"
  4639. version = "0.1.7"
  4640. source = "registry+https://github.com/rust-lang/crates.io-index"
  4641. checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
  4642. [[package]]
  4643. name = "unicase"
  4644. version = "2.8.1"
  4645. source = "registry+https://github.com/rust-lang/crates.io-index"
  4646. checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
  4647. [[package]]
  4648. name = "unicode-bidi"
  4649. version = "0.3.18"
  4650. source = "registry+https://github.com/rust-lang/crates.io-index"
  4651. checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
  4652. [[package]]
  4653. name = "unicode-ident"
  4654. version = "1.0.14"
  4655. source = "registry+https://github.com/rust-lang/crates.io-index"
  4656. checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
  4657. [[package]]
  4658. name = "unicode-normalization"
  4659. version = "0.1.22"
  4660. source = "registry+https://github.com/rust-lang/crates.io-index"
  4661. checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
  4662. dependencies = [
  4663. "tinyvec",
  4664. ]
  4665. [[package]]
  4666. name = "unicode-properties"
  4667. version = "0.1.3"
  4668. source = "registry+https://github.com/rust-lang/crates.io-index"
  4669. checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
  4670. [[package]]
  4671. name = "unicode-segmentation"
  4672. version = "1.12.0"
  4673. source = "registry+https://github.com/rust-lang/crates.io-index"
  4674. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  4675. [[package]]
  4676. name = "unicode_categories"
  4677. version = "0.1.1"
  4678. source = "registry+https://github.com/rust-lang/crates.io-index"
  4679. checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
  4680. [[package]]
  4681. name = "universal-hash"
  4682. version = "0.5.1"
  4683. source = "registry+https://github.com/rust-lang/crates.io-index"
  4684. checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
  4685. dependencies = [
  4686. "crypto-common",
  4687. "subtle",
  4688. ]
  4689. [[package]]
  4690. name = "untrusted"
  4691. version = "0.7.1"
  4692. source = "registry+https://github.com/rust-lang/crates.io-index"
  4693. checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
  4694. [[package]]
  4695. name = "untrusted"
  4696. version = "0.9.0"
  4697. source = "registry+https://github.com/rust-lang/crates.io-index"
  4698. checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
  4699. [[package]]
  4700. name = "url"
  4701. version = "2.5.4"
  4702. source = "registry+https://github.com/rust-lang/crates.io-index"
  4703. checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
  4704. dependencies = [
  4705. "form_urlencoded",
  4706. "idna",
  4707. "percent-encoding",
  4708. "serde",
  4709. ]
  4710. [[package]]
  4711. name = "utf-8"
  4712. version = "0.7.6"
  4713. source = "registry+https://github.com/rust-lang/crates.io-index"
  4714. checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
  4715. [[package]]
  4716. name = "utf16_iter"
  4717. version = "1.0.5"
  4718. source = "registry+https://github.com/rust-lang/crates.io-index"
  4719. checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
  4720. [[package]]
  4721. name = "utf8_iter"
  4722. version = "1.0.4"
  4723. source = "registry+https://github.com/rust-lang/crates.io-index"
  4724. checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
  4725. [[package]]
  4726. name = "utf8parse"
  4727. version = "0.2.2"
  4728. source = "registry+https://github.com/rust-lang/crates.io-index"
  4729. checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
  4730. [[package]]
  4731. name = "utoipa"
  4732. version = "4.2.3"
  4733. source = "registry+https://github.com/rust-lang/crates.io-index"
  4734. checksum = "c5afb1a60e207dca502682537fefcfd9921e71d0b83e9576060f09abc6efab23"
  4735. dependencies = [
  4736. "indexmap 2.7.0",
  4737. "serde",
  4738. "serde_json",
  4739. "utoipa-gen",
  4740. ]
  4741. [[package]]
  4742. name = "utoipa-gen"
  4743. version = "4.3.1"
  4744. source = "registry+https://github.com/rust-lang/crates.io-index"
  4745. checksum = "20c24e8ab68ff9ee746aad22d39b5535601e6416d1b0feeabf78be986a5c4392"
  4746. dependencies = [
  4747. "proc-macro-error",
  4748. "proc-macro2",
  4749. "quote",
  4750. "syn 2.0.96",
  4751. ]
  4752. [[package]]
  4753. name = "utoipa-swagger-ui"
  4754. version = "4.0.0"
  4755. source = "registry+https://github.com/rust-lang/crates.io-index"
  4756. checksum = "154517adf0d0b6e22e8e1f385628f14fcaa3db43531dc74303d3edef89d6dfe5"
  4757. dependencies = [
  4758. "axum",
  4759. "mime_guess",
  4760. "regex",
  4761. "rust-embed",
  4762. "serde",
  4763. "serde_json",
  4764. "utoipa",
  4765. "zip",
  4766. ]
  4767. [[package]]
  4768. name = "uuid"
  4769. version = "1.11.1"
  4770. source = "registry+https://github.com/rust-lang/crates.io-index"
  4771. checksum = "b913a3b5fe84142e269d63cc62b64319ccaf89b748fc31fe025177f767a756c4"
  4772. dependencies = [
  4773. "getrandom",
  4774. "serde",
  4775. ]
  4776. [[package]]
  4777. name = "valuable"
  4778. version = "0.1.0"
  4779. source = "registry+https://github.com/rust-lang/crates.io-index"
  4780. checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
  4781. [[package]]
  4782. name = "value-bag"
  4783. version = "1.10.0"
  4784. source = "registry+https://github.com/rust-lang/crates.io-index"
  4785. checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2"
  4786. dependencies = [
  4787. "value-bag-serde1",
  4788. "value-bag-sval2",
  4789. ]
  4790. [[package]]
  4791. name = "value-bag-serde1"
  4792. version = "1.10.0"
  4793. source = "registry+https://github.com/rust-lang/crates.io-index"
  4794. checksum = "4bb773bd36fd59c7ca6e336c94454d9c66386416734817927ac93d81cb3c5b0b"
  4795. dependencies = [
  4796. "erased-serde",
  4797. "serde",
  4798. "serde_fmt",
  4799. ]
  4800. [[package]]
  4801. name = "value-bag-sval2"
  4802. version = "1.10.0"
  4803. source = "registry+https://github.com/rust-lang/crates.io-index"
  4804. checksum = "53a916a702cac43a88694c97657d449775667bcd14b70419441d05b7fea4a83a"
  4805. dependencies = [
  4806. "sval",
  4807. "sval_buffer",
  4808. "sval_dynamic",
  4809. "sval_fmt",
  4810. "sval_json",
  4811. "sval_ref",
  4812. "sval_serde",
  4813. ]
  4814. [[package]]
  4815. name = "vcpkg"
  4816. version = "0.2.15"
  4817. source = "registry+https://github.com/rust-lang/crates.io-index"
  4818. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  4819. [[package]]
  4820. name = "version_check"
  4821. version = "0.9.5"
  4822. source = "registry+https://github.com/rust-lang/crates.io-index"
  4823. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  4824. [[package]]
  4825. name = "waker-fn"
  4826. version = "1.2.0"
  4827. source = "registry+https://github.com/rust-lang/crates.io-index"
  4828. checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
  4829. [[package]]
  4830. name = "walkdir"
  4831. version = "2.5.0"
  4832. source = "registry+https://github.com/rust-lang/crates.io-index"
  4833. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  4834. dependencies = [
  4835. "same-file",
  4836. "winapi-util",
  4837. ]
  4838. [[package]]
  4839. name = "want"
  4840. version = "0.3.1"
  4841. source = "registry+https://github.com/rust-lang/crates.io-index"
  4842. checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
  4843. dependencies = [
  4844. "try-lock",
  4845. ]
  4846. [[package]]
  4847. name = "wasi"
  4848. version = "0.11.0+wasi-snapshot-preview1"
  4849. source = "registry+https://github.com/rust-lang/crates.io-index"
  4850. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  4851. [[package]]
  4852. name = "wasm-bindgen"
  4853. version = "0.2.99"
  4854. source = "registry+https://github.com/rust-lang/crates.io-index"
  4855. checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
  4856. dependencies = [
  4857. "cfg-if",
  4858. "once_cell",
  4859. "wasm-bindgen-macro",
  4860. ]
  4861. [[package]]
  4862. name = "wasm-bindgen-backend"
  4863. version = "0.2.99"
  4864. source = "registry+https://github.com/rust-lang/crates.io-index"
  4865. checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
  4866. dependencies = [
  4867. "bumpalo",
  4868. "log",
  4869. "proc-macro2",
  4870. "quote",
  4871. "syn 2.0.96",
  4872. "wasm-bindgen-shared",
  4873. ]
  4874. [[package]]
  4875. name = "wasm-bindgen-futures"
  4876. version = "0.4.49"
  4877. source = "registry+https://github.com/rust-lang/crates.io-index"
  4878. checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
  4879. dependencies = [
  4880. "cfg-if",
  4881. "js-sys",
  4882. "once_cell",
  4883. "wasm-bindgen",
  4884. "web-sys",
  4885. ]
  4886. [[package]]
  4887. name = "wasm-bindgen-macro"
  4888. version = "0.2.99"
  4889. source = "registry+https://github.com/rust-lang/crates.io-index"
  4890. checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
  4891. dependencies = [
  4892. "quote",
  4893. "wasm-bindgen-macro-support",
  4894. ]
  4895. [[package]]
  4896. name = "wasm-bindgen-macro-support"
  4897. version = "0.2.99"
  4898. source = "registry+https://github.com/rust-lang/crates.io-index"
  4899. checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
  4900. dependencies = [
  4901. "proc-macro2",
  4902. "quote",
  4903. "syn 2.0.96",
  4904. "wasm-bindgen-backend",
  4905. "wasm-bindgen-shared",
  4906. ]
  4907. [[package]]
  4908. name = "wasm-bindgen-shared"
  4909. version = "0.2.99"
  4910. source = "registry+https://github.com/rust-lang/crates.io-index"
  4911. checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
  4912. [[package]]
  4913. name = "web-sys"
  4914. version = "0.3.76"
  4915. source = "registry+https://github.com/rust-lang/crates.io-index"
  4916. checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
  4917. dependencies = [
  4918. "js-sys",
  4919. "wasm-bindgen",
  4920. ]
  4921. [[package]]
  4922. name = "web-time"
  4923. version = "1.1.0"
  4924. source = "registry+https://github.com/rust-lang/crates.io-index"
  4925. checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
  4926. dependencies = [
  4927. "js-sys",
  4928. "wasm-bindgen",
  4929. ]
  4930. [[package]]
  4931. name = "webpki"
  4932. version = "0.22.4"
  4933. source = "registry+https://github.com/rust-lang/crates.io-index"
  4934. checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
  4935. dependencies = [
  4936. "ring 0.17.8",
  4937. "untrusted 0.9.0",
  4938. ]
  4939. [[package]]
  4940. name = "webpki-roots"
  4941. version = "0.22.6"
  4942. source = "registry+https://github.com/rust-lang/crates.io-index"
  4943. checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
  4944. dependencies = [
  4945. "webpki",
  4946. ]
  4947. [[package]]
  4948. name = "webpki-roots"
  4949. version = "0.26.7"
  4950. source = "registry+https://github.com/rust-lang/crates.io-index"
  4951. checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
  4952. dependencies = [
  4953. "rustls-pki-types",
  4954. ]
  4955. [[package]]
  4956. name = "winapi"
  4957. version = "0.3.9"
  4958. source = "registry+https://github.com/rust-lang/crates.io-index"
  4959. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  4960. dependencies = [
  4961. "winapi-i686-pc-windows-gnu",
  4962. "winapi-x86_64-pc-windows-gnu",
  4963. ]
  4964. [[package]]
  4965. name = "winapi-i686-pc-windows-gnu"
  4966. version = "0.4.0"
  4967. source = "registry+https://github.com/rust-lang/crates.io-index"
  4968. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  4969. [[package]]
  4970. name = "winapi-util"
  4971. version = "0.1.9"
  4972. source = "registry+https://github.com/rust-lang/crates.io-index"
  4973. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  4974. dependencies = [
  4975. "windows-sys 0.59.0",
  4976. ]
  4977. [[package]]
  4978. name = "winapi-x86_64-pc-windows-gnu"
  4979. version = "0.4.0"
  4980. source = "registry+https://github.com/rust-lang/crates.io-index"
  4981. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  4982. [[package]]
  4983. name = "windows-core"
  4984. version = "0.52.0"
  4985. source = "registry+https://github.com/rust-lang/crates.io-index"
  4986. checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
  4987. dependencies = [
  4988. "windows-targets 0.52.6",
  4989. ]
  4990. [[package]]
  4991. name = "windows-registry"
  4992. version = "0.2.0"
  4993. source = "registry+https://github.com/rust-lang/crates.io-index"
  4994. checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
  4995. dependencies = [
  4996. "windows-result",
  4997. "windows-strings",
  4998. "windows-targets 0.52.6",
  4999. ]
  5000. [[package]]
  5001. name = "windows-result"
  5002. version = "0.2.0"
  5003. source = "registry+https://github.com/rust-lang/crates.io-index"
  5004. checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
  5005. dependencies = [
  5006. "windows-targets 0.52.6",
  5007. ]
  5008. [[package]]
  5009. name = "windows-strings"
  5010. version = "0.1.0"
  5011. source = "registry+https://github.com/rust-lang/crates.io-index"
  5012. checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
  5013. dependencies = [
  5014. "windows-result",
  5015. "windows-targets 0.52.6",
  5016. ]
  5017. [[package]]
  5018. name = "windows-sys"
  5019. version = "0.48.0"
  5020. source = "registry+https://github.com/rust-lang/crates.io-index"
  5021. checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
  5022. dependencies = [
  5023. "windows-targets 0.48.5",
  5024. ]
  5025. [[package]]
  5026. name = "windows-sys"
  5027. version = "0.52.0"
  5028. source = "registry+https://github.com/rust-lang/crates.io-index"
  5029. checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
  5030. dependencies = [
  5031. "windows-targets 0.52.6",
  5032. ]
  5033. [[package]]
  5034. name = "windows-sys"
  5035. version = "0.59.0"
  5036. source = "registry+https://github.com/rust-lang/crates.io-index"
  5037. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  5038. dependencies = [
  5039. "windows-targets 0.52.6",
  5040. ]
  5041. [[package]]
  5042. name = "windows-targets"
  5043. version = "0.48.5"
  5044. source = "registry+https://github.com/rust-lang/crates.io-index"
  5045. checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
  5046. dependencies = [
  5047. "windows_aarch64_gnullvm 0.48.5",
  5048. "windows_aarch64_msvc 0.48.5",
  5049. "windows_i686_gnu 0.48.5",
  5050. "windows_i686_msvc 0.48.5",
  5051. "windows_x86_64_gnu 0.48.5",
  5052. "windows_x86_64_gnullvm 0.48.5",
  5053. "windows_x86_64_msvc 0.48.5",
  5054. ]
  5055. [[package]]
  5056. name = "windows-targets"
  5057. version = "0.52.6"
  5058. source = "registry+https://github.com/rust-lang/crates.io-index"
  5059. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  5060. dependencies = [
  5061. "windows_aarch64_gnullvm 0.52.6",
  5062. "windows_aarch64_msvc 0.52.6",
  5063. "windows_i686_gnu 0.52.6",
  5064. "windows_i686_gnullvm",
  5065. "windows_i686_msvc 0.52.6",
  5066. "windows_x86_64_gnu 0.52.6",
  5067. "windows_x86_64_gnullvm 0.52.6",
  5068. "windows_x86_64_msvc 0.52.6",
  5069. ]
  5070. [[package]]
  5071. name = "windows_aarch64_gnullvm"
  5072. version = "0.48.5"
  5073. source = "registry+https://github.com/rust-lang/crates.io-index"
  5074. checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
  5075. [[package]]
  5076. name = "windows_aarch64_gnullvm"
  5077. version = "0.52.6"
  5078. source = "registry+https://github.com/rust-lang/crates.io-index"
  5079. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  5080. [[package]]
  5081. name = "windows_aarch64_msvc"
  5082. version = "0.48.5"
  5083. source = "registry+https://github.com/rust-lang/crates.io-index"
  5084. checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
  5085. [[package]]
  5086. name = "windows_aarch64_msvc"
  5087. version = "0.52.6"
  5088. source = "registry+https://github.com/rust-lang/crates.io-index"
  5089. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  5090. [[package]]
  5091. name = "windows_i686_gnu"
  5092. version = "0.48.5"
  5093. source = "registry+https://github.com/rust-lang/crates.io-index"
  5094. checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
  5095. [[package]]
  5096. name = "windows_i686_gnu"
  5097. version = "0.52.6"
  5098. source = "registry+https://github.com/rust-lang/crates.io-index"
  5099. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  5100. [[package]]
  5101. name = "windows_i686_gnullvm"
  5102. version = "0.52.6"
  5103. source = "registry+https://github.com/rust-lang/crates.io-index"
  5104. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  5105. [[package]]
  5106. name = "windows_i686_msvc"
  5107. version = "0.48.5"
  5108. source = "registry+https://github.com/rust-lang/crates.io-index"
  5109. checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
  5110. [[package]]
  5111. name = "windows_i686_msvc"
  5112. version = "0.52.6"
  5113. source = "registry+https://github.com/rust-lang/crates.io-index"
  5114. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  5115. [[package]]
  5116. name = "windows_x86_64_gnu"
  5117. version = "0.48.5"
  5118. source = "registry+https://github.com/rust-lang/crates.io-index"
  5119. checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
  5120. [[package]]
  5121. name = "windows_x86_64_gnu"
  5122. version = "0.52.6"
  5123. source = "registry+https://github.com/rust-lang/crates.io-index"
  5124. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  5125. [[package]]
  5126. name = "windows_x86_64_gnullvm"
  5127. version = "0.48.5"
  5128. source = "registry+https://github.com/rust-lang/crates.io-index"
  5129. checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
  5130. [[package]]
  5131. name = "windows_x86_64_gnullvm"
  5132. version = "0.52.6"
  5133. source = "registry+https://github.com/rust-lang/crates.io-index"
  5134. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  5135. [[package]]
  5136. name = "windows_x86_64_msvc"
  5137. version = "0.48.5"
  5138. source = "registry+https://github.com/rust-lang/crates.io-index"
  5139. checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
  5140. [[package]]
  5141. name = "windows_x86_64_msvc"
  5142. version = "0.52.6"
  5143. source = "registry+https://github.com/rust-lang/crates.io-index"
  5144. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  5145. [[package]]
  5146. name = "write16"
  5147. version = "1.0.0"
  5148. source = "registry+https://github.com/rust-lang/crates.io-index"
  5149. checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
  5150. [[package]]
  5151. name = "writeable"
  5152. version = "0.5.5"
  5153. source = "registry+https://github.com/rust-lang/crates.io-index"
  5154. checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
  5155. [[package]]
  5156. name = "yaml-rust"
  5157. version = "0.4.5"
  5158. source = "registry+https://github.com/rust-lang/crates.io-index"
  5159. checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
  5160. dependencies = [
  5161. "linked-hash-map",
  5162. ]
  5163. [[package]]
  5164. name = "yoke"
  5165. version = "0.7.5"
  5166. source = "registry+https://github.com/rust-lang/crates.io-index"
  5167. checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
  5168. dependencies = [
  5169. "serde",
  5170. "stable_deref_trait",
  5171. "yoke-derive",
  5172. "zerofrom",
  5173. ]
  5174. [[package]]
  5175. name = "yoke-derive"
  5176. version = "0.7.5"
  5177. source = "registry+https://github.com/rust-lang/crates.io-index"
  5178. checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
  5179. dependencies = [
  5180. "proc-macro2",
  5181. "quote",
  5182. "syn 2.0.96",
  5183. "synstructure",
  5184. ]
  5185. [[package]]
  5186. name = "zerocopy"
  5187. version = "0.7.35"
  5188. source = "registry+https://github.com/rust-lang/crates.io-index"
  5189. checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
  5190. dependencies = [
  5191. "byteorder",
  5192. "zerocopy-derive",
  5193. ]
  5194. [[package]]
  5195. name = "zerocopy-derive"
  5196. version = "0.7.35"
  5197. source = "registry+https://github.com/rust-lang/crates.io-index"
  5198. checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
  5199. dependencies = [
  5200. "proc-macro2",
  5201. "quote",
  5202. "syn 2.0.96",
  5203. ]
  5204. [[package]]
  5205. name = "zerofrom"
  5206. version = "0.1.5"
  5207. source = "registry+https://github.com/rust-lang/crates.io-index"
  5208. checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
  5209. dependencies = [
  5210. "zerofrom-derive",
  5211. ]
  5212. [[package]]
  5213. name = "zerofrom-derive"
  5214. version = "0.1.5"
  5215. source = "registry+https://github.com/rust-lang/crates.io-index"
  5216. checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
  5217. dependencies = [
  5218. "proc-macro2",
  5219. "quote",
  5220. "syn 2.0.96",
  5221. "synstructure",
  5222. ]
  5223. [[package]]
  5224. name = "zeroize"
  5225. version = "1.8.1"
  5226. source = "registry+https://github.com/rust-lang/crates.io-index"
  5227. checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
  5228. [[package]]
  5229. name = "zerovec"
  5230. version = "0.10.4"
  5231. source = "registry+https://github.com/rust-lang/crates.io-index"
  5232. checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
  5233. dependencies = [
  5234. "yoke",
  5235. "zerofrom",
  5236. "zerovec-derive",
  5237. ]
  5238. [[package]]
  5239. name = "zerovec-derive"
  5240. version = "0.10.3"
  5241. source = "registry+https://github.com/rust-lang/crates.io-index"
  5242. checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
  5243. dependencies = [
  5244. "proc-macro2",
  5245. "quote",
  5246. "syn 2.0.96",
  5247. ]
  5248. [[package]]
  5249. name = "zip"
  5250. version = "0.6.6"
  5251. source = "registry+https://github.com/rust-lang/crates.io-index"
  5252. checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
  5253. dependencies = [
  5254. "byteorder",
  5255. "crc32fast",
  5256. "crossbeam-utils",
  5257. "flate2",
  5258. ]
  5259. [[package]]
  5260. name = "zstd"
  5261. version = "0.13.2"
  5262. source = "registry+https://github.com/rust-lang/crates.io-index"
  5263. checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
  5264. dependencies = [
  5265. "zstd-safe",
  5266. ]
  5267. [[package]]
  5268. name = "zstd-safe"
  5269. version = "7.2.1"
  5270. source = "registry+https://github.com/rust-lang/crates.io-index"
  5271. checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
  5272. dependencies = [
  5273. "zstd-sys",
  5274. ]
  5275. [[package]]
  5276. name = "zstd-sys"
  5277. version = "2.0.13+zstd.1.5.6"
  5278. source = "registry+https://github.com/rust-lang/crates.io-index"
  5279. checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
  5280. dependencies = [
  5281. "cc",
  5282. "pkg-config",
  5283. ]