Cargo.lock 129 KB

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