atrep-cli 0.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 (112) hide show
  1. atrep_cli-0.3.0/Cargo.lock +823 -0
  2. atrep_cli-0.3.0/Cargo.toml +21 -0
  3. atrep_cli-0.3.0/LICENSE-APACHE +202 -0
  4. atrep_cli-0.3.0/LICENSE-MIT +21 -0
  5. atrep_cli-0.3.0/PKG-INFO +491 -0
  6. atrep_cli-0.3.0/README.md +473 -0
  7. atrep_cli-0.3.0/crates/atrep/Cargo.toml +27 -0
  8. atrep_cli-0.3.0/crates/atrep/README.md +473 -0
  9. atrep_cli-0.3.0/crates/atrep/src/atramento.rs +1512 -0
  10. atrep_cli-0.3.0/crates/atrep/src/dendron.rs +780 -0
  11. atrep_cli-0.3.0/crates/atrep/src/dialektos.rs +1263 -0
  12. atrep_cli-0.3.0/crates/atrep/src/endo.rs +8203 -0
  13. atrep_cli-0.3.0/crates/atrep/src/error.rs +256 -0
  14. atrep_cli-0.3.0/crates/atrep/src/exo.rs +1696 -0
  15. atrep_cli-0.3.0/crates/atrep/src/fetch.rs +275 -0
  16. atrep_cli-0.3.0/crates/atrep/src/glossa.rs +99 -0
  17. atrep_cli-0.3.0/crates/atrep/src/kanonizo.rs +1710 -0
  18. atrep_cli-0.3.0/crates/atrep/src/lib.rs +106 -0
  19. atrep_cli-0.3.0/crates/atrep/src/litosis.rs +447 -0
  20. atrep_cli-0.3.0/crates/atrep/src/morph.rs +1923 -0
  21. atrep_cli-0.3.0/crates/atrep/src/outline.rs +241 -0
  22. atrep_cli-0.3.0/crates/atrep/src/parser.rs +1458 -0
  23. atrep_cli-0.3.0/crates/atrep/src/scan.rs +495 -0
  24. atrep_cli-0.3.0/crates/atrep/src/sigil.rs +207 -0
  25. atrep_cli-0.3.0/crates/atrep/src/source.rs +110 -0
  26. atrep_cli-0.3.0/crates/atrep/src/zygosis.rs +1889 -0
  27. atrep_cli-0.3.0/crates/atrep/std/at-djot.at-markdown.iso +10 -0
  28. atrep_cli-0.3.0/crates/atrep/std/at-djot.dia +69 -0
  29. atrep_cli-0.3.0/crates/atrep/std/at-djot.dj.exo +84 -0
  30. atrep_cli-0.3.0/crates/atrep/std/at-docbook.dia +75 -0
  31. atrep_cli-0.3.0/crates/atrep/std/at-docbook.docbook.exo +100 -0
  32. atrep_cli-0.3.0/crates/atrep/std/at-docbook.litogramma.hom +12 -0
  33. atrep_cli-0.3.0/crates/atrep/std/at-drama.dia +91 -0
  34. atrep_cli-0.3.0/crates/atrep/std/at-html.at-markdown.hom +16 -0
  35. atrep_cli-0.3.0/crates/atrep/std/at-html.at-org.hom +15 -0
  36. atrep_cli-0.3.0/crates/atrep/std/at-html.at-rst.hom +14 -0
  37. atrep_cli-0.3.0/crates/atrep/std/at-html.dia +102 -0
  38. atrep_cli-0.3.0/crates/atrep/std/at-html.html.exo +143 -0
  39. atrep_cli-0.3.0/crates/atrep/std/at-html.xhtml.exo +144 -0
  40. atrep_cli-0.3.0/crates/atrep/std/at-markdown.dia +24 -0
  41. atrep_cli-0.3.0/crates/atrep/std/at-markdown.md.exo +87 -0
  42. atrep_cli-0.3.0/crates/atrep/std/at-org.at-html.hom +15 -0
  43. atrep_cli-0.3.0/crates/atrep/std/at-org.dia +108 -0
  44. atrep_cli-0.3.0/crates/atrep/std/at-org.org.exo +118 -0
  45. atrep_cli-0.3.0/crates/atrep/std/at-poesia.dia +28 -0
  46. atrep_cli-0.3.0/crates/atrep/std/at-prosa.dia +104 -0
  47. atrep_cli-0.3.0/crates/atrep/std/at-rst.at-html.hom +17 -0
  48. atrep_cli-0.3.0/crates/atrep/std/at-rst.dia +105 -0
  49. atrep_cli-0.3.0/crates/atrep/std/at-rst.rst.exo +120 -0
  50. atrep_cli-0.3.0/crates/atrep/std/at-tei.dia +239 -0
  51. atrep_cli-0.3.0/crates/atrep/std/at-tei.tei.exo +535 -0
  52. atrep_cli-0.3.0/crates/atrep/std/at-usfm.dia +205 -0
  53. atrep_cli-0.3.0/crates/atrep/std/at-usfm.latex.a5.exo +15 -0
  54. atrep_cli-0.3.0/crates/atrep/std/at-usfm.latex.exo +520 -0
  55. atrep_cli-0.3.0/crates/atrep/std/at-usfm.latex.redletter.exo +15 -0
  56. atrep_cli-0.3.0/crates/atrep/std/at-usfm.latex.ru.exo +263 -0
  57. atrep_cli-0.3.0/crates/atrep/std/at-usfm.osis.exo +239 -0
  58. atrep_cli-0.3.0/crates/atrep/std/at-usfm.usfm.exo +280 -0
  59. atrep_cli-0.3.0/crates/atrep/std/at-usfm.usx.exo +284 -0
  60. atrep_cli-0.3.0/crates/atrep/std/bibliogramma.bib.exo +535 -0
  61. atrep_cli-0.3.0/crates/atrep/std/bibliogramma.bibtex.exo +534 -0
  62. atrep_cli-0.3.0/crates/atrep/std/bibliogramma.dia +361 -0
  63. atrep_cli-0.3.0/crates/atrep/std/koine.dia +209 -0
  64. atrep_cli-0.3.0/crates/atrep/std/koine.latex.exo +283 -0
  65. atrep_cli-0.3.0/crates/atrep/std/litogramma.at-docbook.hom +84 -0
  66. atrep_cli-0.3.0/crates/atrep/std/litogramma.at-html.hom +88 -0
  67. atrep_cli-0.3.0/crates/atrep/std/litogramma.at-tei.hom +85 -0
  68. atrep_cli-0.3.0/crates/atrep/std/litogramma.dia +252 -0
  69. atrep_cli-0.3.0/crates/atrep/std/litogramma.gemtext.exo +399 -0
  70. atrep_cli-0.3.0/crates/atrep/std/litogramma.html.exo +522 -0
  71. atrep_cli-0.3.0/crates/atrep/std/litogramma.latex.exo +638 -0
  72. atrep_cli-0.3.0/crates/atrep/tests/atramento.rs +482 -0
  73. atrep_cli-0.3.0/crates/atrep/tests/attei.rs +76 -0
  74. atrep_cli-0.3.0/crates/atrep/tests/autonym.rs +108 -0
  75. atrep_cli-0.3.0/crates/atrep/tests/bibtex.rs +47 -0
  76. atrep_cli-0.3.0/crates/atrep/tests/collate.rs +129 -0
  77. atrep_cli-0.3.0/crates/atrep/tests/deixis.rs +186 -0
  78. atrep_cli-0.3.0/crates/atrep/tests/djot.rs +93 -0
  79. atrep_cli-0.3.0/crates/atrep/tests/docbook.rs +78 -0
  80. atrep_cli-0.3.0/crates/atrep/tests/errors.rs +286 -0
  81. atrep_cli-0.3.0/crates/atrep/tests/exo.rs +274 -0
  82. atrep_cli-0.3.0/crates/atrep/tests/fixtures/base.dia +32 -0
  83. atrep_cli-0.3.0/crates/atrep/tests/fixtures/child.dia +13 -0
  84. atrep_cli-0.3.0/crates/atrep/tests/fixtures/exempli.html.exo +50 -0
  85. atrep_cli-0.3.0/crates/atrep/tests/fixtures/exempli.lektos +25 -0
  86. atrep_cli-0.3.0/crates/atrep/tests/fixtures/intro.atd +18 -0
  87. atrep_cli-0.3.0/crates/atrep/tests/fixtures/pipeline.svg +3 -0
  88. atrep_cli-0.3.0/crates/atrep/tests/fixtures/steps.txt +1 -0
  89. atrep_cli-0.3.0/crates/atrep/tests/golden.rs +107 -0
  90. atrep_cli-0.3.0/crates/atrep/tests/html.rs +267 -0
  91. atrep_cli-0.3.0/crates/atrep/tests/jats.rs +51 -0
  92. atrep_cli-0.3.0/crates/atrep/tests/lektos.rs +191 -0
  93. atrep_cli-0.3.0/crates/atrep/tests/lex0.rs +63 -0
  94. atrep_cli-0.3.0/crates/atrep/tests/litogramma.rs +132 -0
  95. atrep_cli-0.3.0/crates/atrep/tests/markdown.rs +191 -0
  96. atrep_cli-0.3.0/crates/atrep/tests/metagraphe.rs +223 -0
  97. atrep_cli-0.3.0/crates/atrep/tests/milestone.rs +91 -0
  98. atrep_cli-0.3.0/crates/atrep/tests/morph.rs +908 -0
  99. atrep_cli-0.3.0/crates/atrep/tests/org.rs +132 -0
  100. atrep_cli-0.3.0/crates/atrep/tests/outline.rs +50 -0
  101. atrep_cli-0.3.0/crates/atrep/tests/remote.rs +265 -0
  102. atrep_cli-0.3.0/crates/atrep/tests/rst.rs +248 -0
  103. atrep_cli-0.3.0/crates/atrep/tests/stichoi.rs +185 -0
  104. atrep_cli-0.3.0/crates/atrep/tests/tasso.rs +120 -0
  105. atrep_cli-0.3.0/crates/atrep/tests/tei.rs +556 -0
  106. atrep_cli-0.3.0/crates/atrep/tests/usfm.rs +402 -0
  107. atrep_cli-0.3.0/crates/atrep/tests/vocab.rs +100 -0
  108. atrep_cli-0.3.0/crates/atrep/tests/zygo.rs +442 -0
  109. atrep_cli-0.3.0/crates/atrep-cli/Cargo.toml +18 -0
  110. atrep_cli-0.3.0/crates/atrep-cli/README.md +473 -0
  111. atrep_cli-0.3.0/crates/atrep-cli/src/main.rs +690 -0
  112. atrep_cli-0.3.0/pyproject.toml +34 -0
