fprime-fpp-format 3.3.0__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 (120) hide show
  1. fprime_fpp_format-3.3.0/Cargo.lock +1422 -0
  2. fprime_fpp_format-3.3.0/Cargo.toml +20 -0
  3. fprime_fpp_format-3.3.0/PKG-INFO +104 -0
  4. fprime_fpp_format-3.3.0/README.md +89 -0
  5. fprime_fpp_format-3.3.0/fpp_format/Cargo.toml +20 -0
  6. fprime_fpp_format-3.3.0/fpp_format/README.md +89 -0
  7. fprime_fpp_format-3.3.0/fpp_format/src/doc.rs +307 -0
  8. fprime_fpp_format-3.3.0/fpp_format/src/formatter.rs +603 -0
  9. fprime_fpp_format-3.3.0/fpp_format/src/include.rs +167 -0
  10. fprime_fpp_format-3.3.0/fpp_format/src/lib.rs +493 -0
  11. fprime_fpp_format-3.3.0/fpp_format/src/main.rs +151 -0
  12. fprime_fpp_format-3.3.0/fpp_format/tests/annotations.fpp +57 -0
  13. fprime_fpp_format-3.3.0/fpp_format/tests/annotations.ref.fpp +46 -0
  14. fprime_fpp_format-3.3.0/fpp_format/tests/array-struct.fpp +57 -0
  15. fprime_fpp_format-3.3.0/fpp_format/tests/array-struct.ref.fpp +53 -0
  16. fprime_fpp_format-3.3.0/fpp_format/tests/binary-expressions.fpp +5 -0
  17. fprime_fpp_format-3.3.0/fpp_format/tests/binary-expressions.ref.fpp +5 -0
  18. fprime_fpp_format-3.3.0/fpp_format/tests/comments.fpp +6 -0
  19. fprime_fpp_format-3.3.0/fpp_format/tests/comments.ref.fpp +6 -0
  20. fprime_fpp_format-3.3.0/fpp_format/tests/component-extra.fpp +61 -0
  21. fprime_fpp_format-3.3.0/fpp_format/tests/component-extra.ref.fpp +70 -0
  22. fprime_fpp_format-3.3.0/fpp_format/tests/component-inner.fpp +52 -0
  23. fprime_fpp_format-3.3.0/fpp_format/tests/component-inner.ref.fpp +56 -0
  24. fprime_fpp_format-3.3.0/fpp_format/tests/component.fpp +88 -0
  25. fprime_fpp_format-3.3.0/fpp_format/tests/component.ref.fpp +119 -0
  26. fprime_fpp_format-3.3.0/fpp_format/tests/constant-align.fpp +15 -0
  27. fprime_fpp_format-3.3.0/fpp_format/tests/constant-align.ref.fpp +15 -0
  28. fprime_fpp_format-3.3.0/fpp_format/tests/enum-annotation-align.fpp +29 -0
  29. fprime_fpp_format-3.3.0/fpp_format/tests/enum-annotation-align.ref.fpp +29 -0
  30. fprime_fpp_format-3.3.0/fpp_format/tests/expr-shift-sizeof.fpp +7 -0
  31. fprime_fpp_format-3.3.0/fpp_format/tests/expr-shift-sizeof.ref.fpp +7 -0
  32. fprime_fpp_format-3.3.0/fpp_format/tests/expressions.fpp +40 -0
  33. fprime_fpp_format-3.3.0/fpp_format/tests/expressions.ref.fpp +40 -0
  34. fprime_fpp_format-3.3.0/fpp_format/tests/formatter.rs +127 -0
  35. fprime_fpp_format-3.3.0/fpp_format/tests/includes.rs +195 -0
  36. fprime_fpp_format-3.3.0/fpp_format/tests/instances-locate.fpp +24 -0
  37. fprime_fpp_format-3.3.0/fpp_format/tests/instances-locate.ref.fpp +29 -0
  38. fprime_fpp_format-3.3.0/fpp_format/tests/interface-include.fpp +26 -0
  39. fprime_fpp_format-3.3.0/fpp_format/tests/interface-include.ref.fpp +26 -0
  40. fprime_fpp_format-3.3.0/fpp_format/tests/multiline-string-align.fpp +25 -0
  41. fprime_fpp_format-3.3.0/fpp_format/tests/multiline-string-align.ref.fpp +25 -0
  42. fprime_fpp_format-3.3.0/fpp_format/tests/multiple-definitions.fpp +8 -0
  43. fprime_fpp_format-3.3.0/fpp_format/tests/multiple-definitions.ref.fpp +11 -0
  44. fprime_fpp_format-3.3.0/fpp_format/tests/nested-module.fpp +6 -0
  45. fprime_fpp_format-3.3.0/fpp_format/tests/nested-module.ref.fpp +6 -0
  46. fprime_fpp_format-3.3.0/fpp_format/tests/param-annotation.fpp +16 -0
  47. fprime_fpp_format-3.3.0/fpp_format/tests/param-annotation.ref.fpp +16 -0
  48. fprime_fpp_format-3.3.0/fpp_format/tests/port.fpp +20 -0
  49. fprime_fpp_format-3.3.0/fpp_format/tests/port.ref.fpp +20 -0
  50. fprime_fpp_format-3.3.0/fpp_format/tests/simple-module.fpp +1 -0
  51. fprime_fpp_format-3.3.0/fpp_format/tests/simple-module.ref.fpp +3 -0
  52. fprime_fpp_format-3.3.0/fpp_format/tests/state-machine-defs.fpp +21 -0
  53. fprime_fpp_format-3.3.0/fpp_format/tests/state-machine-defs.ref.fpp +26 -0
  54. fprime_fpp_format-3.3.0/fpp_format/tests/state-machine.fpp +113 -0
  55. fprime_fpp_format-3.3.0/fpp_format/tests/state-machine.ref.fpp +98 -0
  56. fprime_fpp_format-3.3.0/fpp_format/tests/topology-extra.fpp +43 -0
  57. fprime_fpp_format-3.3.0/fpp_format/tests/topology-extra.ref.fpp +43 -0
  58. fprime_fpp_format-3.3.0/fpp_format/tests/topology.fpp +61 -0
  59. fprime_fpp_format-3.3.0/fpp_format/tests/topology.ref.fpp +61 -0
  60. fprime_fpp_format-3.3.0/fpp_format/tests/type-defs.fpp +47 -0
  61. fprime_fpp_format-3.3.0/fpp_format/tests/type-defs.ref.fpp +52 -0
  62. fprime_fpp_format-3.3.0/fpp_lexer/Cargo.toml +16 -0
  63. fprime_fpp_format-3.3.0/fpp_lexer/src/lexer.rs +604 -0
  64. fprime_fpp_format-3.3.0/fpp_lexer/src/lib.rs +8 -0
  65. fprime_fpp_format-3.3.0/fpp_lexer/src/tests.rs +229 -0
  66. fprime_fpp_format-3.3.0/fpp_lexer/src/token.rs +216 -0
  67. fprime_fpp_format-3.3.0/fpp_lsp_parser/Cargo.toml +17 -0
  68. fprime_fpp_format-3.3.0/fpp_lsp_parser/README.md +24 -0
  69. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/event.rs +141 -0
  70. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/component.rs +434 -0
  71. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/entry.rs +97 -0
  72. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/expr.rs +209 -0
  73. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/module.rs +232 -0
  74. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/state_machine.rs +308 -0
  75. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/topology.rs +288 -0
  76. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar/types.rs +156 -0
  77. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/grammar.rs +219 -0
  78. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/input.rs +35 -0
  79. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/lexed_str.rs +290 -0
  80. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/lib.rs +208 -0
  81. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/main.rs +72 -0
  82. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/output.rs +127 -0
  83. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/parser.rs +292 -0
  84. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/ptr.rs +75 -0
  85. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/shortcuts.rs +365 -0
  86. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/syntax.rs +541 -0
  87. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/syntax_error.rs +65 -0
  88. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/syntax_node.rs +79 -0
  89. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/token_set.rs +60 -0
  90. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/token_text.rs +96 -0
  91. fprime_fpp_format-3.3.0/fpp_lsp_parser/src/visitor.rs +35 -0
  92. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/comments.ref.txt +86 -0
  93. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/cycle-1.ref.txt +6 -0
  94. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/cycle-2.ref.txt +6 -0
  95. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/cycle-3.ref.txt +6 -0
  96. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/embedded-tab.ref.txt +5 -0
  97. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/empty.ref.txt +1 -0
  98. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/escaped-strings.ref.txt +49 -0
  99. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/expr-shift-sizeof.ref.txt +120 -0
  100. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/guarded-command-nested-array.fpp +7 -0
  101. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/guarded-command-nested-array.ref.txt +106 -0
  102. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/illegal-character.ref.txt +19 -0
  103. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-component.ref.txt +20 -0
  104. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-constant-1.ref.txt +18 -0
  105. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-missing-file.ref.txt +6 -0
  106. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-module.ref.txt +18 -0
  107. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-parse-error.ref.txt +6 -0
  108. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-subdir.ref.txt +6 -0
  109. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/include-topology.ref.txt +18 -0
  110. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/integration.rs +183 -0
  111. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/parse-error.ref.txt +119 -0
  112. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/simple.fpp +5 -0
  113. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/simple.ref.txt +80 -0
  114. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/state-machine-defs.ref.txt +228 -0
  115. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/state-machine.ref.txt +504 -0
  116. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/syntax-kwd-names.ref.txt +85 -0
  117. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/syntax.ref.txt +2241 -0
  118. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/topology-ports.ref.txt +33 -0
  119. fprime_fpp_format-3.3.0/fpp_lsp_parser/tests/topology.ref.txt +1667 -0
  120. fprime_fpp_format-3.3.0/pyproject.toml +29 -0
