linthis 0.0.9__tar.gz → 0.0.10__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. linthis-0.0.10/Cargo.lock +3044 -0
  2. {linthis-0.0.9 → linthis-0.0.10}/Cargo.toml +20 -1
  3. {linthis-0.0.9 → linthis-0.0.10}/PKG-INFO +1 -1
  4. linthis-0.0.10/docs/README.md +115 -0
  5. linthis-0.0.10/docs/guides/languages/cpp.md +179 -0
  6. linthis-0.0.10/docs/guides/languages/dart.md +154 -0
  7. linthis-0.0.10/docs/guides/languages/go.md +141 -0
  8. linthis-0.0.10/docs/guides/languages/java.md +134 -0
  9. linthis-0.0.10/docs/guides/languages/javascript.md +136 -0
  10. linthis-0.0.10/docs/guides/languages/kotlin.md +151 -0
  11. linthis-0.0.10/docs/guides/languages/lua.md +159 -0
  12. linthis-0.0.10/docs/guides/languages/objc.md +133 -0
  13. linthis-0.0.10/docs/guides/languages/python.md +148 -0
  14. linthis-0.0.10/docs/guides/languages/rust.md +121 -0
  15. linthis-0.0.10/docs/guides/languages/swift.md +163 -0
  16. linthis-0.0.10/docs/guides/languages/typescript.md +204 -0
  17. linthis-0.0.10/docs/plugins/creating-plugins.md +363 -0
  18. linthis-0.0.10/docs/reference/configuration.md +500 -0
  19. {linthis-0.0.9 → linthis-0.0.10}/pyproject.toml +1 -1
  20. linthis-0.0.10/src/checkers/csharp.rs +250 -0
  21. linthis-0.0.10/src/checkers/mod.rs +105 -0
  22. linthis-0.0.10/src/checkers/php.rs +198 -0
  23. linthis-0.0.10/src/checkers/ruby.rs +220 -0
  24. linthis-0.0.10/src/checkers/scala.rs +189 -0
  25. linthis-0.0.10/src/checkers/shell.rs +208 -0
  26. {linthis-0.0.9 → linthis-0.0.10}/src/cli/commands.rs +149 -0
  27. {linthis-0.0.9 → linthis-0.0.10}/src/cli/doctor.rs +36 -0
  28. {linthis-0.0.9 → linthis-0.0.10}/src/cli/mod.rs +4 -0
  29. linthis-0.0.10/src/cli/report.rs +226 -0
  30. linthis-0.0.10/src/cli/watch.rs +307 -0
  31. {linthis-0.0.9 → linthis-0.0.10}/src/config/mod.rs +99 -5
  32. linthis-0.0.10/src/formatters/csharp.rs +177 -0
  33. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/mod.rs +10 -0
  34. linthis-0.0.10/src/formatters/php.rs +111 -0
  35. linthis-0.0.10/src/formatters/ruby.rs +110 -0
  36. linthis-0.0.10/src/formatters/scala.rs +103 -0
  37. linthis-0.0.10/src/formatters/shell.rs +104 -0
  38. {linthis-0.0.9 → linthis-0.0.10}/src/interactive/nolint.rs +151 -0
  39. {linthis-0.0.9 → linthis-0.0.10}/src/lib.rs +250 -1
  40. linthis-0.0.10/src/lsp/diagnostics.rs +130 -0
  41. linthis-0.0.10/src/lsp/document.rs +137 -0
  42. linthis-0.0.10/src/lsp/mod.rs +22 -0
  43. linthis-0.0.10/src/lsp/server.rs +277 -0
  44. {linthis-0.0.9 → linthis-0.0.10}/src/main.rs +81 -3
  45. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/cache.rs +3 -3
  46. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/mod.rs +63 -5
  47. linthis-0.0.10/src/reports/consistency.rs +403 -0
  48. linthis-0.0.10/src/reports/html.rs +412 -0
  49. linthis-0.0.10/src/reports/mod.rs +31 -0
  50. linthis-0.0.10/src/reports/statistics.rs +355 -0
  51. linthis-0.0.10/src/reports/templates.rs +602 -0
  52. linthis-0.0.10/src/reports/trends.rs +382 -0
  53. linthis-0.0.10/src/rules/config.rs +268 -0
  54. linthis-0.0.10/src/rules/custom_checker.rs +352 -0
  55. linthis-0.0.10/src/rules/filter.rs +289 -0
  56. linthis-0.0.10/src/rules/mod.rs +78 -0
  57. linthis-0.0.10/src/tui/app.rs +391 -0
  58. linthis-0.0.10/src/tui/event.rs +275 -0
  59. linthis-0.0.10/src/tui/mod.rs +68 -0
  60. linthis-0.0.10/src/tui/ui.rs +150 -0
  61. linthis-0.0.10/src/tui/widgets/file_tree.rs +180 -0
  62. linthis-0.0.10/src/tui/widgets/help.rs +157 -0
  63. linthis-0.0.10/src/tui/widgets/issue_list.rs +151 -0
  64. linthis-0.0.10/src/tui/widgets/mod.rs +16 -0
  65. linthis-0.0.10/src/tui/widgets/status_bar.rs +121 -0
  66. linthis-0.0.10/src/watch/debounce.rs +268 -0
  67. linthis-0.0.10/src/watch/mod.rs +149 -0
  68. linthis-0.0.10/src/watch/notifications.rs +124 -0
  69. linthis-0.0.10/src/watch/state.rs +435 -0
  70. linthis-0.0.10/src/watch/watcher.rs +301 -0
  71. linthis-0.0.9/Cargo.lock +0 -1120
  72. linthis-0.0.9/src/checkers/mod.rs +0 -35
  73. {linthis-0.0.9 → linthis-0.0.10}/.github/workflows/release.yml +0 -0
  74. {linthis-0.0.9 → linthis-0.0.10}/.gitignore +0 -0
  75. {linthis-0.0.9 → linthis-0.0.10}/CHANGELOG.md +0 -0
  76. {linthis-0.0.9 → linthis-0.0.10}/README.md +0 -0
  77. {linthis-0.0.9 → linthis-0.0.10}/defaults/.clang-tidy +0 -0
  78. {linthis-0.0.9 → linthis-0.0.10}/defaults/config.toml +0 -0
  79. {linthis-0.0.9 → linthis-0.0.10}/dev.sh +0 -0
  80. {linthis-0.0.9 → linthis-0.0.10}/docs/AUTO_SYNC.md +0 -0
  81. {linthis-0.0.9 → linthis-0.0.10}/docs/GLOBAL_HOOKS.md +0 -0
  82. {linthis-0.0.9 → linthis-0.0.10}/docs/ROADMAP.md +0 -0
  83. {linthis-0.0.9 → linthis-0.0.10}/docs/SELF_UPDATE.md +0 -0
  84. {linthis-0.0.9 → linthis-0.0.10}/docs/config-cli-design.md +0 -0
  85. {linthis-0.0.9 → linthis-0.0.10}/docs/init-hooks-design.md +0 -0
  86. {linthis-0.0.9 → linthis-0.0.10}/docs/plan-ruff-integration.md +0 -0
  87. {linthis-0.0.9 → linthis-0.0.10}/docs/tasks.md +0 -0
  88. {linthis-0.0.9 → linthis-0.0.10}/scripts/release.sh +0 -0
  89. {linthis-0.0.9 → linthis-0.0.10}/src/benchmark.rs +0 -0
  90. {linthis-0.0.9 → linthis-0.0.10}/src/cache/hash.rs +0 -0
  91. {linthis-0.0.9 → linthis-0.0.10}/src/cache/mod.rs +0 -0
  92. {linthis-0.0.9 → linthis-0.0.10}/src/cache/storage.rs +0 -0
  93. {linthis-0.0.9 → linthis-0.0.10}/src/cache/types.rs +0 -0
  94. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/cpp.rs +0 -0
  95. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/dart.rs +0 -0
  96. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/go.rs +0 -0
  97. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/java.rs +0 -0
  98. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/kotlin.rs +0 -0
  99. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/lua.rs +0 -0
  100. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/python.rs +0 -0
  101. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/rust.rs +0 -0
  102. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/swift.rs +0 -0
  103. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/traits.rs +0 -0
  104. {linthis-0.0.9 → linthis-0.0.10}/src/checkers/typescript.rs +0 -0
  105. {linthis-0.0.9 → linthis-0.0.10}/src/cli/cache.rs +0 -0
  106. {linthis-0.0.9 → linthis-0.0.10}/src/cli/fix.rs +0 -0
  107. {linthis-0.0.9 → linthis-0.0.10}/src/cli/helpers.rs +0 -0
  108. {linthis-0.0.9 → linthis-0.0.10}/src/cli/hook.rs +0 -0
  109. {linthis-0.0.9 → linthis-0.0.10}/src/cli/init.rs +0 -0
  110. {linthis-0.0.9 → linthis-0.0.10}/src/cli/paths.rs +0 -0
  111. {linthis-0.0.9 → linthis-0.0.10}/src/cli/plugin.rs +0 -0
  112. {linthis-0.0.9 → linthis-0.0.10}/src/cli/recheck.rs +0 -0
  113. {linthis-0.0.9 → linthis-0.0.10}/src/cli/runner.rs +0 -0
  114. {linthis-0.0.9 → linthis-0.0.10}/src/config/cli.rs +0 -0
  115. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/converters/eslint.rs +0 -0
  116. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/converters/mod.rs +0 -0
  117. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/converters/prettier.rs +0 -0
  118. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/converters/python.rs +0 -0
  119. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/detect.rs +0 -0
  120. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/mod.rs +0 -0
  121. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/parsers/eslint.rs +0 -0
  122. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/parsers/mod.rs +0 -0
  123. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/parsers/prettier.rs +0 -0
  124. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/parsers/python.rs +0 -0
  125. {linthis-0.0.9 → linthis-0.0.10}/src/config/migrate/validate.rs +0 -0
  126. {linthis-0.0.9 → linthis-0.0.10}/src/fixers/cpplint.rs +0 -0
  127. {linthis-0.0.9 → linthis-0.0.10}/src/fixers/mod.rs +0 -0
  128. {linthis-0.0.9 → linthis-0.0.10}/src/fixers/source.rs +0 -0
  129. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/cpp.rs +0 -0
  130. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/dart.rs +0 -0
  131. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/go.rs +0 -0
  132. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/java.rs +0 -0
  133. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/kotlin.rs +0 -0
  134. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/lua.rs +0 -0
  135. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/python.rs +0 -0
  136. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/rust.rs +0 -0
  137. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/swift.rs +0 -0
  138. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/traits.rs +0 -0
  139. {linthis-0.0.9 → linthis-0.0.10}/src/formatters/typescript.rs +0 -0
  140. {linthis-0.0.9 → linthis-0.0.10}/src/interactive/editor.rs +0 -0
  141. {linthis-0.0.9 → linthis-0.0.10}/src/interactive/menu.rs +0 -0
  142. {linthis-0.0.9 → linthis-0.0.10}/src/interactive/mod.rs +0 -0
  143. {linthis-0.0.9 → linthis-0.0.10}/src/interactive/quickfix.rs +0 -0
  144. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/auto_sync.rs +0 -0
  145. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/config_manager.rs +0 -0
  146. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/fetcher.rs +0 -0
  147. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/loader.rs +0 -0
  148. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/manifest.rs +0 -0
  149. {linthis-0.0.9 → linthis-0.0.10}/src/plugin/registry.rs +0 -0
  150. {linthis-0.0.9 → linthis-0.0.10}/src/presets/mod.rs +0 -0
  151. {linthis-0.0.9 → linthis-0.0.10}/src/self_update.rs +0 -0
  152. {linthis-0.0.9 → linthis-0.0.10}/src/templates/linter_configs.rs +0 -0
  153. {linthis-0.0.9 → linthis-0.0.10}/src/templates/mod.rs +0 -0
  154. {linthis-0.0.9 → linthis-0.0.10}/src/templates/plugin_templates.rs +0 -0
  155. {linthis-0.0.9 → linthis-0.0.10}/src/templates/readme.rs +0 -0
  156. {linthis-0.0.9 → linthis-0.0.10}/src/utils/language.rs +0 -0
  157. {linthis-0.0.9 → linthis-0.0.10}/src/utils/mod.rs +0 -0
  158. {linthis-0.0.9 → linthis-0.0.10}/src/utils/output.rs +0 -0
  159. {linthis-0.0.9 → linthis-0.0.10}/src/utils/types.rs +0 -0
  160. {linthis-0.0.9 → linthis-0.0.10}/src/utils/unicode.rs +0 -0
  161. {linthis-0.0.9 → linthis-0.0.10}/src/utils/walker.rs +0 -0
  162. {linthis-0.0.9 → linthis-0.0.10}/test-plugin-check/README.md +0 -0
  163. {linthis-0.0.9 → linthis-0.0.10}/test-plugin-check/linthis-plugin.toml +0 -0
  164. {linthis-0.0.9 → linthis-0.0.10}/tests/cli_tests.rs +0 -0
  165. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/python/bad.py +0 -0
  166. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/python/good.py +0 -0
  167. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/python/unformatted.py +0 -0
  168. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/rust/bad.rs +0 -0
  169. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/test-plugin/linthis-plugin.toml +0 -0
  170. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/test-plugin/python/ruff.toml +0 -0
  171. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/test-plugin/rust/clippy.toml +0 -0
  172. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/test-plugin/rust/rustfmt.toml +0 -0
  173. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/us1/good.rs +0 -0
  174. {linthis-0.0.9 → linthis-0.0.10}/tests/fixtures/us1/unformatted.rs +0 -0
  175. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/cache_tests.rs +0 -0
  176. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/check_tests.rs +0 -0
  177. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/common.rs +0 -0
  178. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/config_tests.rs +0 -0
  179. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/error_tests.rs +0 -0
  180. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/format_tests.rs +0 -0
  181. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/language_tests.rs +0 -0
  182. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/mod.rs +0 -0
  183. {linthis-0.0.9 → linthis-0.0.10}/tests/integration/plugin_tests.rs +0 -0
