Cargo.lock 129 KB

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