Cargo.lock 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 4
  4. [[package]]
  5. name = "aho-corasick"
  6. version = "1.1.3"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
  9. dependencies = [
  10. "memchr",
  11. ]
  12. [[package]]
  13. name = "anyhow"
  14. version = "1.0.91"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8"
  17. [[package]]
  18. name = "async-recursion"
  19. version = "1.1.1"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
  22. dependencies = [
  23. "proc-macro2",
  24. "quote",
  25. "syn",
  26. ]
  27. [[package]]
  28. name = "attribute-derive"
  29. version = "0.9.2"
  30. source = "registry+https://github.com/rust-lang/crates.io-index"
  31. checksum = "1f1ee502851995027b06f99f5ffbeffa1406b38d0b318a1ebfa469332c6cbafd"
  32. dependencies = [
  33. "attribute-derive-macro",
  34. "derive-where",
  35. "manyhow",
  36. "proc-macro2",
  37. "quote",
  38. "syn",
  39. ]
  40. [[package]]
  41. name = "attribute-derive-macro"
  42. version = "0.9.2"
  43. source = "registry+https://github.com/rust-lang/crates.io-index"
  44. checksum = "3601467f634cfe36c4780ca9c75dea9a5b34529c1f2810676a337e7e0997f954"
  45. dependencies = [
  46. "collection_literals",
  47. "interpolator",
  48. "manyhow",
  49. "proc-macro-utils 0.8.0",
  50. "proc-macro2",
  51. "quote",
  52. "quote-use",
  53. "syn",
  54. ]
  55. [[package]]
  56. name = "autocfg"
  57. version = "1.4.0"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
  60. [[package]]
  61. name = "base64"
  62. version = "0.22.1"
  63. source = "registry+https://github.com/rust-lang/crates.io-index"
  64. checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
  65. [[package]]
  66. name = "bitflags"
  67. version = "2.6.0"
  68. source = "registry+https://github.com/rust-lang/crates.io-index"
  69. checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
  70. [[package]]
  71. name = "bumpalo"
  72. version = "3.16.0"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
  75. [[package]]
  76. name = "bytes"
  77. version = "1.8.0"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
  80. [[package]]
  81. name = "camino"
  82. version = "1.1.9"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
  85. [[package]]
  86. name = "cfg-if"
  87. version = "1.0.0"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  90. [[package]]
  91. name = "ciborium"
  92. version = "0.2.2"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
  95. dependencies = [
  96. "ciborium-io",
  97. "ciborium-ll",
  98. "serde",
  99. ]
  100. [[package]]
  101. name = "ciborium-io"
  102. version = "0.2.2"
  103. source = "registry+https://github.com/rust-lang/crates.io-index"
  104. checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
  105. [[package]]
  106. name = "ciborium-ll"
  107. version = "0.2.2"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
  110. dependencies = [
  111. "ciborium-io",
  112. "half",
  113. ]
  114. [[package]]
  115. name = "collection_literals"
  116. version = "1.0.1"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "186dce98367766de751c42c4f03970fc60fc012296e706ccbb9d5df9b6c1e271"
  119. [[package]]
  120. name = "config"
  121. version = "0.14.1"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf"
  124. dependencies = [
  125. "convert_case",
  126. "nom",
  127. "pathdiff",
  128. "serde",
  129. "toml",
  130. ]
  131. [[package]]
  132. name = "console_error_panic_hook"
  133. version = "0.1.7"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
  136. dependencies = [
  137. "cfg-if",
  138. "wasm-bindgen",
  139. ]
  140. [[package]]
  141. name = "const_format"
  142. version = "0.2.33"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b"
  145. dependencies = [
  146. "const_format_proc_macros",
  147. ]
  148. [[package]]
  149. name = "const_format_proc_macros"
  150. version = "0.2.33"
  151. source = "registry+https://github.com/rust-lang/crates.io-index"
  152. checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1"
  153. dependencies = [
  154. "proc-macro2",
  155. "quote",
  156. "unicode-xid",
  157. ]
  158. [[package]]
  159. name = "convert_case"
  160. version = "0.6.0"
  161. source = "registry+https://github.com/rust-lang/crates.io-index"
  162. checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
  163. dependencies = [
  164. "unicode-segmentation",
  165. ]
  166. [[package]]
  167. name = "crunchy"
  168. version = "0.2.2"
  169. source = "registry+https://github.com/rust-lang/crates.io-index"
  170. checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
  171. [[package]]
  172. name = "dashmap"
  173. version = "5.5.3"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
  176. dependencies = [
  177. "cfg-if",
  178. "hashbrown 0.14.5",
  179. "lock_api",
  180. "once_cell",
  181. "parking_lot_core",
  182. ]
  183. [[package]]
  184. name = "derive-where"
  185. version = "1.2.7"
  186. source = "registry+https://github.com/rust-lang/crates.io-index"
  187. checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25"
  188. dependencies = [
  189. "proc-macro2",
  190. "quote",
  191. "syn",
  192. ]
  193. [[package]]
  194. name = "drain_filter_polyfill"
  195. version = "0.1.3"
  196. source = "registry+https://github.com/rust-lang/crates.io-index"
  197. checksum = "669a445ee724c5c69b1b06fe0b63e70a1c84bc9bb7d9696cd4f4e3ec45050408"
  198. [[package]]
  199. name = "either"
  200. version = "1.13.0"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
  203. [[package]]
  204. name = "equivalent"
  205. version = "1.0.1"
  206. source = "registry+https://github.com/rust-lang/crates.io-index"
  207. checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
  208. [[package]]
  209. name = "fnv"
  210. version = "1.0.7"
  211. source = "registry+https://github.com/rust-lang/crates.io-index"
  212. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  213. [[package]]
  214. name = "form_urlencoded"
  215. version = "1.2.1"
  216. source = "registry+https://github.com/rust-lang/crates.io-index"
  217. checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
  218. dependencies = [
  219. "percent-encoding",
  220. ]
  221. [[package]]
  222. name = "futures"
  223. version = "0.3.31"
  224. source = "registry+https://github.com/rust-lang/crates.io-index"
  225. checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
  226. dependencies = [
  227. "futures-channel",
  228. "futures-core",
  229. "futures-executor",
  230. "futures-io",
  231. "futures-sink",
  232. "futures-task",
  233. "futures-util",
  234. ]
  235. [[package]]
  236. name = "futures-channel"
  237. version = "0.3.31"
  238. source = "registry+https://github.com/rust-lang/crates.io-index"
  239. checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
  240. dependencies = [
  241. "futures-core",
  242. "futures-sink",
  243. ]
  244. [[package]]
  245. name = "futures-core"
  246. version = "0.3.31"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
  249. [[package]]
  250. name = "futures-executor"
  251. version = "0.3.31"
  252. source = "registry+https://github.com/rust-lang/crates.io-index"
  253. checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
  254. dependencies = [
  255. "futures-core",
  256. "futures-task",
  257. "futures-util",
  258. ]
  259. [[package]]
  260. name = "futures-io"
  261. version = "0.3.31"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
  264. [[package]]
  265. name = "futures-macro"
  266. version = "0.3.31"
  267. source = "registry+https://github.com/rust-lang/crates.io-index"
  268. checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
  269. dependencies = [
  270. "proc-macro2",
  271. "quote",
  272. "syn",
  273. ]
  274. [[package]]
  275. name = "futures-sink"
  276. version = "0.3.31"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
  279. [[package]]
  280. name = "futures-task"
  281. version = "0.3.31"
  282. source = "registry+https://github.com/rust-lang/crates.io-index"
  283. checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
  284. [[package]]
  285. name = "futures-util"
  286. version = "0.3.31"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
  289. dependencies = [
  290. "futures-channel",
  291. "futures-core",
  292. "futures-io",
  293. "futures-macro",
  294. "futures-sink",
  295. "futures-task",
  296. "memchr",
  297. "pin-project-lite",
  298. "pin-utils",
  299. "slab",
  300. ]
  301. [[package]]
  302. name = "getrandom"
  303. version = "0.2.15"
  304. source = "registry+https://github.com/rust-lang/crates.io-index"
  305. checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
  306. dependencies = [
  307. "cfg-if",
  308. "js-sys",
  309. "libc",
  310. "wasi",
  311. "wasm-bindgen",
  312. ]
  313. [[package]]
  314. name = "gloo-net"
  315. version = "0.6.0"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580"
  318. dependencies = [
  319. "futures-channel",
  320. "futures-core",
  321. "futures-sink",
  322. "gloo-utils",
  323. "http",
  324. "js-sys",
  325. "pin-project",
  326. "serde",
  327. "serde_json",
  328. "thiserror",
  329. "wasm-bindgen",
  330. "wasm-bindgen-futures",
  331. "web-sys",
  332. ]
  333. [[package]]
  334. name = "gloo-utils"
  335. version = "0.2.0"
  336. source = "registry+https://github.com/rust-lang/crates.io-index"
  337. checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
  338. dependencies = [
  339. "js-sys",
  340. "serde",
  341. "serde_json",
  342. "wasm-bindgen",
  343. "web-sys",
  344. ]
  345. [[package]]
  346. name = "half"
  347. version = "2.4.1"
  348. source = "registry+https://github.com/rust-lang/crates.io-index"
  349. checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
  350. dependencies = [
  351. "cfg-if",
  352. "crunchy",
  353. ]
  354. [[package]]
  355. name = "hashbrown"
  356. version = "0.14.5"
  357. source = "registry+https://github.com/rust-lang/crates.io-index"
  358. checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
  359. [[package]]
  360. name = "hashbrown"
  361. version = "0.15.0"
  362. source = "registry+https://github.com/rust-lang/crates.io-index"
  363. checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
  364. [[package]]
  365. name = "html-escape"
  366. version = "0.2.13"
  367. source = "registry+https://github.com/rust-lang/crates.io-index"
  368. checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
  369. dependencies = [
  370. "utf8-width",
  371. ]
  372. [[package]]
  373. name = "http"
  374. version = "1.1.0"
  375. source = "registry+https://github.com/rust-lang/crates.io-index"
  376. checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
  377. dependencies = [
  378. "bytes",
  379. "fnv",
  380. "itoa",
  381. ]
  382. [[package]]
  383. name = "idna"
  384. version = "0.5.0"
  385. source = "registry+https://github.com/rust-lang/crates.io-index"
  386. checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
  387. dependencies = [
  388. "unicode-bidi",
  389. "unicode-normalization",
  390. ]
  391. [[package]]
  392. name = "indexmap"
  393. version = "2.6.0"
  394. source = "registry+https://github.com/rust-lang/crates.io-index"
  395. checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
  396. dependencies = [
  397. "equivalent",
  398. "hashbrown 0.15.0",
  399. ]
  400. [[package]]
  401. name = "interpolator"
  402. version = "0.5.0"
  403. source = "registry+https://github.com/rust-lang/crates.io-index"
  404. checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
  405. [[package]]
  406. name = "inventory"
  407. version = "0.3.15"
  408. source = "registry+https://github.com/rust-lang/crates.io-index"
  409. checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
  410. [[package]]
  411. name = "itertools"
  412. version = "0.12.1"
  413. source = "registry+https://github.com/rust-lang/crates.io-index"
  414. checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
  415. dependencies = [
  416. "either",
  417. ]
  418. [[package]]
  419. name = "itoa"
  420. version = "1.0.11"
  421. source = "registry+https://github.com/rust-lang/crates.io-index"
  422. checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
  423. [[package]]
  424. name = "js-sys"
  425. version = "0.3.72"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
  428. dependencies = [
  429. "wasm-bindgen",
  430. ]
  431. [[package]]
  432. name = "lazy_static"
  433. version = "1.5.0"
  434. source = "registry+https://github.com/rust-lang/crates.io-index"
  435. checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
  436. [[package]]
  437. name = "leptos"
  438. version = "0.6.15"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "0cbb3237c274dadf00dcc27db96c52601b40375117178fb24a991cda073624f0"
  441. dependencies = [
  442. "cfg-if",
  443. "leptos_config",
  444. "leptos_dom",
  445. "leptos_macro",
  446. "leptos_reactive",
  447. "leptos_server",
  448. "server_fn",
  449. "tracing",
  450. "typed-builder",
  451. "typed-builder-macro",
  452. "wasm-bindgen",
  453. "web-sys",
  454. ]
  455. [[package]]
  456. name = "leptos1"
  457. version = "0.1.0"
  458. dependencies = [
  459. "console_error_panic_hook",
  460. "leptos",
  461. ]
  462. [[package]]
  463. name = "leptos_config"
  464. version = "0.6.15"
  465. source = "registry+https://github.com/rust-lang/crates.io-index"
  466. checksum = "62ed778611380ddea47568ac6ad6ec5158d39b5bd59e6c4dcd24efc15dc3dc0d"
  467. dependencies = [
  468. "config",
  469. "regex",
  470. "serde",
  471. "thiserror",
  472. "typed-builder",
  473. ]
  474. [[package]]
  475. name = "leptos_dom"
  476. version = "0.6.15"
  477. source = "registry+https://github.com/rust-lang/crates.io-index"
  478. checksum = "8401c46c86c1f4c16dcb7881ed319fcdca9cda9b9e78a6088955cb423afcf119"
  479. dependencies = [
  480. "async-recursion",
  481. "cfg-if",
  482. "drain_filter_polyfill",
  483. "futures",
  484. "getrandom",
  485. "html-escape",
  486. "indexmap",
  487. "itertools",
  488. "js-sys",
  489. "leptos_reactive",
  490. "once_cell",
  491. "pad-adapter",
  492. "paste",
  493. "rustc-hash",
  494. "serde",
  495. "serde_json",
  496. "server_fn",
  497. "smallvec",
  498. "tracing",
  499. "wasm-bindgen",
  500. "wasm-bindgen-futures",
  501. "web-sys",
  502. ]
  503. [[package]]
  504. name = "leptos_hot_reload"
  505. version = "0.6.15"
  506. source = "registry+https://github.com/rust-lang/crates.io-index"
  507. checksum = "6cb53d4794240b684a2f4be224b84bee9e62d2abc498cf2bcd643cd565e01d96"
  508. dependencies = [
  509. "anyhow",
  510. "camino",
  511. "indexmap",
  512. "parking_lot",
  513. "proc-macro2",
  514. "quote",
  515. "rstml",
  516. "serde",
  517. "syn",
  518. "walkdir",
  519. ]
  520. [[package]]
  521. name = "leptos_macro"
  522. version = "0.6.15"
  523. source = "registry+https://github.com/rust-lang/crates.io-index"
  524. checksum = "4b13bc3db70715cd8218c4535a5af3ae3c0e5fea6f018531fc339377b36bc0e0"
  525. dependencies = [
  526. "attribute-derive",
  527. "cfg-if",
  528. "convert_case",
  529. "html-escape",
  530. "itertools",
  531. "leptos_hot_reload",
  532. "prettyplease",
  533. "proc-macro-error2",
  534. "proc-macro2",
  535. "quote",
  536. "rstml",
  537. "server_fn_macro",
  538. "syn",
  539. "tracing",
  540. "uuid",
  541. ]
  542. [[package]]
  543. name = "leptos_reactive"
  544. version = "0.6.15"
  545. source = "registry+https://github.com/rust-lang/crates.io-index"
  546. checksum = "e4161acbf80f59219d8d14182371f57302bc7ff81ee41aba8ba1ff7295727f23"
  547. dependencies = [
  548. "base64",
  549. "cfg-if",
  550. "futures",
  551. "indexmap",
  552. "js-sys",
  553. "oco_ref",
  554. "paste",
  555. "pin-project",
  556. "rustc-hash",
  557. "self_cell",
  558. "serde",
  559. "serde-wasm-bindgen",
  560. "serde_json",
  561. "slotmap",
  562. "thiserror",
  563. "tracing",
  564. "wasm-bindgen",
  565. "wasm-bindgen-futures",
  566. "web-sys",
  567. ]
  568. [[package]]
  569. name = "leptos_server"
  570. version = "0.6.15"
  571. source = "registry+https://github.com/rust-lang/crates.io-index"
  572. checksum = "4a97eb90a13f71500b831c7119ddd3bdd0d7ae0a6b0487cade4fddeed3b8c03f"
  573. dependencies = [
  574. "inventory",
  575. "lazy_static",
  576. "leptos_macro",
  577. "leptos_reactive",
  578. "serde",
  579. "server_fn",
  580. "thiserror",
  581. "tracing",
  582. ]
  583. [[package]]
  584. name = "libc"
  585. version = "0.2.161"
  586. source = "registry+https://github.com/rust-lang/crates.io-index"
  587. checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
  588. [[package]]
  589. name = "lock_api"
  590. version = "0.4.12"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
  593. dependencies = [
  594. "autocfg",
  595. "scopeguard",
  596. ]
  597. [[package]]
  598. name = "log"
  599. version = "0.4.22"
  600. source = "registry+https://github.com/rust-lang/crates.io-index"
  601. checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
  602. [[package]]
  603. name = "manyhow"
  604. version = "0.10.4"
  605. source = "registry+https://github.com/rust-lang/crates.io-index"
  606. checksum = "f91ea592d76c0b6471965708ccff7e6a5d277f676b90ab31f4d3f3fc77fade64"
  607. dependencies = [
  608. "manyhow-macros",
  609. "proc-macro2",
  610. "quote",
  611. "syn",
  612. ]
  613. [[package]]
  614. name = "manyhow-macros"
  615. version = "0.10.4"
  616. source = "registry+https://github.com/rust-lang/crates.io-index"
  617. checksum = "c64621e2c08f2576e4194ea8be11daf24ac01249a4f53cd8befcbb7077120ead"
  618. dependencies = [
  619. "proc-macro-utils 0.8.0",
  620. "proc-macro2",
  621. "quote",
  622. ]
  623. [[package]]
  624. name = "memchr"
  625. version = "2.7.4"
  626. source = "registry+https://github.com/rust-lang/crates.io-index"
  627. checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
  628. [[package]]
  629. name = "minimal-lexical"
  630. version = "0.2.1"
  631. source = "registry+https://github.com/rust-lang/crates.io-index"
  632. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  633. [[package]]
  634. name = "nom"
  635. version = "7.1.3"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
  638. dependencies = [
  639. "memchr",
  640. "minimal-lexical",
  641. ]
  642. [[package]]
  643. name = "oco_ref"
  644. version = "0.1.1"
  645. source = "registry+https://github.com/rust-lang/crates.io-index"
  646. checksum = "c51ebcefb2f0b9a5e0bea115532c8ae4215d1b01eff176d0f4ba4192895c2708"
  647. dependencies = [
  648. "serde",
  649. "thiserror",
  650. ]
  651. [[package]]
  652. name = "once_cell"
  653. version = "1.20.2"
  654. source = "registry+https://github.com/rust-lang/crates.io-index"
  655. checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
  656. [[package]]
  657. name = "pad-adapter"
  658. version = "0.1.1"
  659. source = "registry+https://github.com/rust-lang/crates.io-index"
  660. checksum = "56d80efc4b6721e8be2a10a5df21a30fa0b470f1539e53d8b4e6e75faf938b63"
  661. [[package]]
  662. name = "parking_lot"
  663. version = "0.12.3"
  664. source = "registry+https://github.com/rust-lang/crates.io-index"
  665. checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
  666. dependencies = [
  667. "lock_api",
  668. "parking_lot_core",
  669. ]
  670. [[package]]
  671. name = "parking_lot_core"
  672. version = "0.9.10"
  673. source = "registry+https://github.com/rust-lang/crates.io-index"
  674. checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
  675. dependencies = [
  676. "cfg-if",
  677. "libc",
  678. "redox_syscall",
  679. "smallvec",
  680. "windows-targets",
  681. ]
  682. [[package]]
  683. name = "paste"
  684. version = "1.0.15"
  685. source = "registry+https://github.com/rust-lang/crates.io-index"
  686. checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
  687. [[package]]
  688. name = "pathdiff"
  689. version = "0.2.2"
  690. source = "registry+https://github.com/rust-lang/crates.io-index"
  691. checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
  692. [[package]]
  693. name = "percent-encoding"
  694. version = "2.3.1"
  695. source = "registry+https://github.com/rust-lang/crates.io-index"
  696. checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
  697. [[package]]
  698. name = "pin-project"
  699. version = "1.1.7"
  700. source = "registry+https://github.com/rust-lang/crates.io-index"
  701. checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
  702. dependencies = [
  703. "pin-project-internal",
  704. ]
  705. [[package]]
  706. name = "pin-project-internal"
  707. version = "1.1.7"
  708. source = "registry+https://github.com/rust-lang/crates.io-index"
  709. checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
  710. dependencies = [
  711. "proc-macro2",
  712. "quote",
  713. "syn",
  714. ]
  715. [[package]]
  716. name = "pin-project-lite"
  717. version = "0.2.15"
  718. source = "registry+https://github.com/rust-lang/crates.io-index"
  719. checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
  720. [[package]]
  721. name = "pin-utils"
  722. version = "0.1.0"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  725. [[package]]
  726. name = "prettyplease"
  727. version = "0.2.25"
  728. source = "registry+https://github.com/rust-lang/crates.io-index"
  729. checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
  730. dependencies = [
  731. "proc-macro2",
  732. "syn",
  733. ]
  734. [[package]]
  735. name = "proc-macro-error"
  736. version = "1.0.4"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  739. dependencies = [
  740. "proc-macro-error-attr",
  741. "proc-macro2",
  742. "quote",
  743. "version_check",
  744. ]
  745. [[package]]
  746. name = "proc-macro-error-attr"
  747. version = "1.0.4"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  750. dependencies = [
  751. "proc-macro2",
  752. "quote",
  753. "version_check",
  754. ]
  755. [[package]]
  756. name = "proc-macro-error-attr2"
  757. version = "2.0.0"
  758. source = "registry+https://github.com/rust-lang/crates.io-index"
  759. checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
  760. dependencies = [
  761. "proc-macro2",
  762. "quote",
  763. ]
  764. [[package]]
  765. name = "proc-macro-error2"
  766. version = "2.0.1"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
  769. dependencies = [
  770. "proc-macro-error-attr2",
  771. "proc-macro2",
  772. "quote",
  773. ]
  774. [[package]]
  775. name = "proc-macro-utils"
  776. version = "0.8.0"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "3f59e109e2f795a5070e69578c4dc101068139f74616778025ae1011d4cd41a8"
  779. dependencies = [
  780. "proc-macro2",
  781. "quote",
  782. "smallvec",
  783. ]
  784. [[package]]
  785. name = "proc-macro-utils"
  786. version = "0.10.0"
  787. source = "registry+https://github.com/rust-lang/crates.io-index"
  788. checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
  789. dependencies = [
  790. "proc-macro2",
  791. "quote",
  792. "smallvec",
  793. ]
  794. [[package]]
  795. name = "proc-macro2"
  796. version = "1.0.89"
  797. source = "registry+https://github.com/rust-lang/crates.io-index"
  798. checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
  799. dependencies = [
  800. "unicode-ident",
  801. ]
  802. [[package]]
  803. name = "proc-macro2-diagnostics"
  804. version = "0.10.1"
  805. source = "registry+https://github.com/rust-lang/crates.io-index"
  806. checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
  807. dependencies = [
  808. "proc-macro2",
  809. "quote",
  810. "syn",
  811. "version_check",
  812. "yansi",
  813. ]
  814. [[package]]
  815. name = "quote"
  816. version = "1.0.37"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
  819. dependencies = [
  820. "proc-macro2",
  821. ]
  822. [[package]]
  823. name = "quote-use"
  824. version = "0.8.4"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
  827. dependencies = [
  828. "quote",
  829. "quote-use-macros",
  830. ]
  831. [[package]]
  832. name = "quote-use-macros"
  833. version = "0.8.4"
  834. source = "registry+https://github.com/rust-lang/crates.io-index"
  835. checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
  836. dependencies = [
  837. "proc-macro-utils 0.10.0",
  838. "proc-macro2",
  839. "quote",
  840. "syn",
  841. ]
  842. [[package]]
  843. name = "redox_syscall"
  844. version = "0.5.7"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
  847. dependencies = [
  848. "bitflags",
  849. ]
  850. [[package]]
  851. name = "regex"
  852. version = "1.11.1"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
  855. dependencies = [
  856. "aho-corasick",
  857. "memchr",
  858. "regex-automata",
  859. "regex-syntax",
  860. ]
  861. [[package]]
  862. name = "regex-automata"
  863. version = "0.4.8"
  864. source = "registry+https://github.com/rust-lang/crates.io-index"
  865. checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
  866. dependencies = [
  867. "aho-corasick",
  868. "memchr",
  869. "regex-syntax",
  870. ]
  871. [[package]]
  872. name = "regex-syntax"
  873. version = "0.8.5"
  874. source = "registry+https://github.com/rust-lang/crates.io-index"
  875. checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
  876. [[package]]
  877. name = "rstml"
  878. version = "0.11.2"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "fe542870b8f59dd45ad11d382e5339c9a1047cde059be136a7016095bbdefa77"
  881. dependencies = [
  882. "proc-macro2",
  883. "proc-macro2-diagnostics",
  884. "quote",
  885. "syn",
  886. "syn_derive",
  887. "thiserror",
  888. ]
  889. [[package]]
  890. name = "rustc-hash"
  891. version = "1.1.0"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  894. [[package]]
  895. name = "ryu"
  896. version = "1.0.18"
  897. source = "registry+https://github.com/rust-lang/crates.io-index"
  898. checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
  899. [[package]]
  900. name = "same-file"
  901. version = "1.0.6"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  904. dependencies = [
  905. "winapi-util",
  906. ]
  907. [[package]]
  908. name = "scopeguard"
  909. version = "1.2.0"
  910. source = "registry+https://github.com/rust-lang/crates.io-index"
  911. checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
  912. [[package]]
  913. name = "self_cell"
  914. version = "1.0.4"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a"
  917. [[package]]
  918. name = "send_wrapper"
  919. version = "0.6.0"
  920. source = "registry+https://github.com/rust-lang/crates.io-index"
  921. checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
  922. dependencies = [
  923. "futures-core",
  924. ]
  925. [[package]]
  926. name = "serde"
  927. version = "1.0.213"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1"
  930. dependencies = [
  931. "serde_derive",
  932. ]
  933. [[package]]
  934. name = "serde-wasm-bindgen"
  935. version = "0.6.5"
  936. source = "registry+https://github.com/rust-lang/crates.io-index"
  937. checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
  938. dependencies = [
  939. "js-sys",
  940. "serde",
  941. "wasm-bindgen",
  942. ]
  943. [[package]]
  944. name = "serde_derive"
  945. version = "1.0.213"
  946. source = "registry+https://github.com/rust-lang/crates.io-index"
  947. checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5"
  948. dependencies = [
  949. "proc-macro2",
  950. "quote",
  951. "syn",
  952. ]
  953. [[package]]
  954. name = "serde_json"
  955. version = "1.0.132"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
  958. dependencies = [
  959. "itoa",
  960. "memchr",
  961. "ryu",
  962. "serde",
  963. ]
  964. [[package]]
  965. name = "serde_qs"
  966. version = "0.12.0"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
  969. dependencies = [
  970. "percent-encoding",
  971. "serde",
  972. "thiserror",
  973. ]
  974. [[package]]
  975. name = "serde_spanned"
  976. version = "0.6.8"
  977. source = "registry+https://github.com/rust-lang/crates.io-index"
  978. checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
  979. dependencies = [
  980. "serde",
  981. ]
  982. [[package]]
  983. name = "server_fn"
  984. version = "0.6.15"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "4fae7a3038a32e5a34ba32c6c45eb4852f8affaf8b794ebfcd4b1099e2d62ebe"
  987. dependencies = [
  988. "bytes",
  989. "ciborium",
  990. "const_format",
  991. "dashmap",
  992. "futures",
  993. "gloo-net",
  994. "http",
  995. "js-sys",
  996. "once_cell",
  997. "send_wrapper",
  998. "serde",
  999. "serde_json",
  1000. "serde_qs",
  1001. "server_fn_macro_default",
  1002. "thiserror",
  1003. "url",
  1004. "wasm-bindgen",
  1005. "wasm-bindgen-futures",
  1006. "wasm-streams",
  1007. "web-sys",
  1008. "xxhash-rust",
  1009. ]
  1010. [[package]]
  1011. name = "server_fn_macro"
  1012. version = "0.6.15"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "faaaf648c6967aef78177c0610478abb5a3455811f401f3c62d10ae9bd3901a1"
  1015. dependencies = [
  1016. "const_format",
  1017. "convert_case",
  1018. "proc-macro2",
  1019. "quote",
  1020. "syn",
  1021. "xxhash-rust",
  1022. ]
  1023. [[package]]
  1024. name = "server_fn_macro_default"
  1025. version = "0.6.15"
  1026. source = "registry+https://github.com/rust-lang/crates.io-index"
  1027. checksum = "7f2aa8119b558a17992e0ac1fd07f080099564f24532858811ce04f742542440"
  1028. dependencies = [
  1029. "server_fn_macro",
  1030. "syn",
  1031. ]
  1032. [[package]]
  1033. name = "slab"
  1034. version = "0.4.9"
  1035. source = "registry+https://github.com/rust-lang/crates.io-index"
  1036. checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
  1037. dependencies = [
  1038. "autocfg",
  1039. ]
  1040. [[package]]
  1041. name = "slotmap"
  1042. version = "1.0.7"
  1043. source = "registry+https://github.com/rust-lang/crates.io-index"
  1044. checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
  1045. dependencies = [
  1046. "serde",
  1047. "version_check",
  1048. ]
  1049. [[package]]
  1050. name = "smallvec"
  1051. version = "1.13.2"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
  1054. [[package]]
  1055. name = "syn"
  1056. version = "2.0.85"
  1057. source = "registry+https://github.com/rust-lang/crates.io-index"
  1058. checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
  1059. dependencies = [
  1060. "proc-macro2",
  1061. "quote",
  1062. "unicode-ident",
  1063. ]
  1064. [[package]]
  1065. name = "syn_derive"
  1066. version = "0.1.8"
  1067. source = "registry+https://github.com/rust-lang/crates.io-index"
  1068. checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b"
  1069. dependencies = [
  1070. "proc-macro-error",
  1071. "proc-macro2",
  1072. "quote",
  1073. "syn",
  1074. ]
  1075. [[package]]
  1076. name = "thiserror"
  1077. version = "1.0.65"
  1078. source = "registry+https://github.com/rust-lang/crates.io-index"
  1079. checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
  1080. dependencies = [
  1081. "thiserror-impl",
  1082. ]
  1083. [[package]]
  1084. name = "thiserror-impl"
  1085. version = "1.0.65"
  1086. source = "registry+https://github.com/rust-lang/crates.io-index"
  1087. checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
  1088. dependencies = [
  1089. "proc-macro2",
  1090. "quote",
  1091. "syn",
  1092. ]
  1093. [[package]]
  1094. name = "tinyvec"
  1095. version = "1.8.0"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
  1098. dependencies = [
  1099. "tinyvec_macros",
  1100. ]
  1101. [[package]]
  1102. name = "tinyvec_macros"
  1103. version = "0.1.1"
  1104. source = "registry+https://github.com/rust-lang/crates.io-index"
  1105. checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
  1106. [[package]]
  1107. name = "toml"
  1108. version = "0.8.19"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
  1111. dependencies = [
  1112. "serde",
  1113. "serde_spanned",
  1114. "toml_datetime",
  1115. "toml_edit",
  1116. ]
  1117. [[package]]
  1118. name = "toml_datetime"
  1119. version = "0.6.8"
  1120. source = "registry+https://github.com/rust-lang/crates.io-index"
  1121. checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
  1122. dependencies = [
  1123. "serde",
  1124. ]
  1125. [[package]]
  1126. name = "toml_edit"
  1127. version = "0.22.22"
  1128. source = "registry+https://github.com/rust-lang/crates.io-index"
  1129. checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
  1130. dependencies = [
  1131. "indexmap",
  1132. "serde",
  1133. "serde_spanned",
  1134. "toml_datetime",
  1135. "winnow",
  1136. ]
  1137. [[package]]
  1138. name = "tracing"
  1139. version = "0.1.40"
  1140. source = "registry+https://github.com/rust-lang/crates.io-index"
  1141. checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
  1142. dependencies = [
  1143. "pin-project-lite",
  1144. "tracing-attributes",
  1145. "tracing-core",
  1146. ]
  1147. [[package]]
  1148. name = "tracing-attributes"
  1149. version = "0.1.27"
  1150. source = "registry+https://github.com/rust-lang/crates.io-index"
  1151. checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
  1152. dependencies = [
  1153. "proc-macro2",
  1154. "quote",
  1155. "syn",
  1156. ]
  1157. [[package]]
  1158. name = "tracing-core"
  1159. version = "0.1.32"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
  1162. dependencies = [
  1163. "once_cell",
  1164. ]
  1165. [[package]]
  1166. name = "typed-builder"
  1167. version = "0.18.2"
  1168. source = "registry+https://github.com/rust-lang/crates.io-index"
  1169. checksum = "77739c880e00693faef3d65ea3aad725f196da38b22fdc7ea6ded6e1ce4d3add"
  1170. dependencies = [
  1171. "typed-builder-macro",
  1172. ]
  1173. [[package]]
  1174. name = "typed-builder-macro"
  1175. version = "0.18.2"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "1f718dfaf347dcb5b983bfc87608144b0bad87970aebcbea5ce44d2a30c08e63"
  1178. dependencies = [
  1179. "proc-macro2",
  1180. "quote",
  1181. "syn",
  1182. ]
  1183. [[package]]
  1184. name = "unicode-bidi"
  1185. version = "0.3.17"
  1186. source = "registry+https://github.com/rust-lang/crates.io-index"
  1187. checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
  1188. [[package]]
  1189. name = "unicode-ident"
  1190. version = "1.0.13"
  1191. source = "registry+https://github.com/rust-lang/crates.io-index"
  1192. checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
  1193. [[package]]
  1194. name = "unicode-normalization"
  1195. version = "0.1.24"
  1196. source = "registry+https://github.com/rust-lang/crates.io-index"
  1197. checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
  1198. dependencies = [
  1199. "tinyvec",
  1200. ]
  1201. [[package]]
  1202. name = "unicode-segmentation"
  1203. version = "1.12.0"
  1204. source = "registry+https://github.com/rust-lang/crates.io-index"
  1205. checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
  1206. [[package]]
  1207. name = "unicode-xid"
  1208. version = "0.2.6"
  1209. source = "registry+https://github.com/rust-lang/crates.io-index"
  1210. checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
  1211. [[package]]
  1212. name = "url"
  1213. version = "2.5.2"
  1214. source = "registry+https://github.com/rust-lang/crates.io-index"
  1215. checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
  1216. dependencies = [
  1217. "form_urlencoded",
  1218. "idna",
  1219. "percent-encoding",
  1220. ]
  1221. [[package]]
  1222. name = "utf8-width"
  1223. version = "0.1.7"
  1224. source = "registry+https://github.com/rust-lang/crates.io-index"
  1225. checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
  1226. [[package]]
  1227. name = "uuid"
  1228. version = "1.11.0"
  1229. source = "registry+https://github.com/rust-lang/crates.io-index"
  1230. checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
  1231. dependencies = [
  1232. "getrandom",
  1233. ]
  1234. [[package]]
  1235. name = "version_check"
  1236. version = "0.9.5"
  1237. source = "registry+https://github.com/rust-lang/crates.io-index"
  1238. checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
  1239. [[package]]
  1240. name = "walkdir"
  1241. version = "2.5.0"
  1242. source = "registry+https://github.com/rust-lang/crates.io-index"
  1243. checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
  1244. dependencies = [
  1245. "same-file",
  1246. "winapi-util",
  1247. ]
  1248. [[package]]
  1249. name = "wasi"
  1250. version = "0.11.0+wasi-snapshot-preview1"
  1251. source = "registry+https://github.com/rust-lang/crates.io-index"
  1252. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1253. [[package]]
  1254. name = "wasm-bindgen"
  1255. version = "0.2.95"
  1256. source = "registry+https://github.com/rust-lang/crates.io-index"
  1257. checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
  1258. dependencies = [
  1259. "cfg-if",
  1260. "once_cell",
  1261. "wasm-bindgen-macro",
  1262. ]
  1263. [[package]]
  1264. name = "wasm-bindgen-backend"
  1265. version = "0.2.95"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
  1268. dependencies = [
  1269. "bumpalo",
  1270. "log",
  1271. "once_cell",
  1272. "proc-macro2",
  1273. "quote",
  1274. "syn",
  1275. "wasm-bindgen-shared",
  1276. ]
  1277. [[package]]
  1278. name = "wasm-bindgen-futures"
  1279. version = "0.4.45"
  1280. source = "registry+https://github.com/rust-lang/crates.io-index"
  1281. checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
  1282. dependencies = [
  1283. "cfg-if",
  1284. "js-sys",
  1285. "wasm-bindgen",
  1286. "web-sys",
  1287. ]
  1288. [[package]]
  1289. name = "wasm-bindgen-macro"
  1290. version = "0.2.95"
  1291. source = "registry+https://github.com/rust-lang/crates.io-index"
  1292. checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
  1293. dependencies = [
  1294. "quote",
  1295. "wasm-bindgen-macro-support",
  1296. ]
  1297. [[package]]
  1298. name = "wasm-bindgen-macro-support"
  1299. version = "0.2.95"
  1300. source = "registry+https://github.com/rust-lang/crates.io-index"
  1301. checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
  1302. dependencies = [
  1303. "proc-macro2",
  1304. "quote",
  1305. "syn",
  1306. "wasm-bindgen-backend",
  1307. "wasm-bindgen-shared",
  1308. ]
  1309. [[package]]
  1310. name = "wasm-bindgen-shared"
  1311. version = "0.2.95"
  1312. source = "registry+https://github.com/rust-lang/crates.io-index"
  1313. checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
  1314. [[package]]
  1315. name = "wasm-streams"
  1316. version = "0.4.2"
  1317. source = "registry+https://github.com/rust-lang/crates.io-index"
  1318. checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
  1319. dependencies = [
  1320. "futures-util",
  1321. "js-sys",
  1322. "wasm-bindgen",
  1323. "wasm-bindgen-futures",
  1324. "web-sys",
  1325. ]
  1326. [[package]]
  1327. name = "web-sys"
  1328. version = "0.3.72"
  1329. source = "registry+https://github.com/rust-lang/crates.io-index"
  1330. checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
  1331. dependencies = [
  1332. "js-sys",
  1333. "wasm-bindgen",
  1334. ]
  1335. [[package]]
  1336. name = "winapi-util"
  1337. version = "0.1.9"
  1338. source = "registry+https://github.com/rust-lang/crates.io-index"
  1339. checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
  1340. dependencies = [
  1341. "windows-sys",
  1342. ]
  1343. [[package]]
  1344. name = "windows-sys"
  1345. version = "0.59.0"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
  1348. dependencies = [
  1349. "windows-targets",
  1350. ]
  1351. [[package]]
  1352. name = "windows-targets"
  1353. version = "0.52.6"
  1354. source = "registry+https://github.com/rust-lang/crates.io-index"
  1355. checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
  1356. dependencies = [
  1357. "windows_aarch64_gnullvm",
  1358. "windows_aarch64_msvc",
  1359. "windows_i686_gnu",
  1360. "windows_i686_gnullvm",
  1361. "windows_i686_msvc",
  1362. "windows_x86_64_gnu",
  1363. "windows_x86_64_gnullvm",
  1364. "windows_x86_64_msvc",
  1365. ]
  1366. [[package]]
  1367. name = "windows_aarch64_gnullvm"
  1368. version = "0.52.6"
  1369. source = "registry+https://github.com/rust-lang/crates.io-index"
  1370. checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
  1371. [[package]]
  1372. name = "windows_aarch64_msvc"
  1373. version = "0.52.6"
  1374. source = "registry+https://github.com/rust-lang/crates.io-index"
  1375. checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
  1376. [[package]]
  1377. name = "windows_i686_gnu"
  1378. version = "0.52.6"
  1379. source = "registry+https://github.com/rust-lang/crates.io-index"
  1380. checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
  1381. [[package]]
  1382. name = "windows_i686_gnullvm"
  1383. version = "0.52.6"
  1384. source = "registry+https://github.com/rust-lang/crates.io-index"
  1385. checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
  1386. [[package]]
  1387. name = "windows_i686_msvc"
  1388. version = "0.52.6"
  1389. source = "registry+https://github.com/rust-lang/crates.io-index"
  1390. checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
  1391. [[package]]
  1392. name = "windows_x86_64_gnu"
  1393. version = "0.52.6"
  1394. source = "registry+https://github.com/rust-lang/crates.io-index"
  1395. checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
  1396. [[package]]
  1397. name = "windows_x86_64_gnullvm"
  1398. version = "0.52.6"
  1399. source = "registry+https://github.com/rust-lang/crates.io-index"
  1400. checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
  1401. [[package]]
  1402. name = "windows_x86_64_msvc"
  1403. version = "0.52.6"
  1404. source = "registry+https://github.com/rust-lang/crates.io-index"
  1405. checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
  1406. [[package]]
  1407. name = "winnow"
  1408. version = "0.6.20"
  1409. source = "registry+https://github.com/rust-lang/crates.io-index"
  1410. checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
  1411. dependencies = [
  1412. "memchr",
  1413. ]
  1414. [[package]]
  1415. name = "xxhash-rust"
  1416. version = "0.8.12"
  1417. source = "registry+https://github.com/rust-lang/crates.io-index"
  1418. checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
  1419. [[package]]
  1420. name = "yansi"
  1421. version = "1.0.1"
  1422. source = "registry+https://github.com/rust-lang/crates.io-index"
  1423. checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"