Cargo.lock 133 KB

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