@@ -0,0 +1,823 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "anstream"
13
+ version = "1.0.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
16
+ dependencies = [
17
+ "anstyle",
18
+ "anstyle-parse",
19
+ "anstyle-query",
20
+ "anstyle-wincon",
21
+ "colorchoice",
22
+ "is_terminal_polyfill",
23
+ "utf8parse",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "anstyle-parse"
34
+ version = "1.0.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
37
+ dependencies = [
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle-query"
43
+ version = "1.1.5"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
46
+ dependencies = [
47
+ "windows-sys 0.61.2",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-wincon"
52
+ version = "3.0.11"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
55
+ dependencies = [
56
+ "anstyle",
57
+ "once_cell_polyfill",
58
+ "windows-sys 0.61.2",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "atrep"
63
+ version = "0.3.0"
64
+ dependencies = [
65
+ "flate2",
66
+ "serde",
67
+ "serde_json",
68
+ "sha2",
69
+ "tar",
70
+ "unicode-normalization",
71
+ "ureq",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "atrep-cli"
76
+ version = "0.3.0"
77
+ dependencies = [
78
+ "atrep",
79
+ "clap",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "atrep-lsp"
84
+ version = "0.3.0"
85
+ dependencies = [
86
+ "atrep",
87
+ "lsp-server",
88
+ "lsp-types",
89
+ "serde",
90
+ "serde_json",
91
+ "unicode-normalization",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "base64"
96
+ version = "0.22.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
99
+
100
+ [[package]]
101
+ name = "bitflags"
102
+ version = "1.3.2"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
105
+
106
+ [[package]]
107
+ name = "bitflags"
108
+ version = "2.13.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
111
+
112
+ [[package]]
113
+ name = "block-buffer"
114
+ version = "0.10.4"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
117
+ dependencies = [
118
+ "generic-array",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "bytes"
123
+ version = "1.12.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
126
+
127
+ [[package]]
128
+ name = "cc"
129
+ version = "1.2.66"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
132
+ dependencies = [
133
+ "find-msvc-tools",
134
+ "shlex",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "cfg-if"
139
+ version = "1.0.4"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
142
+
143
+ [[package]]
144
+ name = "clap"
145
+ version = "4.6.1"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
148
+ dependencies = [
149
+ "clap_builder",
150
+ "clap_derive",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "clap_builder"
155
+ version = "4.6.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
158
+ dependencies = [
159
+ "anstream",
160
+ "anstyle",
161
+ "clap_lex",
162
+ "strsim",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "clap_derive"
167
+ version = "4.6.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
170
+ dependencies = [
171
+ "heck",
172
+ "proc-macro2",
173
+ "quote",
174
+ "syn",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "clap_lex"
179
+ version = "1.1.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
182
+
183
+ [[package]]
184
+ name = "colorchoice"
185
+ version = "1.0.5"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
188
+
189
+ [[package]]
190
+ name = "cpufeatures"
191
+ version = "0.2.17"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
194
+ dependencies = [
195
+ "libc",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "crc32fast"
200
+ version = "1.5.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
203
+ dependencies = [
204
+ "cfg-if",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "crossbeam-channel"
209
+ version = "0.5.16"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
212
+ dependencies = [
213
+ "crossbeam-utils",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "crossbeam-utils"
218
+ version = "0.8.22"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
221
+
222
+ [[package]]
223
+ name = "crypto-common"
224
+ version = "0.1.7"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
227
+ dependencies = [
228
+ "generic-array",
229
+ "typenum",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "digest"
234
+ version = "0.10.7"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
237
+ dependencies = [
238
+ "block-buffer",
239
+ "crypto-common",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "errno"
244
+ version = "0.3.14"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
247
+ dependencies = [
248
+ "libc",
249
+ "windows-sys 0.61.2",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "filetime"
254
+ version = "0.2.29"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
257
+ dependencies = [
258
+ "cfg-if",
259
+ "libc",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "find-msvc-tools"
264
+ version = "0.1.9"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
267
+
268
+ [[package]]
269
+ name = "flate2"
270
+ version = "1.1.9"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
273
+ dependencies = [
274
+ "crc32fast",
275
+ "miniz_oxide",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "fluent-uri"
280
+ version = "0.1.4"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
283
+ dependencies = [
284
+ "bitflags 1.3.2",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "generic-array"
289
+ version = "0.14.7"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
292
+ dependencies = [
293
+ "typenum",
294
+ "version_check",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "getrandom"
299
+ version = "0.2.17"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
302
+ dependencies = [
303
+ "cfg-if",
304
+ "libc",
305
+ "wasi",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "heck"
310
+ version = "0.5.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
313
+
314
+ [[package]]
315
+ name = "http"
316
+ version = "1.4.2"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
319
+ dependencies = [
320
+ "bytes",
321
+ "itoa",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "httparse"
326
+ version = "1.10.1"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
329
+
330
+ [[package]]
331
+ name = "is_terminal_polyfill"
332
+ version = "1.70.2"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
335
+
336
+ [[package]]
337
+ name = "itoa"
338
+ version = "1.0.18"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
341
+
342
+ [[package]]
343
+ name = "libc"
344
+ version = "0.2.186"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
347
+
348
+ [[package]]
349
+ name = "linux-raw-sys"
350
+ version = "0.12.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
353
+
354
+ [[package]]
355
+ name = "log"
356
+ version = "0.4.33"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
359
+
360
+ [[package]]
361
+ name = "lsp-server"
362
+ version = "0.9.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "62e55c013e58520c3471c904b6a4b95367acb73f20e718e1a0026d4297c9fc8e"
365
+ dependencies = [
366
+ "crossbeam-channel",
367
+ "log",
368
+ "serde",
369
+ "serde_derive",
370
+ "serde_json",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "lsp-types"
375
+ version = "0.97.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
378
+ dependencies = [
379
+ "bitflags 1.3.2",
380
+ "fluent-uri",
381
+ "serde",
382
+ "serde_json",
383
+ "serde_repr",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "memchr"
388
+ version = "2.8.2"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
391
+
392
+ [[package]]
393
+ name = "miniz_oxide"
394
+ version = "0.8.9"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
397
+ dependencies = [
398
+ "adler2",
399
+ "simd-adler32",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "once_cell"
404
+ version = "1.21.4"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
407
+
408
+ [[package]]
409
+ name = "once_cell_polyfill"
410
+ version = "1.70.2"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
413
+
414
+ [[package]]
415
+ name = "percent-encoding"
416
+ version = "2.3.2"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
419
+
420
+ [[package]]
421
+ name = "proc-macro2"
422
+ version = "1.0.106"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
425
+ dependencies = [
426
+ "unicode-ident",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "quote"
431
+ version = "1.0.46"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
434
+ dependencies = [
435
+ "proc-macro2",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "ring"
440
+ version = "0.17.14"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
443
+ dependencies = [
444
+ "cc",
445
+ "cfg-if",
446
+ "getrandom",
447
+ "libc",
448
+ "untrusted",
449
+ "windows-sys 0.52.0",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "rustix"
454
+ version = "1.1.4"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
457
+ dependencies = [
458
+ "bitflags 2.13.0",
459
+ "errno",
460
+ "libc",
461
+ "linux-raw-sys",
462
+ "windows-sys 0.61.2",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "rustls"
467
+ version = "0.23.41"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
470
+ dependencies = [
471
+ "log",
472
+ "once_cell",
473
+ "ring",
474
+ "rustls-pki-types",
475
+ "rustls-webpki",
476
+ "subtle",
477
+ "zeroize",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "rustls-pki-types"
482
+ version = "1.15.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
485
+ dependencies = [
486
+ "zeroize",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "rustls-webpki"
491
+ version = "0.103.13"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
494
+ dependencies = [
495
+ "ring",
496
+ "rustls-pki-types",
497
+ "untrusted",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "serde"
502
+ version = "1.0.228"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
505
+ dependencies = [
506
+ "serde_core",
507
+ "serde_derive",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "serde_core"
512
+ version = "1.0.228"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
515
+ dependencies = [
516
+ "serde_derive",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "serde_derive"
521
+ version = "1.0.228"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
524
+ dependencies = [
525
+ "proc-macro2",
526
+ "quote",
527
+ "syn",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "serde_json"
532
+ version = "1.0.150"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
535
+ dependencies = [
536
+ "itoa",
537
+ "memchr",
538
+ "serde",
539
+ "serde_core",
540
+ "zmij",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "serde_repr"
545
+ version = "0.1.20"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
548
+ dependencies = [
549
+ "proc-macro2",
550
+ "quote",
551
+ "syn",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "sha2"
556
+ version = "0.10.9"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
559
+ dependencies = [
560
+ "cfg-if",
561
+ "cpufeatures",
562
+ "digest",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "shlex"
567
+ version = "2.0.1"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
570
+
571
+ [[package]]
572
+ name = "simd-adler32"
573
+ version = "0.3.9"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
576
+
577
+ [[package]]
578
+ name = "strsim"
579
+ version = "0.11.1"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
582
+
583
+ [[package]]
584
+ name = "subtle"
585
+ version = "2.6.1"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
588
+
589
+ [[package]]
590
+ name = "syn"
591
+ version = "2.0.118"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
594
+ dependencies = [
595
+ "proc-macro2",
596
+ "quote",
597
+ "unicode-ident",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "tar"
602
+ version = "0.4.46"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
605
+ dependencies = [
606
+ "filetime",
607
+ "libc",
608
+ "xattr",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "tinyvec"
613
+ version = "1.11.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
616
+ dependencies = [
617
+ "tinyvec_macros",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "tinyvec_macros"
622
+ version = "0.1.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
625
+
626
+ [[package]]
627
+ name = "typenum"
628
+ version = "1.20.1"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
631
+
632
+ [[package]]
633
+ name = "unicode-ident"
634
+ version = "1.0.24"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
637
+
638
+ [[package]]
639
+ name = "unicode-normalization"
640
+ version = "0.1.25"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
643
+ dependencies = [
644
+ "tinyvec",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "untrusted"
649
+ version = "0.9.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
652
+
653
+ [[package]]
654
+ name = "ureq"
655
+ version = "3.3.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
658
+ dependencies = [
659
+ "base64",
660
+ "flate2",
661
+ "log",
662
+ "percent-encoding",
663
+ "rustls",
664
+ "rustls-pki-types",
665
+ "ureq-proto",
666
+ "utf8-zero",
667
+ "webpki-roots",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "ureq-proto"
672
+ version = "0.6.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
675
+ dependencies = [
676
+ "base64",
677
+ "http",
678
+ "httparse",
679
+ "log",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "utf8-zero"
684
+ version = "0.8.1"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
687
+
688
+ [[package]]
689
+ name = "utf8parse"
690
+ version = "0.2.2"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
693
+
694
+ [[package]]
695
+ name = "version_check"
696
+ version = "0.9.5"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
699
+
700
+ [[package]]
701
+ name = "wasi"
702
+ version = "0.11.1+wasi-snapshot-preview1"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
705
+
706
+ [[package]]
707
+ name = "webpki-roots"
708
+ version = "1.0.8"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
711
+ dependencies = [
712
+ "rustls-pki-types",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "windows-link"
717
+ version = "0.2.1"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
720
+
721
+ [[package]]
722
+ name = "windows-sys"
723
+ version = "0.52.0"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
726
+ dependencies = [
727
+ "windows-targets",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "windows-sys"
732
+ version = "0.61.2"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
735
+ dependencies = [
736
+ "windows-link",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "windows-targets"
741
+ version = "0.52.6"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
744
+ dependencies = [
745
+ "windows_aarch64_gnullvm",
746
+ "windows_aarch64_msvc",
747
+ "windows_i686_gnu",
748
+ "windows_i686_gnullvm",
749
+ "windows_i686_msvc",
750
+ "windows_x86_64_gnu",
751
+ "windows_x86_64_gnullvm",
752
+ "windows_x86_64_msvc",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "windows_aarch64_gnullvm"
757
+ version = "0.52.6"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
760
+
761
+ [[package]]
762
+ name = "windows_aarch64_msvc"
763
+ version = "0.52.6"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
766
+
767
+ [[package]]
768
+ name = "windows_i686_gnu"
769
+ version = "0.52.6"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
772
+
773
+ [[package]]
774
+ name = "windows_i686_gnullvm"
775
+ version = "0.52.6"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
778
+
779
+ [[package]]
780
+ name = "windows_i686_msvc"
781
+ version = "0.52.6"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
784
+
785
+ [[package]]
786
+ name = "windows_x86_64_gnu"
787
+ version = "0.52.6"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
790
+
791
+ [[package]]
792
+ name = "windows_x86_64_gnullvm"
793
+ version = "0.52.6"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
796
+
797
+ [[package]]
798
+ name = "windows_x86_64_msvc"
799
+ version = "0.52.6"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
802
+
803
+ [[package]]
804
+ name = "xattr"
805
+ version = "1.6.1"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
808
+ dependencies = [
809
+ "libc",
810
+ "rustix",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "zeroize"
815
+ version = "1.9.0"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
818
+
819
+ [[package]]
820
+ name = "zmij"
821
+ version = "1.0.21"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"