Cargo.lock 132 KB

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