@@ -0,0 +1,3044 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "0.3.2"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is-terminal",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.13"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "0.2.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys 0.61.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "1.0.2"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
73
+ dependencies = [
74
+ "anstyle",
75
+ "windows-sys 0.48.0",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anyhow"
80
+ version = "1.0.71"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
83
+
84
+ [[package]]
85
+ name = "async-broadcast"
86
+ version = "0.7.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
89
+ dependencies = [
90
+ "event-listener",
91
+ "event-listener-strategy",
92
+ "futures-core",
93
+ "pin-project-lite",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "async-channel"
98
+ version = "2.5.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
101
+ dependencies = [
102
+ "concurrent-queue",
103
+ "event-listener-strategy",
104
+ "futures-core",
105
+ "pin-project-lite",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "async-executor"
110
+ version = "1.13.3"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
113
+ dependencies = [
114
+ "async-task",
115
+ "concurrent-queue",
116
+ "fastrand",
117
+ "futures-lite",
118
+ "pin-project-lite",
119
+ "slab",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "async-io"
124
+ version = "2.6.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
127
+ dependencies = [
128
+ "autocfg",
129
+ "cfg-if",
130
+ "concurrent-queue",
131
+ "futures-io",
132
+ "futures-lite",
133
+ "parking",
134
+ "polling",
135
+ "rustix 1.1.2",
136
+ "slab",
137
+ "windows-sys 0.61.2",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "async-lock"
142
+ version = "3.4.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
145
+ dependencies = [
146
+ "event-listener",
147
+ "event-listener-strategy",
148
+ "pin-project-lite",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "async-process"
153
+ version = "2.5.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
156
+ dependencies = [
157
+ "async-channel",
158
+ "async-io",
159
+ "async-lock",
160
+ "async-signal",
161
+ "async-task",
162
+ "blocking",
163
+ "cfg-if",
164
+ "event-listener",
165
+ "futures-lite",
166
+ "rustix 1.1.2",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "async-recursion"
171
+ version = "1.1.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
174
+ dependencies = [
175
+ "proc-macro2",
176
+ "quote",
177
+ "syn",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "async-signal"
182
+ version = "0.2.13"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
185
+ dependencies = [
186
+ "async-io",
187
+ "async-lock",
188
+ "atomic-waker",
189
+ "cfg-if",
190
+ "futures-core",
191
+ "futures-io",
192
+ "rustix 1.1.2",
193
+ "signal-hook-registry",
194
+ "slab",
195
+ "windows-sys 0.61.2",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "async-task"
200
+ version = "4.7.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
203
+
204
+ [[package]]
205
+ name = "async-trait"
206
+ version = "0.1.89"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
209
+ dependencies = [
210
+ "proc-macro2",
211
+ "quote",
212
+ "syn",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "atomic-waker"
217
+ version = "1.1.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
220
+
221
+ [[package]]
222
+ name = "atty"
223
+ version = "0.2.14"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
226
+ dependencies = [
227
+ "hermit-abi 0.1.19",
228
+ "libc",
229
+ "winapi",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "auto_impl"
234
+ version = "1.3.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
237
+ dependencies = [
238
+ "proc-macro2",
239
+ "quote",
240
+ "syn",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "autocfg"
245
+ version = "1.5.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
248
+
249
+ [[package]]
250
+ name = "bitflags"
251
+ version = "1.3.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
254
+
255
+ [[package]]
256
+ name = "bitflags"
257
+ version = "2.10.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
260
+
261
+ [[package]]
262
+ name = "block2"
263
+ version = "0.6.2"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
266
+ dependencies = [
267
+ "objc2",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "blocking"
272
+ version = "1.6.2"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
275
+ dependencies = [
276
+ "async-channel",
277
+ "async-task",
278
+ "futures-io",
279
+ "futures-lite",
280
+ "piper",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "bstr"
285
+ version = "1.12.1"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
288
+ dependencies = [
289
+ "memchr",
290
+ "serde",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "bumpalo"
295
+ version = "3.19.1"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
298
+
299
+ [[package]]
300
+ name = "bytes"
301
+ version = "1.11.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
304
+
305
+ [[package]]
306
+ name = "cassowary"
307
+ version = "0.3.0"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
310
+
311
+ [[package]]
312
+ name = "castaway"
313
+ version = "0.2.4"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
316
+ dependencies = [
317
+ "rustversion",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "cc"
322
+ version = "1.2.50"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
325
+ dependencies = [
326
+ "find-msvc-tools",
327
+ "shlex",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "cfg-if"
332
+ version = "1.0.4"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
335
+
336
+ [[package]]
337
+ name = "chrono"
338
+ version = "0.4.42"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
341
+ dependencies = [
342
+ "iana-time-zone",
343
+ "js-sys",
344
+ "num-traits",
345
+ "serde",
346
+ "wasm-bindgen",
347
+ "windows-link 0.2.1",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "clap"
352
+ version = "4.3.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc"
355
+ dependencies = [
356
+ "clap_builder",
357
+ "clap_derive",
358
+ "once_cell",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "clap_builder"
363
+ version = "4.3.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
366
+ dependencies = [
367
+ "anstream",
368
+ "anstyle",
369
+ "bitflags 1.3.2",
370
+ "clap_lex",
371
+ "strsim 0.10.0",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "clap_derive"
376
+ version = "4.3.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b"
379
+ dependencies = [
380
+ "heck 0.4.1",
381
+ "proc-macro2",
382
+ "quote",
383
+ "syn",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "clap_lex"
388
+ version = "0.5.0"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
391
+
392
+ [[package]]
393
+ name = "colorchoice"
394
+ version = "1.0.4"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
397
+
398
+ [[package]]
399
+ name = "colored"
400
+ version = "2.0.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd"
403
+ dependencies = [
404
+ "atty",
405
+ "lazy_static",
406
+ "winapi",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "compact_str"
411
+ version = "0.8.1"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
414
+ dependencies = [
415
+ "castaway",
416
+ "cfg-if",
417
+ "itoa",
418
+ "rustversion",
419
+ "ryu",
420
+ "static_assertions",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "concurrent-queue"
425
+ version = "2.5.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
428
+ dependencies = [
429
+ "crossbeam-utils",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "core-foundation-sys"
434
+ version = "0.8.7"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
437
+
438
+ [[package]]
439
+ name = "crossbeam-channel"
440
+ version = "0.5.15"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
443
+ dependencies = [
444
+ "crossbeam-utils",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "crossbeam-deque"
449
+ version = "0.8.6"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
452
+ dependencies = [
453
+ "crossbeam-epoch",
454
+ "crossbeam-utils",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "crossbeam-epoch"
459
+ version = "0.9.18"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
462
+ dependencies = [
463
+ "crossbeam-utils",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "crossbeam-utils"
468
+ version = "0.8.21"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
471
+
472
+ [[package]]
473
+ name = "crossterm"
474
+ version = "0.28.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
477
+ dependencies = [
478
+ "bitflags 2.10.0",
479
+ "crossterm_winapi",
480
+ "mio 1.1.1",
481
+ "parking_lot",
482
+ "rustix 0.38.44",
483
+ "signal-hook",
484
+ "signal-hook-mio",
485
+ "winapi",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "crossterm_winapi"
490
+ version = "0.9.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
493
+ dependencies = [
494
+ "winapi",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "darling"
499
+ version = "0.23.0"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
502
+ dependencies = [
503
+ "darling_core",
504
+ "darling_macro",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "darling_core"
509
+ version = "0.23.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
512
+ dependencies = [
513
+ "ident_case",
514
+ "proc-macro2",
515
+ "quote",
516
+ "strsim 0.11.1",
517
+ "syn",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "darling_macro"
522
+ version = "0.23.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
525
+ dependencies = [
526
+ "darling_core",
527
+ "quote",
528
+ "syn",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "dashmap"
533
+ version = "5.5.3"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
536
+ dependencies = [
537
+ "cfg-if",
538
+ "hashbrown 0.14.5",
539
+ "lock_api",
540
+ "once_cell",
541
+ "parking_lot_core",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "deranged"
546
+ version = "0.5.5"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
549
+ dependencies = [
550
+ "powerfmt",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "directories"
555
+ version = "5.0.1"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
558
+ dependencies = [
559
+ "dirs-sys",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "dirs-sys"
564
+ version = "0.4.1"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
567
+ dependencies = [
568
+ "libc",
569
+ "option-ext",
570
+ "redox_users",
571
+ "windows-sys 0.48.0",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "dispatch2"
576
+ version = "0.3.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
579
+ dependencies = [
580
+ "bitflags 2.10.0",
581
+ "objc2",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "displaydoc"
586
+ version = "0.2.5"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
589
+ dependencies = [
590
+ "proc-macro2",
591
+ "quote",
592
+ "syn",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "either"
597
+ version = "1.15.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
600
+
601
+ [[package]]
602
+ name = "endi"
603
+ version = "1.1.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
606
+
607
+ [[package]]
608
+ name = "enumflags2"
609
+ version = "0.7.12"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
612
+ dependencies = [
613
+ "enumflags2_derive",
614
+ "serde",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "enumflags2_derive"
619
+ version = "0.7.12"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
622
+ dependencies = [
623
+ "proc-macro2",
624
+ "quote",
625
+ "syn",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "env_logger"
630
+ version = "0.10.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
633
+ dependencies = [
634
+ "humantime",
635
+ "is-terminal",
636
+ "log",
637
+ "regex",
638
+ "termcolor",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "equivalent"
643
+ version = "1.0.2"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
646
+
647
+ [[package]]
648
+ name = "errno"
649
+ version = "0.3.14"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
652
+ dependencies = [
653
+ "libc",
654
+ "windows-sys 0.61.2",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "event-listener"
659
+ version = "5.4.1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
662
+ dependencies = [
663
+ "concurrent-queue",
664
+ "parking",
665
+ "pin-project-lite",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "event-listener-strategy"
670
+ version = "0.5.4"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
673
+ dependencies = [
674
+ "event-listener",
675
+ "pin-project-lite",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "fastrand"
680
+ version = "2.3.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
683
+
684
+ [[package]]
685
+ name = "filetime"
686
+ version = "0.2.26"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
689
+ dependencies = [
690
+ "cfg-if",
691
+ "libc",
692
+ "libredox",
693
+ "windows-sys 0.60.2",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "find-msvc-tools"
698
+ version = "0.1.5"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
701
+
702
+ [[package]]
703
+ name = "foldhash"
704
+ version = "0.1.5"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
707
+
708
+ [[package]]
709
+ name = "form_urlencoded"
710
+ version = "1.2.2"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
713
+ dependencies = [
714
+ "percent-encoding",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "fs2"
719
+ version = "0.4.3"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
722
+ dependencies = [
723
+ "libc",
724
+ "winapi",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "fsevent-sys"
729
+ version = "4.1.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
732
+ dependencies = [
733
+ "libc",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "futures"
738
+ version = "0.3.31"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
741
+ dependencies = [
742
+ "futures-channel",
743
+ "futures-core",
744
+ "futures-io",
745
+ "futures-sink",
746
+ "futures-task",
747
+ "futures-util",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "futures-channel"
752
+ version = "0.3.31"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
755
+ dependencies = [
756
+ "futures-core",
757
+ "futures-sink",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "futures-core"
762
+ version = "0.3.31"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
765
+
766
+ [[package]]
767
+ name = "futures-io"
768
+ version = "0.3.31"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
771
+
772
+ [[package]]
773
+ name = "futures-lite"
774
+ version = "2.6.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
777
+ dependencies = [
778
+ "fastrand",
779
+ "futures-core",
780
+ "futures-io",
781
+ "parking",
782
+ "pin-project-lite",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "futures-macro"
787
+ version = "0.3.31"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
790
+ dependencies = [
791
+ "proc-macro2",
792
+ "quote",
793
+ "syn",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "futures-sink"
798
+ version = "0.3.31"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
801
+
802
+ [[package]]
803
+ name = "futures-task"
804
+ version = "0.3.31"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
807
+
808
+ [[package]]
809
+ name = "futures-util"
810
+ version = "0.3.31"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
813
+ dependencies = [
814
+ "futures-channel",
815
+ "futures-core",
816
+ "futures-io",
817
+ "futures-macro",
818
+ "futures-sink",
819
+ "futures-task",
820
+ "memchr",
821
+ "pin-project-lite",
822
+ "pin-utils",
823
+ "slab",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "getrandom"
828
+ version = "0.2.16"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
831
+ dependencies = [
832
+ "cfg-if",
833
+ "libc",
834
+ "wasi",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "getrandom"
839
+ version = "0.3.4"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
842
+ dependencies = [
843
+ "cfg-if",
844
+ "libc",
845
+ "r-efi",
846
+ "wasip2",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "globset"
851
+ version = "0.4.14"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
854
+ dependencies = [
855
+ "aho-corasick",
856
+ "bstr",
857
+ "log",
858
+ "regex-automata",
859
+ "regex-syntax 0.8.8",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "hashbrown"
864
+ version = "0.12.3"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
867
+
868
+ [[package]]
869
+ name = "hashbrown"
870
+ version = "0.14.5"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
873
+
874
+ [[package]]
875
+ name = "hashbrown"
876
+ version = "0.15.5"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
879
+ dependencies = [
880
+ "allocator-api2",
881
+ "equivalent",
882
+ "foldhash",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "hashbrown"
887
+ version = "0.16.1"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
890
+
891
+ [[package]]
892
+ name = "heck"
893
+ version = "0.4.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
896
+
897
+ [[package]]
898
+ name = "heck"
899
+ version = "0.5.0"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
902
+
903
+ [[package]]
904
+ name = "hermit-abi"
905
+ version = "0.1.19"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
908
+ dependencies = [
909
+ "libc",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "hermit-abi"
914
+ version = "0.5.2"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
917
+
918
+ [[package]]
919
+ name = "hex"
920
+ version = "0.4.3"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
923
+
924
+ [[package]]
925
+ name = "httparse"
926
+ version = "1.10.1"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
929
+
930
+ [[package]]
931
+ name = "humantime"
932
+ version = "2.3.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
935
+
936
+ [[package]]
937
+ name = "iana-time-zone"
938
+ version = "0.1.64"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
941
+ dependencies = [
942
+ "android_system_properties",
943
+ "core-foundation-sys",
944
+ "iana-time-zone-haiku",
945
+ "js-sys",
946
+ "log",
947
+ "wasm-bindgen",
948
+ "windows-core 0.62.2",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "iana-time-zone-haiku"
953
+ version = "0.1.2"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
956
+ dependencies = [
957
+ "cc",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "icu_collections"
962
+ version = "2.1.1"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
965
+ dependencies = [
966
+ "displaydoc",
967
+ "potential_utf",
968
+ "yoke",
969
+ "zerofrom",
970
+ "zerovec",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "icu_locale_core"
975
+ version = "2.1.1"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
978
+ dependencies = [
979
+ "displaydoc",
980
+ "litemap",
981
+ "tinystr",
982
+ "writeable",
983
+ "zerovec",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "icu_normalizer"
988
+ version = "2.1.1"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
991
+ dependencies = [
992
+ "icu_collections",
993
+ "icu_normalizer_data",
994
+ "icu_properties",
995
+ "icu_provider",
996
+ "smallvec",
997
+ "zerovec",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "icu_normalizer_data"
1002
+ version = "2.1.1"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1005
+
1006
+ [[package]]
1007
+ name = "icu_properties"
1008
+ version = "2.1.2"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1011
+ dependencies = [
1012
+ "icu_collections",
1013
+ "icu_locale_core",
1014
+ "icu_properties_data",
1015
+ "icu_provider",
1016
+ "zerotrie",
1017
+ "zerovec",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "icu_properties_data"
1022
+ version = "2.1.2"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1025
+
1026
+ [[package]]
1027
+ name = "icu_provider"
1028
+ version = "2.1.1"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1031
+ dependencies = [
1032
+ "displaydoc",
1033
+ "icu_locale_core",
1034
+ "writeable",
1035
+ "yoke",
1036
+ "zerofrom",
1037
+ "zerotrie",
1038
+ "zerovec",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "ident_case"
1043
+ version = "1.0.1"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1046
+
1047
+ [[package]]
1048
+ name = "idna"
1049
+ version = "1.1.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1052
+ dependencies = [
1053
+ "idna_adapter",
1054
+ "smallvec",
1055
+ "utf8_iter",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "idna_adapter"
1060
+ version = "1.2.1"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1063
+ dependencies = [
1064
+ "icu_normalizer",
1065
+ "icu_properties",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "indexmap"
1070
+ version = "1.9.3"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1073
+ dependencies = [
1074
+ "autocfg",
1075
+ "hashbrown 0.12.3",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "indexmap"
1080
+ version = "2.12.1"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1083
+ dependencies = [
1084
+ "equivalent",
1085
+ "hashbrown 0.16.1",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "indoc"
1090
+ version = "2.0.7"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1093
+ dependencies = [
1094
+ "rustversion",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "inotify"
1099
+ version = "0.9.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
1102
+ dependencies = [
1103
+ "bitflags 1.3.2",
1104
+ "inotify-sys",
1105
+ "libc",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "inotify-sys"
1110
+ version = "0.1.5"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1113
+ dependencies = [
1114
+ "libc",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "instability"
1119
+ version = "0.3.11"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "357b7205c6cd18dd2c86ed312d1e70add149aea98e7ef72b9fdf0270e555c11d"
1122
+ dependencies = [
1123
+ "darling",
1124
+ "indoc",
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "syn",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "is-terminal"
1132
+ version = "0.4.17"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1135
+ dependencies = [
1136
+ "hermit-abi 0.5.2",
1137
+ "libc",
1138
+ "windows-sys 0.61.2",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "itertools"
1143
+ version = "0.13.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1146
+ dependencies = [
1147
+ "either",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "itoa"
1152
+ version = "1.0.15"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1155
+
1156
+ [[package]]
1157
+ name = "js-sys"
1158
+ version = "0.3.83"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1161
+ dependencies = [
1162
+ "once_cell",
1163
+ "wasm-bindgen",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "kqueue"
1168
+ version = "1.1.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1171
+ dependencies = [
1172
+ "kqueue-sys",
1173
+ "libc",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "kqueue-sys"
1178
+ version = "1.0.4"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1181
+ dependencies = [
1182
+ "bitflags 1.3.2",
1183
+ "libc",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "lazy_static"
1188
+ version = "1.4.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1191
+
1192
+ [[package]]
1193
+ name = "libc"
1194
+ version = "0.2.178"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1197
+
1198
+ [[package]]
1199
+ name = "libredox"
1200
+ version = "0.1.11"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
1203
+ dependencies = [
1204
+ "bitflags 2.10.0",
1205
+ "libc",
1206
+ "redox_syscall 0.6.0",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "linthis"
1211
+ version = "0.0.10"
1212
+ dependencies = [
1213
+ "anyhow",
1214
+ "async-trait",
1215
+ "chrono",
1216
+ "clap",
1217
+ "colored",
1218
+ "crossterm",
1219
+ "directories",
1220
+ "env_logger",
1221
+ "fs2",
1222
+ "globset",
1223
+ "lazy_static",
1224
+ "log",
1225
+ "notify",
1226
+ "notify-rust",
1227
+ "ratatui",
1228
+ "rayon",
1229
+ "regex",
1230
+ "serde",
1231
+ "serde_json",
1232
+ "serde_yaml",
1233
+ "similar",
1234
+ "tempfile",
1235
+ "thiserror 1.0.40",
1236
+ "tokio",
1237
+ "toml",
1238
+ "toml_edit 0.22.27",
1239
+ "tower-lsp",
1240
+ "walkdir",
1241
+ "xxhash-rust",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "linux-raw-sys"
1246
+ version = "0.4.15"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1249
+
1250
+ [[package]]
1251
+ name = "linux-raw-sys"
1252
+ version = "0.11.0"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1255
+
1256
+ [[package]]
1257
+ name = "litemap"
1258
+ version = "0.8.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1261
+
1262
+ [[package]]
1263
+ name = "lock_api"
1264
+ version = "0.4.14"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1267
+ dependencies = [
1268
+ "scopeguard",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "log"
1273
+ version = "0.4.29"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1276
+
1277
+ [[package]]
1278
+ name = "lru"
1279
+ version = "0.12.5"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1282
+ dependencies = [
1283
+ "hashbrown 0.15.5",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "lsp-types"
1288
+ version = "0.94.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1"
1291
+ dependencies = [
1292
+ "bitflags 1.3.2",
1293
+ "serde",
1294
+ "serde_json",
1295
+ "serde_repr",
1296
+ "url",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "mac-notification-sys"
1301
+ version = "0.6.9"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "65fd3f75411f4725061682ed91f131946e912859d0044d39c4ec0aac818d7621"
1304
+ dependencies = [
1305
+ "cc",
1306
+ "objc2",
1307
+ "objc2-foundation",
1308
+ "time",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "memchr"
1313
+ version = "2.7.6"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1316
+
1317
+ [[package]]
1318
+ name = "memoffset"
1319
+ version = "0.9.1"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1322
+ dependencies = [
1323
+ "autocfg",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "mio"
1328
+ version = "0.8.11"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1331
+ dependencies = [
1332
+ "libc",
1333
+ "log",
1334
+ "wasi",
1335
+ "windows-sys 0.48.0",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "mio"
1340
+ version = "1.1.1"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1343
+ dependencies = [
1344
+ "libc",
1345
+ "log",
1346
+ "wasi",
1347
+ "windows-sys 0.61.2",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "notify"
1352
+ version = "6.1.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
1355
+ dependencies = [
1356
+ "bitflags 2.10.0",
1357
+ "crossbeam-channel",
1358
+ "filetime",
1359
+ "fsevent-sys",
1360
+ "inotify",
1361
+ "kqueue",
1362
+ "libc",
1363
+ "log",
1364
+ "mio 0.8.11",
1365
+ "walkdir",
1366
+ "windows-sys 0.48.0",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "notify-rust"
1371
+ version = "4.11.7"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400"
1374
+ dependencies = [
1375
+ "futures-lite",
1376
+ "log",
1377
+ "mac-notification-sys",
1378
+ "serde",
1379
+ "tauri-winrt-notification",
1380
+ "zbus",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "num-conv"
1385
+ version = "0.1.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1388
+
1389
+ [[package]]
1390
+ name = "num-traits"
1391
+ version = "0.2.19"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1394
+ dependencies = [
1395
+ "autocfg",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "num_cpus"
1400
+ version = "1.17.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1403
+ dependencies = [
1404
+ "hermit-abi 0.5.2",
1405
+ "libc",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "objc2"
1410
+ version = "0.6.3"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
1413
+ dependencies = [
1414
+ "objc2-encode",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "objc2-core-foundation"
1419
+ version = "0.3.2"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1422
+ dependencies = [
1423
+ "bitflags 2.10.0",
1424
+ "dispatch2",
1425
+ "objc2",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "objc2-encode"
1430
+ version = "4.1.0"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1433
+
1434
+ [[package]]
1435
+ name = "objc2-foundation"
1436
+ version = "0.3.2"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
1439
+ dependencies = [
1440
+ "bitflags 2.10.0",
1441
+ "block2",
1442
+ "libc",
1443
+ "objc2",
1444
+ "objc2-core-foundation",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "once_cell"
1449
+ version = "1.21.3"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1452
+
1453
+ [[package]]
1454
+ name = "option-ext"
1455
+ version = "0.2.0"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1458
+
1459
+ [[package]]
1460
+ name = "ordered-stream"
1461
+ version = "0.2.0"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
1464
+ dependencies = [
1465
+ "futures-core",
1466
+ "pin-project-lite",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "parking"
1471
+ version = "2.2.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1474
+
1475
+ [[package]]
1476
+ name = "parking_lot"
1477
+ version = "0.12.5"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1480
+ dependencies = [
1481
+ "lock_api",
1482
+ "parking_lot_core",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "parking_lot_core"
1487
+ version = "0.9.12"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1490
+ dependencies = [
1491
+ "cfg-if",
1492
+ "libc",
1493
+ "redox_syscall 0.5.18",
1494
+ "smallvec",
1495
+ "windows-link 0.2.1",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "paste"
1500
+ version = "1.0.15"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1503
+
1504
+ [[package]]
1505
+ name = "percent-encoding"
1506
+ version = "2.3.2"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1509
+
1510
+ [[package]]
1511
+ name = "pin-project"
1512
+ version = "1.1.10"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1515
+ dependencies = [
1516
+ "pin-project-internal",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "pin-project-internal"
1521
+ version = "1.1.10"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1524
+ dependencies = [
1525
+ "proc-macro2",
1526
+ "quote",
1527
+ "syn",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "pin-project-lite"
1532
+ version = "0.2.16"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1535
+
1536
+ [[package]]
1537
+ name = "pin-utils"
1538
+ version = "0.1.0"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1541
+
1542
+ [[package]]
1543
+ name = "piper"
1544
+ version = "0.2.4"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1547
+ dependencies = [
1548
+ "atomic-waker",
1549
+ "fastrand",
1550
+ "futures-io",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "polling"
1555
+ version = "3.11.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1558
+ dependencies = [
1559
+ "cfg-if",
1560
+ "concurrent-queue",
1561
+ "hermit-abi 0.5.2",
1562
+ "pin-project-lite",
1563
+ "rustix 1.1.2",
1564
+ "windows-sys 0.61.2",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "potential_utf"
1569
+ version = "0.1.4"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1572
+ dependencies = [
1573
+ "zerovec",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "powerfmt"
1578
+ version = "0.2.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1581
+
1582
+ [[package]]
1583
+ name = "proc-macro-crate"
1584
+ version = "3.4.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
1587
+ dependencies = [
1588
+ "toml_edit 0.23.10+spec-1.0.0",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "proc-macro2"
1593
+ version = "1.0.103"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1596
+ dependencies = [
1597
+ "unicode-ident",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "quick-xml"
1602
+ version = "0.37.5"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1605
+ dependencies = [
1606
+ "memchr",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "quote"
1611
+ version = "1.0.42"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1614
+ dependencies = [
1615
+ "proc-macro2",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "r-efi"
1620
+ version = "5.3.0"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1623
+
1624
+ [[package]]
1625
+ name = "ratatui"
1626
+ version = "0.28.1"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "fdef7f9be5c0122f890d58bdf4d964349ba6a6161f705907526d891efabba57d"
1629
+ dependencies = [
1630
+ "bitflags 2.10.0",
1631
+ "cassowary",
1632
+ "compact_str",
1633
+ "crossterm",
1634
+ "instability",
1635
+ "itertools",
1636
+ "lru",
1637
+ "paste",
1638
+ "strum",
1639
+ "strum_macros",
1640
+ "unicode-segmentation",
1641
+ "unicode-truncate",
1642
+ "unicode-width",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "rayon"
1647
+ version = "1.7.0"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
1650
+ dependencies = [
1651
+ "either",
1652
+ "rayon-core",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "rayon-core"
1657
+ version = "1.11.0"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
1660
+ dependencies = [
1661
+ "crossbeam-channel",
1662
+ "crossbeam-deque",
1663
+ "crossbeam-utils",
1664
+ "num_cpus",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "redox_syscall"
1669
+ version = "0.5.18"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1672
+ dependencies = [
1673
+ "bitflags 2.10.0",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "redox_syscall"
1678
+ version = "0.6.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
1681
+ dependencies = [
1682
+ "bitflags 2.10.0",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "redox_users"
1687
+ version = "0.4.6"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1690
+ dependencies = [
1691
+ "getrandom 0.2.16",
1692
+ "libredox",
1693
+ "thiserror 1.0.40",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "regex"
1698
+ version = "1.8.4"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
1701
+ dependencies = [
1702
+ "aho-corasick",
1703
+ "memchr",
1704
+ "regex-syntax 0.7.5",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "regex-automata"
1709
+ version = "0.4.13"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1712
+ dependencies = [
1713
+ "aho-corasick",
1714
+ "memchr",
1715
+ "regex-syntax 0.8.8",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "regex-syntax"
1720
+ version = "0.7.5"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
1723
+
1724
+ [[package]]
1725
+ name = "regex-syntax"
1726
+ version = "0.8.8"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1729
+
1730
+ [[package]]
1731
+ name = "rustix"
1732
+ version = "0.38.44"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1735
+ dependencies = [
1736
+ "bitflags 2.10.0",
1737
+ "errno",
1738
+ "libc",
1739
+ "linux-raw-sys 0.4.15",
1740
+ "windows-sys 0.59.0",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "rustix"
1745
+ version = "1.1.2"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1748
+ dependencies = [
1749
+ "bitflags 2.10.0",
1750
+ "errno",
1751
+ "libc",
1752
+ "linux-raw-sys 0.11.0",
1753
+ "windows-sys 0.61.2",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "rustversion"
1758
+ version = "1.0.22"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1761
+
1762
+ [[package]]
1763
+ name = "ryu"
1764
+ version = "1.0.20"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1767
+
1768
+ [[package]]
1769
+ name = "same-file"
1770
+ version = "1.0.6"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1773
+ dependencies = [
1774
+ "winapi-util",
1775
+ ]
1776
+
1777
+ [[package]]
1778
+ name = "scopeguard"
1779
+ version = "1.2.0"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1782
+
1783
+ [[package]]
1784
+ name = "serde"
1785
+ version = "1.0.228"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1788
+ dependencies = [
1789
+ "serde_core",
1790
+ "serde_derive",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "serde_core"
1795
+ version = "1.0.228"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1798
+ dependencies = [
1799
+ "serde_derive",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "serde_derive"
1804
+ version = "1.0.228"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1807
+ dependencies = [
1808
+ "proc-macro2",
1809
+ "quote",
1810
+ "syn",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "serde_json"
1815
+ version = "1.0.96"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
1818
+ dependencies = [
1819
+ "itoa",
1820
+ "ryu",
1821
+ "serde",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "serde_repr"
1826
+ version = "0.1.20"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
1829
+ dependencies = [
1830
+ "proc-macro2",
1831
+ "quote",
1832
+ "syn",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "serde_yaml"
1837
+ version = "0.9.17"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "8fb06d4b6cdaef0e0c51fa881acb721bed3c924cfaa71d9c94a3b771dfdf6567"
1840
+ dependencies = [
1841
+ "indexmap 1.9.3",
1842
+ "itoa",
1843
+ "ryu",
1844
+ "serde",
1845
+ "unsafe-libyaml",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "shlex"
1850
+ version = "1.3.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1853
+
1854
+ [[package]]
1855
+ name = "signal-hook"
1856
+ version = "0.3.18"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1859
+ dependencies = [
1860
+ "libc",
1861
+ "signal-hook-registry",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "signal-hook-mio"
1866
+ version = "0.2.5"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1869
+ dependencies = [
1870
+ "libc",
1871
+ "mio 1.1.1",
1872
+ "signal-hook",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "signal-hook-registry"
1877
+ version = "1.4.8"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1880
+ dependencies = [
1881
+ "errno",
1882
+ "libc",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "similar"
1887
+ version = "2.7.0"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1890
+
1891
+ [[package]]
1892
+ name = "slab"
1893
+ version = "0.4.11"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1896
+
1897
+ [[package]]
1898
+ name = "smallvec"
1899
+ version = "1.15.1"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1902
+
1903
+ [[package]]
1904
+ name = "socket2"
1905
+ version = "0.6.1"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1908
+ dependencies = [
1909
+ "libc",
1910
+ "windows-sys 0.60.2",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "stable_deref_trait"
1915
+ version = "1.2.1"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1918
+
1919
+ [[package]]
1920
+ name = "static_assertions"
1921
+ version = "1.1.0"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1924
+
1925
+ [[package]]
1926
+ name = "strsim"
1927
+ version = "0.10.0"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
1930
+
1931
+ [[package]]
1932
+ name = "strsim"
1933
+ version = "0.11.1"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1936
+
1937
+ [[package]]
1938
+ name = "strum"
1939
+ version = "0.26.3"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
1942
+ dependencies = [
1943
+ "strum_macros",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "strum_macros"
1948
+ version = "0.26.4"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
1951
+ dependencies = [
1952
+ "heck 0.5.0",
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "rustversion",
1956
+ "syn",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "syn"
1961
+ version = "2.0.111"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1964
+ dependencies = [
1965
+ "proc-macro2",
1966
+ "quote",
1967
+ "unicode-ident",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "synstructure"
1972
+ version = "0.13.2"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1975
+ dependencies = [
1976
+ "proc-macro2",
1977
+ "quote",
1978
+ "syn",
1979
+ ]
1980
+
1981
+ [[package]]
1982
+ name = "tauri-winrt-notification"
1983
+ version = "0.7.2"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9"
1986
+ dependencies = [
1987
+ "quick-xml",
1988
+ "thiserror 2.0.17",
1989
+ "windows",
1990
+ "windows-version",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "tempfile"
1995
+ version = "3.23.0"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1998
+ dependencies = [
1999
+ "fastrand",
2000
+ "getrandom 0.3.4",
2001
+ "once_cell",
2002
+ "rustix 1.1.2",
2003
+ "windows-sys 0.61.2",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "termcolor"
2008
+ version = "1.4.1"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2011
+ dependencies = [
2012
+ "winapi-util",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "thiserror"
2017
+ version = "1.0.40"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2020
+ dependencies = [
2021
+ "thiserror-impl 1.0.40",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "thiserror"
2026
+ version = "2.0.17"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2029
+ dependencies = [
2030
+ "thiserror-impl 2.0.17",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "thiserror-impl"
2035
+ version = "1.0.40"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2038
+ dependencies = [
2039
+ "proc-macro2",
2040
+ "quote",
2041
+ "syn",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "thiserror-impl"
2046
+ version = "2.0.17"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2049
+ dependencies = [
2050
+ "proc-macro2",
2051
+ "quote",
2052
+ "syn",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "time"
2057
+ version = "0.3.45"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
2060
+ dependencies = [
2061
+ "deranged",
2062
+ "num-conv",
2063
+ "powerfmt",
2064
+ "serde_core",
2065
+ "time-core",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "time-core"
2070
+ version = "0.1.7"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
2073
+
2074
+ [[package]]
2075
+ name = "tinystr"
2076
+ version = "0.8.2"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2079
+ dependencies = [
2080
+ "displaydoc",
2081
+ "zerovec",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "tokio"
2086
+ version = "1.49.0"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2089
+ dependencies = [
2090
+ "bytes",
2091
+ "libc",
2092
+ "mio 1.1.1",
2093
+ "parking_lot",
2094
+ "pin-project-lite",
2095
+ "signal-hook-registry",
2096
+ "socket2",
2097
+ "tokio-macros",
2098
+ "windows-sys 0.61.2",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "tokio-macros"
2103
+ version = "2.6.0"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2106
+ dependencies = [
2107
+ "proc-macro2",
2108
+ "quote",
2109
+ "syn",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "tokio-util"
2114
+ version = "0.7.18"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2117
+ dependencies = [
2118
+ "bytes",
2119
+ "futures-core",
2120
+ "futures-sink",
2121
+ "pin-project-lite",
2122
+ "tokio",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "toml"
2127
+ version = "0.5.11"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2130
+ dependencies = [
2131
+ "serde",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "toml_datetime"
2136
+ version = "0.6.11"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2139
+
2140
+ [[package]]
2141
+ name = "toml_datetime"
2142
+ version = "0.7.5+spec-1.1.0"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2145
+ dependencies = [
2146
+ "serde_core",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "toml_edit"
2151
+ version = "0.22.27"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2154
+ dependencies = [
2155
+ "indexmap 2.12.1",
2156
+ "toml_datetime 0.6.11",
2157
+ "toml_write",
2158
+ "winnow",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "toml_edit"
2163
+ version = "0.23.10+spec-1.0.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
2166
+ dependencies = [
2167
+ "indexmap 2.12.1",
2168
+ "toml_datetime 0.7.5+spec-1.1.0",
2169
+ "toml_parser",
2170
+ "winnow",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "toml_parser"
2175
+ version = "1.0.6+spec-1.1.0"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2178
+ dependencies = [
2179
+ "winnow",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "toml_write"
2184
+ version = "0.1.2"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2187
+
2188
+ [[package]]
2189
+ name = "tower"
2190
+ version = "0.4.13"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2193
+ dependencies = [
2194
+ "futures-core",
2195
+ "futures-util",
2196
+ "pin-project",
2197
+ "pin-project-lite",
2198
+ "tower-layer",
2199
+ "tower-service",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "tower-layer"
2204
+ version = "0.3.3"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2207
+
2208
+ [[package]]
2209
+ name = "tower-lsp"
2210
+ version = "0.20.0"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "d4ba052b54a6627628d9b3c34c176e7eda8359b7da9acd497b9f20998d118508"
2213
+ dependencies = [
2214
+ "async-trait",
2215
+ "auto_impl",
2216
+ "bytes",
2217
+ "dashmap",
2218
+ "futures",
2219
+ "httparse",
2220
+ "lsp-types",
2221
+ "memchr",
2222
+ "serde",
2223
+ "serde_json",
2224
+ "tokio",
2225
+ "tokio-util",
2226
+ "tower",
2227
+ "tower-lsp-macros",
2228
+ "tracing",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "tower-lsp-macros"
2233
+ version = "0.9.0"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "84fd902d4e0b9a4b27f2f440108dc034e1758628a9b702f8ec61ad66355422fa"
2236
+ dependencies = [
2237
+ "proc-macro2",
2238
+ "quote",
2239
+ "syn",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "tower-service"
2244
+ version = "0.3.3"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2247
+
2248
+ [[package]]
2249
+ name = "tracing"
2250
+ version = "0.1.44"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2253
+ dependencies = [
2254
+ "pin-project-lite",
2255
+ "tracing-attributes",
2256
+ "tracing-core",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "tracing-attributes"
2261
+ version = "0.1.31"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2264
+ dependencies = [
2265
+ "proc-macro2",
2266
+ "quote",
2267
+ "syn",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "tracing-core"
2272
+ version = "0.1.36"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2275
+ dependencies = [
2276
+ "once_cell",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "uds_windows"
2281
+ version = "1.1.0"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
2284
+ dependencies = [
2285
+ "memoffset",
2286
+ "tempfile",
2287
+ "winapi",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "unicode-ident"
2292
+ version = "1.0.22"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2295
+
2296
+ [[package]]
2297
+ name = "unicode-segmentation"
2298
+ version = "1.12.0"
2299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2300
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2301
+
2302
+ [[package]]
2303
+ name = "unicode-truncate"
2304
+ version = "1.1.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
2307
+ dependencies = [
2308
+ "itertools",
2309
+ "unicode-segmentation",
2310
+ "unicode-width",
2311
+ ]
2312
+
2313
+ [[package]]
2314
+ name = "unicode-width"
2315
+ version = "0.1.14"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2318
+
2319
+ [[package]]
2320
+ name = "unsafe-libyaml"
2321
+ version = "0.2.11"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2324
+
2325
+ [[package]]
2326
+ name = "url"
2327
+ version = "2.5.8"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2330
+ dependencies = [
2331
+ "form_urlencoded",
2332
+ "idna",
2333
+ "percent-encoding",
2334
+ "serde",
2335
+ "serde_derive",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "utf8_iter"
2340
+ version = "1.0.4"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2343
+
2344
+ [[package]]
2345
+ name = "utf8parse"
2346
+ version = "0.2.2"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2349
+
2350
+ [[package]]
2351
+ name = "uuid"
2352
+ version = "1.19.0"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
2355
+ dependencies = [
2356
+ "js-sys",
2357
+ "serde_core",
2358
+ "wasm-bindgen",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "walkdir"
2363
+ version = "2.3.3"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
2366
+ dependencies = [
2367
+ "same-file",
2368
+ "winapi-util",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "wasi"
2373
+ version = "0.11.1+wasi-snapshot-preview1"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2376
+
2377
+ [[package]]
2378
+ name = "wasip2"
2379
+ version = "1.0.1+wasi-0.2.4"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2382
+ dependencies = [
2383
+ "wit-bindgen",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "wasm-bindgen"
2388
+ version = "0.2.106"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
2391
+ dependencies = [
2392
+ "cfg-if",
2393
+ "once_cell",
2394
+ "rustversion",
2395
+ "wasm-bindgen-macro",
2396
+ "wasm-bindgen-shared",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "wasm-bindgen-macro"
2401
+ version = "0.2.106"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2404
+ dependencies = [
2405
+ "quote",
2406
+ "wasm-bindgen-macro-support",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "wasm-bindgen-macro-support"
2411
+ version = "0.2.106"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2414
+ dependencies = [
2415
+ "bumpalo",
2416
+ "proc-macro2",
2417
+ "quote",
2418
+ "syn",
2419
+ "wasm-bindgen-shared",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "wasm-bindgen-shared"
2424
+ version = "0.2.106"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2427
+ dependencies = [
2428
+ "unicode-ident",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "winapi"
2433
+ version = "0.3.9"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2436
+ dependencies = [
2437
+ "winapi-i686-pc-windows-gnu",
2438
+ "winapi-x86_64-pc-windows-gnu",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "winapi-i686-pc-windows-gnu"
2443
+ version = "0.4.0"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2446
+
2447
+ [[package]]
2448
+ name = "winapi-util"
2449
+ version = "0.1.11"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2452
+ dependencies = [
2453
+ "windows-sys 0.61.2",
2454
+ ]
2455
+
2456
+ [[package]]
2457
+ name = "winapi-x86_64-pc-windows-gnu"
2458
+ version = "0.4.0"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2461
+
2462
+ [[package]]
2463
+ name = "windows"
2464
+ version = "0.61.3"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2467
+ dependencies = [
2468
+ "windows-collections",
2469
+ "windows-core 0.61.2",
2470
+ "windows-future",
2471
+ "windows-link 0.1.3",
2472
+ "windows-numerics",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "windows-collections"
2477
+ version = "0.2.0"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2480
+ dependencies = [
2481
+ "windows-core 0.61.2",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "windows-core"
2486
+ version = "0.61.2"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2489
+ dependencies = [
2490
+ "windows-implement",
2491
+ "windows-interface",
2492
+ "windows-link 0.1.3",
2493
+ "windows-result 0.3.4",
2494
+ "windows-strings 0.4.2",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "windows-core"
2499
+ version = "0.62.2"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2502
+ dependencies = [
2503
+ "windows-implement",
2504
+ "windows-interface",
2505
+ "windows-link 0.2.1",
2506
+ "windows-result 0.4.1",
2507
+ "windows-strings 0.5.1",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "windows-future"
2512
+ version = "0.2.1"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2515
+ dependencies = [
2516
+ "windows-core 0.61.2",
2517
+ "windows-link 0.1.3",
2518
+ "windows-threading",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "windows-implement"
2523
+ version = "0.60.2"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2526
+ dependencies = [
2527
+ "proc-macro2",
2528
+ "quote",
2529
+ "syn",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "windows-interface"
2534
+ version = "0.59.3"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2537
+ dependencies = [
2538
+ "proc-macro2",
2539
+ "quote",
2540
+ "syn",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "windows-link"
2545
+ version = "0.1.3"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2548
+
2549
+ [[package]]
2550
+ name = "windows-link"
2551
+ version = "0.2.1"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2554
+
2555
+ [[package]]
2556
+ name = "windows-numerics"
2557
+ version = "0.2.0"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2560
+ dependencies = [
2561
+ "windows-core 0.61.2",
2562
+ "windows-link 0.1.3",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "windows-result"
2567
+ version = "0.3.4"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2570
+ dependencies = [
2571
+ "windows-link 0.1.3",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "windows-result"
2576
+ version = "0.4.1"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2579
+ dependencies = [
2580
+ "windows-link 0.2.1",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "windows-strings"
2585
+ version = "0.4.2"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2588
+ dependencies = [
2589
+ "windows-link 0.1.3",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "windows-strings"
2594
+ version = "0.5.1"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2597
+ dependencies = [
2598
+ "windows-link 0.2.1",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "windows-sys"
2603
+ version = "0.48.0"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2606
+ dependencies = [
2607
+ "windows-targets 0.48.5",
2608
+ ]
2609
+
2610
+ [[package]]
2611
+ name = "windows-sys"
2612
+ version = "0.59.0"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2615
+ dependencies = [
2616
+ "windows-targets 0.52.6",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "windows-sys"
2621
+ version = "0.60.2"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2624
+ dependencies = [
2625
+ "windows-targets 0.53.5",
2626
+ ]
2627
+
2628
+ [[package]]
2629
+ name = "windows-sys"
2630
+ version = "0.61.2"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2633
+ dependencies = [
2634
+ "windows-link 0.2.1",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "windows-targets"
2639
+ version = "0.48.5"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2642
+ dependencies = [
2643
+ "windows_aarch64_gnullvm 0.48.5",
2644
+ "windows_aarch64_msvc 0.48.5",
2645
+ "windows_i686_gnu 0.48.5",
2646
+ "windows_i686_msvc 0.48.5",
2647
+ "windows_x86_64_gnu 0.48.5",
2648
+ "windows_x86_64_gnullvm 0.48.5",
2649
+ "windows_x86_64_msvc 0.48.5",
2650
+ ]
2651
+
2652
+ [[package]]
2653
+ name = "windows-targets"
2654
+ version = "0.52.6"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2657
+ dependencies = [
2658
+ "windows_aarch64_gnullvm 0.52.6",
2659
+ "windows_aarch64_msvc 0.52.6",
2660
+ "windows_i686_gnu 0.52.6",
2661
+ "windows_i686_gnullvm 0.52.6",
2662
+ "windows_i686_msvc 0.52.6",
2663
+ "windows_x86_64_gnu 0.52.6",
2664
+ "windows_x86_64_gnullvm 0.52.6",
2665
+ "windows_x86_64_msvc 0.52.6",
2666
+ ]
2667
+
2668
+ [[package]]
2669
+ name = "windows-targets"
2670
+ version = "0.53.5"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2673
+ dependencies = [
2674
+ "windows-link 0.2.1",
2675
+ "windows_aarch64_gnullvm 0.53.1",
2676
+ "windows_aarch64_msvc 0.53.1",
2677
+ "windows_i686_gnu 0.53.1",
2678
+ "windows_i686_gnullvm 0.53.1",
2679
+ "windows_i686_msvc 0.53.1",
2680
+ "windows_x86_64_gnu 0.53.1",
2681
+ "windows_x86_64_gnullvm 0.53.1",
2682
+ "windows_x86_64_msvc 0.53.1",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "windows-threading"
2687
+ version = "0.1.0"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2690
+ dependencies = [
2691
+ "windows-link 0.1.3",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "windows-version"
2696
+ version = "0.1.7"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
2699
+ dependencies = [
2700
+ "windows-link 0.2.1",
2701
+ ]
2702
+
2703
+ [[package]]
2704
+ name = "windows_aarch64_gnullvm"
2705
+ version = "0.48.5"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2708
+
2709
+ [[package]]
2710
+ name = "windows_aarch64_gnullvm"
2711
+ version = "0.52.6"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2714
+
2715
+ [[package]]
2716
+ name = "windows_aarch64_gnullvm"
2717
+ version = "0.53.1"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2720
+
2721
+ [[package]]
2722
+ name = "windows_aarch64_msvc"
2723
+ version = "0.48.5"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2726
+
2727
+ [[package]]
2728
+ name = "windows_aarch64_msvc"
2729
+ version = "0.52.6"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2732
+
2733
+ [[package]]
2734
+ name = "windows_aarch64_msvc"
2735
+ version = "0.53.1"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2738
+
2739
+ [[package]]
2740
+ name = "windows_i686_gnu"
2741
+ version = "0.48.5"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2744
+
2745
+ [[package]]
2746
+ name = "windows_i686_gnu"
2747
+ version = "0.52.6"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2750
+
2751
+ [[package]]
2752
+ name = "windows_i686_gnu"
2753
+ version = "0.53.1"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2756
+
2757
+ [[package]]
2758
+ name = "windows_i686_gnullvm"
2759
+ version = "0.52.6"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2762
+
2763
+ [[package]]
2764
+ name = "windows_i686_gnullvm"
2765
+ version = "0.53.1"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2768
+
2769
+ [[package]]
2770
+ name = "windows_i686_msvc"
2771
+ version = "0.48.5"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2774
+
2775
+ [[package]]
2776
+ name = "windows_i686_msvc"
2777
+ version = "0.52.6"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2780
+
2781
+ [[package]]
2782
+ name = "windows_i686_msvc"
2783
+ version = "0.53.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2786
+
2787
+ [[package]]
2788
+ name = "windows_x86_64_gnu"
2789
+ version = "0.48.5"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2792
+
2793
+ [[package]]
2794
+ name = "windows_x86_64_gnu"
2795
+ version = "0.52.6"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2798
+
2799
+ [[package]]
2800
+ name = "windows_x86_64_gnu"
2801
+ version = "0.53.1"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2804
+
2805
+ [[package]]
2806
+ name = "windows_x86_64_gnullvm"
2807
+ version = "0.48.5"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2810
+
2811
+ [[package]]
2812
+ name = "windows_x86_64_gnullvm"
2813
+ version = "0.52.6"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2816
+
2817
+ [[package]]
2818
+ name = "windows_x86_64_gnullvm"
2819
+ version = "0.53.1"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2822
+
2823
+ [[package]]
2824
+ name = "windows_x86_64_msvc"
2825
+ version = "0.48.5"
2826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2827
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2828
+
2829
+ [[package]]
2830
+ name = "windows_x86_64_msvc"
2831
+ version = "0.52.6"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2834
+
2835
+ [[package]]
2836
+ name = "windows_x86_64_msvc"
2837
+ version = "0.53.1"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2840
+
2841
+ [[package]]
2842
+ name = "winnow"
2843
+ version = "0.7.14"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
2846
+ dependencies = [
2847
+ "memchr",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "wit-bindgen"
2852
+ version = "0.46.0"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2855
+
2856
+ [[package]]
2857
+ name = "writeable"
2858
+ version = "0.6.2"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2861
+
2862
+ [[package]]
2863
+ name = "xxhash-rust"
2864
+ version = "0.8.15"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2867
+
2868
+ [[package]]
2869
+ name = "yoke"
2870
+ version = "0.8.1"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2873
+ dependencies = [
2874
+ "stable_deref_trait",
2875
+ "yoke-derive",
2876
+ "zerofrom",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "yoke-derive"
2881
+ version = "0.8.1"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2884
+ dependencies = [
2885
+ "proc-macro2",
2886
+ "quote",
2887
+ "syn",
2888
+ "synstructure",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "zbus"
2893
+ version = "5.13.1"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "17f79257df967b6779afa536788657777a0001f5b42524fcaf5038d4344df40b"
2896
+ dependencies = [
2897
+ "async-broadcast",
2898
+ "async-executor",
2899
+ "async-io",
2900
+ "async-lock",
2901
+ "async-process",
2902
+ "async-recursion",
2903
+ "async-task",
2904
+ "async-trait",
2905
+ "blocking",
2906
+ "enumflags2",
2907
+ "event-listener",
2908
+ "futures-core",
2909
+ "futures-lite",
2910
+ "hex",
2911
+ "libc",
2912
+ "ordered-stream",
2913
+ "rustix 1.1.2",
2914
+ "serde",
2915
+ "serde_repr",
2916
+ "tracing",
2917
+ "uds_windows",
2918
+ "uuid",
2919
+ "windows-sys 0.61.2",
2920
+ "winnow",
2921
+ "zbus_macros",
2922
+ "zbus_names",
2923
+ "zvariant",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "zbus_macros"
2928
+ version = "5.13.1"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "aad23e2d2f91cae771c7af7a630a49e755f1eb74f8a46e9f6d5f7a146edf5a37"
2931
+ dependencies = [
2932
+ "proc-macro-crate",
2933
+ "proc-macro2",
2934
+ "quote",
2935
+ "syn",
2936
+ "zbus_names",
2937
+ "zvariant",
2938
+ "zvariant_utils",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "zbus_names"
2943
+ version = "4.3.1"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f"
2946
+ dependencies = [
2947
+ "serde",
2948
+ "winnow",
2949
+ "zvariant",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "zerofrom"
2954
+ version = "0.1.6"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2957
+ dependencies = [
2958
+ "zerofrom-derive",
2959
+ ]
2960
+
2961
+ [[package]]
2962
+ name = "zerofrom-derive"
2963
+ version = "0.1.6"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2966
+ dependencies = [
2967
+ "proc-macro2",
2968
+ "quote",
2969
+ "syn",
2970
+ "synstructure",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "zerotrie"
2975
+ version = "0.2.3"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2978
+ dependencies = [
2979
+ "displaydoc",
2980
+ "yoke",
2981
+ "zerofrom",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "zerovec"
2986
+ version = "0.11.5"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2989
+ dependencies = [
2990
+ "yoke",
2991
+ "zerofrom",
2992
+ "zerovec-derive",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "zerovec-derive"
2997
+ version = "0.11.2"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3000
+ dependencies = [
3001
+ "proc-macro2",
3002
+ "quote",
3003
+ "syn",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "zvariant"
3008
+ version = "5.9.1"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "326aaed414f04fe839777b4c443d4e94c74e7b3621093bd9c5e649ac8aa96543"
3011
+ dependencies = [
3012
+ "endi",
3013
+ "enumflags2",
3014
+ "serde",
3015
+ "winnow",
3016
+ "zvariant_derive",
3017
+ "zvariant_utils",
3018
+ ]
3019
+
3020
+ [[package]]
3021
+ name = "zvariant_derive"
3022
+ version = "5.9.1"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "ba44e1f8f4da9e6e2d25d2a60b116ef8b9d0be174a7685e55bb12a99866279a7"
3025
+ dependencies = [
3026
+ "proc-macro-crate",
3027
+ "proc-macro2",
3028
+ "quote",
3029
+ "syn",
3030
+ "zvariant_utils",
3031
+ ]
3032
+
3033
+ [[package]]
3034
+ name = "zvariant_utils"
3035
+ version = "3.3.0"
3036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3037
+ checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9"
3038
+ dependencies = [
3039
+ "proc-macro2",
3040
+ "quote",
3041
+ "serde",
3042
+ "syn",
3043
+ "winnow",
3044
+ ]