@@ -0,0 +1,1422 @@
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 = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "annotate-snippets"
25
+ version = "0.12.8"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "025c7edcdffa4ccc5c0905f472a0ae3759378cfbef88ef518a3575e19ae3aebd"
28
+ dependencies = [
29
+ "anstyle",
30
+ "unicode-width",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "anstream"
35
+ version = "0.6.21"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
38
+ dependencies = [
39
+ "anstyle",
40
+ "anstyle-parse",
41
+ "anstyle-query",
42
+ "anstyle-wincon",
43
+ "colorchoice",
44
+ "is_terminal_polyfill",
45
+ "utf8parse",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "anstyle"
50
+ version = "1.0.13"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
53
+
54
+ [[package]]
55
+ name = "anstyle-parse"
56
+ version = "0.2.7"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
59
+ dependencies = [
60
+ "utf8parse",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "anstyle-query"
65
+ version = "1.1.4"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
68
+ dependencies = [
69
+ "windows-sys",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle-wincon"
74
+ version = "3.0.10"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
77
+ dependencies = [
78
+ "anstyle",
79
+ "once_cell_polyfill",
80
+ "windows-sys",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anyhow"
85
+ version = "1.0.100"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
88
+
89
+ [[package]]
90
+ name = "autocfg"
91
+ version = "1.5.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
94
+
95
+ [[package]]
96
+ name = "bitflags"
97
+ version = "1.3.2"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
100
+
101
+ [[package]]
102
+ name = "bstr"
103
+ version = "1.12.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
106
+ dependencies = [
107
+ "memchr",
108
+ "serde",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "bumpalo"
113
+ version = "3.19.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
116
+
117
+ [[package]]
118
+ name = "cc"
119
+ version = "1.2.49"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
122
+ dependencies = [
123
+ "find-msvc-tools",
124
+ "shlex",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "cfg-if"
129
+ version = "1.0.4"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
132
+
133
+ [[package]]
134
+ name = "chrono"
135
+ version = "0.4.42"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
138
+ dependencies = [
139
+ "iana-time-zone",
140
+ "num-traits",
141
+ "windows-link",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap"
146
+ version = "4.5.60"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
149
+ dependencies = [
150
+ "clap_builder",
151
+ "clap_derive",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "clap_builder"
156
+ version = "4.5.60"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
159
+ dependencies = [
160
+ "anstream",
161
+ "anstyle",
162
+ "clap_lex",
163
+ "strsim",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "clap_derive"
168
+ version = "4.5.55"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
171
+ dependencies = [
172
+ "heck",
173
+ "proc-macro2",
174
+ "quote",
175
+ "syn",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "clap_lex"
180
+ version = "1.0.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
183
+
184
+ [[package]]
185
+ name = "colorchoice"
186
+ version = "1.0.4"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
189
+
190
+ [[package]]
191
+ name = "core-foundation-sys"
192
+ version = "0.8.7"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
195
+
196
+ [[package]]
197
+ name = "countme"
198
+ version = "3.0.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
201
+
202
+ [[package]]
203
+ name = "crossbeam-channel"
204
+ version = "0.5.15"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
207
+ dependencies = [
208
+ "crossbeam-utils",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "crossbeam-deque"
213
+ version = "0.8.6"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
216
+ dependencies = [
217
+ "crossbeam-epoch",
218
+ "crossbeam-utils",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "crossbeam-epoch"
223
+ version = "0.9.18"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
226
+ dependencies = [
227
+ "crossbeam-utils",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "crossbeam-utils"
232
+ version = "0.8.21"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
235
+
236
+ [[package]]
237
+ name = "diff"
238
+ version = "0.1.13"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
241
+
242
+ [[package]]
243
+ name = "displaydoc"
244
+ version = "0.2.5"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
247
+ dependencies = [
248
+ "proc-macro2",
249
+ "quote",
250
+ "syn",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "drop_bomb"
255
+ version = "0.1.5"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
258
+
259
+ [[package]]
260
+ name = "equivalent"
261
+ version = "1.0.2"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
264
+
265
+ [[package]]
266
+ name = "find-msvc-tools"
267
+ version = "0.1.5"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
270
+
271
+ [[package]]
272
+ name = "fluent-uri"
273
+ version = "0.1.4"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
276
+ dependencies = [
277
+ "bitflags",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "form_urlencoded"
282
+ version = "1.2.2"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
285
+ dependencies = [
286
+ "percent-encoding",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "fpp"
291
+ version = "3.3.0"
292
+ dependencies = [
293
+ "fpp_analysis",
294
+ "fpp_core",
295
+ "fpp_errors",
296
+ "fpp_fs",
297
+ "fpp_parser",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "fpp_analysis"
302
+ version = "3.3.0"
303
+ dependencies = [
304
+ "fpp_ast",
305
+ "fpp_core",
306
+ "fpp_errors",
307
+ "fpp_fs",
308
+ "fpp_macros",
309
+ "fpp_parser",
310
+ "fpp_util",
311
+ "pretty_assertions",
312
+ "rustc-hash 2.1.1",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "fpp_ast"
317
+ version = "3.3.0"
318
+ dependencies = [
319
+ "fpp_core",
320
+ "fpp_macros",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "fpp_core"
325
+ version = "3.3.0"
326
+ dependencies = [
327
+ "line-index",
328
+ "rustc-hash 2.1.1",
329
+ "scoped-tls",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "fpp_diagram"
334
+ version = "3.3.0"
335
+ dependencies = [
336
+ "clap",
337
+ "fpp_analysis",
338
+ "fpp_ast",
339
+ "fpp_core",
340
+ "fpp_errors",
341
+ "fpp_fs",
342
+ "fpp_parser",
343
+ "pretty_assertions",
344
+ "rustc-hash 2.1.1",
345
+ "serde",
346
+ "serde_json",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "fpp_errors"
351
+ version = "3.3.0"
352
+ dependencies = [
353
+ "annotate-snippets",
354
+ "anstream",
355
+ "fpp_core",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "fpp_format"
360
+ version = "3.3.0"
361
+ dependencies = [
362
+ "clap",
363
+ "fpp_lsp_parser",
364
+ "pretty_assertions",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "fpp_fs"
369
+ version = "3.3.0"
370
+ dependencies = [
371
+ "fpp_core",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "fpp_lexer"
376
+ version = "3.3.0"
377
+ dependencies = [
378
+ "memchr",
379
+ "pretty_assertions",
380
+ "unicode-ident",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "fpp_lsp_parser"
385
+ version = "3.3.0"
386
+ dependencies = [
387
+ "drop_bomb",
388
+ "fpp_lexer",
389
+ "pretty_assertions",
390
+ "rowan",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "fpp_lsp_server"
395
+ version = "3.3.0"
396
+ dependencies = [
397
+ "anyhow",
398
+ "clap",
399
+ "crossbeam-channel",
400
+ "fpp_analysis",
401
+ "fpp_ast",
402
+ "fpp_core",
403
+ "fpp_diagram",
404
+ "fpp_errors",
405
+ "fpp_format",
406
+ "fpp_fs",
407
+ "fpp_lsp_parser",
408
+ "fpp_parser",
409
+ "ignore",
410
+ "lsp-server",
411
+ "lsp-types",
412
+ "rustc-hash 2.1.1",
413
+ "serde",
414
+ "serde_json",
415
+ "serde_yaml_ng",
416
+ "tracing",
417
+ "tracing-subscriber",
418
+ "url",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "fpp_macros"
423
+ version = "3.3.0"
424
+ dependencies = [
425
+ "proc-macro2",
426
+ "quote",
427
+ "syn",
428
+ "synstructure",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "fpp_parser"
433
+ version = "3.3.0"
434
+ dependencies = [
435
+ "fpp_ast",
436
+ "fpp_core",
437
+ "fpp_errors",
438
+ "fpp_fs",
439
+ "fpp_lexer",
440
+ "pretty_assertions",
441
+ "rustc-hash 2.1.1",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "fpp_util"
446
+ version = "3.3.0"
447
+
448
+ [[package]]
449
+ name = "globset"
450
+ version = "0.4.18"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
453
+ dependencies = [
454
+ "aho-corasick",
455
+ "bstr",
456
+ "log",
457
+ "regex-automata",
458
+ "regex-syntax",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "hashbrown"
463
+ version = "0.14.5"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
466
+
467
+ [[package]]
468
+ name = "hashbrown"
469
+ version = "0.17.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
472
+
473
+ [[package]]
474
+ name = "heck"
475
+ version = "0.5.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
478
+
479
+ [[package]]
480
+ name = "iana-time-zone"
481
+ version = "0.1.64"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
484
+ dependencies = [
485
+ "android_system_properties",
486
+ "core-foundation-sys",
487
+ "iana-time-zone-haiku",
488
+ "js-sys",
489
+ "log",
490
+ "wasm-bindgen",
491
+ "windows-core",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "iana-time-zone-haiku"
496
+ version = "0.1.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
499
+ dependencies = [
500
+ "cc",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "icu_collections"
505
+ version = "2.1.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
508
+ dependencies = [
509
+ "displaydoc",
510
+ "potential_utf",
511
+ "yoke",
512
+ "zerofrom",
513
+ "zerovec",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "icu_locale_core"
518
+ version = "2.1.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
521
+ dependencies = [
522
+ "displaydoc",
523
+ "litemap",
524
+ "tinystr",
525
+ "writeable",
526
+ "zerovec",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "icu_normalizer"
531
+ version = "2.1.1"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
534
+ dependencies = [
535
+ "icu_collections",
536
+ "icu_normalizer_data",
537
+ "icu_properties",
538
+ "icu_provider",
539
+ "smallvec",
540
+ "zerovec",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "icu_normalizer_data"
545
+ version = "2.1.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
548
+
549
+ [[package]]
550
+ name = "icu_properties"
551
+ version = "2.1.2"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
554
+ dependencies = [
555
+ "icu_collections",
556
+ "icu_locale_core",
557
+ "icu_properties_data",
558
+ "icu_provider",
559
+ "zerotrie",
560
+ "zerovec",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "icu_properties_data"
565
+ version = "2.1.2"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
568
+
569
+ [[package]]
570
+ name = "icu_provider"
571
+ version = "2.1.1"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
574
+ dependencies = [
575
+ "displaydoc",
576
+ "icu_locale_core",
577
+ "writeable",
578
+ "yoke",
579
+ "zerofrom",
580
+ "zerotrie",
581
+ "zerovec",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "idna"
586
+ version = "1.1.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
589
+ dependencies = [
590
+ "idna_adapter",
591
+ "smallvec",
592
+ "utf8_iter",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "idna_adapter"
597
+ version = "1.2.1"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
600
+ dependencies = [
601
+ "icu_normalizer",
602
+ "icu_properties",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "ignore"
607
+ version = "0.4.25"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
610
+ dependencies = [
611
+ "crossbeam-deque",
612
+ "globset",
613
+ "log",
614
+ "memchr",
615
+ "regex-automata",
616
+ "same-file",
617
+ "walkdir",
618
+ "winapi-util",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "indexmap"
623
+ version = "2.14.0"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
626
+ dependencies = [
627
+ "equivalent",
628
+ "hashbrown 0.17.1",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "is_terminal_polyfill"
633
+ version = "1.70.2"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
636
+
637
+ [[package]]
638
+ name = "itoa"
639
+ version = "1.0.15"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
642
+
643
+ [[package]]
644
+ name = "js-sys"
645
+ version = "0.3.83"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
648
+ dependencies = [
649
+ "once_cell",
650
+ "wasm-bindgen",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "lazy_static"
655
+ version = "1.5.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
658
+
659
+ [[package]]
660
+ name = "libc"
661
+ version = "0.2.178"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
664
+
665
+ [[package]]
666
+ name = "line-index"
667
+ version = "0.1.2"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
670
+ dependencies = [
671
+ "nohash-hasher",
672
+ "text-size",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "litemap"
677
+ version = "0.8.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
680
+
681
+ [[package]]
682
+ name = "log"
683
+ version = "0.4.28"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
686
+
687
+ [[package]]
688
+ name = "lsp-server"
689
+ version = "0.7.9"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "7d6ada348dbc2703cbe7637b2dda05cff84d3da2819c24abcb305dd613e0ba2e"
692
+ dependencies = [
693
+ "crossbeam-channel",
694
+ "log",
695
+ "serde",
696
+ "serde_derive",
697
+ "serde_json",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "lsp-types"
702
+ version = "0.97.0"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
705
+ dependencies = [
706
+ "bitflags",
707
+ "fluent-uri",
708
+ "serde",
709
+ "serde_json",
710
+ "serde_repr",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "matchers"
715
+ version = "0.2.0"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
718
+ dependencies = [
719
+ "regex-automata",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "memchr"
724
+ version = "2.7.6"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
727
+
728
+ [[package]]
729
+ name = "nohash-hasher"
730
+ version = "0.2.0"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
733
+
734
+ [[package]]
735
+ name = "nu-ansi-term"
736
+ version = "0.50.3"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
739
+ dependencies = [
740
+ "windows-sys",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "num-traits"
745
+ version = "0.2.19"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
748
+ dependencies = [
749
+ "autocfg",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "once_cell"
754
+ version = "1.21.3"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
757
+
758
+ [[package]]
759
+ name = "once_cell_polyfill"
760
+ version = "1.70.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
763
+
764
+ [[package]]
765
+ name = "percent-encoding"
766
+ version = "2.3.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
769
+
770
+ [[package]]
771
+ name = "pin-project-lite"
772
+ version = "0.2.16"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
775
+
776
+ [[package]]
777
+ name = "potential_utf"
778
+ version = "0.1.4"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
781
+ dependencies = [
782
+ "zerovec",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "pretty_assertions"
787
+ version = "1.4.1"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
790
+ dependencies = [
791
+ "diff",
792
+ "yansi",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "proc-macro2"
797
+ version = "1.0.103"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
800
+ dependencies = [
801
+ "unicode-ident",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "quote"
806
+ version = "1.0.42"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
809
+ dependencies = [
810
+ "proc-macro2",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "regex-automata"
815
+ version = "0.4.14"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
818
+ dependencies = [
819
+ "aho-corasick",
820
+ "memchr",
821
+ "regex-syntax",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "regex-syntax"
826
+ version = "0.8.9"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
829
+
830
+ [[package]]
831
+ name = "rowan"
832
+ version = "0.16.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
835
+ dependencies = [
836
+ "countme",
837
+ "hashbrown 0.14.5",
838
+ "rustc-hash 1.1.0",
839
+ "text-size",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "rustc-hash"
844
+ version = "1.1.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
847
+
848
+ [[package]]
849
+ name = "rustc-hash"
850
+ version = "2.1.1"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
853
+
854
+ [[package]]
855
+ name = "rustversion"
856
+ version = "1.0.22"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
859
+
860
+ [[package]]
861
+ name = "ryu"
862
+ version = "1.0.20"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
865
+
866
+ [[package]]
867
+ name = "same-file"
868
+ version = "1.0.6"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
871
+ dependencies = [
872
+ "winapi-util",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "scoped-tls"
877
+ version = "1.0.1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
880
+
881
+ [[package]]
882
+ name = "serde"
883
+ version = "1.0.228"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
886
+ dependencies = [
887
+ "serde_core",
888
+ "serde_derive",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "serde_core"
893
+ version = "1.0.228"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
896
+ dependencies = [
897
+ "serde_derive",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "serde_derive"
902
+ version = "1.0.228"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
905
+ dependencies = [
906
+ "proc-macro2",
907
+ "quote",
908
+ "syn",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "serde_json"
913
+ version = "1.0.145"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
916
+ dependencies = [
917
+ "itoa",
918
+ "memchr",
919
+ "ryu",
920
+ "serde",
921
+ "serde_core",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "serde_repr"
926
+ version = "0.1.20"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
929
+ dependencies = [
930
+ "proc-macro2",
931
+ "quote",
932
+ "syn",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "serde_yaml_ng"
937
+ version = "0.10.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
940
+ dependencies = [
941
+ "indexmap",
942
+ "itoa",
943
+ "ryu",
944
+ "serde",
945
+ "unsafe-libyaml",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "sharded-slab"
950
+ version = "0.1.7"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
953
+ dependencies = [
954
+ "lazy_static",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "shlex"
959
+ version = "1.3.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
962
+
963
+ [[package]]
964
+ name = "smallvec"
965
+ version = "1.15.1"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
968
+
969
+ [[package]]
970
+ name = "stable_deref_trait"
971
+ version = "1.2.1"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
974
+
975
+ [[package]]
976
+ name = "strsim"
977
+ version = "0.11.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
980
+
981
+ [[package]]
982
+ name = "syn"
983
+ version = "2.0.109"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f"
986
+ dependencies = [
987
+ "proc-macro2",
988
+ "quote",
989
+ "unicode-ident",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "synstructure"
994
+ version = "0.13.2"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
997
+ dependencies = [
998
+ "proc-macro2",
999
+ "quote",
1000
+ "syn",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "text-size"
1005
+ version = "1.1.1"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
1008
+
1009
+ [[package]]
1010
+ name = "thread_local"
1011
+ version = "1.1.9"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1014
+ dependencies = [
1015
+ "cfg-if",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "tinystr"
1020
+ version = "0.8.2"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1023
+ dependencies = [
1024
+ "displaydoc",
1025
+ "zerovec",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "tracing"
1030
+ version = "0.1.44"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1033
+ dependencies = [
1034
+ "pin-project-lite",
1035
+ "tracing-attributes",
1036
+ "tracing-core",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "tracing-attributes"
1041
+ version = "0.1.31"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1044
+ dependencies = [
1045
+ "proc-macro2",
1046
+ "quote",
1047
+ "syn",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "tracing-core"
1052
+ version = "0.1.36"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1055
+ dependencies = [
1056
+ "once_cell",
1057
+ "valuable",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "tracing-log"
1062
+ version = "0.2.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1065
+ dependencies = [
1066
+ "log",
1067
+ "once_cell",
1068
+ "tracing-core",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "tracing-subscriber"
1073
+ version = "0.3.22"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
1076
+ dependencies = [
1077
+ "chrono",
1078
+ "matchers",
1079
+ "nu-ansi-term",
1080
+ "once_cell",
1081
+ "regex-automata",
1082
+ "sharded-slab",
1083
+ "smallvec",
1084
+ "thread_local",
1085
+ "tracing",
1086
+ "tracing-core",
1087
+ "tracing-log",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "unicode-ident"
1092
+ version = "1.0.22"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1095
+
1096
+ [[package]]
1097
+ name = "unicode-width"
1098
+ version = "0.2.2"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1101
+
1102
+ [[package]]
1103
+ name = "unsafe-libyaml"
1104
+ version = "0.2.11"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1107
+
1108
+ [[package]]
1109
+ name = "url"
1110
+ version = "2.5.8"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1113
+ dependencies = [
1114
+ "form_urlencoded",
1115
+ "idna",
1116
+ "percent-encoding",
1117
+ "serde",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "utf8_iter"
1122
+ version = "1.0.4"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1125
+
1126
+ [[package]]
1127
+ name = "utf8parse"
1128
+ version = "0.2.2"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1131
+
1132
+ [[package]]
1133
+ name = "valuable"
1134
+ version = "0.1.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1137
+
1138
+ [[package]]
1139
+ name = "walkdir"
1140
+ version = "2.5.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1143
+ dependencies = [
1144
+ "same-file",
1145
+ "winapi-util",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "wasm-bindgen"
1150
+ version = "0.2.106"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1153
+ dependencies = [
1154
+ "cfg-if",
1155
+ "once_cell",
1156
+ "rustversion",
1157
+ "wasm-bindgen-macro",
1158
+ "wasm-bindgen-shared",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "wasm-bindgen-macro"
1163
+ version = "0.2.106"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1166
+ dependencies = [
1167
+ "quote",
1168
+ "wasm-bindgen-macro-support",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "wasm-bindgen-macro-support"
1173
+ version = "0.2.106"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1176
+ dependencies = [
1177
+ "bumpalo",
1178
+ "proc-macro2",
1179
+ "quote",
1180
+ "syn",
1181
+ "wasm-bindgen-shared",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "wasm-bindgen-shared"
1186
+ version = "0.2.106"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1189
+ dependencies = [
1190
+ "unicode-ident",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "winapi-util"
1195
+ version = "0.1.11"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1198
+ dependencies = [
1199
+ "windows-sys",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "windows-core"
1204
+ version = "0.62.2"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1207
+ dependencies = [
1208
+ "windows-implement",
1209
+ "windows-interface",
1210
+ "windows-link",
1211
+ "windows-result",
1212
+ "windows-strings",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "windows-implement"
1217
+ version = "0.60.2"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1220
+ dependencies = [
1221
+ "proc-macro2",
1222
+ "quote",
1223
+ "syn",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "windows-interface"
1228
+ version = "0.59.3"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1231
+ dependencies = [
1232
+ "proc-macro2",
1233
+ "quote",
1234
+ "syn",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "windows-link"
1239
+ version = "0.2.1"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1242
+
1243
+ [[package]]
1244
+ name = "windows-result"
1245
+ version = "0.4.1"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1248
+ dependencies = [
1249
+ "windows-link",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "windows-strings"
1254
+ version = "0.5.1"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1257
+ dependencies = [
1258
+ "windows-link",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "windows-sys"
1263
+ version = "0.60.2"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1266
+ dependencies = [
1267
+ "windows-targets",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "windows-targets"
1272
+ version = "0.53.5"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1275
+ dependencies = [
1276
+ "windows-link",
1277
+ "windows_aarch64_gnullvm",
1278
+ "windows_aarch64_msvc",
1279
+ "windows_i686_gnu",
1280
+ "windows_i686_gnullvm",
1281
+ "windows_i686_msvc",
1282
+ "windows_x86_64_gnu",
1283
+ "windows_x86_64_gnullvm",
1284
+ "windows_x86_64_msvc",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "windows_aarch64_gnullvm"
1289
+ version = "0.53.1"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1292
+
1293
+ [[package]]
1294
+ name = "windows_aarch64_msvc"
1295
+ version = "0.53.1"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1298
+
1299
+ [[package]]
1300
+ name = "windows_i686_gnu"
1301
+ version = "0.53.1"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1304
+
1305
+ [[package]]
1306
+ name = "windows_i686_gnullvm"
1307
+ version = "0.53.1"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1310
+
1311
+ [[package]]
1312
+ name = "windows_i686_msvc"
1313
+ version = "0.53.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1316
+
1317
+ [[package]]
1318
+ name = "windows_x86_64_gnu"
1319
+ version = "0.53.1"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1322
+
1323
+ [[package]]
1324
+ name = "windows_x86_64_gnullvm"
1325
+ version = "0.53.1"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1328
+
1329
+ [[package]]
1330
+ name = "windows_x86_64_msvc"
1331
+ version = "0.53.1"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1334
+
1335
+ [[package]]
1336
+ name = "writeable"
1337
+ version = "0.6.2"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1340
+
1341
+ [[package]]
1342
+ name = "yansi"
1343
+ version = "1.0.1"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
1346
+
1347
+ [[package]]
1348
+ name = "yoke"
1349
+ version = "0.8.1"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1352
+ dependencies = [
1353
+ "stable_deref_trait",
1354
+ "yoke-derive",
1355
+ "zerofrom",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "yoke-derive"
1360
+ version = "0.8.1"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1363
+ dependencies = [
1364
+ "proc-macro2",
1365
+ "quote",
1366
+ "syn",
1367
+ "synstructure",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "zerofrom"
1372
+ version = "0.1.6"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1375
+ dependencies = [
1376
+ "zerofrom-derive",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "zerofrom-derive"
1381
+ version = "0.1.6"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1384
+ dependencies = [
1385
+ "proc-macro2",
1386
+ "quote",
1387
+ "syn",
1388
+ "synstructure",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "zerotrie"
1393
+ version = "0.2.3"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1396
+ dependencies = [
1397
+ "displaydoc",
1398
+ "yoke",
1399
+ "zerofrom",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "zerovec"
1404
+ version = "0.11.5"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
1407
+ dependencies = [
1408
+ "yoke",
1409
+ "zerofrom",
1410
+ "zerovec-derive",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "zerovec-derive"
1415
+ version = "0.11.2"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
1418
+ dependencies = [
1419
+ "proc-macro2",
1420
+ "quote",
1421
+ "syn",
1422
+ ]